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

/* Basic reset */


/* Form styles */
#msform {
    width: 400px;
    margin: 50px auto;

    position: relative;
    z-index: 1;
    justify-content: center;
    box-shadow: 0 0 10px;
    border-radius: 15px;
    padding: 2%;
    width: 100%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #121a64e0
}


fieldset:not(:first-of-type) {
    display: none;
}


/* Buttons */
#msform .action-button {
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    height: 50px;
}

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

/* Headings */
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

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

/* Progressbar */
#progressbar {
    overflow: hidden;
    margin-left: 25%;
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    width: 33.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}

/* Progressbar connectors */
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    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: #27AE60;
    color: white;
}


.btnVehiculo {
    width: 300px;
}

.previous {
    margin-right: 52%;
}


@media (max-width: 1400px) {
    .previous {
        margin-right: 44%;
    }
}

@media (max-width: 1100px) {
    .previous {
        margin-right: 34%;
    }
}

@media (max-width: 1000px) {
    .btnVehiculo {
        width: 97%;
        margin: 10px;
    }
}

/* --------------------------------------------------------------- */
/* BOTON WHATSAPP*/
/* --------------------------------------------------------------- */
.hidden {
    display: none;
}

.sticky-button {
    position: fixed;
    background-color: #25D366;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.sticky-button svg {
    margin-top: 8px;
    margin-left: 5px;
    fill: #fff;
    width: 40px;
    height: 40px;
}

.sticky-button a,
.sticky-button label {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 55px;
    height: 55px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.sticky-button label svg.close-icon {
    display: none;
}

.sticky-chat {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 320px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
}

.sticky-chat a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: #505050;

}

.sticky-chat svg {
    width: 35px;
    height: 35px;
}

.sticky-chat .chat-content {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.sticky-chat .chat-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #25D366;
    overflow: hidden;
}

.sticky-chat .chat-header:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 75px;
    background: rgba(0, 0, 0, .040);
    border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    fill: #fff;
}

.sticky-chat .chat-header .title {
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.sticky-chat .chat-header .title span {
    font-size: 11px;
    font-weight: 400;
    display: block;
    line-height: 1.58em;
    margin: 0;
    color: #f4f4f4;
}

.sticky-chat .chat-text {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 20px;
    font-size: 12px;
}

.sticky-chat .chat-text span {
    display: inline-block;
    margin-right: auto;
    padding: 10px;
    background-color: #f0f5fb;
    border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
    content: 'just now';
    display: inline-block;
    margin-left: 10px;
    font-size: 9px;
    color: #989b9f;
}

.sticky-chat .chat-text span.typing {
    margin: 15px 0 0 auto;
    padding: 10px;
    border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
    display: none;
}

.sticky-chat .chat-text span.typing svg {
    height: 13px;
    fill: #505050;
}

.sticky-chat .chat-button {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.sticky-chat .chat-button svg {
    width: 20px;
    height: 20px;
    fill: #505050;
    margin-left: auto;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
}

.chat-menu:checked+.sticky-button label {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.chat-menu:checked+.sticky-button label svg.chat-icon {
    display: none;
}

.chat-menu:checked+.sticky-button label svg.close-icon {
    display: table-cell;
}

.chat-menu:checked+.sticky-button+.sticky-chat {
    bottom: 90px;
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------- */
/* FIN BOTON WHATSAPP*/
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* CARGANDO COTIZACION*/
/* --------------------------------------------------------------- */
/* Loader styles */
.loader2 {
    position: relative;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 2px;
    width: 100px;
    height: 80px;
    margin: auto;
    margin-top: 100px;
}

.loader2>div {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(71, 80, 255);
    transform: scale(0.0);
    transform-origin: center center;
    animation: loader2 2s infinite linear;
}

.loader2>div:nth-of-type(1),
.loader2>div:nth-of-type(5),
.loader2>div:nth-of-type(9) {
    animation-delay: 0.2s;
}

.loader2>div:nth-of-type(4),
.loader2>div:nth-of-type(8) {
    animation-delay: 0.01s;
}

.loader2>div:nth-of-type(2),
.loader2>div:nth-of-type(6) {
    animation-delay: 0.4s;
}

.loader2>div:nth-of-type(3) {
    animation-delay: 0.6s;
}

@keyframes loader2 {
    0% {
        transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
    }

    80% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(0.0);
    }
}

/* --------------------------------------------------------------- */
/* FIN CARGANDO COTIZACION*/
/* --------------------------------------------------------------- */