html, body {
    margin: 0;
    padding: 0;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    background: linear-gradient(to right, #CD4C8A, #E3938C);
    display: flex;
    font-family: Arial, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.main-body {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
}

.content-area {
    padding-bottom: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-basis: 66.667%;
    overflow: hidden;
}

.descriptionbox {
    padding: 10px 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    min-height: 200px;
    max-height: 90vh;
    margin: 60px 60px 13px;
    box-sizing: border-box;
}

.description-container {
    overflow-y: auto;
    padding-top: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.description-title {
    font-size: 22px;
    color: #D9006A;
}

.cyclib-logo {
    margin-top: 40px;
    height: 176px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    align-self: flex-end;
}

.hamburger-menu {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: transparent;
    color: white;
    padding: 15px 20px, 20px;
    font-size: 30px;
    border: none;
    cursor: pointer;
    z-index: 1500;
}

.logo-visible {
    display: none;
    position: fixed;
    top: 10px;
    left: 20px;
    height: 40px;
    width: auto;
    z-index: 1500;
}


#hamburgerSideMenu {
    width: 80%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -80%;
    background: linear-gradient(to right, #CD4C8A, #E3938C);
    box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
    transition: left 0.3s ease;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


#hamburgerSideMenuLogo {
    width: 160px;
    padding: 20px;
    align-self: flex-end;
    margin-bottom: 60px;
}

#hamburgerSideMenu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}

/* Side Menu */
#siteSideMenu {
    flex-basis: 33.333%;
    background-color: transparent;
    padding-top: 70px;
    align-items: flex-end;
    max-width: 500px;
}

#sideMenuContent {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-left: 20px;
}

#sideMenuLogo {
    margin-top: 10px;
    height: 176px;
    width: auto;
    margin-bottom: 20px;
}

#sideMenuToolLink,
#sideMenuAboutUsLink,
#sideMenuAimsLink,
#sideMenuSuggestionsLink,
#sideMenuHowToLink {
    margin-top: 10px;
    text-align: right;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 1em;
    font-weight: bold;
    font-size: 26px;
    margin-right: 45px;
}

#sideMenuToolLink:hover,
#sideMenuAboutUsLink:hover,
#sideMenuAimsLink:hover,
#sideMenuSuggestionsLink:hover,
#sideMenuHowToLink:hover {
    text-decoration: underline;
    cursor: pointer;
}

#siteFooter {
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#footerContent {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.footer-section {
    display: flex;
    align-items: center;
}

#footerDevelopedBy,
#footerSponsoredBy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 10px;
    color: #D9006A;
    font-size: 12px;
}

#developedByLogo {
    max-height: 40px;
    max-width: 100%;
}

#sponsoredByLogo {
    max-height: 40px;
    max-width: 100%;
    width: auto;
}

#footerLegal {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 60px;
}

.footer-link,
.pipe {
    color: #C71069;
    text-decoration: none;
    margin: 0 5px;
}

/* Welcome Modal */

#welcomeModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#welcomeModalContent {
    background: white;
    padding: 4%;
    border-radius: 10px;
    width: 70%;
    height: 360px;
    text-align: center;
    position: relative;
    overflow-y: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#welcomeModalLogo {
    width: 20%;
    height: auto;
    margin-bottom: 20px;
}

#welcomeModalHeader, #welcomeModalSubheader {
    color: #CD4C8A;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

#welcomeModalSubheader {
    color: #333;
    font-size: 46px;
    font-weight: 100;
}

#welcomeModalDisclaimer {
    color: #555;
    font-size: 10px;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

#welcomeModalYesButton, #welcomeModalNoButton {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    width: 100px;
}

#welcomeModalYesButton {
    background-color: #B84369;
    color: #fff;
}

#welcomeModalNoButton {
    background-color: #B84369;
    color: #fff;
}

#welcomeModalFooter {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

#welcomeModalSponsoredBy, #welcomeModalDevelopedBy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #D9006A;
    font-size: 12px;
    padding: 0 80px;
}

#welcomeModalSponsoredBy img, #welcomeModalDevelopedBy img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95%;
        padding: 15px;
    }
    .hamburger-menu {
        display: block;
    }
    .logo-visible {
        display: block;
    }
    
    .side-menu {
        width: 250px;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        background-color: #fff;
        transition: left 0.3s;
        z-index: 1400;
    }
    .descriptionbox {
        padding: 10px 40px;
        height: calc(100vh - 60px - 40px - 10px);
        margin: 60px 5px 100px 5px;
    }
    .content-area {
        display: flex;
        flex-direction: center;
        flex-basis: 100%;
        margin: 0px;
        overflow: none;
    }
    #welcomeModalContent {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        padding: 0px;
    }
    #footerDevelopedBy,
    #footerSponsoredBy {
        padding: 2px;
        font-size: 4px;
    }

    #developedByLogo {
        max-height: 10px;
        max-width: 100%;
        height: auto;
        width: auto;
    }
    
    #sponsoredByLogo {
        max-height: 12px;
        max-width: 100%;
        height: auto;
        width: auto;
    }

    #footerLegal {
        margin-right: 2px;
        font-size: 8px;
    }
    #siteFooter {
        height: 40px;
    }
    #footerContent {
        height: 40px;
    }
    #welcomeModalSponsoredBy img, #welcomeModalDevelopedBy img {
        height: 20px;
    }
    #welcomeModalSponsoredBy, #welcomeModalDevelopedBy {
        font-size: 8px;
        padding: 0 10px;
    }
    #welcomeModal {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    #siteFooter {
        width: calc(100% - 10px);
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 769px) and (max-width: 1300px) {
    #siteSideMenu {
        flex-basis: 33.333%;
        background-color: transparent;
        padding-top: 70px;
        align-items: flex-end;
        max-width: 500px;
    }

    #sideMenuContent {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        margin-left: 20px;
    }

    #sideMenuLogo {
        margin-top: 10px;
        height: 126px;
        width: auto;
        margin-bottom: 20px;
    }

    #sideMenuToolLink,
    #sideMenuAboutUsLink,
    #sideMenuAimsLink,
    #sideMenuSuggestionsLink,
    #sideMenuHowToLink {
        font-size: 22px;
    }
}
.lawwwing-consent-edit {
    cursor: pointer;
}

/* Cookie banner */
