html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none
    }

table {
    border-collapse: collapse;
    border-spacing: 0
}

html, body {
    height: 100%;
    font-family: 'Roboto',sans-serif
}

.cont-turnos {
    height: 100%
}

.cont {
    width: 96%;
    margin: 0 auto
}

.separator {
    text-indent: -9999px;
    border-top: 1px dashed #ccc;
    margin-top: 23px;
    margin-bottom: 10px
}

.transition {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.nav-bar {
    height: 70px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #2c3f6d;
    box-shadow: 0 0 8px #ccc;
    z-index: 100
}

    .nav-bar .cont {
        display: flex;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        position: relative
    }

        .nav-bar .cont .left {
            height: 100%;
            display: flex;
            justify-content: left;
            align-items: center;
            width: 100%
        }

            .nav-bar .cont .left h1 {
                font-size: 24px;
                letter-spacing: 1.2px;
                font-weight: 100;
                text-transform: uppercase;
                font-family: 'Quicksand',sans-serif
            }

                .nav-bar .cont .left h1 span {
                    font-family: 'Roboto',sans-serif;
                    display: block;
                    font-size: 12px;
                    letter-spacing: 2px;
                    font-weight: 100;
                    padding-top: 4px
                }

        .nav-bar .cont p.time {
            font-family: 'Roboto',sans-serif;
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: 100;
            position: absolute;
            right: 0
        }

.logo {
    box-sizing: border-box;
    padding: 10px 0;
    height: 100%;
    margin-right: 20px
}

    .logo img {
        max-width: 100px;
        max-height: 100%
    }

    .logo h1 {
        font-size: 26px;
        font-family: 'Quicksand',sans-serif
    }

.main-container {
    box-sizing: border-box;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 80px;
    height: 100%
}

    .main-container .cont {
        width: 100%;
        display: flex;
        height: 100%;
        overflow: hidden
    }

        .main-container .cont .box {
            height: 100%;
            width: 33.3333%;
            box-sizing: border-box;
            padding: 20px 2%;
            position: relative;
            overflow: hidden
        }

            .main-container .cont .box.active {
                overflow-y: scroll
            }

            .main-container .cont .box .block {
                height: 100%;
                width: 100%;
                background: rgba(255,255,255,.8);
                position: absolute;
                top: 0;
                left: 0;
                text-indent: -9999px;
                z-index: 1
            }

            .main-container .cont .box.active .block {
                display: none
            }

.title {
    font-family: 'Quicksand',sans-serif;
    font-size: 14px;
    color: #2c3f6d;
    letter-spacing: .2px;
    line-height: 50px;
    margin-bottom: 30px;
    font-weight: bold
}

.box .bajada {
    font-size: 12px;
    color: #999;
    letter-spacing: .3px
}

.title span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #e7e7e7;
    border-radius: 50px;
    text-align: center;
    margin-right: 6px
}

    .title span img {
        top: 4px;
        position: relative
    }

.menu-mobile {
    display: none;
    justify-content: center;
    position: absolute;
    z-index: 101;
    width: 100%;
    left: 0
}

    .menu-mobile h2 {
        margin: 6px 4px 0 4px;
        cursor: pointer
    }

    .menu-mobile .title.active span {
        background: #2c3f6d
    }

.box.time {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc
}

.box label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin: 20px 0
}

.box .servicios {
    overflow: hidden
}

    .box .servicios .options li {
        height: 50px;
        max-height: 50px
    }

.box .options li {
    padding: 0 5px;
    border-radius: 41px;
    border: 1px solid #ccc;
    margin: 0 2% 14px 0;
    cursor: pointer;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
    box-sizing: border-box;
    text-align: center;
    width: 48%;
    float: left;
    height: 45px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

    .box .options li:hover {
        background-color: #f2f2f2;
        -webkit-transition: background-color .3s ease-in-out;
        -moz-transition: background-color .3s ease-in-out;
        -o-transition: background-color .3s ease-in-out;
        transition: background-color .3s ease-in-out
    }

    .box .options li.selected {
        background-color: #4c6ab1;
        border-color: #4c6ab1;
        color: #fff;
        box-shadow: 0 0 4px #bcbcbc;
        -webkit-transition: background-color .3s ease-in-out;
        -moz-transition: background-color .3s ease-in-out;
        -o-transition: background-color .3s ease-in-out;
        transition: background-color .3s ease-in-out
    }

.box .options.client {
    display: flex;
    justify-content: space-between
}

    .box .options.client li {
        width: 31%;
        float: none;
        margin-right: 0
    }

#contenedorLabelServicio {
    clear: both;
    margin: 0 0 10px 0;
    padding: 0 0
}

