@font-face {
    font-family: "GalanoGrotesqueBlack";
    src: url(../fonts/GalanoGrotesqueBlack.woff);
}

@font-face {
    font-family: "GalanoGrotesqueBold";
    src: url(../fonts/GalanoGrotesqueBold.woff);
}

@font-face {
    font-family: "GalanoGrotesqueMedium";
    src: url(../fonts/GalanoGrotesqueMedium.woff);
}

@font-face {
    font-family: "GalanoGrotesqueRegular";
    src: url(../fonts/GalanoGrotesqueRegular.woff);
}

@font-face {
    font-family: "GalanoGrotesqueSemiBold";
    src: url(../fonts/GalanoGrotesqueSemiBold.woff);
}



.debug {
    border: 1px solid red;
}

body {
    font-family: "GalanoGrotesqueRegular";
    height: auto;
    width: 100%;
    min-height: 100vh;
    background-image: url(../images/fondo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mainContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    margin-top: 1rem;
}

.mainRow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    margin-bottom: 1rem;
}

form {
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.281);

}

.formTitle {
    color: #00A8E7;
    font-family: "GalanoGrotesqueBlack";
    text-align: center;
    margin-bottom: 1rem;
}

.btn-enviar {
    background-color: #00A8E7;
    color: white;
    font-family: "GalanoGrotesqueBold";
    border-radius: 10px;
    width: 100%;
}

.finalPart {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: 100vh;

}

.finalImage {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    width: 50%;
    height: auto;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.281);
}

.disclaimers {
    margin-bottom: 1rem;
}

.disclaimers p {
    line-height: 1;
    font-size: 10px;
}

.disclaimers a {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}



.loading-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999;
    background-color: rgba(0, 0, 0, 0.596);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(3px);
    color: white;
    font-weight: bold;
}

.loading-block img {
    margin-bottom: 1rem;
    width: 200px;
    height: auto;
    animation: spin 2s linear infinite;
}

.loading-block h1 {
    font-size: 1.2rem;
}

.loading-block h1,
.loading-block small {
    display: none;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.multiselect-dropdown {
    width: 100% !important;
}

.multiselect-dropdown-list div {
    padding: 5px;
    display: flex;
}

@media (max-width: 720px) {
    html {
        height: 100%;
    }

    body {
        height: 100%;
        background-repeat: repeat;
    }

    .introImage {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    form {
        margin-bottom: 3rem;
    }

    .finalImage {
        width: 95%;
        height: auto;
        box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.281);
    }
}