:root {
    --primary : #00CABF;
    --headerBg : #EFEFEF;
    --chatBg : #D5F3F4;
}


html {
    font-size: 10px !important;
}

@media (max-width: 1280px) {
    html, body * {
        outline: transparent !important;
        user-select: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
    html {
        font-size: calc(100vw / 92) !important;
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 37.5) !important;
    }
}

html, body * {
    font-size: 1.6rem;
    line-height: normal;
    box-sizing: border-box;
    font-family: 'Haval', 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);
}



.info-widget {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    border-radius: 1rem 1rem 0 0;
    background-color: #000;
    z-index: 10000000001;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.66);
    height: 7.6rem;
    overflow: hidden;
}
.info-widget__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-widget__content p{
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    margin: 0 0 1rem;
}
.info-widget__content a{
    font-size: 2rem;
    font-weight: 600;
    line-height: 2rem;
    color: #fff;
    text-decoration: none;
}
@media(max-width: 767px){
    .info-widget{
        display: none;
        bottom: env(safe-area-inset-bottom, 0);
    }
}
