/* STYLES 30.05.2025
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: AvertaCY;
    src: url(../fonts/AvertaCY-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: AvertaCY;
    src: url(../fonts/AvertaCY-Semibold.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: AvertaCY;
    src: url(../fonts/AvertaCY-Bold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

/* BASIC */
:root {
    --bg: #f4f5fa;
    --bg2: #fff;
    --bg3: #e9ecfc;
    --engine: #fff;
    --engine2: #f4f5fa;
    --text: #191c20;
    --text1: #fff;
    --text2: #626d7a;
    --text3: #b6c3d2;
    --color1: #223bdd;
    --color2: #4057e9;
    --color3: #f05078;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 12px;
}

:root body.dark {
    --bg: #141518;
    --bg2: #1d1f24;
    --bg3: #292b31;
    --engine: #fff;
    --engine2: #f4f5fa;
    --text: #fff;
    --text1: #fff;
    --text2: #9aa2b4;
    --text3: #b6c3d2;
    --color1: #316afb;
    --color2: #5685fb;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "AvertaCY", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* HEADER TOP */
.header-top {
    position: relative;
    padding: 8px 0;
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
}

.header-top .container {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.header-top_map {
    max-width: 300px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--color3);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: bold;
}

.header-top_menu {
    display: flex;
    align-items: center;
    grid-gap: 25px;
    margin-right: auto;
}

.header-top_menu a:hover {
    color: var(--color1);
}

.header-top_theme {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    cursor: pointer;
}

.dark .header-top_theme {
}

.header-top_theme > i {
    color: #ffd788;
}

body.dark .header-top_theme > i {
    color: #9eb6c1;
}

/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    color: var(--text);
    width: 100%;
    top: 0;
    left: 0;
    transition: top 0.3s;
}

header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--bg2);
    box-shadow: 0px 10px 20px rgb(28 56 67 / 10%);
    z-index: 5;
}

header.sticky-hide {
    top: -70px;
}

header.sticky-vis {
    top: 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    padding: 10px 0;
}

.header-logo {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 20px;
}

.header-store {
    position: relative;
    display: block;
    color: var(--text2);
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.header-store:hover {
    color: var(--color1);
}

.header-store > span:first-child {
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    background: #F44336;
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
}

.header-store > span:last-child {
    display: block;
    font-size: 10px;
}

@media (max-width: 860px) {
    .header-store > span:last-child {
        display: none;
    }
}

/* SHOP MENU 01.10.24 */
.shopmenu-btn {
    background: var(--bg3);
    color: var(--color1);
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

.shopmenu-btn.active {
    background: var(--bg2);
    color: var(--text);
    z-index: 8;
}

.shopmenu-btn:hover {
    opacity: 0.8;
}

.shopmenu-btn.active i:before {
    content: "\f00d";
}

.shopmenu {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 120px;
    left: auto;
    width: 800px;
    height: 80%;
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 8;
    overflow: hidden;
}

.shopmenu.active, .shopmenu-sub.active {
    display: grid;
    visibility: visible;
    opacity: 1;
}

.shopmenu *::-webkit-scrollbar {
    position: relative;
    width: 4px;
    border-radius: 10px;
}

.shopmenu *::-webkit-scrollbar-thumb {
    background-color: var(--color1);
}

.shopmenu *::-webkit-scrollbar-track {
    background-color: var(--bg2);
}

.shopmenu-head {
    display: none;
}

.shopmenu-head > i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    text-align: center;
}

.shopmenu > div:nth-child(2) {
    background: var(--bg2);
    color: #000;
    padding: 20px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.shopmenu-back {
    display: none;
    background: #000;
    padding: 10px 20px;
    color: #fff;
}

.shopmenu > div:nth-child(2) a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: transparent;
    color: var(--text);
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.shopmenu > div:nth-child(2) a:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

.shopmenu > div:nth-child(2) a > img {
    width: 40px;
    height: 40px;
}

.shopmenu > div:nth-child(2) a:hover {
    background: var(--bg3);
    color: var(--color1);
}

.shopmenu > div:last-child {
    width: 100%;
    height: 100vh;
    padding: 20px 30px;
    overflow-y: auto;
}

.shopmenu-sub {
    visibility: hidden;
    opacity: 0;
    height: 0;
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .shopmenu-btn {
        min-width: 44px;
        width: 44px;
        padding: 0;
        justify-content: center;
        order: -1;
    }

    .shopmenu-btn span {
        display: none;
    }

    .shopmenu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        border-radius: 0;
        width: 100%;
        grid-template-columns: 1fr;
        transform: none;
    }

    .shopmenu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--bg3);
        padding-left: 20px;
        font-size: 22px;
        font-weight: bold;
    }

    .shopmenu > div:nth-child(2) {
        width: 100%;
        height: max-content;
        padding: 0;
    }

    .shopmenu-sub {
        display: none;
    }

    .shopmenu-back.active {
        display: block;
    }

    .shopmenu-sub {
        grid-template-columns: 1fr;
    }

    .shopmenu > div:nth-child(2) a.active {
        display: none;
    }
}

