﻿html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}
* {
    font-family: Raleway;
}

h2 {
    font-size: 32px;
}
 
input, select, textarea {
    color: white;  
}

body {
    background: #002638;
    color: white;
    margin: 0;
    width: 100%;
    height: 100vh;
}
.logo {
    margin-bottom: 40px;
    width: 100%;
    margin: 0 auto;
}
input, select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #c3d600;
    padding: 5px 10px;
    outline: none;
}
    select option {
        background-color: #002638;
    }
    input::placeholder {
        color: white;
    }

    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /*Style inputs autocomplete*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        transition: background-color 5000s ease-in-out 0s;
        -webkit-text-fill-color: #fff !important;
    }
.no-margin-bottom {
    margin-bottom: 0;
}
.no-margin-top {
    margin-top: 0;
}
    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

    /* Set padding to keep cont  ent from hitting the edges */

.colorGreen {
    color: #C3D500;
}
.descriptionInput {
    font-size: 12px;
    color: grey;
    font-style: italic;
}
.no-margin {
    margin: 0;
}
.contLogout {
    display: grid;
}

.contJustify {
    grid-row: 1/2;
}
.tittle {
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    
}
.twoColumns {
    display: grid;
    gap: 50px;
    margin-top: 40px;
    
}
.workArea, .modal {
    padding: 30px;
}
.login {
    cursor: pointer;
    border: none;
    background: #C3D500;
    padding: 5px 20px;
    color: #002638;
    /*float: right;*/
    border-radius: 40px;
}
.btnPpal {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.btnActions, .contJustify {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.btnVolver {
    text-decoration: none;
    color: #C3D500;
}
.infoCorreo {
    margin: 20px 0;
}
.contAyuda {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
.btnAyuda, .btnLogout {
    display: flex;
    column-gap: 5px;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    border: none;
}
.btnAyuda {
    color: #ffffff;
}
.btnLogout {
    color: #C3D500;
}
.iconSize{
    font-size: 30px;
}
.btnDescuento, .btnDescuentoAyuda {
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #ffffff;
    padding: 10px 20px;
}
/*Modal Ayuda*/
.contModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #002638;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease;
}
.visible {
    opacity: 1;
    visibility: visible;
    transition: all 300ms ease;
}
.modalHeader{
    display: flex;
    justify-content: flex-end;
}
.titleAyuda{
    text-align: center;
    font-size: 8px;
}
.modalBody p{
    font-size: 16px;
}
.infoNumeration {
    display: flex;
    column-gap: 5px;
}
.numeration {
    color: #C3D500;
    font-weight: bold;
    font-size: 36px;
}
.modalFooter{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.descAyuda {
    font-size: 14px;
    color: grey;
    text-align: center;
}
.btnDescuentoAyuda {
    padding: 10px;
    font-size: 12px;
    display: inline-block;
}
.logoAyuda{
    width: 200px;
}
/*Fin Modal*/
@media(min-width: 768px){
    .contModal {
        display: flex;
        justify-content: center;
    }
    .titleAyuda {
        display: flex;
        column-gap: 10px;
        justify-content: center;
        font-size: 13px;
    }
    .numeration {
        font-size: 48px;
    }
    .infoNumeration {
        column-gap: 15px;
    }
    .body-content, .modal {
        margin: 0 auto;
        /*width: 750px;*/
        max-width: 800px;
    }
    .container, .modal {
        -webkit-box-shadow: 3px 0px 22px 6px rgba(0,0,0,1);
        -moz-box-shadow: 3px 0px 22px 6px rgba(0,0,0,1);
        box-shadow: 3px 0px 22px 6px rgba(0,0,0,1);
    }
    .workArea, .modal {
        min-height: 610px;
        margin: 50px 0;
    }
    .contLogout {
        grid-template-columns: repeat(2, 1fr);
    }
    .contJustify {
        grid-row: auto;
        justify-content: space-evenly;
    }
    .logo {
        max-width: 300px;
        margin-left: -13px;
    }
    .tittle {
        text-align: start;
        font-size: 16px;
    }
    .btnPpal {
        justify-content: flex-end;
    }
    .twoColumns {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
    .infoCorreo {
        margin-top: 30px;
    }

    div.infoLogin p span a {
        text-decoration: none;
    }
}

/* Override the default bootstrap behavior where horizontal description lists
   will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
   width: 100%;
}

/*** modal *****/
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display:none;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
        background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 150ms infinite linear;
            -moz-animation: spinner 150ms infinite linear;
            -ms-animation: spinner 150ms infinite linear;
            -o-animation: spinner 150ms infinite linear;
            animation: spinner 150ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.inputGray {
    color: grey;
}


.lineText {
    line-height: 1.5;
}


