body.modal-open {
  overflow: hidden;
}

.hidden{
    display: none !important;
}

body{
    background-color: transparent !important;
    background-image: url("/FONDOS-19.jpg");
    background-size: cover;
    background-repeat: repeat-y;
}

*{
    font-size: inherit;
    font-family: 'Expressway', sans-serif;
}

.page-title{
    font-family: "Overpass", sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--main-black);
    margin-block: 1em;
}

.page-title.light{
    color: var(--main-white);
}

.mobile-header-main-div{
    position: -webkit-sticky;
    position: sticky;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    padding: 7.5px 15px 0px 15px;
    background-color: var(--alternative-light-background);
    font-size: 10px;
    .header-main-links{
        display: flex;
        align-items: center;
        gap: 20px;
        .header-main-link:not(#header-home-link) {
            display: none;
        }
        #header-home-link > svg{
            color: var(--main-black);
        }
        .header-main-link{
            font-size: 1.8em;
            font-weight: 700;
            color: var(--main-black);
            text-decoration: none;
            &:hover{
                text-decoration: none;
            }
        }
    }
    .info-div{
        height: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        padding-block: 7px;
        .info-icon{
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1/1;
            height: 100%;
            border-radius: 50%;
            /* background-color: var(--main-white); */
            .contact-image,svg{
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }
        }
        .profile-div{
            position: relative;
            cursor: pointer;
            .logout-button{
                display: none;
                position: absolute;
                bottom: -55px;
                right: -5px;
                padding: 7.5px 15px;
                font-size: 16px;
                font-weight: 700;
                color: var(--main-white);
                background-color: var(--dark-background);
                border-radius: 15px;
                width: 100px;
                align-items: center;
                justify-content: center;
                border: 2px solid var(--dark-background);
            }
            .logout-button.open{
                display: flex;
            }
        }
    }
}

.mobile-header-main-div.hide{
    display: none;
}

.mobile-footer-menu{
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100px;
    padding: 20px 20px 20px 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 100px 0px rgba(158, 161, 174, 0.15);
    .footer-main-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
        height: 100%;
        border-radius: 50%;
        background-color: var(--dark-background);
        padding: 15px;
    }
    .footer-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
        height: 60%;
    }
    .footer-icon:not(.selected) > svg {
        color: var(--alternative-light-background)
    }
    .footer-icon.selected > svg{
        color: var(--dark-background);
    }
}

.mobile-footer-menu.hide{
    display: none;
}

.pva-floating-style{
    display: none !important;
}

.row.sectionBlockLayout.text-start{
    display: none !important;
}

a{
    text-decoration: none !important;
}

.not-found-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    .no-results-img{
        width: 100%;
        max-width: 200px;
        height: auto;
        object-fit: cover;
        margin-top: 50px;
    }
    span{
        font-size: 2em;
        font-weight: 500;
        color: var(--main-black);
        margin-top: 1em;
        font-family: "Space Grotesk", sans-serif;
    }
}

.card-title-sm{
    display: none;
}


.custom-card{
    display: flex;
    background-color: var(--dark-background);
    width: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 1.5em;
    padding: 1em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    border: 2px solid transparent;
    .custom-card-content{
        display: flex;
        align-items: center;
        gap: 1.5em;
        width: 100%;
        justify-content: space-between;
        max-width: 700px;
        .partner-logo{
            object-fit: cover;
            width: 5em;
            min-height: 20px;
            min-width: 20px;
            border-radius: 50%;
            /* border: 2px solid var(--secondary-color-blue); */
            /* padding: 5px; */
        }
        .card-details{
            display: flex;
            flex-direction: column;
            flex: 1;
            :hover{
                text-decoration: none;
            }
            .card-title{
                font-size: 1.7em;
                font-weight: 700;
                color: var(--secondary-color-grey);
                text-align: center;
            }
            .card-title-sm{
                text-align: center;
                font-size: 1.7em;
                font-weight: 700;
                color: var(--secondary-color-grey);
            }
            .card-presubtitle{
                text-align: center;
                font-size: 1.2em;
                font-weight: 400;
                color: var(--secondary-color-grey);
                .card-subtitle{
                    font-size: 1em;
                    font-weight: 400;
                    color: var(--secondary-color-grey);
                }
            }
        }
    }
    > svg:last-of-type{
        color: var(--secondary-color-grey);
        max-width: 2.4em;
        max-height: 2.4em;
        width: 100%;
    }
    .status-img{
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 10px;
        object-fit: contain;
        background-color: var(--alternative-light-background);
    }
    /* .status-img.draft{
        background-color: var(--secondary-color-grey);
    }
    .status-img.pending{
        background-color: var(--alternative-light-background);
    }
    .status-img.approved{
        background-color: var(--succes-color);
    }
    .status-img.rejected{
        background-color: var(--error-color);
    } */
}
a.custom-card:hover{
    text-decoration: none !important;
    border: 2px solid var(--secondary-color-blue);
}

