#media-query-mobile {
  display: block;
}
#media-query-tablet {
  display: none;
}
#media-query-desktop {
  display: none;
}
@media only screen and (min-width:721px) and (max-width:960px) {
  #media-query-tablet {
    display: block;
  }
  #media-query-mobile {
	  display: none;
	}
}
@media only screen and (min-width:961px) {
  #media-query-desktop {
    display: block;
  }
  #media-query-mobile {
	  display: none;
	}
}

@media only screen and (max-width:720px) {
  .f2-wide {
    display: none !important;
  }
}
@media only screen and (max-width:960px) {
  .f2-desktop {
    display: none !important;
  }
}
@media only screen and (min-width:721px) {
  .f2-narrow {
    display: none !important;
  }
}
@media only screen and (min-width:961px) {
  .f2-nondesktop {
    display: none !important;
  }
}


/* oconfirm in overlay boxes */
#oconfirm,
#ooverlay,
#tfaprompt {
  position: fixed;
  z-index: 5900;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}
#ooverlay .box {
  background-color: var(--feed_siva);
  position: absolute;
  left: 50% !important;
  top: 30% !important;
  width: 305px;
  padding: 5px;
  text-align: center;
  transform: translateX(-50%);
  z-index: 99;
  box-shadow: 2px 2px 1px var(--feed_siva);
}
#oconfirm .box,#tfaprompt .box {
  background-color: var(--roza);
  position: absolute;
  left: 50% !important;
  top: 30% !important;
  width: 305px;
  padding: 20px;
  text-align: center;
  transform: translateX(-50%);
  z-index: 9;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.75);
}
#oconfirm .box .frame,#tfaprompt .box .frame {
  position: relative;
  width: 100%;
  height: 304px;
  margin: 0 0 10px 0;
  padding: 0;
  float: left;
  display: block;
  overflow: hidden;
  border: 2px dotted var(--black);
}
#oconfirm .box ul,#tfaprompt .box ul  {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
#oconfirm .box ul li,#tfaprompt .box ul li {
  float: none;
  margin: 0;
}
#oconfirm .box ul li a:FOCUS,#tfaprompt .box ul li a:FOCUS {
  text-decoration: underline;
}
#oconfirm .box p,#tfaprompt .box p {
  color: var(--bela) !important;
}
#oconfirm .box p a,#tfaprompt .box p a {
  text-decoration: underline;
}
#f2_public #tfaprompt .f2-btn_black {
    min-width: 0;
}
#tfaprompt .box {
  background-color: var(--temno_siva);
  top: 40% !important;
}
/* *** konec oconfirm */

.f2-popUpButtons {width: 100%; display: flex; align-items: center; justify-content: space-between;}
.f2-popUpButton {width: 100%; display: flex; align-items: center; justify-content: center;}
.f2-popUpButtonLeft {width: 100%; display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap;}
.f2-popUpButtonRight {width: 100%; display: flex; align-items: center; justify-content: flex-end;}

