@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body.modal-open {
    overflow: hidden;
}

header {
    width: 100%;
}

header .container-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    right: 0;
    background-color: black;
}

header .logo-header img {
    max-width: 100%;
}

header .close-icon {
    color: black;
}

header .menu-burger {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-right: 112px;
    width: 100%;
    margin-top: 10px;
}

header .menu-burger img {
    width: 32px;
    height: 100%;
}

header .menu-container {
    height: 100%;
}

header .drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff375;
    border: 1px solid #fff375;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .hidden {
    display: none;
}

header .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

header .drawer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header .menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

header .menu-list li {
    list-style: none;
}

header .menu-item {
    font-size: 36px;
    text-decoration: none;
    display: flex;
    align-items: self-start;
    font-family: "Anton", system-ui;
    color: black;
}

header .item-id {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    margin-right: 10px;
    color: red;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    header .container-header {
        padding: 16px 10px;
    }
    header .logo-header {
        width: 190px !important;
    }
    header .menu-burger img {
        width: 32px;
    }
}


/* BETWEEN 768px and 1024px */

@media (min-width: 768px) and (max-width: 1024px) {
    header .logo-header {
        width: 120px !important;
    }
}

@media (min-width: 1024px) {
    header .container-header {
        padding: 20px;
    }
}