/******************************
*   Cotizador
******************************/
.cont__cotizador + * { margin-top: 40px; }
.cot__fil +.cot__fil { margin-top: 60px; }
.fil__opt {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.fil__opt label {
    margin: 0;
    text-transform: uppercase;
    cursor: pointer;
}
.fil__opt label span {
    display: block;
    padding: 12px 20px;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    color: rgb(var(--blanco));
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-weight: 500;
    letter-spacing: .05em;
}
.fil__opt label span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--negro));
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: .3em;
    z-index: -1;
}
.fil__opt label input[type="radio"] { display: none; }
.fil__opt label input:checked + span::before {
    background: rgb(var(--gris_d));
}
.cont__info {
    margin: 0 auto;
    max-width: 450px;
    text-align: center;
    text-transform: uppercase;
}
.cont__info hr {
    margin-top:30px;
    margin-bottom:30px;
}
.info__fil + .info__fil { margin-top: 30px; }
.fil__head h4 { font-size: 20px; }
.fil__head sup {
    font-weight: bold;
    display: inline-block;
    margin-left: 3px;
    top: -.9em;
}
.price__cotiz {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.number__cot { font-size: 36px; }
.cont__range { margin-bottom: 8px; }
.cont__range .ui-slider-horizontal { height: 2px; }
.cont__range .ui-widget.ui-widget-content { border: 1px solid rgb(var(--negro), .2); }
.cont__range .ui-slider-horizontal.ui-slider-pips {
    margin-top: 50px;
    margin-bottom: 0;
}
.cont__range .ui-slider .ui-slider-handle {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    top: -4px;
    margin-left: -.15em;
    background: rgb(var(--rojo));
    border: 0;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.cont__range .ui-slider .ui-slider-handle:focus { outline: none; }
.cont__range .ui-slider-pips .ui-slider-pip { top: -.2em; }
.cont__range .ui-slider-pips .ui-slider-line {
    background: rgb(var(--negro));
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -.1em;
    margin-left: -.18em;
}
.cont__range  .ui-slider-pips .ui-slider-label {
    top: auto;
    bottom: calc(100% + 8px);
}
.cont__range .ui-slider-pips [class*=ui-slider-pip-initial] {
    font-weight: normal;
    color: #999;
}
.cont__range .ui-slider-pips:not(.ui-slider-disabled) .ui-slider-pip:hover .ui-slider-label,
.cont__range .ui-slider-pips [class*=ui-slider-pip-selected] {
    font-weight: bold;
    color: rgb(var(--negro));
}
.box__result {
    max-width: 300px;
    width: 100%;
    padding: 12px 18px;
    background: rgb(var(--rojo));
    color: rgb(var(--blanco));
    display: inline-block;
    border-radius: .3em;
}
.box__result > span {
    display: block;
    line-height: 1.2;
    font-weight: 500;
}
.info__mensua { font-size: 90%; }
.info__price { font-size: 32px; }
.cont__desglo {
    text-transform: none;
    font-size: 85%;
    color: rgb(var(--negro), .5);
    padding: 12px;
    background: rgb(var(--negro), .05);
    border-radius: .3em;
}
.cont__desglo > div + div { margin-top: 4px; }
.fel__des {
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.fel__des * + * { margin-left: 12px; }
.txt__min {
    font-size: 80%;
    opacity: .7;
}

/******************************
* Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.fil__cot { padding-bottom: 30px; }
.fil__cot > div + div { margin-top: 60px; }
.cont__graf figure {
    margin: 0 auto;
    max-width: 400px;
    width: 85%;
}
.cont__range { padding: 0 15px; }
.fil__opt {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    background: rgb(var(--blanco));
    top: 60px;
    z-index: 10;
    margin-left: -15px;
    margin-right: -15px;
}

}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.fil__cot {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.fil__cot > div {
    width: 50%;
    padding: 0 15px;
}
.cont__graf {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 45%;
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}

.img__auto { padding: 0; }