.shopmenu-sub > div span {
    display: block;
    color: var(--text2);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.shopmenu-sub > div a {
    display: block;
    font-size: 16px;
    margin: 8px 0;
    width: max-content;
    border-bottom: 1px solid transparent;
}

.shopmenu-sub > div a:hover {
    color: var(--color2);
    border-bottom: 1px dotted;
}

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    border-radius: var(--radius);
    margin-right: auto;
}

@media (max-width: 860px) {
    .header-search {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: var(--bg2);
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search_btn, .header-search .fa-magnifying-glass, .header-search .fa-xmark {
    background: var(--bg2);
    color: var(--color1);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 5px;
}

.header-search_btn {
    display: none;
}

@media (max-width: 860px) {
    .header-search_btn {
        display: inline-block;
        color: var(--text2);
        font-size: 28px;
    }
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 380px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search input::placeholder {
    color: #8b9297;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 445px;
    top: 110%;
    left: auto;
    background: var(--bg2);
    box-shadow: 0 10px 20px -2px rgb(0 0 0 / 40%);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 6;
}

@media (max-width: 860px) {
    .header-search_top {
        width: 100%;
        left: 0;
    }
}

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}

.header-search_top > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* HEADER USER */
.header-user {
    position: relative;
}

.header-user > a {
    display: block;
    color: var(--text2);
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.header-user > a > span {
    display: block;
    font-size: 10px;
}

@media (max-width: 860px) {
    .header-user > a > span {
        display: none;
    }
}

.header-user > a:hover {
    color: var(--color1);
}

.header-user > div {
    position: absolute;
    width: 200px;
    top: 100%;
    right: 0;
    background: var(--bg2);
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-user > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 16px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(225deg);
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-user_info {
    border-bottom: 1px solid var(--bg);
    padding: 10px 20px;
    text-align: center;
}

.header-user_info > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header-user_info > span {
    display: block;
    margin: 8px 0;
    font-size: 16px;
    font-weight: bold;
}

.header-user_info > a {
    display: inline-block;
    color: var(--color1);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px dotted var(--color1);
    margin: 5px;
}

.header-user_info > a i {
    margin-right: 5px;
}

.header-user_group {
    display: inline-block;
    background: var(--bg3);
    border-radius: var(--radius);
    color: #b9b3d3;
    padding: 4px 10px;
    font-size: 10px;
}

.header-user_group * {
    color: #b9b3d3!important;
}

.header-user_link {
    padding: 3px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius);
    color: #14192a;
    font-size: 14px;
}

.header-user_link a:last-child {
    color: #F44336;
}

.header-user_link a:hover {
    background: var(--bg2);
    color: var(--color1);
}

/* MODAL LOGIN 0.2 */
.modal-login > a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--text2);
    font-size: 28px;
    text-align: center;
    cursor: pointer;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float > a {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 14px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_btn a {
    background: #000;
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--bg3);
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* BELLI HOME */
.belli-home {
    position: relative;
    overflow: hidden;
}

.belli-home > .fal {
    position: absolute;
    top: 40%;
    left: -10px;
    background: var(--bg);
    color: var(--color1);
    border-radius: 0 80px 80px 0;
    width: 40px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 860px) {
    .belli-home > .fal {
        display: none;
    }
}

.belli-home > .fa-chevron-right {
    left: unset;
    right: -10px;
    border-radius: 80px 0 0 80px;
}

.belli-home .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.belli-home .swiper-pagination {
    bottom: 20px;
    z-index: 2;
}

.belli-home .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 12px;
    opacity: 1;
}

.belli-home .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

/* BELLI SECT */
.belli-sect_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .belli-sect_title {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 15px;
    }
}

.belli-sect_title h1 {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 0;
}

.belli-sect_title a {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg3);
    color: var(--color1);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    overflow: hidden;
}

