@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter.ttf");
}

:root {
    --color_gray_900: #181D25;
    --color_gray_800: #222934;
    --color_gray_700: #333D4C;
    --color_gray_600: #4E5562;
    --color_gray_500: #6C727F;
    --color_gray_400: #9CA3AF;
    --color_gray_300: #CAD0D9;
    --color_gray_200: #E0E5EB;
    --color_gray_100: #EEF1F6;
    --color_white_100: #FFFFFF;
    --color_white_80: rgba(255, 255, 255, 80);
    --color_success: #33B36B;
}

b{
    font-weight: 500;
    font-size: 14px;
}

.iH1{
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
}
.iH2{
    font-size: 25px;
    font-weight: 600;
    line-height: 31px;
}
.iH3{
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
}
.iH4{
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
}
.iH5{
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
}
.iH6{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

body{
    font-family: Inter, sans-serif;
    background: var(--color_gray_900);
    color: var(--color_white_100);

    font-size: 14px;
}

.container-fluid{
    position: relative;
}

.siteContent{
    max-width: 1296px;
    margin: auto;
}

#header{
    width: 100%;
    background: var(--color_gray_800);
    height: 60px;
    border-radius: 100px;
    box-shadow: 0px 8px 30px -4px rgba(8, 11, 18, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 0 24px;
}
#header a{
    text-decoration: none;
    color: var(--color_white_100);
}
#header > .links{
    display: flex;
    align-items: center;
}
#header > .links > a{
    font-size: 14px;
    text-decoration: none;
    padding: 0 20px;
    color: var(--color_white_80);
    transition: 0.2s all;
    text-align: center;
}
#header > .links > a:hover{
    color: var(--color_white_100);
    transition: 0.2s all;
}

#header > #sRight{
    display: flex;
    align-items: center;
}


#headerMob{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color_gray_800);
    display: flex;
    height: 48px;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    /*box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
}
#headerMob a{
    text-decoration: none;
    color: var(--color_white_100);
}

.leftMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: var(--color_gray_900);
    color: var(--color_white_100);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px 12px;
}

/* Активное состояние */
.leftMenu.active {
    transform: translateX(0);
}

#menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}

/* Когда активно */
#menuOverlay.active {
    opacity: 1;
    visibility: visible;
}

.leftSideNav{
    padding-left: 0;
}
.leftSideNav li{
    list-style-type: none;
    margin-top: 16px;
}
.leftSideNav li > a{
    text-decoration: none;
    color: var(--color_white_100);
}

.leftSideNav .accordion-button{
    font-size: 14px;
    font-weight: 400;
    padding: 0;
}

.leftSideNav .accordion-item{
    border: none;
}


.f-view{
    background: none;
    min-height: 40px;
    width: 100%;
    border: 1px solid var(--color_gray_600);
    padding: 9px 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    cursor: text;
    transition: 0.25s;
    user-select: none;
}
.f-view.focus{
    border: 1px solid var(--color_white_100);
    transition: 0.25s;
}
.f-view.disabled{
    background: var(--color_gray_800);
    border: 1px dashed var(--color_gray_700);
    cursor: auto;
}
.f-view > .f-item{
    background: none;
    color: var(--color_gray_300);
    border: none;
    width: 100%;
}
.f-view > .f-item:focus{
    outline: none;
}
.f-view > .f-item::placeholder{
    color: var(--color_gray_500);
}
.f-view > img:first-child {
    height: 13px;
    margin-right: 12px;
}
.f-view > .f-item + img {
    height: 13px;
    margin-left: 12px;
}

.f-view > .f-dropdown{
    height: 100%;
}

a{
    text-decoration: none!important;
}

.f-btn{
    height: 40px;
    background: var(--color_gray_700);
    color: var(--color_gray_200);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    text-decoration: none!important;
}
.f-btn.large{
    height: 48px;
    font-size: 16px;
    font-weight: 500;
}
.f-btn:hover{
    background: var(--color_gray_600);
    color: var(--color_white_100);
    transition: 0.2s;
}
.f-btn:disabled{
    opacity: 0.7;
}
.f-btn.orange{
    color: var(--color_white_100);
    background: #F67804;
}
.f-btn.orange:hover{}
.f-btn.red{
    color: var(--color_white_100);
    background: #F55266;
}
.f-btn.red:hover{}

