.f2-div-option {
  cursor: pointer;
}
.f2-div-option.selected {
  background-color: var(--roza);
}



/* skrij geslo ikonici */
#f2_pass_ico {
  position: absolute;
  cursor: pointer;
  top: 12px;
  right: 0;
  margin-left: -25px;
  font-size: var(--size_heading);
}
input.f2-input:-webkit-autofill ~ #f2_pass_ico {
    padding-top: 13px;
    padding-right: 10px;
}

.f2-input-right-ico {
  position: absolute;
  top: 12px;
  right: 0;
  margin-left: -25px;
  font-size: var(--size_heading);
}

/* form error box - rdec box pod formo, ko je error pri vnosu podatkov */
#f2_formerr,.f2-formerr {
  background-color: var(--rdeca_info);
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  display: none;
}

/* ANIMIRANA VNOSNA POLJA */
.f2-input-wrap {
  position: relative;
  /* textarea */
}
.f2-input-wrap .f2-label {
  color: var(--bela) !important;
  font-size: var(--size_tiny) !important;
  position: absolute;
  top: -14px;
  left: 2px;
  user-select: none;
  text-align: left;
  line-height: 1;
  display: block;
  width: 100%;
}
.f2-input-wrap .f2-input {
  background-color: transparent !important;
  color: var(--bela) !important;
  position: relative;
  line-height: 1.25;
  display: block;
  width: 100%;
  max-width: 100%;
}
.f2-input-wrap div.f2-input {
	padding:10px 0;
}
.f2-input-wrap .f2-input:focus {
  outline: 0;
  box-shadow: inherit;
  transition: border 0.25s ease-in;
  border-bottom-width: 1px;
  border-color: var(--roza);
}
.f2-input-wrap .f2-input:after {
  position: absolute;
  left: 10px;
  content: '';
  height: 40px;
  width: 275px;
  border-bottom: solid 3px var(--svetlo_plava);
  transition: left 250ms ease-in-out, right 250ms ease-in-out;
  opacity: 0;
}
.f2-input-wrap .f2-input:focus::placeholder {
  transition: color 0.25s ease-in;
  color: transparent;
}
.f2-input-wrap .f2-input + .f2-label {
  transition: transform 0.25s, opacity 0.25s ease-in-out;
  opacity: 0;
}
.f2-input-wrap .f2-input:focus + .f2-label {
  transition: transform 0.25s, opacity 0.25s ease-in-out;
  opacity: 1;
}
.f2-input-wrap .f2-input:not(:placeholder-shown) + .f2-label {
  opacity: 1;
  color: var(--roza) !important;
}
.f2-input-wrap .f2-input.nofocus:empty + .f2-label {
  opacity: 0;
}
.f2-comment-input[placeholder]:empty::before {
    content: attr(placeholder);
    color: #555; 
}
.f2-comment-input[placeholder]:empty:focus::before {
    content: "";
}
.f2-inputdiv[placeholder]:empty::before {
    content: attr(placeholder);
    color: #888; 
}
.f2-inputdiv[placeholder]:empty:focus::before {
    content: "";
}
.f2-input-wrap textarea.f2-input {
  line-height: 1.25em;
  padding-top: 10px;
}
/* looking for */
.f2-lf-wrapper{
	display:none;
	transition: display 0.5s ease-in;
}
.f2-lf {
  padding: 10px;
  border-radius: 24px;
  margin-bottom: 10px;
  background-color: var(--black);
}
.f2-lf .f2-lf-desc {
  color: var(--bela);
}
.f2-lf .f2-sub-lookfor {
  display: none;
  margin-left: 30px;
}
.f2-lf.checked {
  background-color: var(--roza);
}
.f2-lf.checked .f2-lf-desc {
  color: var(--black);
}
.f2-lf.checked .f2-sub-lookfor {
  display: flex;
  flex-wrap: wrap;
}
.f2-lf.checked .f2-sub-lookfor .f2-lfsub1 {
  flex: 1;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:focus-within,
input:-webkit-autofill:visited,
input:-webkit-autofill:active {
  background-color: transparent !important;
  padding: 0 10px;
  top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
/* konec ANIMIRANA VNOSNA POLJA */

.ui-autocomplete.ui-menu {
    padding:10px;
    background-color: var(--black) !important;
    max-height: 300px;
    overflow:auto;
    z-index:2502 !important;
}
.ui-menu .ui-menu-item {
    list-style-image: none;
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 5px 0px;
    cursor: pointer;
    color:var(--svetlo_plava);
}




/* ** DROPDOWN ** */
.f2-dropdown {
  position: relative;
  display: flex;
}
.f2-dropdown .f2-dropbtn {
  background-color: var(--trans) !important;
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  color: var(--svetlo_plava);
}
#f2_drop {
  display: none;
  background-color: var(--black) !important;
  position: absolute;
  width: 100%;
  padding: 10px;
  margin-top: -5px;
  z-index: 60;
}
#f2_drop a {
  padding: 6px 45px;
}
#f2_sameas,
#f2_stype {
  display: none;
}
#f2_stype {
  margin-left: 30px;
}



