* {
    padding: 0px;
    margin: 0px;
    margin-block-start: 0;
    margin-block-end: 0;
}
.active {
    background-color: black;
}
body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}
.grid {
    display: grid;
    grid-template-columns: 232px 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". .";
}
.sidebar {
    display: flex;
    flex-direction: column;
    background-color: #2a3647;
    height: 100vh;
    align-content: center;
    justify-content: space-around;
    position: sticky;
    top: 0;
    position: fixed;
    width: 232px;
}
.logoSidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.navigation {
    display: flex;
    flex-direction: column;
}
.navigationLinks {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}
.linkFullWidth {
    width: 100%;
    padding: 6px 0;
}
.linkFullWidth:hover {
    background-color: #35455b;
}
.linkContainer {
    display: flex;
    justify-content: center;
}
a {
    color: inherit;
    text-decoration: inherit;
}
.linkText {
    color: white;
    font-size: 16px;
}
.linkWrapper {
    gap: 8px;
    display: flex;
    align-items: center;
    width: 150px;
}
.legalLink {
    color: #a8a8a8;
    font-weight: 100;
    cursor: pointer;
}
.legalLink:hover {
    color: #29abe2;
    font-weight: bold;
}
.legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 317px;
    justify-content: flex-end;
    margin-bottom: 20px;
}
nav {
    width: 100%;
    height: 96px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    z-index: 2;
}
.navbarMobile {
    display: none;
    width: 100vw;
    height: 96px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.productLabel {
    font-weight: 500;
    margin-left: 20px;
}
.avatarWrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 20px;
}
.question {
    cursor: pointer;
}
.question:hover {
    transform: scale(1.1);
}
.dropbtn {
    color: #29abe2;
    font-weight: 700;
    padding: 10px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    height: 56px;
    width: 56px;
    border-radius: 100px;
    border: solid #2a3647 3px;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a3647;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    right: 25%;
    border-radius: 20px 0 20px 20px;
    overflow: hidden;
}
.dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #3a495f;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: #2d3153;
}
.mobileHeaderLogo {
    display: none;
}
@media (max-width: 900px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0px 0px;
        grid-template-areas: ". .";
    }
    .sidebar {
        width: 100vw;
        height: 80px;
        position: fixed;
        bottom: 0;
        flex-direction: row;
        top: unset;
    }
    nav {
        width: 100vw;
        height: 80px;
    }
    .mobileHeaderLogo {
        display: block;
        margin-left: 20px;
    }
    .productLabel {
        display: none;
    }
    .legal {
        display: none;
    }
    .navBarLogo {
        display: none;
    }
    .navigationLinks {
        flex-direction: row;
        width: 100%;
        align-items: center;
    }
    .linkText {
        font-size: 14px;
    }
    .linkWrapper {
        flex-direction: column;
        justify-content: center;
        width: auto;
        gap: 4px;
    }
}
.testBackground {
    width: 100%;
    height: 100%;
    background-color: #2d3153;
}
.background.active {
    background-color: #ff3d00;
}
.dropdown {
    position: relative;
}
.three-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-left: 10px;
}
.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #2a3647;
    margin: 2px 0;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content button {
    background-color: #ffffff;
    border: none;
    color: #2a3647;
    padding: 10px 15px;
    text-align: left;
    text-decoration: none;
    display: block;
    width: 100%;
    cursor: pointer;
}
.dropdown-content button:hover {
    background-color: #e0e0e0;
}
