* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* header */
.header-fixed{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.header-title--mobile {
    display: none;
}

header {
    width: 100%;
    background: #006227;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 45px;
}

.header-logo {
    width: 127px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

    img {
        width: 105px;
        height: 33px;
        object-fit: contain;
    }
}

.header-title {
    display: flex;
    align-items: center;
    gap: 12px;

    a {
        width: 79px;
        height: 18px;
    }
}

.header-info {
    display: flex;
    align-items: center;
    gap: 7px;

    .header-info__text {
        color: #FFF;
        font-family: "Saira Condensed";
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
    }

    .header-info__slash {
        color: #FFF;
        font-family: "Saira Condensed";
        font-size: 7.5px;
        font-weight: 500;
        line-height: 18px;
    }
}

.header-nav__box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-nav__auth {
    padding: 0 8px 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;

    .header-nav__auth--register {
        width: 97px;
        height: 44px;
        border-radius: 8px;
        background: #F6A800;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #414141;
        text-align: center;
        font-family: "Saira Condensed";
        font-size: 16px;
        font-weight: 600;
        line-height: 16px;
        text-transform: uppercase;
    }

    .header-nav__login {
        border-radius: 8px;
        height: 44px;
        border: 1px solid #FFF;
        padding: 13.5px 9px 14.5px 9px;
        background: transparent;
        color: #FFF;
        text-align: center;
        font-family: "Saira Condensed";
        font-size: 16px;
        font-weight: 600;
        line-height: 16px;
        text-transform: uppercase;
    }
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav__wrapper a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.header-nav__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;

    .header-nav__search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    p {
        color: #FFF;
        font-family: "Saira Condensed";
        font-size: 12.8px;
        font-weight: 600;
        line-height: 12.8px;
        text-transform: capitalize;
    }

    &.header-nav__search {
        padding: 0 8px 0 16px;
    }

    &.header-nav__help {
        padding: 0 16px;
    }

    &.header-nav__menu {
        padding: 0px 8.8px 0px 16px;
    }
}

/* Menu */
.bottom-menu {
    display: none;
}

.menu-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 9999;
    display: none;
}

.menu-box {
    max-width: 390px;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.20);
    position: absolute;
    right: 0;
}

.menu-close {
    width: 100%;
    background: #414141;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px;
}

.menu-close p {
    color: #FFF;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-transform: uppercase;
}

.menu-close svg {
    cursor: pointer;
}

.menu-category {
    border-radius: 0px 0px 0px 7px;
    background: #EEE;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}

.menu-category__item {
    width: 128px;
    padding: 8px 0 0 0;
    cursor: pointer;
}

.menu-category__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
}

.menu-category__item p {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 12.8px;
    font-weight: 600;
    line-height: 12.8px;
    height: 20px;
    padding-bottom: 8px;
}

.menu-category__item:hover svg path {
    fill: #f6a800;
}

.menu-category__item:hover p {
    border-bottom: 2px solid #f6a800;
}

.menu-wrapper {
    width: 100%;
    margin-top: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f0f0f0;
    padding-bottom: 70px;
    max-height: calc(100vh - 175px);
}

.menu-dropdown {
    width: 100%;
}

.menu-dropdown__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px;
    border-top: 1px solid #EEE;
}

.menu-dropdown__header p,
.menu-dropdown__content-item p {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
}

.menu-dropdown__header:active,
.menu-dropdown__content-item:active {
    background: rgba(246, 168, 0, .5);
}

.menu-dropdown__content-item {
    width: 100%;
    display: inline-block;
    padding: 10px 32px 10px 0px;
    border-bottom: 1px solid #e5e5e5;
    margin-left: 10px;
    cursor: pointer;
}

.menu-dropdown__content--first,
.menu-dropdown__content--second,
.menu-dropdown__content--third,
.menu-dropdown__content--fourth,
.menu-dropdown__content--fifth,
.menu-dropdown__content--sixth,
.menu-dropdown__content--seventh {
    display: none;
}

.menu-dropdown__content.show {
    display: block !important;
}

