* {
    -webkit-user-drag: none;
}

html
{
    /* Prevent element highlighting on click or touch*/
  -webkit-tap-highlight-color:transparent;
}

/* MAIN FAQ NAVBAR */
.main-heading a.main-heading_link-item {
    color: var(--white-font-color);
    display: flex;
}

a.main-heading_link-item h1, a.main-heading_link-item h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
}
a.main-heading_link-item h1 {
    margin-right: 5px;
}

/* CATEGORIES-WRAPPER */
.categories-container {
    width: 100%;
    border-bottom: var(--border);
    background-color: var(--white-font-color);
    z-index: 0;
}
.categories-container .blank_plug {
    height: 60px;
    width: 100%;
    background-color: black;
}
.categories-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    text-align: center;

    width: 100%;
    height: 50px;
    margin: 0 auto;
}

.navbar-section {
    height: inherit;
    align-items: center;
}
.navbar-section a.navbar-link {
    border-bottom: 5px solid transparent;
}

.navbar-section.active a.navbar-link {
    border-bottom-color: var(--category);
    color: var(--category);
}

.navbar-section:hover a.navbar-link {
    color: var(--black-font-color);
}

a.navbar-link {
    height: 100%;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;

    font-size: 12px;
    color: var(--inactive-link-color);

    position: relative;

    white-space: nowrap;
}
.navbar-link-block {
    display: flex;
    align-items: center;
}

img.navbar-image {
    width: 35px;
    object-fit: fill;

    margin-left: auto;
}

h3.navbar-header {
    font-size: 12px;
    margin-left: 5px;
}

/* MEDIA QUERIES */
@media screen and (min-width: 927px) {
    /* .hamburger-button {
        display: none;
    } */
}

@media screen and (min-width: 1180px) {
    .categories-menu {
        max-width: 1320px;
    }
}

@media screen and (max-width: 500px) {
    a.main-heading_link-item {
        width: 200px;
    }
}

@media screen and (max-width: 926px) {
    .categories-menu {
        max-width: 900px;
    }
}

@media screen and (max-height: 624px) and (orientation: landscape) {
    .burger-sidebar.active {
        overflow-y: scroll;
    }

    .burger-sidebar.active div.sidebar-content
    {
        width: 100%;
    }
}