
/* VARIABLES */

:root{
    --color-white:#ffffff;
    --color-aqua:#2D8C9E;
    --color-experto:#053865;
    --color-sobra-claro-gris:#ccc;
    --color-red:red;
}




.grid-container {
    overflow-x: hidden;
}

.grid-container {
    width: 100%; 
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-aqua);
    color: var(--color-white);
    
}



@media screen and (max-width: 992px) {
    .custom-width {
        max-width:100%;
        margin: 0 auto;
    }
 }


@media screen and (max-width: 768px) {
    .custom-width {
        max-width:100%;
        margin: 0 auto;
    }
 }


@media screen and (max-width: 640px) {
    .custom-width {
        max-width:100%;
        margin: 0 auto;
    }
 }


.mb-3 {
    margin-bottom: 5rem;
}

.mb-4{
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: -5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 1rem;
}



.text-center{
    text-align: center;
}

.calculadora-title{
    color: var(--color-white);
    font-weight: bold;
}

.strong-text{
    font-size: 25px;
}

.strong-text-1{
    font-size: 20px;
}
.text-aqua{
    color: var(--color-aqua);
}

.calculadora-label{
    color: var(--color-white);
}

.btn-white{
    margin:initial !important;
    border-radius:40px !important ;
    background-color: var(--color-white);
    color: #053865;
    padding: 15px;
    font-size: 34px;
    font-weight: bold;
}

.btn-white:hover{
    background-color:var(--color-experto);
    color:var(--color-white);
}

.btn-descarga{
    margin:initial !important;
    border-radius:40px !important ;
    background-color: transparent;
    color: var(--color-white);
    padding: 15px;
    font-size: 34px;
    border: 1px solid var(--color-white);
    font-weight: bold;
}

.btn-descarga:hover{
    background-color: var(--color-white);
    color:var(--color-experto);
}

.btn-blue__expert{
    margin:initial !important;
    border-radius:40px !important ;
    padding: 15px;
    font-size: 34px;
    font-weight: bold;
    background-color: var(--color-experto);
    color: var(--color-white);
}

.btn-blue__expert:hover{
    background-color: var(--color-white);
    color: var(--color-experto);
}


.line-divider__bottom {
    border-bottom: 1px solid var(--color-sobra-claro-gris);
    margin-top: 20px;
    margin-bottom: 20px;
}

.line-divider__vertical{
    border-right: 1px solid var(--color-sobra-claro-gris);
    height: 90px;  
    margin: auto 0;
}


.line-divider__vertical--2{
    border-right: 1px solid var(--color-sobra-claro-gris);
    height: 50px;  
    margin: auto 0;
}

.red-border {
    border: 2px solid var(--color-red) !important;
}


.hide-1 {
    display: none;
}

.blue-background {
    background-color: #007BFF;
}

.calculadora-link {
    text-decoration: underline;
    color: white;
    font-weight: bold;
}

#periods_container{
    display: flex;
    flex-direction: row;
    justify-items: center;
    gap: 2vw;
    justify-content: center;
}

#puntos_a_vencer_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    width: 100%;
}

@keyframes flipX {
    0% {
      transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    }
    50% {
      transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
    }
    100% {
      transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
    }
}
.loader_container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.72);
    display: none;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    background: #FFF;
    box-sizing: border-box;
    animation: flipX 1s linear infinite;
}

.popup_container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: none;
    background-color: rgba(0, 0, 0, 0.72);
}

.popup{
    width: 50%;
    height: 50%;
    background-color: var(--color-aqua);
    border: #ffffff 3px solid;
    border-radius: 1%;
    display: flex;
    flex-direction: column;
}
.popup_error{
    font-size: 3vh;
    margin-top: 15%;
    margin-bottom: auto;
    text-align: center;
}
.popup_exit{
    margin-left: auto;
    padding-top: 0px;
    padding-right: 10px;
    font-size: 3vh
}

.popup_exit:hover{
    color: black;
    cursor: pointer;
}
  