﻿@font-face {
    font-family: Avenir;
    src: url("../Fonts/AvenirLTStd-Medium.otf");
    src: url('AvenirLTStd-Medium.otf');
    src: local('AvenirLTStd-Medium'), url('AvenirLTStd-Medium.otf?#iefix') format('embedded-opentype');
}

body {
/*font-family:Avenir;*/    
}

.informacionPlan {
    color: #989793;
    font-weight:bold
}

.etiquetasNegritas {
    color: #000000;
    font-weight:bold
}

.etiquetasNegritasLarge {
    color: #000000;
    font-weight:bold;
    font-size:large;
}

.etiquetasPrecios {
    color: #388AA2;
    font-weight:bold;
    font-size:large      
}

.etiquetasPreciosSmall {
    color: #388AA2;
    font-weight:bold;
    font-size: small;      
}

.etiquetasInfo {
    color: #0066A8;
    font-weight:bold;
    font-size:small      
}

.etiquetasInfoPremium {
    color: #00C561;
    font-weight:bold;
    font-size:small      
}


.etiquetasInfoLight {
    color: #989793;
    font-weight:bold;
    font-size:small      
}

#msgSugerencia {
    color: #000000;
    font-size:small;
}



.right {
    float:right;
}

.center {
    text-align:center;
}

.botonesPago {
    color:#ffffff;
    background-color:#0066A8;
    margin:3px;
}


.btnContratarEnabled {
    color:#ffffff;
    background-color:#0066A8;
    width:9rem;

}

.btnContratarDisabled {
    color:#000000;
    background-color:#989793;
    width:9rem;
    margin:3px;
}


.botonEnvio {
    color:#ffffff !important;
    background-color:#5CB85C !important;
    width:200px;
}

.botonEnvioInfoCorreo {
    color:#000000;
    background-color:#F2F2F2;
    width:300px;
}

.cuentasBancarias {
    display:none;
}

.thTable {
    background-color:#0066A8;
    color:#ffffff;
}

.tdTable {
    background-color:#f2f2f2;
}

#cmbServicios {
    display:block;
}

.panelPlanes{
    border: 1px solid grey;
}


/*=============
    Adding tick marks
    =========================*/
.range-slider {
    flex: 1;
}

.sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

    .sliderticks span {
        display: flex;
        justify-content: center;
        width: 1px;
        height: 10px;
        background: #d3d3d3;
        line-height: 40px;
    }

/*=============
    End tick marks
    =========================*/


input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    /*  overflow: hidden;  remove this line*/
    /* New additions */
    height: 6px;
    background: #ccc;
}

    /* Thumb: webkit */
    input[type="range"]::-webkit-slider-thumb {
        /* removing default appearance */
        -webkit-appearance: none;
        appearance: none;
        /* creating a custom design */
        height: 15px;
        width: 15px;
        background-color: #2c7be5; /* #02BBDC #f50 */
        border-radius: 50%;
        border: none;
        /* box-shadow: -407px 0 0 400px #f50; emove this line */
        transition: .2s ease-in-out;
    }

    /* Thumb: Firefox */
    input[type="range"]::-moz-range-thumb {
        height: 15px;
        width: 15px;
        background-color: #2c7be5;
        border-radius: 50%;
        border: none;
        /* box-shadow: -407px 0 0 400px #f50; emove this line */
        transition: .2s ease-in-out;
    }

    /* Hover, active & focus Thumb: Webkit */

    input[type="range"]::-webkit-slider-thumb:hover {
        box-shadow: 0 0 0 10px rgba(44,123,229, .1)
    }

    input[type="range"]:active::-webkit-slider-thumb {
        box-shadow: 0 0 0 13px rgba(44,123,229, .2)
    }

    input[type="range"]:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 13px rgba(44,123,229, .2)
    }

    /* Hover, active & focus Thumb: Firfox */

    input[type="range"]::-moz-range-thumb:hover {
        box-shadow: 0 0 0 10px rgba(44,123,229, .1)
    }

    input[type="range"]:active::-moz-range-thumb {
        box-shadow: 0 0 0 13px rgba(44,123,229, .2)
    }

    input[type="range"]:focus::-moz-range-thumb {
        box-shadow: 0 0 0 13px rgba(44,123,229, .2)
    }

/*=============
    Aesthetics
    =========================*/

body {
    font-family: system-ui;
}

h1 {
    color: #4b4949;
    text-align: center;
}

.wrapper {
    color: #4b4949;
    background: #f50;
    max-width: 400px;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.range {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    height: 8rem;
    width: 90%;
    background: #fff;
    padding: 0px 10px;
}

.value {
    font-size: 26px;
    width: 50px;
    text-align: center;
}