.f-btn.he100{
    height: 100%;
}

.alert-danger{
    border: 1px solid #442832;
    background: #2E222C;
    color: #F55266!important;
    font-size: 14px;
    font-weight: normal;
}
.alert-warning{
    border: 1px solid #463427;
    background: #2F2926;
    color: #FC9231!important;
    font-size: 14px;
    font-weight: normal;
}
.alert-success{
    border: 1px solid #1D3B33;
    background: #1B2C2C;
    color: #33B36B!important;
    font-size: 14px;
    font-weight: normal;
}
.alert > .alert-title{
    font-size: 16px;
    font-weight: 600;
}

#authHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    font-size: 14px;
    padding: 0 12px;
}

#authHeader > .links{
    display: flex;
}
#authHeader > a{
    color: var(--color_white_100)
}
#authHeader > .links > a{
    height: 20px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#authHeader > .links > a > img{
    height: 18px;
    width: 18px;
}

.bg-success{
    background: var(--color_success);
}

.start-75{
    left: 75% !important;
}

#authHeaderMob{
    height: 42px;
    display: flex;
}

#firstLatter{
    height: 36px;
    width: 36px;
    background-image: url("../icons/green_shape.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.authHeaderLogin{
    font-weight: 600;
    font-size: 12px;
}
.authHeaderBalance{
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: var(--color_gray_300);
}
.authHeaderBalance > img{
    height: 10px;
    margin-right: 6px;
    width: auto;
}

.headerLinks{
    margin: 10px 0;
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerLinks > .links{
    display: flex;
}
.headerLinks > .links > a{
    display: flex;
    height: 38px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--color_white_100);
    text-decoration: none;
}
.headerLinks > .links > a > span{
    margin-left: 8px;
}
.headerLinks > .links > a > .staticIcon{
    margin-left: 8px;
    width: 7px;
    height: 7px;
}

.headerLinksMob{
    margin-top: 64px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 12px;
}
.headerLinksMob::-webkit-scrollbar {
    display: none;
}

.headerLinksMob > a{
    background: var(--color_gray_800);
    border-radius: 6px;
    display: flex;
    flex: 0 0 auto;
    height: 38px;
    align-items: center;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--color_white_100);
    text-decoration: none;
    margin-left: 6px;
    white-space: nowrap;
}
.headerLinksMob > a:first-child{
    margin-left: 0;
}
.headerLinksMob > a > span{
    margin-left: 8px;
}
.headerLinksMob > a > .staticIcon{
    margin-left: 8px;
    width: 7px;
    height: 7px;
}