.menu-gradient {
    position: fixed;
    bottom: -3px;

}

.menu-dropdown__header.active svg {
    transform: rotate(180deg);
}

/* nav game */
.game-nav {
    width: 100%;
    padding: 0 45px;
    display: flex;
    align-items: center;
    background: #fff;
}

.game-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 0px 0px 0px 7px;
    background: #414141;
    padding: 0px 16px;
    margin-right: 7px;
}

.game-nav__left-box a{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    height: 55px;
    border-bottom: 2px solid transparent;

    p {
        color: #FFF;
        font-family: "Saira Condensed";
        font-size: 12.8px;
        font-weight: 600;
        line-height: 12.8px;
    }
}

.game-nav__right {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 0 0px 11px;
    background: #EEE;
}

.game-nav__right-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    height: 55px;
    border-bottom: 2px solid transparent;

    p {
        color: #484848;
        font-family: "Saira Condensed";
        font-size: 12.8px;
        font-weight: 600;
        line-height: 12.8px;
        text-transform: capitalize;
    }
}

.game-nav__right-box a:hover,
.game-nav__left-box a:hover {
    border-bottom: 2px solid #F6A800;
}

.game-nav__right-box--classic,
.game-nav__right-box--janein,
.game-nav__right-box--alle {
    display: none;
}

.game-nav__live a {
    border-radius: 0px 0px 7px 0px;
    background: linear-gradient(180deg, #009D9D 0%, #004E4E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 7px 13px;

    p {
        color: #FFF;
        font-family: "Saira Condensed";
        font-size: 12.8px;
        font-weight: 500;
        line-height: 12.8px;
        text-align: center;
    }
}

/* slider */
.swiper {
    width: 783px;
    padding: 16px 0;
    margin: 0 !important;
    padding-bottom: 15px !important;
}

.swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    max-width: 443px;
    width: 100%;
    height: 178px;
    border-radius: 7px;
}