/* ** PROGRES BAR ** */
#f2_progbar {
  background-color: var(--black) !important;
  height: 10px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 10px;
}
#f2_progbar .f2-progress {
  background-color: var(--roza);
  height: 10px;
}


/* ** CHECKBOX - horizontal big circle ** */
.f2-check_b {
  display: block;
  position: relative;
  width: 65px;
  cursor: pointer;
  color: var(--svetlo_plava);
  font-size: var(--size_normal);
  font-weight: var(--weight_normal);
}
.f2-check_b p {
  padding-top: 16px;
}
.f2-check_b input {
  display: none;
}
.f2-check_b input:checked ~ .circle_b {
  display: block;
}
.f2-check_b .circle_b {
  position: absolute;
  display: none;
  top: -10px;
  width: 65px;
  height: 65px;
  border: 1px solid var(--roza);
  border-radius: 50%;
}
.f2-check_h {
  display: block;
  position: relative;
  width: 65px;
  cursor: pointer;
  font-size: var(--size_normal);
  font-weight: var(--weight_normal);
}
.f2-check_h input {
  display: none;
}
.f2-check_h input:checked ~ .line_h {
  display: block;
}
.f2-check_h input:checked ~ .lang_h {
  color: var(--bela) !important;
}
.f2-check_h .lang_h {
  padding: 16px 0 5px;
  color: var(--svetlo_siva);
}
.f2-check_h .line_h {
  position: absolute;
  display: none;
  width: 100%;
  border-top: 2px solid var(--roza);
}
.f2-check_l {
  display: block;
  position: relative;
  cursor: pointer;
  color: var(--svetlo_plava);
  font-size: var(--size_normal);
  font-weight: var(--weight_normal);
  line-height: 52px;
}
.f2-check_l input {
  display: none;
}
.f2-check_l input:checked ~ .elipse {
  display: block;
}