.f-dropdown{
    background: none;
    display: inline-flex;
    color: var(--color_white_80);
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    opacity: 0;
}
.f-dropdown > img{
    width: 8px;
    height: auto;
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.f-dropdown.open > img{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.f-dropdown > .values{
    display: none;
}
.f-dropdown.open > .values{
    display: block;
    position: absolute;
    background: var(--color_gray_800);
    border-radius: 16px;
    box-shadow: 0px 8px 30px -4px rgba(8, 11, 18, 0.25);
    padding: 8px;
    top: calc(100% + 12px);
    left: 0;
    min-width: 100%;
    width: max-content;
    max-height: 300px;
    overflow: auto;
    z-index: 50;
}
.f-dropdown.open > .values > ul{
    padding-left: 0;
    margin: 0;
}
.f-dropdown.open > .values > ul > li{
    border-radius: 12px;
    margin-top: 8px;
    list-style-type: none;
    background: var(--color_gray_800);
    transition: 0.2s;
    cursor: pointer;
    padding: 8px;
    font-size: 12px;
    color: var(--color_white_100);
}
.f-dropdown.open > .values > ul > li > a{
    display: block;
    width: 100%;
}
.f-dropdown.open > .values > ul > li:first-child{
    margin-top: 0;
}
.f-dropdown.open > .values > ul > li:hover{
    background: var(--color_gray_700);
    transition: 0.2s;
}


.single-banner{
    width: 100%;
    height: auto;
    position: relative;
}
.single-banner > img{
    width: 100%;
    height: auto;
    max-height: 214px;
    border-radius: 25px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.single-banner-mobile{
    width: 100%;
    height: auto;
    position: relative;
}
.single-banner-mobile > img{
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.swiper {
    width: 100%;
    aspect-ratio: 6 / 1;
    border-radius: 25px;
    position: relative;
}
.swiper.mobile {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.swiper-slide.mobile img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.custom-progress {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 250px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    border-radius: 2px;
    z-index: 10;
}

.custom-progress-fill {
    height: 100%;
    background-color: white;
    width: 0%;
    transition: width 0.3s ease;
}

.filterBox{
    border: 1px solid var(--color_gray_800);
    padding: 24px;
    border-radius: 10px;
    margin-top: 10px;
}
.filterBox:first-child{
    margin-top: 0;
}
.filterBox > .title{
    color: var(--color_white_100);
}
.filterBox > .items{
    margin-top: 16px;
}
.filterBox > .items > .item{
    display: flex;
    height: 22px;
    align-items: center;
    font-size: 14px;
    margin-top: 12px;
}
.filterBox > .items > .item:first-child{
    margin-top: 0;
}
.filterBox > .items > .item > .counter{
    color: var(--color_gray_400);
    font-size: 12px;
}

.f-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    min-height: 22px;
}

.f-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.f-checkbox .checkmark {
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
}

/* Белая галочка */
.f-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.f-checkbox > .description{
    color: var(--color_white_100);
    font-size: 14px;
    margin-left: 8px;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;

    display: inline-block;
    vertical-align: middle;
    flex: 1;

    position: relative;
    top: 1px;
}

#showcase{
    margin-top: 15px;
    margin-bottom: 48px;
}


.mobFilters{
    padding: 10px 0;
    border-top: 1px solid var(--color_gray_700);
    border-bottom: 1px solid var(--color_gray_700);
}

.mobFilters > .mobFilter{
    border-radius: 8px;
}
.mobFilter.open{
    background: var(--color_gray_800);
}
.mobFilter > .content{
    padding: 0 16px;
    display: flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--color_gray_900);
    border-radius: 8px;
    transition: 0.3s;
}
.mobFilter.open > .content{
    border: 1px solid var(--color_white_100);
    transition: 0.3s;
}
.mobFilter > .content > img{
    height: auto;
    width: 16px;
}
.mobFilter > .content > .name{
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: var(--color_gray_500);
    margin-left: 10px;
    min-height: 20px;
    vertical-align: middle;
    transition: 0.3s;
}
.mobFilter.open > .content > .name{
    color: var(--color_white_100);
    transition: 0.3s;
}
.mobFilter > .content > .arrow{
    margin-left: 10px;
    height: 6px;
    transition: transform 0.3s ease;
}
.mobFilter.open > .content > .arrow{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.mobFilter > .items{
    display: none;
}

.mobFilter.open > .items{
    display: block;
    margin-top: 4px;
    border: 1px solid var(--color_gray_700);
    border-radius: 8px;
    background: var(--color_gray_900);
    padding: 12px;
    margin-bottom: 10px;
}
.mobFilter.open > .items > .item{
    display: flex;
    border-radius: 6px;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color_gray_200);
    padding: 0 12px;
    margin-top: 4px;
}
.mobFilter.open > .items > .item:first-child{
    margin-top: 0;
}
.mobFilter.open > .items > .item > img{
    margin-left: 8px;
    display: none;
}
.mobFilter.open > .items > .item.selected{
    background: var(--color_gray_700);
    color: var(--color_white_100);
}
.mobFilter.open > .items > .item.selected > img{
    margin-left: 8px;
    display: block;
}

.filter-results{
    margin-top: 15px;
}
.filter-results .counts{
    height: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: var(--color_white_100);
}
.filter-results .filterTags{
    margin-left: 8px;
    width: 64%;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-results .filterTags > .f-tag{
    height: 32px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 16px;
    background: var(--color_gray_800);
}
.filter-results .filterTags > .f-tag > img{
    height: 8px;
    width: 8px;
    cursor: pointer;
}
.filter-results .filterTags > .f-tag > span{
    font-weight: 500;
    font-size: 12px;
    color: var(--color_gray_200);
    margin-left: 8px;
}

.pcSortBox{
    position: absolute;
    right: 12px;
    display: inline-flex;
    height: 40px;
    align-items: center;
}
.pcSortBox > span{
    font-size: 14px;
    font-weight: 600;
    color: var(--color_white_100)
}
.pcSortBox > .f-dropdown{
    margin-left: 8px;
    color: var(--color_gray_300);
}


/* 1. Анимация градиента (оставляем как есть) */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* 2. Стили для самого блока с классом .sk-loader */
.sk-loader {
    position: relative; /* Контекст для позиционирования ::after */
    overflow: hidden;  /* Обрезка градиента */
}

/* 3. Стили для псевдоэлемента-оверлея */
.sk-loader::after {
    border-radius: 12px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    background: linear-gradient(
            90deg,
            rgba(51, 61, 76, 0.1) 25%,
            rgba(187, 187, 187, 0.1) 50%,
            rgba(51, 61, 76, 0.1) 75%
    );

    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear; /* Анимация */
}

/* 4. Стили для непосредственных дочерних элементов блока .sk-loader */
.sk-loader > * {
    /* Применяем размытие и полупрозрачность */
    filter: blur(3px);  /* Сила размытия */
    opacity: 0.5;       /* Прозрачность контента */

    position: relative;
    z-index: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}


/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #FFFFFF;
    --_m:
            conic-gradient(#0000 10%,#000),
            linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

.loaderBox{
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-card{
    position: relative;
    display: block;
    text-decoration: none;
    margin-bottom: 16px;
}
.product-card > .prod-img{
    width: 100%;
    border-radius: 15px;
    background: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-card > .prod-img > img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.product-card > .prod-img > .img-label{
    padding: 2px 8px;
    background: #F03D3D;
    color: var(--color_white_100);
    border-radius: 4px;
    position: absolute;
    top: 16px;
    left: 16px;

    font-size: 12px;
    font-weight: 500;
}
.product-card > .prod-content{
    padding: 16px 0 16px 16px;
    background: var(--color_gray_900);
}
.product-card > .prod-content > .description{
    display: flex;
    flex-direction: column;
}
.product-card > .prod-content > .description > .name{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color_white_100);
}
.product-card > .prod-content > .description > .rating{
    display: flex;
    height: 18px;
    align-items: center;
}
.product-card > .prod-content > .description > .rating > img{
    margin-left: 4.56px;
    height: 11px;
    width: 11px;
}
.product-card > .prod-content > .description > .rating > img:first-child{
    margin-left: 0;
}
.product-card > .prod-content > .description > .rating > span{
    margin-left: 8px;
    color: var(--color_gray_500);
    font-size: 12px;
}
.product-card > .prod-content > .price-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.product-card > .prod-content > .price-row > .price{
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color_white_100);
}
.product-card > .prod-content > .price-row > .card-btn{
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--color_gray_800);
    transition: 0.25s;
}
.product-card:hover > .prod-content > .price-row > .card-btn{
    background: #F2223B;
    transition: 0.25s;
}
.product-card > .prod-content > .price-row > .card-btn > img{
    width: 16px;
    height: 15px;
}
.product-card > .prod-content > .methods{
    height: 24px;
    display: flex;
    align-items: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card > .prod-content > .methods > .method{
    color: var(--color_gray_100);
    font-size: 14px;
    margin-left: 8px;
}
.product-card > .prod-content > .methods > .method:first-child{
    margin-left: 0;
}

.product-card > .prod-content > .r-line{
    margin-top: 8px;
    height: 4px;
    width: 100%;
    background: var(--color_gray_700);
    border-radius: 100px;
}
.product-card > .prod-content > .r-line > div{
    height: 4px;
    width: 68px;
    background: #F55266;
    border-radius: 100px;
}
.product-card > .prod-content > .remain > span:first-child{
    color: var(--color_gray_400);
    font-size: 14px;
    line-height: 22px;
}
.product-card > .prod-content > .remain > span:last-child{
    color: var(--color_white_100);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.sortParamsMobile{
    margin-top: 16px;
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.searchResult{
    font-size: 14px;
    color: var(--color_white_100)
}


.footerPc{
    margin: 90px 0 40px 0;
}

.footerPc .siteName{
    font-size: 21px;
    font-weight: 700;
    color: var(--color_white_100);
}
.footerPc .questions{
    font-size: 15px;
    font-weight: 500;
    color: var(--color_gray_300);
}

.footerPc .title{
    font-size: 16px;
    font-weight: 600;
    color: var(--color_white_100);
}

.footerPc .links > a{
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color_gray_200);
    text-decoration: none;
}
.footerCategoryPc{
    padding-left: 32px;
}
.footerBottomPc{
    margin-top: 18px;
    height: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--color_gray_700);
    padding-bottom: 13px;
}
.footerBottomPc > .copyright{
    font-size: 12px;
    font-weight: var(--color_gray_300);
}
.footerBottomPc > .icons{
    display: flex;
}
.footerBottomPc > .icons > img{
    margin-right: 16px;
    height: 12px;
    width: auto;
}

.footerMobile{
    background: var(--color_gray_800);
    padding-top: 16px;
}
.footerMobile .siteName{
    font-size: 21px;
    font-weight: 700;
    color: var(--color_white_100);
}
.footerMobile .questions{
    font-size: 14px;
    font-weight: 600;
    color: var(--color_gray_300);
}

.accordion{
    background: none;
    --bs-accordion-bg: none;
    --bs-accordion-btn-color: none;
    --bs-accordion-color: none;
    --bs-accordion-btn-icon-width: 0.7rem;
}
.accordion-item{
    background: none;
    border: none;
    border-bottom: 1px solid var(--color_gray_700);
}
.accordion-header{
    background: none;
}
[data-bs-theme=dark] .accordion-button::after{
    --bs-accordion-btn-icon: url('../icons/arrow.svg');
    --bs-accordion-btn-active-icon: url('../icons/arrow.svg');
}
.accordion-button:not(.collapsed){
    color: var(--color_white_100);
    background: none;;
    box-shadow: none;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button{
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color_white_100);
}
.accordion-body{
    padding: 0 0 16px 0;
}
.accordion-body > a{
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color_gray_200);
    text-decoration: none;
}

.iconsList{
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-evenly;
}
.iconsList > img{
    height: 12px;
    width: auto;
}


.radio-container:first-child{
    border-top: 1px solid var(--color_gray_700);
}
.radio-container {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--color_gray_700);
}
.radio-container > .wrapper{
    display: flex;
}
.radio-container > .content{
    display: none;
    margin-left: 32px;
    color: var(--color_gray_300);
    font-size: 14px;
    font-weight: 400;
    margin-top: 24px;
}
.radio-container.active > .content{
    display: block;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.custom-radio-button {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 18px;
    border: 2px solid white;    /* Белая обводка */
    border-radius: 50%;        /* Делаем круглым */
    box-sizing: border-box;    /* Учитываем border в размере */
    position: relative;        /* Для позиционирования ::after */
    background-color: transparent; /* Прозрачный фон по умолчанию */
    transition: border-color 0.2s ease; /* Плавность для обводки */
}

/* Стилизация внутренней точки (появляется при выборе) */
.custom-radio-button::after {
    content: '';
    display: block;
    width: 8px;                /* Размер внутренней точки */
    height: 8px;
    background-color: white;   /* Цвет точки */
    border-radius: 50%;        /* Делаем точку круглой */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Центрируем и скрываем */
    transition: transform 0.2s ease; /* Плавное появление */
}

/* Стили для label */
.custom-radio-label {
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex; /* Чтобы label и span были на одной линии */
    align-items: center;  /* Вертикальное выравнивание */
    user-select: none;    /* Запретить выделение текста label при клике */
}
.custom-radio-label > .fee{
    background: #33B36B;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 12px;
}

/* Показываем внутреннюю точку, когда radio выбран */
.hidden-radio:checked + .custom-radio-label .custom-radio-button::after {
    transform: translate(-50%, -50%) scale(1); /* Показываем точку */
}

/* (Опционально) Небольшое изменение при наведении */
.custom-radio-label:hover .custom-radio-button {
    /* Можно добавить эффект, например, легкое изменение цвета обводки */
    /* border-color: #ccc; */
}


.text-underline{
    color: var(--color_white_100);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

.info-row{
    display: flex;
    align-items: center;
    color: var(--color_white_100)
}
.info-row > img{
    height: 18px;
    width: 18px;
    margin-right: 8px;
}

.copy{
    height: 14px;
    width: 14px;
    cursor: pointer;
}


.galleryList{
    margin-top: 8px;
    height: 100px;
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}
.galleryList.grabbing {
    cursor: grabbing;
}
.galleryList::-webkit-scrollbar {
    display: none;
}
.galleryList > .image{
    overflow: hidden;
    border-radius: 8px;
    height: 94px;
    width: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    border: 1px solid var(--color_gray_700);
    transition: 0.25s;
    flex-shrink: 0;
    cursor: pointer;
}
.galleryList > .image:hover,
.galleryList > .image.active{
    opacity: 1;
    border: 1px solid var(--color_white_100);
    transition: 0.25s;
}
.galleryList > .image > img{
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-drag: none;
}


.bg-danger{
    background-color: #2E222C!important;
    border: 1px solid #442832;
    color: #F55266;
}
.bg-info{
    background-color: #1A2537!important;
    border: 1px solid #1D2D48;
    color: #2F6ED5;
}
.bg-warning{
    background-color: #2F2926!important;
    border: 1px solid #463427;
    color: #FC9231;
}
.bg-success{
    background-color: #1B2C2C!important;
    border: 1px solid #1D3B33;
    color: #33B36B;
}


.commentBox{
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color_gray_700);
}
.commentBox > .author{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 24px;
}
.commentBox > .author > .name{
    width: 50%;
    color: var(--color_white_100);
    font-size: 16px;
    font-weight: 600;
}
.commentBox > .author > .date{
    display: flex;
    justify-content: flex-end;
    width: 50%;
    color: var(--color_gray_400);
    font-size: 14px;
}
.commentBox > .stars{
    margin-top: 16px;
}
.commentBox > .text{
    margin-top: 12px;

    font-size: 14px;
    line-height: 22px;
    color: var(--color_gray_300);
}
.commentBox > .text.answer{
    margin-left: 18px;
}
.commentBox > .replyRow{
    margin-top: 16px;
    height: 20px;
    display: flex;
    align-items: center;
}
.commentBox > .replyRow > img{
    width: 12px;
    height: 12px;
}
.commentBox > .replyRow > span{
    font-size: 14px;
    font-weight: 500;
    margin-left: 6px;
}

.table{
    --bs-table-bg: none
}

:root.dark table.dataTable thead>tr>th.dt-orderable-asc:hover, :root.dark table.dataTable thead>tr>th.dt-orderable-desc:hover, :root.dark table.dataTable thead>tr>td.dt-orderable-asc:hover, :root.dark table.dataTable thead>tr>td.dt-orderable-desc:hover, :root[data-bs-theme=dark] table.dataTable thead>tr>th.dt-orderable-asc:hover, :root[data-bs-theme=dark] table.dataTable thead>tr>th.dt-orderable-desc:hover, :root[data-bs-theme=dark] table.dataTable thead>tr>td.dt-orderable-asc:hover, :root[data-bs-theme=dark] table.dataTable thead>tr>td.dt-orderable-desc:hover{
    outline: none;
}
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td{
    border-bottom: none;
}
div.dt-container.dt-empty-footer tbody>tr:last-child>*{
    border-bottom: none;
}
.dt-column-title{
    color: var(--color_gray_300);
    font-size: 14px;
    font-weight: 400;
}
table.dataTable td{
    color: var(--color_white_100);
    font-size: 14px;
    font-weight: 500;
}
table.dataTable>tbody>tr>th, table.dataTable>tbody>tr>td{
    padding: 32px 10px;
    vertical-align: middle;
}

div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-end{
    justify-content: flex-start;
    margin-left: 0;
}
div.dt-container .dt-paging .dt-paging-button.first,
div.dt-container .dt-paging .dt-paging-button.previous,
div.dt-container .dt-paging .dt-paging-button.next,
div.dt-container .dt-paging .dt-paging-button.last{
    display: none;
}

div.dt-container .dt-paging .dt-paging-button.current:hover,
div.dt-container .dt-paging .dt-paging-button.current{
    background: var(--color_gray_700);
    border-radius: 6px;
}
div.dt-container .dt-paging .dt-paging-button{
    background: none;
    color: var(--color_gray_300);
    font-size: 14px;
    font-weight: 500;
    border: none;
}
div.dt-container .dt-paging .dt-paging-button:hover{
    border: none;
    border-radius: 6px;
    background: var(--color_gray_800);
    color: var(--color_gray_300);
    font-size: 14px;
    font-weight: 500;
}

.badge{
    --bs-badge-padding-y: 0.65rem;
}

.orderInfo{
    background: var(--color_gray_800);
    padding: 32px;
    border-radius: 16px;
}
.orderInfo > .title{
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.orderInfo > .date{
    font-size: 12px;
    font-weight: 500;
    color: var(--color_gray_500)
}
.orderInfo > .title > span{
    color: var(--color_white_100);
    font-size: 20px;
    font-weight: 600;
}
.orderInfo > .title > a{
    color: var(--color_gray_200);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline!important;
}
.orderInfo > .content{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color_gray_700);
}
.orderInfo > .content > .param{
    margin-top: 16px;
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: space-between;
}
.orderInfo > .content > .param:first-child{
    margin-top: 0;
}
.orderInfo > .content > .param > span:first-child{
    color: var(--color_gray_300);
    font-size: 14px;
}
.orderInfo > .content > .param > span:last-child{
    color: var(--color_white_100);
    font-size: 14px;
}
.orderInfo > .content > .param.total > span:last-child{
    color: var(--color_white_100);
    font-size: 20px;
    font-weight: 600;
}
.orderInfo > .content > .param > span:last-child > a{
    color: var(--color_white_100);
    font-size: 14px;
}

ul.faq > li{
    color: var(--color_gray_300);
    font-size: 14px;
    list-style-type: circle;
}

.f-pt-16{
    padding-top: 16px;
}

#chatsBox #ticketBody{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#ticketBody .content{
    height: 100%;
    display: flex;
}

#dialog textarea{
    resize: none;
    overflow-y: hidden;
}
.form-select:focus,
.form-control:focus{
    border-color: var(--bs-body-color);
    box-shadow: none;
}

#ticketEntities{
    display: block;
}
#ticketEntities > .q-tag{
    margin-top: 8px;
}