.swiper-slide img {
    border-radius: 7px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: #333;
}
.swiper-button-prev svg,
.swiper-button-next svg{
    width: 12px !important;
    height: 12px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

/* Hide prev button initially */
.swiper-button-prev {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-button-prev.show {
    opacity: 1;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #999;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #333;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    display: none;
}

@media (max-width: 1280px) {
    .swiper-slide {
        max-width: 458px;
        height: 184px;
    }

    .swiper {
        max-width: 933px;
        width: 100%;
    }
}

@media (max-width: 1022px) {
    .swiper-slide {
        max-width: 358px;
        height: 184px;
    }

    .swiper {
        max-width: 1022px;
        width: 100%;
    }
}

@media screen and (max-width:575px) {

    .gradient-left,
    .gradient-right {
        display: none;
    }
    .swiper-button-next,
    .swiper-button-prev{
        display: none !important;
    }
}

@media (max-width: 390px) {
    .swiper-slide {
        max-width: 340px;
        width: 100% !important;
        height: 145px;
    }


}

.slider-overlay {
    position: absolute;
    width: 100%;
    height: 98%;
    top: 0;
    left: 0;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.40);
    padding: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 15px;
    flex-direction: column;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
    content: none !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 26px !important;
    height: 26px !important;
}

.game-date {
    position: absolute;
    top: 7px;
    right: 8px;
    color: #FFF;
    font-family: "Saira Condensed";
    font-size: 14.883px;
    font-weight: 500;
    line-height: 15px;
}

.game-teams {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.game-teams__count {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.count-item {
    width: 74px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8.41px;
    border: 1px solid #707070;
    background: #FFF;
    padding: 10px;
}

.count-item p {
    color: #BABBBA;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.count-item span {
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 178px;
    z-index: 2;
}

.gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 178px;
    z-index: 2;
}

.slider-nav {
    width: 26px;
    height: 26px;
    border-radius: 100%;
    border: 3px solid #FFF;
    background: #414141;
    box-shadow: 1px 1px 5px 0px #CCC;
    display: flex;
    align-items: center;
    justify-content: center;

}

.slider-prev,
.slider-prev--category {
    width: 26px !important;
    height: 26px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 3;
    display: none;
}

.slider-next,
.slider-next--category {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 3;
}

/* game category */

.games-container {
    max-width: 783px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 7px;
    flex-direction: column;
}

.games-container h1 {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 12.8px;
    font-weight: 500;
    line-height: 12.8px;
    text-transform: uppercase;
}

.games-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.games {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: transform 0.3s ease-in-out;
}

.game {
    width: 164px;
    border-radius: 7px;
    background: #EEE;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.game img {
    width: 72px;
    height: 72px;
    border-radius: 7px 0 0 7px;
}

.game a {
    display: flex;
    align-items: center;
}

.game span {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    padding: 0 7.28px;
}

.gradient-right--category {
    position: absolute;
    right: 0;
    height: 72px;
    width: 20px;
    bottom: 0;
}

/* tabs */
.main-section {
    padding: 150px 45px 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: calc(100vh - 100px);
}

.main-wrapper {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding: 0;
}

.tabs-container {
    max-width: 783px;
    width: 100%;
    padding: 15px 0;
}

.tabs-container h1 {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 12.8px;
    font-weight: 500;
    line-height: 12.8px;
    text-transform: uppercase;
    padding-bottom: 6px;
}

.tabs-wrapper {
    width: 100%;
}

.tabs {
    width: 100%;
    border-radius: 7.47px 0px 0px 0px;
    background: #414141;
    padding: 0px 14px;
    display: flex;
    align-items: center;
    gap: 21px;
    height: 45px;
}

.tabs a {
    color: #FFF;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    padding: 13px 0 14px;
    cursor: pointer;
}

.tabs a.active {
    color: #F6A800;
    border-bottom: 2px solid #F6A800;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.game-row {
    border-bottom: 1px solid #BABBBA;
}

.game-row--border {
    border: none;
}

.game-row td {
    padding: 7px 0 5px;
}

.game-header {
    background: #EEE;
}

.game-header td {
    padding: 7px 0 4px;
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

.game-header--first {
    width: 163px !important;
}

.game-header--second {
    width: 163px !important;
    padding-left: 25px !important;
}

.game-header--third {
    width: 190px !important;
}

.subheader {
    width: 100%;
    background: linear-gradient(90deg, #FFF 0%, #EEE 100%);
}

.subheader td {
    padding: 6px 0 4px;
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

.league {
    display: flex;
    align-items: center;
    gap: 3px;
}

.league span {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 23.8px;
}

.league-country {
    display: flex;
    align-items: center;
    gap: 5px;
}

.league-country span {
    width: 167px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-group {
    width: 184px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-group p {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}

.team-group span {
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 19.59px;
}

.time-badge {
    line-height: 14px;
}

.odds-cell span,
.odds-cell {
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-weight: 600;

}

.odds-cell span {
    padding: 12px 0;
    display: inline-block;
    width: 51px;
    height: 49px;
    border-radius: 7px;
    border: 1px solid #707070;
    cursor: pointer;
}

.more-games {
    width: 100%;
    padding: 10px 10px 11px 10px;
    border-bottom: 1px solid #414141;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-games a {
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    text-transform: uppercase;
}

.tab-section {
    display: none;
}


/* footer */
footer {
    width: 100%;
    border-top: 1px solid #FFF;
    background: #E5E5E5;
}

.footer-container {
    max-width: 1190px;
    margin: 0 auto;
    width: 100%;
    padding: 46px 0 44px;
    display: flex;
    align-items: center;
    gap: 38px;
    flex-direction: column;
}

.footer-box {
    width: 355px;
}

.footer-group,
.footer-group__sub,
.footer-wrapper,
.footer-wrapper-sub {
    display: flex;
    gap: 62px;
}

.footer-nav {
    display: flex;
}

.footer-nav__wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-right: 46px;
}

.footer-nav__wrapper a {
    padding: 4.5px 0px;
}

.footer-nav__wrapper a,
.footer-info p,
.footer-payment p,
.footer-social p {
    color: #484848;
    font-family: "Saira Condensed";
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
}

.footer-logo img {
    width: 200px;
    height: 100px;
}

.footer-info,
.footer-payment {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-payment__icons {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-payment__icon {
    width: 60px;
    height: 43px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    padding: 6px;
}

.footer-payment__icon img {
    object-fit: contain;
}

.footer-icons {
    display: flex;
    align-items: flex-end;
    gap: 31px;
}

.icon-1 {
    width: 72px;
    height: 21px;
}

.icon-2 {
    width: 45px;
    height: 42px;
}

.icon-3 {
    width: 83px;
    height: 42px;
}

.icon-4 {
    width: 31px;
    height: 31px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.footer-social__icons {
    margin-left: -15px;
}

.footer-icons img {
    object-fit: contain;
}

.footer-info__icon {
    display: none;
}

.footer-copyright {
    width: 100%;
    border-top: 1px solid #FFF;
    background: #414141;
}

.copyright-box {
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    font-family: "Saira Condensed";
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    padding: 20px 0;
}

.payment-container {
    flex: 0 0 375px;
    max-width: 375px;
    min-width: 375px;
    width: 375px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    height: calc(100vh - 325px);
    overflow-y: auto;
}

.payment-header {
    background: #414141;
    height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.content {
    display: flex;
    flex-direction: column;
}

.tab {
    color: #FFF;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.tab.act {
    color: #F6A800;
    border-bottom: 3px solid #f6a800;
}

.tab-score {
    width: 20px;
    height: 20px;
    border: 2px solid #F6A800;
    border-radius: 100%;
    color: #F6A800;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 12px;
    font-weight: 500;
    line-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bet-types {
    display: flex;
    padding: 16px 14px;
    background: #FFF;
    align-items: center;
    gap: 7px;
    position: relative;
}

.bet-type {
    border-radius: 7px;
    background: #EEE;
    padding: 12px 17px;
    color: #414141;
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    cursor: pointer;
}

.bet-type.act {
    border: 2px solid #F6A800;
    font-weight: 600;
}

.trash-icon {
    cursor: pointer;
    position: absolute;
    right: 14px;
}

.info-section {
    padding: 15px;
    display: flex;
    gap: 14px;
    border-top: 1px solid #484848;
    border-bottom: 1px solid #484848;
    background: linear-gradient(180deg, #EEE 30%, rgba(238, 238, 238, 0.00) 100%), linear-gradient(180deg, rgba(238, 238, 238, 0.00) 0%, #EEE 70%), radial-gradient(50% 50% at 50% -4950%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), radial-gradient(50% 50% at 50% 100%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), #FFF;
}

.info-section p {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.input-row {
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.input-label,
.currency {
    color: #000;
    font-family: "Saira Condensed";
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.bet-input {
    border-radius: 3px;
    border: 1px solid #414141;
    background: #FFF;
    padding: 6px 6px 4px 6px;
    width: 72px;
    height: 36px;
    text-align: right;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    outline: none;
}

.bet-input::placeholder {
    color: rgba(65, 65, 65, 0.30);
}

.total-section {
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-section span {
    color: #414141;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.bet-button {
    max-width: 351px;
    margin: 0 auto;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 7px;
    background: #E5E5E5;
    color: rgba(0, 0, 0, 0.33);
    text-align: center;
    font-family: "Saira Condensed";
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    cursor: auto;
}

.slider-prev--category,
.slider-next--category {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev--category {
    left: 0;
    display: none;
}

.slider-next--category {
    right: 0;
    display: flex;
}

.slider-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-25vw);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* @media screen and (max-width:1280px) {
    .slider-wrapper {
        transform: translateX(-12.5vw);
    }
}

@media screen and (max-width:1022px) {
    .slider {
        max-width: 100%;
    }
}

@media screen and (max-width:766px) {
    .slider {
        max-width: 100%;
    }
}

@media screen and (max-width:574px) {
    .slider-item {
        height: 219px;
    }
} */