#shl-cotizador *, 
#shl-cotizador *::before,
#shl-cotizador *::after {
    box-sizing: border-box;
}

#shl-cotizador {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#shl-cotizador input[type=text],
#shl-cotizador input[type=number],
#shl-cotizador select,
#shl-cotizador textarea {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
}

.shl-btn {
    position: relative;
    display: inline-block;
    background-color: #2fced6;
    border: 1px solid #2fced6;
    color: #FFF;
    text-transform: uppercase;
    line-height: 1.1em;
    border-radius: 22px;
    padding: .66em 1em;
    transition: all .3s ease;
    box-shadow: none;
    overflow: hidden;
    cursor: pointer;
}
.shl-btn.alt {
    background-color: #296870;
    border-color: #296870;
}
.shl-btn:hover {
    background-color: #0a7f8a;
    border-color: #0a7f8a;
    color: #fff;
}

.shl-msg {
    display: none;
    font-size: .9em;
    line-height: 1.2em;
    align-items: center;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    border: 0;
    box-shadow: none;
}
.shl-msg >i {
    flex: 0 0 auto;
    font-size: 24px;
    margin-right: 10px;
}
.shl-msg .text {
    flex: 1;
}
.shl-msg.error {
    display: flex;
    background-color: rgba(176, 17, 17, 0.1);
    color: #b01111;
}
.shl-msg.error i::before {
    content: "\f06a";
}
.shl-msg.ok {
    display: flex;
    background-color: rgba(17, 176, 118, 0.1);
    color: #11b077;
}
.shl-msg.ok i::before {
    content: "\f058";
}
.shl-msg.adv {
    display: flex;
    background-color: rgb(176 128 17 / 10%);
    color: #b08011;
}
.shl-msg.adv i::before {
    content: "\f06a";
}
.shl-msg a {
    color: currentColor;
    text-decoration: underline;
    font-weight: 600;
}
.shl-msg a:hover {
    color: #000;
}

/* Calendar */
#shl-calendar .header {
    position: relative;
    background-color: #00427a;
    color: #FFF;
    text-align: center;
    padding: 15px 45px;
    font-size: 1.1em;
    line-height: 1;
    text-transform: uppercase;
}
#shl-calendar .header .month-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    font-size: 24px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    outline: none!important;
    box-shadow: none!important;
    transition: all .3s ease;
}
#shl-calendar .header .month-nav .shl-loader {
    background-color: #00427a;
    color: #fff;
    font-size: 24px;
}
#shl-calendar .header .month-nav.next {
    right: 0;
    left: auto;
}
#shl-calendar .header .month-nav:hover {
    opacity: .8;
}
#shl-calendar .header .title {
    font-weight: 500;
}

#shl-calendar .table-days {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
#shl-calendar .table-days td {
    position: relative;
    line-height: 1.2em;
    padding: 12px 0;
    background-color: #f9f9f9;
    border: 1px solid #f2f2f2;
    text-align: center;
}
#shl-calendar .day-name td {
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 600;
    color: #FFF;
    background-color: #18283f;
    border-color: #18283f;
}
#shl-calendar .day-name span {
    display: none;
}
#shl-calendar .day-name td:before {
    content: attr(data-title);
}

#shl-calendar .day_num td {
    font-size: 1.1em;
    font-weight: 500;
    transition: all .3s ease;
}
#shl-calendar .day_num td.load-day {
    background-color: #FFF;
    cursor: pointer;
}
#shl-calendar .day_num td.load-day .shl-loader {
    background-color: #fff;
}
#shl-calendar .day_num .available {
    display: none;
    font-size: .7em;
}
#shl-calendar .day_num td.load-day .available {
    display: block;
}
#shl-calendar .day_num td.current {
    color: #fc8e00;
}
#shl-calendar .day_num td.opened,
#shl-calendar .day_num td.opened .shl-loader {
    background-color: #00427a;
    border-color: #00427a;
    color: #FFF;
}
#shl-calendar .day_num td:not(.opened):hover,
#shl-calendar .day_num td:not(.opened):hover .shl-loader {
    background-color: #f9f9f9;
}
#shl-calendar .day_num td.ignore {
    color: #CCCCCC;
}
#shl-calendar .details td {
    padding: 0;
    background-color: #00427a;
    border-color: #00427a;
    border-top: 0;
    border-bottom: 0;
}
#shl-calendar .details .content {
    background-color: #FFF;
    padding: 20px;
    margin: 12px;
    border-radius: 8px;
    text-align: left;
}
#shl-calendar .item-hour {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #CCCCCC;
    padding: 6px 10px;
    font-size: .9em;
    line-height: 1;
}
#shl-calendar .item-hour:first-child {
    border-top: 0;
}
#shl-calendar .item-hour:nth-child(even) {
    background-color: #f9f9f9;
}
#shl-calendar .item-hour .info {
    flex: 1;
    padding: 12px 0;
}
#shl-calendar .item-hour .info i {
    font-size: 1.1em;
    margin-right: 5px;
}
#shl-calendar .item-hour .professional {
    display: block;
    margin-top: .3em;
    font-style: italic;
}
#shl-calendar .item-hour .actions {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 12px;
}
#shl-calendar .item-hour .actions .shl-btn {
    font-size: .9em;
    text-transform: none;
}
#shl-calendar .shl-btn.new-appointment {
    margin-top: 20px;
    border: 0;
}
#shl-calendar .appointment-details p {
    margin-bottom: 0;
}