.belli-sect_items, .belli-sect_items1 {
    position: relative;
    padding: 12px 20px 12px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .belli-sect_items, .belli-sect_items1 {
        padding: 0;
        overflow: visible;
    }
}

.belli-sect_items > .fal, .belli-sect_items1 > .fal {
    position: absolute;
    display: inline-block;
    top: 30%;
    left: 0;
    background: var(--bg);
    color: var(--color1);
    border-radius: 0 80px 80px 0;
    width: 40px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 860px) {
    .belli-sect_items > .fal, .belli-sect_items1 > .fal {
        display: none;
    }
}

.belli-sect_items > .fal + .fal, .belli-sect_items1 > .fal + .fal {
    left: unset;
    right: 0;
    border-radius: 80px 0 0 80px;
}

.belli-sect_items .swiper-button-disabled, .belli-sect_items1 .swiper-button-disabled {
    display: none;
}

.belli-sect_items2 {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 480px 1fr;
}

.belli-sect_items2 > a {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.belli-sect_items2 > div {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .belli-sect_items2 {
        grid-template-columns: 1fr;
    }

    .belli-sect_items2 > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* BELLI CATS */
.belli-cats_item {
    background: var(--bg3);
    color: var(--text2);
    font-weight: 600;
    padding: 20px;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
}

.belli-cats_item:hover img {
    transform: scale(1.05);
}

.belli-cats_item > img {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: auto;
    height: 160px;
    transition: 0.3s;
}

/* BELLI ITEM */
.belli-item {
    position: relative;
    background: var(--bg);
    width: 100%;
    overflow: hidden;
}

.belli-item > [onclick^="doFavorites"] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    text-align: center;
    background: var(--light);
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 50%;
    z-index: 3;
}

.belli-item > [onclick^="doFavorites"] .fa-solid {
    color: #ff4c58;
}

.belli-item_bg {
    position: relative;
    background: #fff;
    padding: 8px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/16;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.belli-item:hover img {
    transform: scale(1.05);
}

.belli-item_bg img {
    transition: 0.3s;
}

.belli-item_sale {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: linear-gradient(180deg, #f05078, #ff1852);
    border-radius: 20px;
    color: var(--text1);
    padding: 2px 8px;
    font-size: 12px;
    z-index: 2;
}

.belli-item_sale span {
    display: inline-block;
    background: #fff;
    color: #f05078;
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: -6px;
    margin-right: 5px;
    font-weight: bold;
    text-align: center;
}

.belli-item_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 10px;
}

.belli-item_title {
    font-size: 16px;
    font-weight: 600;
}

.belli-item_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

.belli-item_head > span:last-child {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: linear-gradient(165deg, #ffdb80 16.44%, #ac9c71 63.42%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
}

.belli-item_price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text2);
}

.belli-item_price span:last-child {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 5px;
}

/* BELLI FULL */
.belli-full_speedbar {
    position: relative;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.belli-full_speedbar > a:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    margin: 0 10px;
    font-size: 12px;
}

.belli-full_speedbar > span {
    font-weight: bold;
}

.belli-full_head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 30px;
    margin-top: -15px;
}