.custom-card.draft::after{
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 2em; */
    font-weight: 700;
    content: " ";
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' class='bi bi-pencil-square' viewBox='0 0 16 16'%3E%3Cpath d='M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z'/%3E%3Cpath fill-rule='evenodd' d='M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z'/%3E%3C/svg%3E"); */
    background-image: url("/NOTE.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    min-height: 40px;
    border-radius: 50px;
    background-color: var(--secondary-color-grey);
    color: var(--alternative-light-background);
}
.custom-card.approved::after{
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 2em; */
    font-weight: 700;
    content: " ";
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23000' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E"); */
    background-image: url("/TICK.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    min-height: 40px;
    border-radius: 50px;
    background-color: var(--succes-color);
    color: var(--main-white);
}
.custom-card.pending::after{
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 2em; */
    content: " ";
    font-weight: 700;
    /* background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%2333363F' stroke-width='2'/%3E%3Cpath d='M16.5 12H12.25C12.1119 12 12 11.8881 12 11.75V8.5' stroke='%23FF8800' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E "); */
    background-image: url("/CLOCK.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    min-height: 40px;
    border-radius: 50px;
    background-color: var(--alternative-light-background);
    color: var(--main-white);
}

.custom-card.rejected::after{
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 2em; */
    content: " ";
    font-weight: 700;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' class='bi bi-x-octagon' viewBox='0 0 16 16'%3E%3Cpath d='M4.54.146A.5.5 0 0 1 4.893 0h6.214a.5.5 0 0 1 .353.146l4.394 4.394a.5.5 0 0 1 .146.353v6.214a.5.5 0 0 1-.146.353l-4.394 4.394a.5.5 0 0 1-.353.146H4.893a.5.5 0 0 1-.353-.146L.146 11.46A.5.5 0 0 1 0 11.107V4.893a.5.5 0 0 1 .146-.353zM5.1 1 1 5.1v5.8L5.1 15h5.8l4.1-4.1V5.1L10.9 1z'/%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E"); */
    background-image: url("/CROSS.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    min-height: 40px;
    border-radius: 50px;
    background-color: var(--error-color);
    color: var(--main-white);
}

.custom-select{
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: start;
    position: relative;
    max-width: 100%;
    button:focus:not(:focus-visible) {
        outline: none;
    }
    .custom-select-label{
        font-size: 1.7em;
        font-weight: 600;
        color: #fff;
    }
    .select-button{
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7.5px 15px;
        border-radius: 50px;
        border: 2px solid var(--dark-background);
        width: 100%;
        gap: .5em;
        .selected-value{
            font-size: 1.5em;
            font-weight: 600;
            color: var(--main-black);
            text-align: start;
            text-wrap: nowrap;
        }
        svg{
            color: var(--main-black);
            transform: rotate(90deg);
            transition: all 0.2s ease-in-out;
            width: 1.5em;
        }
    }
    .custom-select-dropdown{
        background-color: var(--alternative-light-background);
        position: absolute;
        top: 110%;
        left: 0;
        border: 2px solid var(--dark-background);
        border-radius: 15px;
        list-style: none;
        padding: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        z-index: 99;
        min-width: 100%;
        max-height: 80dvh;
    }
    .custom-select-dropdown.hidden{
        display: none;
        overflow: visible;
    }
    .custom-select-dropdown::-webkit-scrollbar {
        margin-left: 5px;
        width: 0;
    }
    .custom-select-dropdown::-webkit-scrollbar-track {
        margin-top: 20px;
        margin-bottom: 20px;
        background: transparent;
        border-radius: 25px;
    }
    .custom-select-dropdown::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 25px;
    }
    .custom-select-dropdown li {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        padding: 10px;
        cursor: pointer;
        color: var(--secondary-color-blue);
        font-size: 1.7em;
        font-weight: 600;
        text-wrap: nowrap;
        img{
            width: 40px;
            height: 40px;
            object-fit: cover;
        }
    }
    .custom-select-dropdown li.selected {
        background-color: var(--dark-background);
        color: var(--main-white);
        font-weight: bold;
    }
    .custom-select-dropdown li:hover,
    .custom-select-dropdown li:focus {
        color: var(--main-white);
        background-color: var(--secondary-color-blue);
    }

    .options-list{
        background-color: var(--alternative-light-background);
        top: 110%;
        left: 0;
        border: 2px solid var(--dark-background);
        list-style: none;
        padding: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        z-index: 99;
        width: 100%;
        max-height: 60dvh;
    }

    .options-list::-webkit-scrollbar {
        margin-left: 5px;
        width: 0;
    }
    .options-list::-webkit-scrollbar-track {
        margin-top: 20px;
        margin-bottom: 20px;
        background: transparent;
        border-radius: 25px;
    }
    .options-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 25px;
    }

    .dropdown-buttons-div{
        display: flex;
        align-items: center;
        width: 100%;
        .dropdown-button{
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 7.5px 15px;
            /* border: 2px solid var(--dark-background); */
            border: none;
            width: 100%;
            font-size: 1.5em;
            font-weight: 600;
            color: var(--main-black);
            &:hover{
                background-color: var(--secondary-color-blue);
                color: var(--main-white);
                cursor: pointer;
            }
        }
        .dropdown-button.selected{
            background-color: var(--dark-background);
            color: var(--main-white);
            &:hover{
                background-color: var(--secondary-color-blue);
                color: var(--main-white);
                cursor: pointer;
            }
        }
    }
}
.spinner-container{
    font-size: 10px;
    display: none;
    position: absolute;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    align-items: center;
    justify-content: center;
    gap: 2em;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    *{
        font-size: inherit;
    }
}

.spinner-container.open{
    display: flex !important;
}

.spinner-border {
    position: relative;
    --bs-spinner-width: 4rem;
    --bs-spinner-height: 4rem;
    --bs-spinner-vertical-align: -0.125e;
    --bs-spinner-border-width: 0.3em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-bord;
    border: var(--bs-spinner-border-width) solid var(--secondary-color-blue);
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

.retrieving-data-text{
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    width: 100%;
    color: var(--secondary-color-blue);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#privateModeText{
    display: none !important;
}

.iframe-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}

.terms-conditions-iframe{
    width: 50%;
    height: 85dvh;
    border: 2px solid var(--dark-background);
    background-color: var(--alternative-light-background);
    border-radius: 10px;
    min-width: 1000px;
}

.reg-button{
    background-color: var(--dark-background);
    color: var(--main-white);
    font-size: 1.5em;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
}

.reg-button.reject{
    background-color: var(--error-color);
}

.reg-buttons-container{
    margin-block: 2em;
    display: flex;
    gap: 20px;
}

.page-title{
    align-self: center;
    h1{
        text-align: center;
        font-size: 2em;
        font-weight: 700;
        color: var(--main-black);
    }
}

@media (max-width: 600px) {
    .card-title-sm{
        display: block;
    }
    .card-title{
        display: none;
    }
    .terms-conditions-iframe{
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .terms-conditions-iframe{
        min-width: 0;
        width: 100%;
        h1{
            font-size: 1.5em;
        }
    }
}

@media (min-width: 1200px) {
    .mobile-footer-menu{
        display: none;
    }
    .header-main-link:not(#header-home-link) {
        display: block !important;
    }
}