﻿.sidebar input {
    color: #008ACF !important;
    outline: none;
}

    .sidebar input::placeholder {
        color: #008ACF;
    }

.sidebar {
    height: 100dvh;
    width: 26dvw;
    z-index: 2;
    top: 0;
    left: 0;
    color: #008ACF;
    background-color: whitesmoke;
    overflow-y: scroll;
    display: none;
    position:fixed;
    right:0;
}

.stlMenuNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    gap: 1dvw;
}

.stlFrontArrow {
    width: 1.5dvw;
}

.back-button {
    display: none;
    cursor: pointer;
    justify-content: flex-start;
    gap: 0.75rem;
    align-items: center;
}

    .back-button p {
        color: #000000;
        text-decoration: underline;
    }

    .back-button img {
        transform: rotate(180deg);
        width: 1.5dvw;
    }

.stlCloseMenu {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    align-items: center;
    cursor: pointer;
}

    .stlCloseMenu p {
        text-decoration: underline;
        color: #000000;
    }

    .stlCloseMenu img {
        width: 1dvw;
        color: #000000;
    }

.stlMenuSearchBox {
    background-color:rgba(211, 211, 211, 0.518);
    align-items: center;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    margin-right:1.5rem;
    margin-left:1.5rem;
}

    .stlMenuSearchBox img {
        width: 5%;
        color: #008ACF;
    }

    .stlMenuSearchBox input {
        flex-grow: 1;
        background-color: transparent;
        border: 0;
        color: #000000;
    }

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0%);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #008ACF;
    border-radius: 10px;
}

.menuContainer {
    padding-bottom: 11px;
    overflow: hidden;
    border-radius: 0px 10px 10px 0px;
    background-color: #b3e6ff;
    margin-right: 20px;
    color: #008BD0;
}

.menuCloseBtn {
    color: #008ACF
}

.menu-itemTag {
    display: flex;
    justify-content: space-between;
    color: #008ACF;
    text-decoration: none;
    text-align: center;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #008ACF;
}

    .menu-itemTag:hover {
        background-color: white !important;
    }

    .menu-itemTag.active {
        background-color: white !important;
    }

.menu {
    margin-top: 1.5rem;
}

@media only screen and (max-device-width: 768px) {
    .stlSidebarWidth {
        width: 100dvw !important;
    }

    .back-button img {
        transform: rotate(180deg);
        width: 3.5dvw;
    }

    .stlCloseMenu img {
        width: 3dvw;
        color: #000000;
    }
}