/* Global settings */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body{
    overflow-x: hidden;
    background-color: var(--Platonic);
    height: 100vh;
}

:root{
    --Platonic: #F5F5F5;
    --Tło: #171940;
    --Napisy_główne: #171940;
    --Napisy: #D9B97E;
}

/* Nav settings */

.hamburger {
    display: flex;
    cursor: pointer;
    border: none;
}

.nav-menu{
    width: 100%
}

/* Left section FIXED */

.left-section-search-box {
    width: calc(100% - 76px);
}

.left-side-filtrs {
    width: 76px;
}

.left-section-search-bar {
    margin-left: 5px;
}

/* Cookie banner */

.cookie-banner {
    bottom: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 0;
}