header {
    padding: 22px 10px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 11;
}

.profile-page-logo img {
    max-height: 38px;
}

.profile-menu li {
    padding: 0 16px;
}

.theme-btn {
    position: relative;
}

.login.switch {
    position: initial;
    display: inline-block;
    width: 30px;
    height: 26px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    right: 78px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    width: 52px;
    border-radius: 33px;
    background-color: #000;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: orange;
    transition: 0.4s;
    background-image: url(./../images/black-img-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 16px;
    border-radius: 50%;
}

.navlink {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--black);
}


/* Dark mode CSS */
.dark-mode .slider {
    background-color: #fff;
}

.dark-mode .slider:before {
    transform: translateX(26px);
    background-color: #000000;
    background-image: url(./../images/white-img-icon.svg);
}