#contenedorLabelModelo {
    clear: both;
    margin: 0 0 20px 0;
    padding: 10px 0
}

.new-service {
    height: 50px;
    max-height: 50px;
    padding: 0 32px 0 20px;
    border-radius: 41px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 48%;
    box-sizing: border-box;
    background-color: #4c6ab1;
    border-color: #4c6ab1;
    color: #fff;
    box-shadow: 0 0 4px #bcbcbc
}

    .new-service span {
        cursor: default
    }

    .new-service a {
        background: url("../images/ico_close_blanco.png") no-repeat center center;
        position: absolute;
        right: 6px;
        width: 25px;
        height: 25px;
        display: block;
        text-indent: -9999px;
        cursor: pointer;
        background-size: 14px;
        opacity: .6
    }

        .new-service a:hover {
            opacity: 1
        }

#listaServicios {
    display: block;
    clear: both;
    margin: 0 0 20px 0;
    padding: 10px 0
}

.box .form {
    height: calc(100% - 80px)
}

.box.time h4 {
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    padding-bottom: 30px
}

    .box.time h4 .year {
        display: inline-block;
        padding: 0 0 0 8px
    }

.box.time ul {
    width: 100%
}

    .box.time ul li {
        float: left;
        width: 20%;
        text-align: center
    }

        .box.time ul li span {
            display: block
        }

.box.time .days {
    position: relative
}

    .box.time .days .arrow {
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        text-align: center;
        cursor: pointer;
        opacity: .2
    }

        .box.time .days .arrow:hover {
            opacity: 1
        }

        .box.time .days .arrow.left {
            left: -12px;
            top: 18px
        }

        .box.time .days .arrow.right {
            right: -12px;
            top: 18px
        }

    .box.time .days ul {
        overflow: hidden;
        white-space: nowrap
    }

        .box.time .days ul li {
            font-size: 32px;
            float: left;
            -webkit-font-smoothing: antialiased
        }

            .box.time .days ul li.current-day {
                color: #4c6ab1;
                font-weight: bold;
                -webkit-font-smoothing: initial
            }

                .box.time .days ul li.current-day span {
                    color: #597cd1
                }

            .box.time .days ul li span {
                font-size: 10px;
                color: #999;
                padding-bottom: 2px
            }

.box.time .hours {
    width: 100%;
    padding-top: 20px;
    clear: both;
    height: calc(100% - 110px);
    overflow-y: scroll
}

    .box.time .hours ul {
        width: 100%;
        display: flex
    }

        .box.time .hours ul li {
            display: flex;
            flex-direction: column;
            align-items: center
        }

            .box.time .hours ul li span {
                width: 40px;
                height: 40px;
                border-radius: 40px;
                border: 1px solid #c3c3c3;
                line-height: 40px;
                font-size: 12px;
                margin-bottom: 10px;
                cursor: pointer;
                color: #999;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -o-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out
            }

                .box.time .hours ul li span:hover {
                    background-color: #f2f2f2;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -o-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out
                }

                .box.time .hours ul li span.selected {
                    background: #4c6ab1;
                    border-color: #4c6ab1;
                    color: #fff;
                    box-shadow: 0 0 4px #4e4e4e;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -o-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out
                }

.footer {
    background-color: #eef0f5;
    height: 80px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-right: 2%
}

.main-container .footer .cont {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center
}

button {
    height: 45px;
    box-sizing: border-box;
    padding: 0 40px;
    line-height: 45px;
    background-color: #4e93f5;
    color: #fff;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 300;
    text-transform: uppercase;
    border: none;
    border-radius: 55px;
    cursor: pointer;
    box-shadow: 0 0 5px #ccc
}

    button:hover {
        background-color: #4c6ab1
    }

    button:disabled, button.disabled {
        background-color: #dadada;
        color: #b3b3b3;
        cursor: default;
        box-shadow: none
    }