.shl-form,
.shl-form .main-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
}
.shl-form .col {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 15px;
}
.shl-form >hr {
    width: 100%;
}
.shl-form .col >p {
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 3px;
}
.shl-form .col >.desc {
    display: block;
    line-height: 1.2em;
    font-style: italic;
    font-size: .8em;
    margin: 2px 0 6px 0;
}
.shl-form .col >.desc.center {
    text-align: center;
}
.shl-form .col.required >p::after {
    content: " *";
}
.shl-form p.desc {
    margin-bottom: 10px;
    font-style: italic;
}
.shl-form fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
}
.shl-form fieldset .col:last-child {
    margin-bottom: 10px;
}
.shl-form fieldset:first-child,
.shl-form fieldset + fieldset {
    margin-top: 0!important;
}
.shl-form fieldset legend {
    font-weight: 500;
}
.shl-form .field-type-radio label,
.shl-form .field-type-checkbox label {
    margin-right: 15px;
    font-weight: 400;
}
.shl-form input[type=text]:not(.datepicker):read-only {
    opacity: .5;
}
.shl-form input[type=text]:not(.datepicker):read-only:focus {
    background: #fff;
}
.shl-form input::-webkit-outer-spin-button,
.shl-form input::-webkit-inner-spin-button {
    appearance: textfield;
    -webkit-appearance: none;
    margin: 0;
}
.shl-form input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.shl-popup {
    display: none;
    position: fixed;
    background: #0006;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 103;
    padding: 20px;
}
.shl-popup.show {
    display: block;
}
body.shl-popup-opened {
    overflow: hidden;
}
.shl-popup .wrapper {
    margin: auto;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.shl-popup .head,
.shl-popup .footer {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: 5px 5px 0 0;
}
.shl-popup .footer {
    border-radius: 0 0 5px 5px;
}
.shl-popup .main {
    flex: 0 1 auto;
    overflow: hidden;
    background: white;
    padding: 0 20px;
}
.shl-popup .main-content {
    overflow-y: auto;
    height: 100%;
}
.shl-popup .head-content {
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: 500;
    border-bottom: 1px solid;
    padding-bottom: .4em;
    text-transform: uppercase;
    color: #2fced6;
}
.shl-popup .head .close {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 40px;
    line-height: 34px;
    text-align: center;
    background-color: #2fced6;
    color: #FFF;
    font-size: 20px;
    border-radius: 50%;
    border: 3px solid #FFF;
    cursor: pointer;
    transition: all .3s ease;
}
.shl-popup .head .close:hover {
    background-color: #296870;
}
.shl-popup.loginback {
    z-index: 9999;
    background: #296870;
}
.shl-popup.loginback .head .close {
    display: none;
}

@media (min-width: 576px) {

    #shl-calendar .day_num td {
        height: 90px;
    }

}

@media (min-width: 768px) {

    .shl-form .col:not(.full):not(.half):not(.third) {
        width: 48%;
    }

    #shl-calendar .item-hour .info {
        padding-right: 40px;
    }
    #shl-calendar .item-hour .actions {
        width: auto;
        margin-bottom: 0;
    }

    .shl-popup .head,
    .shl-popup .footer {
        padding: 20px 40px;
    }
    .shl-popup .main {
        padding: 0 40px;
    }

}

@media (min-width: 1024px) {

    #shl-calendar .day-name td {
        font-size: .7em;
    }
    #shl-calendar .day-name span {
        display: block;
    }
    #shl-calendar .day-name td:before {
        display: none;
    }

}