:root {
    --primary : #1D738C;
    --headerBg : #FFFFFF;
    --chatBg : #ffffff;
}


html {
    font-size: 10px !important;
}

@media (max-width: 1280px) {
    html, body * {
        outline: transparent !important;
        user-select: none;
    }
}

@media screen and (min-width: 577px) and (max-width: 1280px) {
    html {
        font-size: calc(100vw / 92) !important;
    }
}

@media (max-width: 576px) {
    html {
        font-size: calc(100vw / 37.5) !important;
    }
}

html, body * {
    font-size: 1.6rem;
    line-height: normal;
    box-sizing: border-box;
    font-family: 'NotoSans', sans-serif;
}

body {
    margin: 0;
}

.container {
    width: 97.6rem;
    margin: auto;
}

.dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
}
.dropdown:after {
    content: '';
    position: absolute;
    right: 2rem;
    top: calc(50% - 1.2rem);
    background-image: url("/assets/img/arrow-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 2.4rem;
    height: 2.4rem;
}
.dropdown.opened:after {
    transform: rotate(180deg);
}
.dropdown__value {
    cursor: pointer;
}
.dropdown__list{
    display: none;
    flex-direction: column;
    grid-gap: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .25rem);
    background-color: #F3F3F3;
    border: 1px solid #F3F3F3;
    padding: 1.4rem 2rem;
    z-index: 1001;
    outline: none;
    user-select: none;
    border-radius: 2rem;
    box-shadow: 3px 5px 15px rgba(0,0,0,.25);
}
.dropdown__list-item {
    cursor: pointer;
    transition: .2s ease-in-out;
}
.dropdown__list-item:hover {
    color: var(--primary);
}