/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
    z-index: 10;
    min-height: 500px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input,
#msform textarea,
#msform select {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #2E2E2E;
    font-weight: bold;
    color: #CBB68F;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    padding: 0;
}

#progressbar li {
    list-style-type: none;
    color: #2E2E2E;
    text-transform: uppercase;
    font-size: 9px;
	font-weight: 600;
    width: 25%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #CBB68F;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #2E2E2E;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #f7a100;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}






/****************************************************/
/****************************************************/
/****************************************************/
/****************************************************/
/****************************************************/
/****************************************************/
/****************************************************/

#seccion_agendamiento .box-radio {
    margin-bottom: 30px;
}

#seccion_agendamiento .box-radio .form-check {
    max-width: fit-content;
    padding: 0;
    display: flex;
    align-items: center;
}

#seccion_agendamiento .box-radio .form-check input {
    border-radius: 100%;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    margin-right: 10px;
}

#seccion_agendamiento .box-radio .form-check label {
    font-size: 14px;
    font-weight: 500;
}




#spinner {
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#seccion_agendamiento .box-dates {
    overflow-y: auto;
    max-height: 500px;
    transition-duration: .3s;
}

#seccion_agendamiento .hide {
    opacity: 0;
    height: 0 !important;
    min-height: inherit !important;
    transition-duration: .3s;
}

#seccion_agendamiento .box-dates::-webkit-scrollbar {
    width: 6px;
    height: 20px;
}
#seccion_agendamiento .box-dates::-webkit-scrollbar-thumb {
    background-color: #0eaeb9;
    border-radius: 5px;
}
#seccion_agendamiento .box-dates::-webkit-scrollbar-thumb:hover {
    background-color: #066168;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
#seccion_agendamiento .box-dates::-webkit-scrollbar-thumb:active {
    background-color: #4e4e4e;
}
#seccion_agendamiento .box-dates::-webkit-scrollbar-track {
    width: 4px;
    background-color: #088791;
}
#seccion_agendamiento .box-dates::-webkit-scrollbar-track:hover,
#seccion_agendamiento .box-dates::-webkit-scrollbar-track:active {
    background: #ccc;
}





#seccion_agendamiento .box-dates .box {
    background-color: aliceblue;
    padding: 10px 20px;
    transition-duration: .3s;
    margin-bottom: 10px;
}

#seccion_agendamiento .box-dates .box:hover {
    background-color: #dbeeff;
}

#seccion_agendamiento .box-dates .box > h2 {
    font-size: 18px;
    font-weight: bold;
    color: #5E7FB1;
    text-align: left;
    margin-bottom: 20px;
}

#seccion_agendamiento .box-dates .box > div {
    display: flex;
    align-items: center;
}

#seccion_agendamiento .box-dates .box img {
    width: 60px;
    height: 60px;
}

#seccion_agendamiento .box-dates .box .date {
    margin: 0 20px;
    text-align: left;
    width: 100%;
    max-width: 300px;
}
#seccion_agendamiento .box-dates .box .date h5 {
    font-size: 14px;
    font-weight: bold;
    color: #5E7FB1;
}
#seccion_agendamiento .box-dates .box .date h6 {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

#seccion_agendamiento .box-dates .box .times {
    width: 100%;
    margin-left: 20px;
}
#seccion_agendamiento .box-dates .box .times .badge {
    font-weight: bold;
    color: #ffffff;
    font-size: 12px;
    border-radius: 20px;
    background-color: #000d64;
    width: 100%;
    max-width: 70px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
    transition-duration: .3s;
}

#seccion_agendamiento .box-dates .box .times .badge:hover {
    background-color: #031ed2;
}

#seccion_agendamiento .box-dates .box .times .badge.selected {
    background-color: green;
}






#msform table td {
    font-weight: 500;
}

#msform table td.disabled {
    opacity: .2;
    pointer-events: none;
}












@media (max-width: 992px) {
    
    #msform fieldset {
        padding: 10px;
        width: 96%;
        margin: 0px 2%;
    }    

    #seccion_agendamiento .box-dates .box > div {
        flex-direction: column;
        justify-content: center;
    }

    #seccion_agendamiento .box-dates .box .date h5 {
        text-align: center;
        margin: 10px 0;
    }

    #seccion_agendamiento .box-dates .box .date h6 {
        text-align: center;
        margin-bottom: 20px;
    }

    #seccion_agendamiento .box-dates .box .times {
        margin: 0;
        justify-content: center;
    }

    #seccion_agendamiento .box-dates .box .times .badge {
        font-size: 10px;
    }

    #seccion_agendamiento .box-dates .box {
        padding: 10px 0;
    }

}