.cont-turnos input, .cont-turnos select, .cont-turnos textarea {
    font-family: 'Roboto',sans-serif;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 8px 6px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 10px
}

.cont-turnos textarea {
    margin-top: 20px
}

.cont-turnos select {
    height: 42px;
    color: #666;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/arrow_select.png");
    background-repeat: no-repeat;
    background-position: right center
}

.cont-turnos .autocomplete {
    height: 42px;
    color: #666;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/ico-autocomplete.png");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 25px
}

.cont-turnos .error {
    border: 1px solid #ffb96f !important;
    background-color: #fffafa !important
}

#form_Paso3 .required {
    border: 1px solid #d3dcff;
    background-color: #fcfcff
}

::-webkit-input-placeholder {
    color: #666;
    font-size: 14px
}

::-moz-placeholder {
    color: #666;
    font-size: 14px
}

:-ms-input-placeholder {
    color: #666;
    font-size: 14px
}

:-moz-placeholder {
    color: #666;
    font-size: 14px
}

.loader {
    margin: 170px auto;
    font-size: 8px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0)
}

.negrita {
    font-weight: bold !important;
}

@-webkit-keyframes load5 {
    0%,100% {
        box-shadow: 0 -2.6em 0 0 #fff,1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.5),-1.8em -1.8em 0 0 rgba(44,63,109,.7)
    }

    12.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.7),1.8em -1.8em 0 0 #fff,2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.5)
    }

    25% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.5),1.8em -1.8em 0 0 rgba(44,63,109,.7),2.5em 0 0 0 #fff,1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    37.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.5),2.5em 0 0 0 rgba(44,63,109,.7),1.75em 1.75em 0 0 #fff,0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    50% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.5),1.75em 1.75em 0 0 rgba(44,63,109,.7),0 2.5em 0 0 #fff,-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    62.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.5),0 2.5em 0 0 rgba(44,63,109,.7),-1.8em 1.8em 0 0 #fff,-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    75% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.5),-1.8em 1.8em 0 0 rgba(44,63,109,.7),-2.6em 0 0 0 #fff,-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    87.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.5),-2.6em 0 0 0 rgba(44,63,109,.7),-1.8em -1.8em 0 0 #fff
    }
}

@keyframes load5 {
    0%,100% {
        box-shadow: 0 -2.6em 0 0 #fff,1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.5),-1.8em -1.8em 0 0 rgba(44,63,109,.7)
    }

    12.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.7),1.8em -1.8em 0 0 #fff,2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.5)
    }

    25% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.5),1.8em -1.8em 0 0 rgba(44,63,109,.7),2.5em 0 0 0 #fff,1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    37.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.5),2.5em 0 0 0 rgba(44,63,109,.7),1.75em 1.75em 0 0 #fff,0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    50% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.5),1.75em 1.75em 0 0 rgba(44,63,109,.7),0 2.5em 0 0 #fff,-1.8em 1.8em 0 0 rgba(44,63,109,.2),-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    62.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.5),0 2.5em 0 0 rgba(44,63,109,.7),-1.8em 1.8em 0 0 #fff,-2.6em 0 0 0 rgba(44,63,109,.2),-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    75% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.5),-1.8em 1.8em 0 0 rgba(44,63,109,.7),-2.6em 0 0 0 #fff,-1.8em -1.8em 0 0 rgba(44,63,109,.2)
    }

    87.5% {
        box-shadow: 0 -2.6em 0 0 rgba(44,63,109,.2),1.8em -1.8em 0 0 rgba(44,63,109,.2),2.5em 0 0 0 rgba(44,63,109,.2),1.75em 1.75em 0 0 rgba(44,63,109,.2),0 2.5em 0 0 rgba(44,63,109,.2),-1.8em 1.8em 0 0 rgba(44,63,109,.5),-2.6em 0 0 0 rgba(44,63,109,.7),-1.8em -1.8em 0 0 #fff
    }
}

