html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html{
    box-sizing: border-box;
    font-family: Arial;
    font-size: 14px;
}
*, *::after, *::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #888;
    cursor: pointer;
}
.c-cont ul li{
    list-style: none;
}

body{
    background-color: #FFF;
    color: #888;
}

.container{
    max-width: 420px;
    margin: auto;
    padding: .5rem .8rem;
}
.button{
    padding: .5rem .8rem;
    box-shadow: 0 2px 3px rgba(0,0,0,.5);
    width: 100%;
}
.header{
    background-color: #F1F1F1;
    box-shadow: 0 2px 3px rgba(0,0,0,.5);
    position: relative;
    z-index: 1;
}
.s-content{
    background-color: #FFF;
    text-align: center;
    min-height: 72vh;
}

h1{
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
h2{
    font-size: 1.5rem;
    color: #00805D;
}
p{
    text-align: justify;
}
.aside p{
    font-size: 1.2rem;
}
label{
    
    display: inline-block;
}
.switch{
    display: none;
}
.switch:checked+nav{
    width: 80%;
    padding: 2rem;
    left: 0;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, li, a img, fieldset {
    border: 0 none;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
nav{
    background-color: #FFF;
    box-shadow: 2px 0 3px rgba(0,0,0,.5);
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    padding: 0;
    width: 0;
    overflow: hidden;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    z-index: 20;
}
nav .fa{
    font-size: 1.3rem;
}
nav a{
    cursor: pointer;
    display: block;
    position: relative;
    padding: .3rem .3rem 1rem;
}
nav a span:first-child{
    margin-right: 1rem;
}
nav a:after{
    content: "";
    background-color: #00805D;
    position: absolute;
    display: block;
    height: 2px;
    width: 0;
    left: 50%;
    bottom: .5rem;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    transition: all .1s;
}
nav a:hover{
    color: #00805D;
}
nav a:hover:after{
    left: 0;
    width: 100%;
}
nav .fa-times, .fa-navicon{
    cursor: pointer;
}
.logo{
   vertical-align: middle;
}
.logo img{
    width: 100px;
}
.bg-gray{
    background-color: #efefef;
}
.bg-green{
    background-color: #00805D;
    color: #FFF;
}
.main{
    position: relative;
}
.content{
   padding: .5rem;
}
.card,.button{
    background-color: #F5F5F5;
    box-shadow: 0 2px 3px #888;
    cursor: pointer;
    margin-bottom: 1rem;
}
.button{
    border-radius: .3rem;
    margin-bottom: 0;
    text-align: center;
}
.card{
    display: block;
    padding: .5rem;
    min-height: 5rem;
    transition: box-shadow .1s;
}
.card:hover{
    box-shadow: 0 5px 5px #888;
}
.subsection{
    /*background-color: #F3F3F3;*/
    margin: 0 0 1rem;
    padding: .5rem;
}
.principal,.aside{
    max-width: 430px;
    text-align: left;
    margin: 1rem auto;
}
.notification{
    position: relative;
    height: 5rem;
}
#btnNotificationClose{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: .5rem;
    font-size: 1.3rem;
    z-index: 1000;
}
.n-aside, .n-content{
    display: inline-block;
    vertical-align: middle;
}
.n-aside{
    background-color: #00805D;
    color: #FFF;
    font-size: 2rem;
    padding-top: 1.5rem;
    height: 100%;
    width: 5rem;
    text-align: center;
}
.n-content{
    margin-left: .5rem;
    width: 15rem;
}
.n-content h3{
    margin-bottom: .5rem;
}
.n-container{
    background-color: #EEE;
    box-shadow: 5px 5px 5px #888;
    cursor: pointer;
    font-size: .95rem;
    max-width: 95%;
    position: fixed;
    bottom: .5rem;
    right: .5rem;
    width: 320px;
    z-index: 19;
    animation-name: show;
    animation-duration: .3s;
    animation-iteration-count: 1;
}

/*Btns*/
.btn{
    display: inline-block;
    border: none;
    border-radius: .3rem;
    background-color: #00805D;
    color: #FFF;
    font-weight: bold;
    padding: .5rem .3rem;
    text-align: center;
    max-width: 368px;
    width: 100%;
}
.btn-close{
    position: absolute;
    right: 1rem;
    top: 1rem;
}

/*Position*/
.pos-rel{
    position: relative;
}

.pos-bot{
    position: absolute;
    bottom: 1.3rem;
    width: 94%;
}

/*text*/
.fs-1{
    font-size: 1rem;
}
.fs-1-2{
    font-size: 1.2rem;
}

.fs-1-3{
    font-size: 1.3rem;
}

.fs-1-5{
    font-size: 1.5rem;
}
.fs-1-8{
    font-size: 1.8rem;
}
.fs-2{
    font-size: 2rem;
}
.fs-aside{
    font-size: 2rem;
}
.t-left{
    text-align: left;
}
.t-center{
    text-align: center;
}
.t-right{
    text-align: right;
}
.t-green{
    color: #00805D;
}

.t-orange {
    color: #F68B1F;
}

.b{
    font-weight: bold; 
}
.p05{
    padding: 0.5rem;
}
.p08{
    padding: 0.8rem;
}

/*margin*/
.mb-05{
    margin-bottom: .5rem;
}
.mt-1{
    margin-top: 1rem; 
}
.mt-2{
    margin-top: 2rem; 
}

/*grid*/
.grid
{
    border: none;
    font-size: 0;
    position: relative;
}
.gridHeaderStyle td{
    text-align: left;
}
.gridItemStyle{
    font-weight: bold;
}
.gridItemStyle td{
    text-align: right;
}
.gridItemStyle .btn{ 
    padding: .1rem;
    position: absolute;
    left: 0;
    max-width: 100%;
}
.grid td{
    border: none;
    display: block;
    margin-bottom: 0;
    line-height: 2rem;
    font-size: 1rem;
}
.grid tr{
    display: inline-block;
    vertical-align: top;
    width: 50%;
}
.row{
	font-size: 0;
}
.col{
	display: inline-block;
	vertical-align: middle;
	font-size: 1rem;
}
.v-top{
    vertical-align: top;
}
.hidden{
    display: none;
}

/*controles*/
.c-cont{
    position: relative;
}
.field{
    margin-bottom: .8rem;
    position: relative;
}
.field input, .field select{
    font-size: .98rem;
    height: 1.6rem;
    border: none;
    border-bottom: 1px solid #888;
    color: #888;
    font-weight: bold;
    padding: .15rem 0;
    outline: none;
    width: 100%;
}
.field input:focus~.focus,
.field select:focus+.focus{
    left: 0;
    width: 100%;
}
.field input:focus,
.field select:focus{
    border: transparent;
}
.focus{
    position: absolute;
    left: 50%;
    display: block;
    background: #00805D;
    height: 2px;
    width: 0;
    transition: all .2s;
}
.fs-aside{
    font-size: 1.5rem;
}
.xs-c1{
    width: 8.33%;
}
.xs-c2{
    width: 16.667%;
}
.xs-c3{
    width: 25%;
}
.xs-c4{
    width: 33.33%
}
.xs-c5{
    width: 41.667%;
}
.xs-c5-5{
    width: 45.83%;
}
.os-1{
    margin-right: 4.167%;
}
.os-2{
    margin-right: 8.33%;
}
.xs-c6{
    width: 50%;
}
.xs-c6-5{
    width: 54.167%;
}
.xs-c7{
    width: 58.33%;
}
.xs-c8{
    width: 66.66%;
}
.xs-c9{
    width: 75%;
}
.xs-c10{
    width: 83.33%;
}
.xs-c10-5{
    width: 87.5%;
}
.xs-c11{
    width: 91.667%;
}
.xs-c12{
    width: 100%;
}

@media(min-width:480px){
    .ph-dual{
        display: inline-block;
        width: 41.667%;
    }
    .ph-c12{
        width: 100%;
    }
    .ph-os-1{
        margin-right: 4.1667%;
    }
    .sm-c1{
	width: 8.33%;
    }
    .sm-c2{
        width: 16.667%;
    }
    .sm-c3{
        width: 25%;
    }
    .sm-c4{
        width: 33.33%
    }
    .sm-c5{
        width: 41.667%;
    }
    .sm-c6{
        width: 50%;
    }
    .sm-c7{
        width: 58.33%;
    }
    .sm-c8{
        width: 66.66%;
    }
    .sm-c9{
        width: 75%;
    }
    .sm-c10{
        width: 83.33%;
    }
    .sm-c11{
        width: 91.667%;
    }
    .sm-c12{
        width: 100%;
    }
    .switch:checked+nav{
        width: 50%;
    }
    .s-content{
        padding: 1rem 2rem;
        box-shadow: 0 2px 3px;
        margin: auto;
        max-width: 456px;
    }
}

@media(min-width:768px){
    .md-c1{
	width: 8.33%;
    }
    .md-c2{
        width: 16.667%;
    }
    .md-c3{
        width: 25%;
    }
    .md-c4{
        width: 33.33%
    }
    .md-c5{
        width: 41.667%;
    }
    .md-c6{
        width: 50%;
    }
    .md-c7{
        width: 58.33%;
    }
    .md-c8{
        width: 66.66%;
    }
    .md-c8-5{
        width: 70.83%;
    }
    .md-c9{
        width: 75%;
    }
    .md-c10{
        width: 83.33%;
    }
    .md-c11{
        width: 91.667%;
    }
    .md-c12{
        width: 100%;
    }
    .main{
        text-align: center;
    }
    .s-content,.container{
        padding: 1rem;
        max-width: 95%;
    }
    .aside,.principal{
        display: inline-block;
        vertical-align: middle;
    }
    .aside:first-child{
        padding-right: 6rem;
    }
    .switch:checked+nav{
        width: 40%;
        max-width: 20rem;
    }
    .logo img{
        width: 130px;
    }
    .s-2col:first-child{
        padding-right: 2rem;
    }
}

@media(min-width:1024px){

    .lg-c0-5 {
        width: 3.7%;
    }
    .lg-c1{
	width: 8.33%;
    }
    .lg-c2{
        width: 16.667%;
    }
    .lg-c3{
        width: 25%;
    }
    .lg-c4{
        width: 33.33%
    }
    .lg-c5{
        width: 41.667%;
    }
    .lg-c6{
        width: 50%;
    }
    .lg-c7{
        width: 58.33%;
    }
    .lg-c8{
        width: 66.66%;
    }
    .lg-c9{
        width: 75%;
    }
    .lg-c9-5{
        width: 79.167%;
    }
    .lg-c10{
        width: 83.33%;
    }
    .lg-c11{
        width: 91.667%;
    }
    .lg-c12{
        width: 100%;
    }
    .main{
        z-index: 11;
    }
    .btn-inicio span:first-child,
    .btn-regresar span:first-child{
        margin-right: 0;
    }
    .btn-inicio, .btn-regresar{
        position: absolute;
        right: -1rem;
    }
    .btn-regresar{
        right: 1rem;
    }
    .btn-inicio span:not(:first-child),
    .btn-regresar span:not(:first-child)
    {
        display: none;
    }
    .nav-btn{
        display: none;
    }
    .container, .s-content{
        max-width: 964px;
    }
    .s-content{
        margin-top: -3rem;
    }
    .aside, .principal{
        vertical-align: middle;
        margin: 0 auto;
    }
    .aside:first-child{
        padding-right: 6rem;
    }
    .header{
        box-shadow: none;
    }
    .logo, nav {
        padding: 1rem 4.5rem 3rem;
    }
    
    nav{
        background-color: transparent;
        box-shadow: none;
        position: relative;
        left: 0;
    }
    nav a{
        cursor: pointer;
        display: inline-block;
        margin-right: 1rem;
        padding: .3rem 0;
        position: relative;
    }
    nav .fa-times{
        display: none;
    }
    .switch:checked+nav{
        width: 75%;
    }
    nav a:after{
        bottom: 0;
        content: "";
        background: #00805D;
        display: block;
        height: 2px;
        width: 0;
        position: absolute;
        left: 50%;
    }
    nav a:hover:after{
        width: 100%;
        left: 0;
        -webkit-transition: all .2s ease-in;
        -moz-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }
    nav a .fa:not(.fa-home){
        display: none;
    }
    nav a .fa-arrow-left{
        display: inline-block !important;
    }
    .content{
        margin-top: -4rem !important;
    }
}
.selector:checked +.button{
    background-color: #00805D;
    color: #FFF;
}
.dn{
    display: none;
}
#recaptcha>div{
    margin: auto;
}

/*Dialog*/
@keyframes show{
    from{
        right: -3rem;
        opacity: 0;
    }
    to{ 
        opacity: 1;
        right: 1rem;
    }
}

.ui-dialog{
    background-color: #EEE;
    border-radius: .3rem;
    box-shadow: 5px 5px 10px rgba(0,0,0,.5); 
    color: #888;
    padding: .8rem;
    width: 350px;
    max-width: 95%;
    animation-name: show;
    animation-duration: .3s;
    animation-iteration-count: 1;
    z-index: 12;
}

.ui-dialog-buttonset{
    text-align: right;
}
.ui-dialog-buttonset .ui-button{
    background-color: transparent;
    border: 1px solid #888;
    border-radius: .3rem;
    color: #888;
    cursor: pointer;
    padding: .5rem 1rem;
}
.ui-dialog-buttonset .ui-button:hover, .ui-dialog-buttonset .ui-button:active{
    background-color: #FFF;
}
.ui-dialog-content{
    display: inline-block;
    margin: 0 0 .5rem;
    vertical-align: middle;
    min-height: 4rem !important;
}
.ui-dialog-content ul{
    margin-top: .3rem;
    margin-left: 1.1rem;
}
.ui-dialog-content li{
    list-style: disc;
}
.ui-dialog-content>div, .ui-dialog-content>p{
    display: inline-block;
    font-size: .9rem;
    font-weight: normal;
    width: 80%;
    vertical-align: middle;
}
.ui-dialog-titlebar-close{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 1.3rem;
    padding: .3rem;
    position: absolute;
    top: 0;
    right: 0;
}
.ui-dialog-titlebar-close .ui-button-text{
    display: none;
}

.resumenVal {
    text-align: left;
    font-size: 11px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

    .resumenVal ul {
        margin-top: 10px;
        color: #4F4F4F !important;
    }

    .resumenVal li {
        list-style-type: circle;
        list-style-position: outside;
        font-weight: normal !important;
        white-space: normal;
        width: 270px;
        margin-left: 13px;
    }

    .resumenVal img {
        float: left;
        margin-right: 10px;
        margin-top: 5px;
        width: 15%;
    }

    .resumenVal p {
        margin-top: 5px;
        float: right;
        width: 286px;
    }

    .resumenVal a {
        float: right;
        width: 286px;
    }

    .resumenVal div {
        margin-top: 5px;
        float: right;
        overflow: auto;
        font-size: 11px !important;
    }

.ie7 .resumenVal div {
    padding-left: 3px;
    overflow: visible;
    font-size: 11px !important;
}

/*date-picker*/
.ui-datepicker{
    background-color: #F1F1F1;
    box-shadow: 0 4px 8px rgba(0,0,0,.5);
}
.ui-datepicker-title{
    font-weight: bold;
    text-align: center;
    margin-top: .5rem;
}
.ui-datepicker-month{
    margin-right: .5rem;
}
.ui-datepicker th,
.ui-datepicker td,
.ui-datepicker td a{
    text-align: center;
    padding: .3rem;
}
.ui-datepicker td:hover{
    background-color: #00805D;
}
.ui-datepicker td:hover a{
    color: #FFF;
}

.ui-datepicker-unselectable {
    color: #CCC;
}
td.ui-datepicker-unselectable:hover {
    background-color: transparent;
}
.ui-datepicker-calendar{
    margin-top: .3rem;
}
.ui-datepicker-prev::before,
.ui-datepicker-next::before{
    
    border-radius: 50%;
    
    font-family: FontAwesome;
    font-size: 1.2rem;
    display: inline-block;
    position: absolute;
    top: .5rem;
    padding: .2rem .3rem;
    width: 1.6rem;
    height: 1.5rem;
}

.ui-datepicker-prev::before
{
    left: .3rem;
    content: '\f053';
}
.ui-datepicker-next::before{
    right: .3rem;
    content: '\f054';
}
.ui-datepicker-prev .ui-icon-circle-triangle-w,
.ui-datepicker-next .ui-icon-circle-triangle-e{
    display: none;
}

/*Tooltip*/
.tooltip{
    cursor: pointer;
    position: relative;
}
.tooltip .fa-info-circle{
    font-size: 1.8rem;
}
.tool-cont
{
    content: 'a';
    display: block;
    position: absolute;
    bottom: 80%;
    right: 80%;
    background-color: #FFF;
    border: solid 1px #888;
    border-radius: .3rem;
    width: 20rem;
    padding: .2rem;
}

.footer{
    background-color: #333;
    margin-top: -3.7rem;
    padding-top: 3rem;
    z-index: -1;
    min-height: 28vh;
}
.footer ul{
    max-width: 830px;
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
}
.footer li{
    cursor: pointer;
    list-style: none;
    width: 25%;
    margin-bottom: .5rem;
    text-align: left;
    font-weight: bold;
}
.footer li a, footer a{
    color: #BBB;
    text-decoration: none;
}
.footer li:hover a{
    color: #EEE;
    font-weight: bold;
}
.footer nav{
    width: 100%;
}

.flex{
    display: flex;
}
    .space-between{
    justify-content: space-between;
}
    .wrap {
    flex-wrap: wrap;
}
.container{
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2.5rem;
    z-index: 1;
}
.autoservicio {
    max-width: 1360px;
}
.content{
    position: relative;
}
/*terminos y condiciones*/
div.terminos {
    text-align: justify !important;
    height: 350px !important;
    overflow-y: scroll !important;
    width: 930px !important;
}

ol.terminos {
    counter-reset: contadorItem !important;
}

    ol.terminos > li {
        list-style-type: decimal !important;
        margin: 2em 1em !important;
        display: block !important;
        counter-increment: contadorItem !important;
    }

        ol.terminos > li:before {
            margin-right: .2em !important;
            content: counter(contadorItem) ". " !important;
            font-weight: bold !important;
        }

    ol.terminos > ol.terminosSubLista {
        list-style-type: decimal !important;
        counter-reset: contadorItem2 !important;
    }

ol.terminosSubLista2 {
    list-style-type: lower-alpha;
    margin: 2em;
}

li.terminosSubLista2 {
    list-style-type: lower-alpha;
    margin: 1em;
}

ol.terminos > ol.terminosSubLista li {
    display: block;
    margin-left: 2em;
    margin-right: 1em;
    margin-top: 2em;
    counter-increment: contadorItem2;
}

    ol.terminos > ol.terminosSubLista li:before {
        content: counter(contadorItem) "." counter(contadorItem2);
        margin-right: .5em;
        font-weight: bold;
    }

ul.terminos li {
    list-style-type: circle;
    margin-left: 3.0em;
}

p.terminos {
    margin: 1em;
}

h1.terminos {
    margin: 1em auto 2em;
    text-align: center;
}

h2.terminos {
    margin: 2.0em;
}

h3.terminos {
    margin: 2.0em;
}

.linkterminos {
    text-decoration: underline;
    cursor: pointer
}

.invisible {
    display: none;
}
a, a:active, a:visited {
    color: #00805D;
}

    a.ui-button:visited {
        color: #555555;
    }

    a.ui-button:hover {
        color: #00805D;
    }

    a img {
        text-decoration: none;
        border: 0 none;
    }

legend {
    font-weight: bold;
}