.belli-full_head span:first-child {
    background: linear-gradient(165deg, #ffdb80 16.44%, #ac9c71 63.42%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.belli-full_head span:nth-child(2) {
    color: var(--color1);
}

.belli-full {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px 330px;
}

@media (max-width: 860px) {
    .belli-full {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        margin-bottom: 40px;
    }
}

.belli-screens {
    position: relative;
    display: flex;
    grid-gap: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .belli-screens {
        flex-direction: column;
    }
}

.belli-screens_big {
    overflow: hidden;
}

.belli-screens_mini {
    height: 350px;
}

@media (max-width: 860px) {
    .belli-screens_mini {
        height: auto;
    }
}

.belli-screens_big .swiper-slide {
    background: #fff;
    box-shadow: 0px 10px 20px rgb(28 56 67 / 6%);
    border-radius: var(--radius);
    aspect-ratio: 16/13;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.belli-screens img {
    background: #fff;
    padding: 5px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.belli-screens_big img {
}

.belli-screens_mini > .fal {
    position: absolute;
    left: 40%;
    top: 0;
    font-size: 20px;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 860px) {
    .belli-screens_mini > .fal {
        display: none;
    }
}

.belli-screens_mini > .fa-chevron-down {
    top: unset;
    bottom: 0;
}

.belli-screens_mini .swiper-slide.swiper-slide-thumb-active {
    filter: brightness(1);
}

.belli-screens_mini .swiper-slide {
    width: 80px;
    height: auto;
    border-radius: 10px;
    filter: brightness(0.5);
}

.belli-full > ul {
}

.belli-full > ul > span {
    display: block;
    color: var(--text2);
    font-size: 12px;
    margin-bottom: 10px;
}

.belli-full > ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    font-size: 14px;
    margin: 10px 0;
}

.belli-full > ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    border-bottom: 1px dotted #a8b9cd;
    width: 100%;
    z-index: -1;
}

.belli-full > ul li span {
    background: var(--bg);
    padding: 0 10px;
    margin-left: -10px;
}

.belli-buy {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

.belli-buy_head {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.belli-buy_head .label {
    margin-right: auto;
}

.belli-buy_head a[onclick] {
    background: var(--bg3);
    color: var(--text2);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50px;
    text-align: center;
}

.belli-buy_head button {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    background: var(--bg3);
    color: var(--text2);
    padding: 0 15px;
    height: 35px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.belli-buy_head a[onclick]:hover, .belli-buy_head button:hover {
    background: var(--color1);
    color: #fff;
}

.belli-buy_price {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.belli-buy_price span:nth-child(2) {
    position: relative;
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 5px;
}

.belli-buy_link {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.belli-buy_link a {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.belli-buy_link a:first-child {
    background: var(--bg3);
    color: var(--color1);
}

.belli-rating {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 450px;
}

@media (max-width: 860px) {
    .belli-rating {
        grid-template-columns: 1fr;
    }
}

.belli-rating_head {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.belli-rating_head > b {
    font-size: 35px;
}

.belli-rating_head > div > span {
    color: #8f8f8f;
    font-size: 12px;
}

.belli-rating .dle-comm textarea {
    background: var(--bg2);
}

/* LABEL */
.label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: var(--radius);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.label.red {
    background: #f9e4e3;
    color: #F44336;
}

.label.green {
    background: #e3f9ef;
    color: #00a153;
}

/* FOOTER */
footer {
    position: relative;
    background: #2e3039;
    color: #fff;
}

footer .container {
    display: grid;
    grid-gap: 60px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    padding: 30px 0;
    font-size: 14px;
}

@media (max-width: 860px) {
    footer .container {
        grid-template-columns: 1fr;
        justify-items: start;
        grid-gap: 30px;
    }
}

.footer-logo {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-logo + span {
    color: var(--text3);
    font-size: 12px;
}

.footer-menu {
}

.footer-menu > span, .footer-podb > span:first-child {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-menu > a {
    display: block;
    color: #b6c3d2;
    margin: 5px 0;
}

.footer-podb > span + span {
    display: block;
    color: var(--text3);
    margin-bottom: 20px;
}

.footer-copy {
    color: var(--text2);
    font-size: 12px;
    margin-right: auto;
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: auto;
    grid-column: 4;
}

@media (max-width: 860px) {
    .footer-soc {
        grid-column: auto;
        margin-left: 0;
    }
}

.footer-soc a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 10px;
    background: var(--light);
    font-size: 14px;
    color: #fff;
    text-align: center;
}