.message {
    text-align: center;
    font-family: 'Roboto',sans-serif;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 0 2%;
    box-sizing: border-box;
    align-items: center
}

    .message h3 {
        font-size: 40px;
        color: #4a90e2
    }

    .message h4 {
        font-size: 18px;
        margin-bottom: 20px;
        margin-top: 3px
    }

    .message p {
        font-size: 16px;
        color: #4a4a4a
    }

        .message p span {
            color: #4a90e2
        }

.ui-autocomplete {
    box-sizing: border-box;
    padding: 5px 10px;
    background: #f2f2f2;
    font-family: 'Roboto',sans-serif
}

li.ui-menu-item a {
    padding: 4px;
    display: block;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .1s ease-in-out
}

    li.ui-menu-item a:hover {
        -webkit-transition: all .1s ease-in-out;
        -moz-transition: all .1s ease-in-out;
        -o-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
        color: #fff;
        background-color: #4c6ab1
    }

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: #eef0f5
}

    ::-webkit-scrollbar-thumb:hover {
        background: #666
    }

.custom-combobox {
    width: 100%;
    position: relative;
    display: block;
    clear: both
}

.custom-combobox-toggle {
    background: url("../images/arrow_select.png") no-repeat 4px center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: 0;
    padding: 0;
    right: 0;
    width: 28px
}

.custom-combobox-input {
    margin: 0;
    padding: 5px 10px
}

.ui-helper-hidden-accessible {
    display: none;
    position: absolute;
    left: -999em
}

.ui-autocomplete {
    position: absolute !important
}

@media screen and (min-width:1440px) {
    .cont, .main-container {
        max-width: 1440px;
        margin: 0 auto
    }
}

@media screen and (max-width:980px) {
    .main-container .cont {
        box-sizing: border-box;
        padding: 0 5%;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        display: block;
        height: calc(100% - 70px)
    }

    .main-container {
        padding-bottom: 0px;
        padding-top: 70px
    }

    .menu-mobile {
        display: flex
    }

    .box h2 {
        display: none
    }

    .main-container .cont .box {
        width: 100%;
        padding-top: 70px;
        display: none
    }

        .main-container .cont .box .block {
            display: none
        }

        .main-container .cont .box.active {
            display: block
        }

        .main-container .cont .box.time {
            border: none
        }

    .box.time .hours {
        height: calc(100% - 120px)
    }

    .footer {
        height: 70px;
        z-index: 1000
    }
}

@media screen and (max-width:700px) {
    .menu-mobile {
        background-color: #fff;
        padding-bottom: 2px;
        box-shadow: 0 1px 4px #f1f1f1
    }

    .nav-bar .cont {
        display: block;
        text-align: center
    }

    .footer .cont {
        justify-content: center
    }

    .nav-bar .cont .left {
        display: block
    }

    .logo {
        position: absolute;
        left: 0
    }

    .nav-bar .cont .left h1, .nav-bar .cont .left p {
        display: block;
        width: 100%
    }

    .nav-bar .cont .left h1 {
        font-size: 20px;
        padding-top: 8px
    }

        .nav-bar .cont .left h1 span {
            padding-bottom: 5px;
            padding-top: 0
        }

    .nav-bar .cont .left p {
        font-size: 11px
    }

    .main-container .cont .box.active {
        overflow: initial
    }

    .main-container .cont .box.time {
        border: none;
        padding-bottom: 0;
        overflow: initial
    }

    .box.time .hours {
        height: initial;
        overflow: hidden
    }

    .new-service {
        width: 100%
    }
}

@media screen and (max-width:480px) {
    .box .options li {
        width: 100%
    }
}

@media screen and (max-width:980px) {
    .main-container .cont {
        box-sizing: border-box;
        padding: 0 2%;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        display: block
    }
}

@media screen and (max-width:700px) {
    .main-container .cont .box.active {
        overflow: auto;
        height: auto
    }

    .box .form {
        height: auto
    }

    .logo img {
        max-width: 64px;
    }

    button {
        width: 100%
    }

    .main-container .cont #BoxPaso_2 .form {
        height: auto;
        width: 95%;
        margin: 0 auto
    }
}

.version {
    height: 24px;
    font-size: 15px;
    vertical-align: middle;
}
/*FIXED 1.0*/
