/*SWITCH MONEDA*/
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 15px;
}
.switch input {
opacity: 0;
width: 35px;
height: 15px;
}
.slider {
position: absolute;
cursor: pointer;
text-align: center;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #ccc;
border-radius: 2px;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 11px;
width: 6px;
left: 1px;
top: 1px;
border-radius: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}

input:checked + .slider {
background-color: #121066;
}

input:focus + .slider {
box-shadow: 0 0 1px #121066;
}
input:checked + .slider:before {
-webkit-transform: translateX(25px);
-ms-transform: translateX(25px);
transform: translateX(25px);
}
#dolar{
    position: absolute;
    right: 3px;
    font-size: 9px;
    font-weight: bold;
}
#cop{
    position: absolute;
    left: 3px;
    font-size: 9px;
    font-weight: bold;
    color: white;
    display: none;
}

/*SWITCH IVA*/
.switchIVA {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 15px;
}
.switchIVA input {
opacity: 0;
width: 55px;
height: 15px;
}
.sliderIVA {
position: absolute;
cursor: pointer;
text-align: center;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #ccc;
border-radius: 2px;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.sliderIVA:before {
position: absolute;
content: "";
height: 11px;
width: 6px;
left: 1px;
top: 1px;
border-radius: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}

input:checked + .sliderIVA {
background-color: #121066;
}

input:focus + .sliderIVA {
box-shadow: 0 0 1px #121066;
}
input:checked + .sliderIVA:before {
-webkit-transform: translateX(45px);
-ms-transform: translateX(45px);
transform: translateX(45px);
}
#sin_iva{
    position: absolute;
    right: 3px;
    font-size: 9px;
    font-weight: bold;
}
#con_iva{
    position: absolute;
    left: 3px;
    font-size: 9px;
    font-weight: bold;
    color: white;
    display: none;
}