
.switch {
  display: inline-block;
  height: 17px;
  position: relative;
  width: 40px;
  margin-top: 3px;
}

.switch input {
  display:none;
}

.botonvuelo {
  background-color: #2a7a36;
  bottom: 0;
  cursor: pointer;
  left: 5px;
  position: absolute;
  right: -7px;
  top: 4px;
  transition: .4s;
}

.botonvuelo:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 10px;
  left: 3px;
  position: absolute;
  transition: .4s;
  width: 10px;
}

input:checked + .botonvuelo {
  background-color: #6081ab;
}

input:checked + .botonvuelo:before {
  transform: translateX(26px);
}

.botonvuelo.round {
  border-radius: 34px;
}

.botonvuelo.round:before {
  border-radius: 50%;
}


.select_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;

}

.select_wrap .default_option {
  position: relative;
  cursor: pointer;
  z-index: 2;

}
.select_wrap .select_ul {
  position: absolute;
  left: 0;
  width: 290px;
  background: #ffffff;
	padding: 20px;
  transform: scale(0.2);
  margin-top: 10px;
z-index: 1;
  opacity: 0;
  border-bottom: 2px solid rgb(51 150 66);
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px #0000006b;
}
@media(max-width:480px) {
 .select_wrap .select_ul {
    position: absolute;
    left: 0;
    width: auto;
	min-width: 240px;
    background: #ffffff;
    padding: 15px;
    transform: scale(0.2);
    margin-top: -5px;
    z-index: 1;
    opacity: 0;
    border-bottom: 2px solid rgb(51 150 66);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px #0000006b;
}
}


.select_wrap.active .select_ul {
  opacity: 1;
  transform: translateY(0%);
}
.select_wrap.active .select_ul:before{
    height: 0.5rem;
    left: 1.5rem;
    width: 1rem;
    bottom: 100%;
    -webkit-clip-path: polygon(50% 0%,0% 100%,100% 100%);
    clip-path: polygon(50% 0%,0% 100%,100% 100%);
    content: "";
    position: absolute;
    background-color: #fff;
    top: -7px;
	
  
}

.select_wrap .default_option:before {
content: "";
    position: absolute;
    top: 20px;
    right: 1px;
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #202020 #202020;
    transform: rotate(-45deg);

}

.select_wrap.active .default_option:before {
  top: 28px;
  transform: rotate(-225deg);
}

.select_wrap .default_option li {
 padding: 0px 0px 0px;
}



.select_wrap .select_ul li:last-of-type {
  border: none;
}

.select_wrap .option {
  display: flex;
  align-items: center;
}

.select_wrap .option .icon {
	width: auto;

    margin-right: 5px;
    font-size: 22px;
}

.select_wrap .select_ul li:hover{
  background-color: var(--hover);
}

.select_wrap .select_ul li:first-child:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.angular {
  color: var(--angular);
}

.react {
  color: var(--react);
}


.sass {
  color: var(--sass);
}
.input_pasajeros {

font-size: 14px;
    background-color: #fff;
    border: none;
    border-radius: 0;
    width: 25px;
    color: #303030;
    height: auto;
    font-weight: 600;
    margin-bottom: 0;
    box-shadow: none;
}
