@media (max-width: 767px) {
    .sidebar_content {
        height: calc(100vh - 50px);
    }
}

@media (max-width: 1300px) {
    .mobile-header__left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-header__left img {
        vertical-align: middle;
    }

    .get-start-btn {
        background-color: #1f3f6d;
        color: white;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 12px;
        border-radius: 5px;
        white-space: nowrap;
    }

    .get-start-btn.white {
        background-color: var(--green);
        color: white;
        padding: 14px;
        width: fit-content;
    }

    .sidebar li a {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        padding-left: 10px;
        padding-block: 5px;
    }

    .sidebar li {
        margin-bottom: 25px;
    }

    .sidebar_menu_shopping {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .header_logo img {
        width: 150px;
    }

    .mobile_header.mobile_header-mobile {
        padding: 0 10px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .mobile_header.mobile_header-mobile {
        padding: 0 20px;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .mobile_header.mobile_header-mobile {
        padding: 0 30px;
    }

    .mobile-header__left {
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .mobile_header.active .mobile-header__left {
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 100%;
    }
    .mobile_header.active .get-start-btn {
        display: none;
    }

    .sidebar.sidebar-home {
        top: 56px;
    }
}


.transparentBg {
    background: transparent !important;
}
