* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: auto !important;
}

#img_toggler {
    filter: var(--filter-inverse);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-content: space-between;
    background-color: var(--color-white-2);
    border-bottom: 1px solid var(--color-gray-light);
    gap: 5px;
}

.guestUser {
    padding: 10px 25px 10px;
}

.header-main .right__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-main button {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-default);
    color: var(--color-gray-dark);
    height: 34px;
    cursor: pointer;
    display: grid;
    place-content: center;
}

header .right__header .icon__btn {
    min-width: 35px !important;
    height: 35px;
}

header .right__header .icon__btn img {
    width: 18px;
}

header .right__header #loginBtn {
    min-width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px;
    color: var(--topbar-color) !important;
    font-size: 16px;
}

header .right__header #loginBtn img {
    width: 16px;
}

.theme__btn {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.theme__btn img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2998%) hue-rotate(82deg) brightness(120%) contrast(100%) !important;
}

.sponser_link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-main .logo {
    display: inline-flex;
    gap: 12px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-black);
    align-items: center;
}

::-webkit-scrollbar {
    background: var(--color-light-bg);
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2rem;
}

@media only screen and (max-width: 1120px) {
    .sponser_link {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .header-main .right__header {
        gap: 20px;
    }
}

@media only screen and (max-width: 660px) {
    .right__header {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 940px) {
    .right__header {
        display: none;
    }

    #loginBtn span {
        display: none;
    }

    .guestUser {
        padding: 10px 16px;
    }
}

@media only screen and (max-width: 550px) {
    header {
        padding: 0 !important;
    }

    .guestUser {
        padding: 10px 16px !important;
    }
}

@media only screen and (max-width: 450px) {
    .nav_btn {
        align-self: end;
    }

    #loginBtn span {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    header .right__header .icon__btn {
        min-width: 30px !important;
        height: 30px;
    }

    .header-main button {
        width: 30px;
        height: 30px;
    }

    .responsive-logo {
        width: 25px;
    }

    .guestUser {
        padding: 10px 16px !important;
    }
}

.nav_btn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

@media only screen and (max-width: 640px) {
    .header-main .right__header {
        gap: 5px !important;
    }

    .responsive-logo {
        width: 30px;
    }

    #loginBtn span {
        display: none !important;
    }

    .guestUser {
        padding: 10px 60px 10px 10px;
    }
}