:root {
    --primary : #0B1016;
    --headerBg : #0B1016;
    --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: 'Porsche', sans-serif;
}

body {
    margin: 0;
    background-color: #F8F8F8;
}

.container:not(.container--header):not(.container--wide) {
    width: 116.4rem;
    margin: auto;
}
.container--wide {
    width: 140rem;
    margin: auto;
}

#overlay {
    display: none;
    background: #1F1E2A66;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}
#overlay.visible {
    display: block;
}

@media (min-width: 768px) and (max-width: 1280px){
    .container:not(.container--header):not(.container--wide),
    .container--wide {
        width: calc(100% - 3.2rem);
    }
}
@media (max-width: 767px){
    .container:not(.container--header):not(.container--wide),
    .container--wide {
        width: calc(100% - 2.4rem);
    }
}


.cookies {
    display: none;
    position: fixed;
    width: 129.6rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1.6rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid #0B1016;
}
.cookies__content {
    font-size: 1.6rem;
    line-height: 120%;
}
.cookies__content a {
    font-size: 1.6rem;
    line-height: 120%;
    text-decoration: underline;
    color: inherit;
    transition: all 0.3s ease;
}
.cookies__content a:hover {
    color: #0B1016;
}
.cookies__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .cookies {
        width: calc(100% - 20rem);
    }
    .cookies__wrap {
        flex-direction: column;
    }
    .cookies__action,
    .cookies__btn.btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookies {
        width: calc(100% - 3rem);
    }
    .cookies__content,
    .cookies__content a {
        font-size: 1.4rem;
    }
    .cookies__wrap {
        flex-direction: column;
    }
    .cookies__action,
    .cookies__btn.btn {
        width: 100%;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    grid-gap: .6rem;
    height: 5.6rem;
    padding: 1.8rem 2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
    min-width: 12rem;
}
.btn--primary {
    background-color: var(--primary);
    color: white;
}