.f2-check_l input:checked ~ .icon  span,
.f2-check_l input:checked ~ .icon  {color: #fff;}
.f2-check_l .elipse {
  position: absolute;
  display: none;
  left: -2px;
  top: 0px;
  width: 100%;
  height: 46px;
  border: 1px solid var(--roza);
  border-radius: 30px;
}
/* ** CHECKBOX - vertical box ** */
.f2-check {
  margin-top: 12px;
  display: block;
  text-align: left;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: var(--svetlo_plava);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.f2-check input {
  background-color: var(--bela);
  top: 0px;
  left: 0px;
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 4px;
  appearance: none;
}
.f2-check input:checked ~ .cmark:after {
  display: block;
}
.f2-check .cmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 5;
}
.f2-radio_box {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
  padding: 20px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 20px;
}
.f2-radio_box input {
  background-color: var(--bela);
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 4px;
  appearance: none;
  z-index: 5;
}
.f2-radio_box .f2-active {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background-color: var(--black) !important;
}
.f2-radio_box input:checked ~ .f2-active {
  background-color: var(--roza) !important;
}
.f2-radio_box input:checked ~ .f2-active .opis {
  color: var(--black);
}
.f2-radio_box input:checked ~ .cmark:after {
  display: block;
}
.f2-radio_box .cmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 22px;
  top: 21px;
  width: 7px;
  height: 12px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 5;
}
.f2-radio_box .f2-rdtxt {
  margin: 16px 16px 0 52px;
  position: relative;
  line-height: 24px;
}
.f2-radio_box .f2-rdtxt [class^="ff2-"]:before,
.f2-radio_box .f2-rdtxt [class*=" ff2-"]:before {
  margin: 0;
}
@media only screen and (max-width:720px) {
  .f2-radio_box .f2-rdtxt {
    display: grid;
  }
}
@media only screen and (min-width:721px) {
  .f2-radio_box .f2-rdtxt {
    display: inline-table;
  }
}
.f2-radio {
  display: block;
  margin-top: 8px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.f2-radio .cmark {
  background-color: var(--bela);
  top: 1px;
  left: 0px;
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 50%;
  appearance: none;
}
.f2-radio input {
  display: none;
}
.f2-radio input:checked ~ .cmark:after {
  display: block;
}
.f2-radio .cmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--black) !important;
  z-index: 5;
}
.f2-radio_h {
  display: block;
  margin-top: 8px;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.f2-radio_h .cmark {
  background-color: var(--bela);
  top: 1px;
  left: 0px;
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--svetlo_siva);
  border-radius: 50%;
  appearance: none;
}
.f2-radio_h input {
  display: none;
}
.f2-radio_h input:checked ~ .cmark:after {
  display: block;
}
.f2-radio_h .cmark:after {
  content: "";
  position: absolute;
  display: none;
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--roza);
  z-index: 5;
}
/* SELECT */
.f2-select {
  background-color: var(--trans) !important;
  height: 42px;
  max-width: 300px;
  color: var(--svetlo_plava);
  border: 0;
  border-bottom: 1px solid var(--svetlo_siva);
}
.f2-select:focus { border-bottom: 1px solid var(--svetlo_siva);}
.f2-select.f2-noBorder {border: none;}
.f2-select option {
  background-color: var(--black) !important;
}
.f2-select.f2-w100{
	max-width: none;
}
/* INPUT */
.f2-input {
  min-height: 48px;
  width: 100%;
  margin-top: 30px;
  background-color: var(--temno_siva) !important;
  border: 0;
  border-bottom: 1px solid var(--svetlo_siva);
}
.f2-input-wrap .f2-input.f2-comment-input {
	padding: 10px 0;
	line-height:1.2;
}



/* ** CHECKBOX - horizontal small circle ** */
.f2-check_s {
  display: block;
  position: relative;
  cursor: pointer;
  color: var(--svetlo_plava);
  font-size: var(--size_normal);
  line-height: 38px;
}
.f2-check_s input {
  display: none;
}
.f2-check_s input:checked ~ .circle_s {
  display: block;
}
.f2-check_s .circle_s {
  position: absolute;
  display: none;
  left: -12px;
  top: -7px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--roza);
  border-radius: 50%;
}


@media only screen and (max-width:460px) {
	.f2-select {width: 140px;}
	#f2_contest .f2-select {width: auto;}
}



/*Kristian Lev - popravil BP na parenta .f2-options */
.f2-options .f2-radio_box {padding: 0; border-radius: 24px; box-shadow: 0px 1px 2px #00000066;}
.f2-options .f2-radio_box input {position: absolute; top: 20px; left: 17px; width: 23px; height: 23px; border-radius: 0; display: none;}
.f2-options .f2-radio_box .cmark:after {left: 25px; top: 24px; display: none !important;}
.f2-options .f2-radio_box .f2-active {padding: 16px; position: relative; border-radius: 24px;}
.f2-options .f2-radio_box .f2-rdtxt {padding: 0 16px 0 0; margin: 0; display: flex; align-items: flex-start;}
.f2-options .f2-radio_box .f2-rdtxt i {margin-right: 10px;}
.f2-options .f2-radio_box .f2-rdtxt div .fwb {color: var(--svetlo_plava); display: block; margin-bottom: 10px;} 
.f2-options .f2-radio_box .f2-rdtxt div .opis{color: #A6A8AB;}

.f2-options .f2-radio_box input:checked ~ .f2-active .f2-rdtxt div .fwb,
.f2-options .f2-radio_box input:checked ~ .f2-active .f2-rdtxt div .opis {color: #fff;}



@media only screen and (max-width:500px) {
	.f2-options .f2-radio_box .f2-rdtxt div .fwb {margin-bottom: 5px;} 
	.f2-options .f2-radio_box .f2-rdtxt {padding: 0;}

	
}

.f2-preferences-section .f2-check {color: #fff; margin-top: 5px;}
.f2-preferences-section .f2-check.f2-highlighted {
    color: var(--roza);
    font-weight: 700;
}
















