﻿@font-face {
    font-family: 'AvenirLTProMedium';
    src: url('/Assets/fonts/SunRoad/AvenirLTProMedium.otf') format('otf'), url('/Assets/fonts/SunRoad/AvenirLTProMedium.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'AvenirLTProBook';
    src: url('/Assets/fonts/SunRoad/AvenirLTProBook.otf') format('otf'), url('/Assets/fonts/SunRoad/AvenirLTProBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.SunRoad {
    margin: 0;
    text-align: left;
    background-color: #fff;
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    font-family: 'AvenirLTProBook';
    padding-top: 50px;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.active-hr {
    border: 2px solid #00A0DC !important;
}

textarea {
    height: 150px !important;
}

.P-SR {
    margin-bottom: 1rem;
    margin-top: 0;
}

.SubTituloSR {
    font-size: 35px;
    font-family: 'AvenirLTProMedium';
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 0;
    font-weight: bold;
}

.SubTituloSR img{
        width: 25px;
    margin-right: 10px;
}

.TituloSR {
    font-family: 'AvenirLTProMedium';
    font-size: 16px;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: bold;
}

.containerSR {
    max-width: 1440px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.contentLandingSR {
    /*width: 700px;*/
    max-width: 1750px;
    margin: 30px auto;
    /*padding: 50px;*/
    padding: 0 25px;
    /*border: 1px solid #C2C2C2;*/
}

.form-controlSR {
    display: block;
    width: 100%;
    /*margin-bottom: 20px;*/
    height: 40px;
    padding: .375rem .75rem;
    font-size: 16px;
    line-height: 1.5;
    color: #707070;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #000;
    border-radius: 6px;
    transition: border-color .15s ease-in-out;
}

    .form-controlSR.full-size {
        width: 100%;
    }

    .form-controlSR.mid-sizeSR {
        width: 49%;
    }

.formularioSR {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-controlSR::placeholder {
    color: #A3A3A3;
    outline: none;
}

.form-controlSR:hover::placeholder {
    color: #000;
}

.form-controlSR:hover, .form-controlSR:focus {
    border: 1px solid #000;
    border-radius: 0;
    outline: none;
    color: #000;
}

.btnSR {
    font-size: 16px;
    background-color: #00A0DC;
    transition: all 0.5s linear;
    position: relative;
    height: 40px;
    color: #fff !important;
    width: 250px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btnSR:hover {
        background-color: #00A0DC;
    }

.space-btnSR {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.radiosOptionsSR {
    display: flex;
    width: 98%;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    margin: auto;
    /*margin-bottom: 20px;*/
}

ul {
    list-style-type: none;
    position: relative;
    padding: 0;
    margin: 0;
}

    ul li.Ajustado {
        width: 33%;
        display: block;
        position: relative;
    }

    ul li input[type=radio] {
        position: absolute;
        visibility: hidden;
    }

    ul li label {
        display: block;
        position: relative;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
        z-index: 5;
        transition: all .25s linear;
        margin-left: 20px;
    }

    ul li:hover label {
        color: #000;
    }

    ul li .check {
        display: block;
        position: absolute;
        border: 1px solid #000;
        /*border-radius: 100%;*/
        height: 22px;
        width: 22px;
        top: calc(50% - 14px);
        z-index: 5;
        transition: border .25s linear;
        cursor: pointer;
    }

    ul li:hover .check {
        border: 1px solid #000;
    }

    ul li .check::before {
        content: '';
        display: block;
        position: absolute;
        /*border-radius: 100%;*/
        height: 20px;
        width: 20px;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        margin: auto;
        transition: background .25s linear;
    }

input[type=radio]:checked ~ .check {
    border: 1px solid #000;
}

    input[type=radio]:checked ~ .check::before {
        background: #000;
    }

input[type=radio]:checked ~ label {
    color: #000;
}

/*thank you page*/

.contentLandingSR img {
    margin: 50px auto;
    display: block;
}

.contentLandingSR .SubTituloSR {
    margin-bottom: 40px;
    text-align: center;
}

.text-center {
    text-align: center;
}

.contentLandingSR span {
    display: block;
    text-align: center;
}

.center-btnSR .btnSR {
    margin: 50px auto;
}

/*cita*/

.contentCalendar {
    width: 700px;
    margin: 30px auto;
    padding: 50px;
}

/*estilos datepicker*/
.ui-widget.ui-widget-content {
    border: 1px solid #0055a1;
    width: 600px;
    margin: 20px auto;
}

.ui-datepicker .ui-datepicker-header {
    background-color: #00A0DC !important;
    padding: 15px 0px;
    border: none;
    border-radius: 0;
}

.ui-datepicker th {
    color: #A3A3A3;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 2px solid transparent;
    background: #fff;
    text-align: center;
    font-weight: normal;
    color: #454545;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 5px auto;
    font-size: 16px;
}

    .ui-state-active,
    .ui-widget-content .ui-state-active,
    .ui-widget-header .ui-state-active,
    a.ui-button:active,
    .ui-button:active,
    .ui-button.ui-state-active:hover {
        border: 2px solid #00A0DC;
        background: #fff;
        /*font-weight: normal;
    color: #ffffff;*/
    }

.ui-datepicker .ui-datepicker-next {
    background-image: url(/Assets/img/SunRoad/der-blanco.png);
    background-repeat: no-repeat;
    right: 7px;
    top: 15px;
}

.ui-datepicker .ui-datepicker-prev {
    background-image: url(/Assets/img/SunRoad/izq-blanco.png);
    background-repeat: no-repeat;
    left: 7px;
    top: 15px;
}

.ui-widget-header .ui-icon {
    background-image: none;
}

.horarios {
    /*background-color: #F5F5F5;*/
    /*background-color: #808080;*/
    padding: 10px;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid #808080;
}

.horarios p{
    margin: 0;
}

    .horarios.active {
        display: flex;
    }

    .horarios span {
        height: 40px;
        /*display: block;*/
        background-color: #fff;
        text-align: center;
        padding: 10px;
        width: 48%;
        margin: 5px 1%;
        border: 2px solid #808080;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .horarios span:hover {
            border: 2px solid #0055a1;
        }

.calendar-btnSR {
    display: none;
}

    .calendar-btnSR .btnSR {
        margin: 50px auto;
    }

    .calendar-btnSR.active {
        display: block;
    }
/*checkbox*/
.custom-control-label {
    padding: 5px 0 0 5px;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0rem;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    /*width: 22px;
    height: 22px;*/
    pointer-events: none;
    content: "";
    /*background-color: #fff;*/
    border: black solid 1px;
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 22px;
    height: 22px;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.custom-control-label::before {
    width: 22px;
    height: 22px;
    border-color: #000;
}

.custom-control-label::after {
    width: 22px;
    height: 22px;
    border-color: #8f8f8f;
}


input[type=radio]:checked ~ .custom-control-label::before {
    background: #000;
}

@media (max-width: 768px) {

    .contentLandingSR, .contentCalendar {
        width: 100%;
        padding: 25px;
    }

    .ui-widget.ui-widget-content {
        width: 100%;
    }

    .contentLandingSR .SubTituloSR {
        line-height: 1.3;
    }
}

@media (max-width: 578px) {

    .form-controlSR.mid-sizeSR {
        width: 100%;
    }

    .SubTituloSR {
        font-size: 30px;
    }

    .contentLandingSR, .contentCalendar {
        padding: 25px 15px;
    }

    .btnIdioma {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .radiosOptionsSR {
        flex-direction: column;
    }

        .radiosOptionsSR ul li {
            width: auto;
        }

    .btnSR {
        width: 100%;
    }
}