.q-tag{
    height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 16px;
    background: var(--color_gray_800);
}
.q-tag > img{
    height: 8px;
    width: 8px;
    cursor: pointer;
}
.q-tag > a,
.q-tag > span{
    font-weight: 500;
    font-size: 12px;
    color: var(--color_gray_200);
    margin-left: 8px;
}

#ticketMessages{
    height: 100%;
    width: 100%;
    flex-direction: column;
    overflow: auto;
    padding: 0 12px 12px 12px;
}
.ticketMessage{
    width: auto;
    max-width: 80%;
    padding: 12px 16px;
    background: var(--color_gray_800);
    color: var(--color_white_100);
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    margin-top: 12px;
}
.ticketMessage.left{
    justify-self: flex-start;
    border-top-left-radius: 0;
}
.ticketMessage.right{
    justify-self: flex-end;
    text-align: right;
    border-top-right-radius: 0;
}
.ticketMessage > .date{
    font-size: 11px;
    display: flex;
    justify-content: flex-end;
    color: var(--color_gray_400);
}
.ticketMessage > .images{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}
.ticketMessage > .images > a > img{
    border-radius: 6px;
    height: 60px;
    width: auto;
}

#chatsBox #dialog{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}
#chatsBox #dialog .actions{
    padding: 0 12px 12px 12px;
}

.offcanvas-header{
    border-bottom: 1px solid var(--color_gray_700);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#newTicket{
    padding: 0 12px;
}

#newTicketInfo{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

#dialogsList .dialog{
    padding: 16px 12px;
    border-bottom: 1px solid var(--color_gray_700);
    cursor: pointer;
    transition: 0.25s;
}
#dialogsList .dialog:hover{
    background: var(--color_gray_900);
    transition: 0.25s;
}

#dialogsList .title{
    font-size: 14px;
    font-weight: 600;
    color: var(--color_white_100);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#dialogsList .date{
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 8px;
    color: var(--color_gray_400)
}
#dialogsList .content{
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#dialogsList .content > .text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.backArrow{
    cursor: pointer;
}

#chatsLabel{
    font-size: 18px;
    font-weight: 600;
    color: var(--color_white_100)
}
#chatsSubLabel{
    font-size: 12px;
    font-weight: 500;
    color: var(--color_gray_400)
}

.tCounter{
    display: none;
}

.text-m{
    font-size: 12px;
    font-weight: 500;
    color: var(--color_gray_400)
}

.treasureTypeIcon{
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

@media (max-width: 768px) {

    .product-card > .prod-content {
        padding: 8px 4px 8px 4px;
    }
}