@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(55, 50, 59);
}

::-webkit-scrollbar-thumb {
    background: #c7b8b8;
    border-radius: 10px;
}

.top {
    background-color: rgb(0, 149, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 10px;
}

.left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left label {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.2px;
}

.left label a {
    color: #fff;
    letter-spacing: 0.8px;
}

i.fa-bars {
    display: none;
    margin-right: 10px;
    font-size: 23px;
    color: #fff;
    cursor: pointer;
}

.left input[type="checkbox"] {
    display: none;
}

.right .links {
    display: flex;
    gap: 2px;
}

.right .links a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.7px;
    padding: 3px 5px;
    border-radius: 5px;
    transition: 0.4s ease-in-out;
}

.right .links a:hover {
    color: rgb(0, 0, 0);
    background: #fff;
}

.right .links a:nth-child(4):hover {
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.otherOptions {
    margin-top: 10px;
    position: absolute;
    background-color: rgb(0, 149, 255);
    right: 122px;
    border-radius: 0 0 8px 8px;
    border-left: 3px solid black;
    border-bottom: 3px solid black;
    border-right: 3px solid black;
    display: none;
}

.otherOptionsActive {
    display: block;
}

.optionLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.optionLinks a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    transition: 0.3s ease-in-out;
    width: 100%;
    padding: 5px 13px;
}

.optionLinks a:hover {
    background: #352e2e;
}

.sideBarMenu {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sideBarMenuActive {
    display: block;
}

.sideBarMenuComponents {
    background: #000;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

i.fa-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 25px;
    top: 45px;
    transition: 0.3s ease-in-out;
}

i.fa-close:hover {
    color: red;
}

.sideBarOptions {
    position: absolute;
    margin-top: 155px;
    margin-left: 320px;
}

.sideBarMenuLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.sideBarMenuLinks a {
    color: #fff;
    font-size: 28px;
}

i.fa-angle-right {
    margin-left: 5px;
    cursor: pointer;
}

.sideBarLinks {
    background-color: white;
    display: none;
    flex-direction: column;
    border-radius: 10px;
}

.sideBarLinksActive {
    display: flex;
}

.sideBarLinks a:nth-child(1) {
    border-radius: 10px 10px 0 0;
}

.sideBarLinks a:nth-child(4) {
    border-radius: 0 0 10px 10px;
}

.sideBarLinks a {
    color: #000;
    font-size: 18px;
    padding: 3px 10px;
    transition: 0.3s ease-in-out;
}

.sideBarLinks a:hover {
    background: #0091ff;
    color: #fff;
}

@media (max-width:880px) {
    .left i.fa-bars {
        display: block;
    }

    .right {
        display: none;
    }
}

@media (max-width:470px) {
    .sideBarOptions {
        margin-top: 250px;
        margin-left: 0;
    }
}

@media (max-width:370px) {
    .top {
        padding: 5px;
    }

    i.fa-bars {
        font-size: 17px;
    }

    .left label a {
        letter-spacing: 0.2px;
        font-size: 1.3rem;
    }
}