.search-side-bar-4 {
    position: fixed;
    top: 0;
    right: -25vw;
    height: 100%;
    width: 25vw;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
}

/* Open state */
.search-side-bar-4.open {
    right: 0;
}

.user_login_sidebar {
    position: fixed;
    top: 0;
    right: -25vw;
    /* Moves it off-screen */
    height: 100%;
    width: 25vw;
    /* Sidebar width */
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
}

/* Open state */
.user_login_sidebar.open {
    right: 0;
}

/* Close Button */
.close_sidebar_search {
    font-size: 30px;
    font-weight: 400px;
    background-color: #fff;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 1040;
}

/* Show overlay when active */
.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .user_login_sidebar {
        position: fixed;
        top: 0;
        right: -60vw;
        /* Moves it off-screen */
        height: 100%;
        width: 60vw;
        /* Sidebar width */
        background: #fff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 1050;
    }

    .search-side-bar-4 {
        position: fixed;
        top: 0;
        right: -60vw;
        height: 100%;
        width: 60vw;
        background: #fff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 1050;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu-box-4 {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-4 {
        display: none;
    }
}

.desktop-menu-box-4 {
    align-items: center;
}

.desktop-menu-box-4 .header-4-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    height: 100%;
    padding: 0;
    margin: 0;
}

.desktop-menu-box-4 .header-4-ul > li {
    min-width: 120px;
    height: 60px;
    padding: 0 20px;
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .desktop-menu-box-4 .header-4-ul > li > a{
        height: 100%;
    } */

.desktop-menu-box-4 .header-4-ul > li:hover {
    color: var(--primary);
}

.header-4-logo { 
    width: 150px;
    min-height: 50px;
    object-fit: contain;
}

@media (max-width: 992px) {
    /* .header-4-logo {
            width: 80px;
            height: auto;
        } */
}

@media (max-width: 600px) {
    /* .header-4-logo {
            width: 80px;
            height: auto;
        } */
}

.user-action-h-4 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.close_sidebar_search:hover {
    transform: rotate(180deg);
}

.custom-p-h-4 {
    padding: 5px 15px 5px 20px;
}

.h-4-title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 16px;
    color: var(--t4s-dark-color);
    font-weight: 600;
    text-transform: uppercase;
}
