body {
    font-family: 'PT Sans', serif;
    min-height: 100%;
}

*::-webkit-scrollbar {
  width: 2px;
}

*::-webkit-scrollbar-track {
  background: #FBF8F8;
}

*::-webkit-scrollbar-thumb {
  background-color: #5A5757;
  border-radius: 1px;
  border: unset;
}

header {
    box-shadow: 0px 10px 20px 0px rgba(50, 50, 50, 0.10);
    height: 51px;
}

.container {
    max-width: 100%;
    padding: 0 24px 0 24px;
}

.navbar {
    display: flex;
    padding: 0;
    height: 51px;
}

.navbar > .container {
    align-items: unset;
}

.navbar-collapse {
    max-width: fit-content;
    min-width: calc(100% - 48px);
    position: absolute;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.navbar-language{
    font-size: 12px;
    color: #5A5757;
    font-weight: 400;
}

.navbar-language .dropdown-menu {
    width: 50px;
    min-width: 50px;
    padding: 0;
}

.navbar-language a{
    font-size: 12px;
    color: #5A5757;
    font-weight: 400;
}
.navbar-language .dropdown-item {
    width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 28px;
}

.brand-label {
    display: flex;
}

main > .container, main > .container-fluid
{
    padding: 24px;
}

.footer {
    background-color: #FFFFFF;
    min-height: 68px;
    font-size: 12px;
    font-weight: 400;
    color: #898686;
    padding: 27px 24px 27px 24px;
    margin-top: auto;
}

.footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

@media (min-width: 0px){
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .collapse {
        &:not(.show) {
            display: flex;
        }
    }
}

.custom-menu {
    min-width: calc(100% - 48px);

    display: flex;
    align-items: center;
    justify-content: center;

}

.custom-menu:hover {
    cursor: pointer;
}

.custom-menu .nav-link {
    display: none;
}

.custom-line {
    position: relative;
    top: -27px;
    width: 100%;
    height: 1px;
    background: #E5E5E5;
}

#customMenuDiv {
    position: absolute;
    z-index: 1;
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    gap: 32px;
    padding: 67px 24px;
}

#customMenuDiv a:not(.join) {
    color: var(--dark, #333);
    font-family: "PT Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.6px;
    text-transform: uppercase;    
}

.no-scroll {
    overflow: hidden;
}

.join {
    margin-top: 32px;
    background: #333333;
    color: #FFFFFF !important;
    text-decoration: none;
    width: 288px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:active {
    background-color: #5A5757;
}