.toolbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(35, 43, 59);
    height: 56px;
}

.toolbar_navigation-links {
    font-size: 16px;
}

.toolbar__navigation {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 1rem;
}

.toolbar__logo {
    margin-left: 0.5rem;
}

.toolbar__logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.toolbar_navigation-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.toolbar_navigation-items a {
    color: white;
    text-decoration: none;
}

.toolbar_navigation-items li {
 padding: 0 0.5rem;
}

.toolbar_navigation-items a:hover,
.toolbar_navigation-items a:active {
    color: orange;
    cursor: pointer;
}

.spacer {
    flex: 1;
}

@media (max-width: 989px) {
    .toolbar_navigation-items {
        display: none;
    }
}

@media (min-width: 990px) {
    .toolbar__toggle-button {
        display: none;
    }

    .toolbar__logo {
        margin-left: 0;
    }
}
.toggle-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    background: transparent;
    border: none;
    padding: 0;
    box-sizing: border-box;
}

.toggle-button:focus {
    outline: none;
}

.toggle-button__line {
    width: 30px;
    height: 3px;
    background: white;
}

.toggle-button:hover {
    cursor: pointer;
}
.backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    top: 0;
    left: 0;
}
.side-drawer {
    position: fixed;
    height: 100%;
    background: white;
    box-shadow: 1px 0px 7px rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 300px;   
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.side-drawer ul {
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-drawer li {
    margin: 0.5rem 0;
}

.side-drawer a {
    color: #521751;
    text-decoration: none;
    font-size: 1.2rem;
}

.side-drawer a:hover,
.side-drawer a:active {
    color: #FA923F;
}

.side-drawer.open {
    transform: translateX(0);
}

@media (min-width: 989px) {
    .side-drawer {
        display: none;
    }
}
