@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: #f6f9fc;
    --bg2: #ffffff;
    --bg3: #f6faff;
    --bg-bank: #ffffff;
    --engine: #fff;
    --engine2: #f4f5fa;
    --text: #191c20;
    --text1: #fff;
    --text2: #626d7a;
    --text3: #3e3e3e;
    --color1: #0e7de9;
    --color2: #3c96ef;
    --color3: #f05078;
    --color4: #191c20;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 12px;
    --logo-wd: url(/templates/finap/images/logo.svg);
    --angle: linear-gradient(45deg, rgb(239 251 255), rgb(218 228 255));
}

:root body.dark {
    --bg: #141518;
    --bg2: #1d1f24;
    --bg3: #292b31;
    --bg-bank: #292b31;
    --engine: #fff;
    --engine2: #f4f5fa;
    --text: #fff;
    --text1: #fff;
    --text2: #9aa2b4;
    --text3: #b6c3d2;
    --color1: #0e7de9; /*  #ffffff  */
    --color2: #5685fb;
    --color4: #ffffff;
    --logo-wd: url(/templates/finap/images/logo-dark.svg);
    --angle: linear-gradient(45deg, rgb(33 36 44), rgb(61 70 96));
}

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: 15px 0;
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
}

.header-top .container {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.header-top_map {
    /*display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--color3);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius);
    font-weight: bold;*/
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #000000;
    font-weight: 300;
    border-bottom: 1px dotted;
}

.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(205 216 220 / 10%);
    z-index: 6;
}

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;
    background-image: var(--logo-wd);
    width: 130px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.header-logo-mobile{
    background-image: var(--logo-wd);
    width: 130px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-linkap-ico{
    padding: 5px;
}
.menu-linkap{
  font-size: 15px;  
}
.menu-flex{
    display: flex;
}

.shopmenu-btn.active {
    background: var(--bg2);
    color: var(--text);
    z-index: 5;
}

.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: 950px;*/ /* 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: var(--bg);
    padding: 10px 20px;
    color: var(--text);
}

.shopmenu > div:nth-child(2) a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    /*justify-content: space-between;*/
    background: transparent;
    color: var(--text);
    border-radius: var(--radius);
    padding: 15px 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(--bg2);
        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: 20px;
    font-weight: bold;
    text-transform: uppercase;
    height: 30px;
}

.shopmenu-sub > div a {
    display: block;
    font-size: 16px;
    margin: 15px 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: var(--text);
    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: var(--bg2);
    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: var(--text);
    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(--bg2);
    color: var(--color1);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    overflow: hidden;
}

.belli-sect_items, .belli-sect_items1 {
    position: relative;
    padding: 5px 0px 5px; /*5px 0px 35px*/
    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: 15%;
    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 {
    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;
    background: var(--bg2);
}

.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(1, 1fr);
    }
}

/* BELLI CATS */
.belli-cats_item {
    /*background: var(--bg2);*/
    background: var(--angle);
    color: var(--text2);
    font-size: 20px;
    font-weight: 600;
    padding: 20px;
    aspect-ratio: 1 / 0.5;
    border-radius: 20px;
    text-align: left;
    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(--bg2);
    width: 100%;
    overflow: hidden;
    padding: 5px;
    border-radius: var(--radius);
    height: auto;
}

.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: var(--bg2);
    padding: 8px;
    width: 100%;
    height: auto;
    /*aspect-ratio: 16/16;*/
    aspect-ratio: 25 / 15;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.belli-item:hover img {
    transform: scale(1.05);
}

.belli-item_bg img {
    transition: 0.3s;
    border-radius: var(--radius);
    min-height: 230px;
}

.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;*/
    position: absolute;
    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, #ffca43 16.44%, #f2b513 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;*/
    display: grid;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 400px 400px;
}

@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;
    justify-content: center;
    align-items: center;
    */
    position: relative;
    display: flex;
    grid-gap: 10px;
    overflow: hidden;
    justify-content: center;
}

@media (max-width: 860px) {
    .belli-screens {
        flex-direction: column;
    }
}

.belli-screens_big {
    overflow: hidden;
}

.belli-screens_mini {
    width: 290px;
    height: 190px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}

@media (max-width: 860px) {
    .belli-screens_mini {
        height: auto;
    }
}
.full-screens_mini {
    width: 290px;
    height: 190px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}

@media (max-width: 860px) {
    .full-screens_mini {
        height: auto;
    }
    .full-screens_mini {
        width: 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: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.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;
    justify-content: space-between;
}

.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: var(--radius);
    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: var(--radius);
    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;
    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: 9px 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: var(--bg2);
    color: var(--text);
}

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;
    text-transform: uppercase;
    background-image: var(--logo-wd);
    width: 130px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.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: var(--text);
    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: #949494;
    text-align: center;
}
/*******/
.menu-linkap{
    
}
.disclaimer-footer{
    position: relative;
    max-width: 1320px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 0px;
    font-size: 11px;
}
.disclaimer-footer-title{
    
}
/*************/
.menu-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /*grid-template-rows: repeat(5, .5fr);*/
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-grow: 1;
    /*
    grid-template-areas:
        "osago credit loans"
        "osago credit deposits"
        "vzr mortgageInsurance mortgageInsurance"
        "creditsRating sportInsurance mortgage"
        "strahovanieNedvizhimosti kasko serviceMenu";
        */
    padding: 30px 0px;
}

.menu-grid-card-osago {
    position: relative;
    grid-column: span 2;
    background: var(--bg-bank);
    border-radius: 14px;
    height: 200px;
    padding: 20px;
}
.menu-grid-card-zaim {
    grid-column: span 3;
    background: var(--bg-bank);
    border-radius: 20px;
    height: 200px;
    padding: 20px;
}
.menu-grid-card {
    /*
    display: grid;
    padding-right: 30px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1.5fr);
    grid-template-areas:
    "osago credit deposits mortgageInsurance sportInsurance kasko strahovanieNedvizhimosti"
    "osago credit loans creditsRating vzr mortgage serviceMenu";
    */
    position: relative;
    display: flex;
    background: var(--bg-bank);
    border-radius: 20px;
    height: 200px;
    justify-content: flex-start;
    padding: 15px;
}
.menu-grid-card-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}


.zoom-effect {
  transition: transform 0.5s ease;
}

.zoom-effect:hover {
  transform: scale(1.05);
}
.menu-main-dipoint{
    font-size: 11px;
    background: #288bee;
    padding: 3px 10px;
    border-radius: 14px;
    color: #fff;
    white-space: pre;
}
.menu-icon-zaim{
    background-image: url(/templates/finap/images/icon/icon-zaim.svg);
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    width: 80px;
    height: 80px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s;
}
.menu-icon-card{
    background-image: url(/templates/finap/images/icon/icon-card.svg);
    background-position: right;
    background-repeat: no-repeat;
        position: absolute;
    width: 80px;
    height: 80px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s;
}
.menu-icon-credit-card{
    background-image: url(/templates/finap/images/icon/icon-credit-card.svg);
    background-position: right;
    background-repeat: no-repeat;
        position: absolute;
    width: 80px;
    height: 80px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s;
}
.menu-icon-credit-biz{
    background-image: url(/templates/finap/images/icon/icon-credit-biz.svg);
    background-position: right;
    background-repeat: no-repeat;
        position: absolute;
    width: 80px;
    height: 80px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s;
}
.menu-icon-zaim-bo{
    background-image: url(/templates/finap/images/icon/icon-zaim-bo.svg);
    background-position: right;
    background-repeat: no-repeat;
        position: absolute;
    width: 80px;
    height: 80px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s;
}

.menu-icon-osago{
    background-image: url(/templates/finap/images/icon/icon-osago.svg);
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    width: 230px;
    height: 100px;
    right: 15px;
    bottom: 0px;
    transition: 0.3s;
}

@media (max-width: 860px) {
    .menu-grid-card-title {
       font-size: 12px;
       font-weight: bold;
       margin-bottom: 8px;
   }
   .menu-main-dipoint {
    font-size: 8px;
    background: #288bee;
    white-space: pre;
   }
   .menu-icon-zaim {
       width: 50px;
       height: 50px;
   }
   .menu-icon-zaim-bo {
       width: 50px;
       height: 50px;
   }
   .menu-icon-card {
       width: 50px;
       height: 50px;
   }
   .menu-icon-osago {
       width: 125px;
       height: 50px;
   }
   .menu-icon-credit-biz {
       width: 50px;
       height: 50px;
   }
   .menu-icon-credit-card {
       width: 50px;
       height: 50px;
   }
   .menu-grid-main{
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       grid-template-rows: repeat(3, .5fr);
       grid-column-gap: 2px;
       grid-row-gap: 10px;
       flex-grow: 1;
   }
   .menu-grid-card-zaim {
       grid-column: span 2;
   }
}


/**********************/
.brand-parent {
    display: flex;
    display: -webkit-flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    align-items: center;
    -webkit-align-items: center;
    overflow: hidden;
}
.brands-carousel {
    height: 170px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: nowrap;
    align-items: center;
    -webkit-align-items: center;
    animation: animate 30s linear infinite;
}
.brands-carousel .slide-content {
    height: 50px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    margin: 0px 10px;
}
.brands-carousel-icon-bank {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    white-space: nowrap;
    color: #808080;
    text-transform: uppercase;
    padding: 10px;
    width: 100%;
    background: var(--bg);
    border-radius: 14px;
    transition: all .3s ease-in-out 0s;
    font-size: 10px;
}

.brands-carousel .slide-content a img {
    display: inline-block;
    width: auto;
    max-width: 100%!important;
    height: auto;
    max-height: 95%;
    filter:    grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: .5;
    transition: all .3s ease-in-out;
}
.brands-carousel .slide-content a:hover img, 
.brands-carousel .slide-content a:active img {
    filter:    grayscale(0);
    -webkit-filter: grayscale(0);
    opacity: 1;
}

.brands-carousel .slide-content a:hover, .brands-carousel .slide-content a:active {
    box-shadow: 0 0 25px rgba(0,0,0,.15);
}
@keyframes animate {
    0% {
        transform: translate3d(0, 0,0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes animate {
    0% {
        transform: translate3d(0, 0,0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
.brand-parent:hover .brands-carousel {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
/******************/
.cbr-container {
    /*max-width: 600px;
    margin: 0 auto;*/
    background: var(--bg-bank);
    padding: 20px;
    border-radius: 20px;
}
.cbr-container-title{
    font-size: 20px;
    margin-bottom: 15px;
}
.rate {
    font-size: 17px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.change {
    font-weight: bold;
}

.up {
    color: green;
}

.down {
    color: red;
}
/*******************/
.cbr-currency{
    width: 25px;
    margin-right: 20px;
}
.cbr-currency-flex{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cbr-currency-flex span{
    padding: 5px;
    text-align: center;
    margin-right: 30px;
}
/*********************/
.position-main-cbr-calc{
    min-height: 200px;
}
/*********************/
.list-financial-calculators{
    background: var(--bg-bank);
    padding: 20px;
    border-radius: 20px;
    min-height: 205px;
}
.list-financial-calculators-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}
.list-financial-calculators-all{
    line-height: 50px;
}
.list-financial-calculators-all a{
    padding: 10px;
    background: var(--bg3);
    border-radius: 14px;
}
.list-financial-calculators-all a:hover{
    background: var(--bg2);
}
/*******************/
.lenta-tap-offer{
}
/*******************/
.product-offer-points{
    
}
.product-offer-points ul{
    
}
.product-offer-points ul li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    font-size: 14px;
    margin: 10px 0;
}
.product-offer-points > ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    border-bottom: 1px dotted #a8b9cd;
    width: 100%;
    z-index: -1;
}
.product-offer-points > ul li span {
    background: var(--bg2);
    padding: 0 10px;
    margin-left: -10px;
}
/*********************/
.info-card-offers{
    padding: 0px 5px;
}
.name-offers-card{
    color: var(--text);
    padding: 10px 0px;
    font-weight: 500;
}
.offer-block-links{
    display: flex;
    justify-content: space-between;
}
.btn-offer-main{
    display: flex;
    background: #00d875;
    width: 100%;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.btn-offer-main:hover{
    opacity: 0.8;
}
.about-offer-main{
    display: flex;
    background: var(--bg3);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin-right: 10px;
}
.about-offer-main :hover{
    opacity: 0.8;
}
.image-offers-card{
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    object-fit: contain;
    padding: 0px;
    margin-right: 10px;
}
.offers-card-container{
    display: flex;
    margin: 15px 0px;
}
.name-description-offer{
    
}
.name-description-offer h1{
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 1px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 175px;
}
.name-description-offer-category{
    font-size: 11px;
    font-weight: 300;
    line-height: 11px;
}
.about-company{
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.about-company-sect{
    background: var(--bg2);
    border-radius: var(--radius);
    width: 49.555555%;
    margin: 0;
    padding: 25px;
}
.about-company-image{
    border-radius: var(--radius);
    background: rgb(10 117 237 / 15%);
}
.about-company-desc{
    
}
.about-company-desc h1{
    font-size: 22px;
    font-weight: 500;
}
.about-company-desc p{
    
}

@media (max-width: 860px) {
    .about-company-sect {
    width: 100%;
  }
  .about-company {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    flex-wrap: wrap;
}
}

/*******************/
.menu-product-main{
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
}
.menu-product-main-flex{
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
}
.menu-product-main-blok{
    display: flex;
    flex-direction: column;
    width: 310px;
    align-content: space-between;
    flex-wrap: wrap;
    line-height: 30px;
}
.menu-product-main-blok span{
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
.menu-product-main-blok a{
    display: block;
    font-size: 16px;
    width: max-content;
    border-bottom: 1px solid transparent;
}

.menu-product-main-blok a:hover {
    color: var(--color2);
    border-bottom: 1px dotted;
}
.menu-product-main-blok a:hover{
    opacity: 0.8;
}
.menu-product-main-title{
    
}
/***************/
.card-journal-category{
    font-size: 11px;
}
.card-journal-tm{
   font-size: 11px;
   display: flex;
   justify-content: space-between;
   margin: 5px 5px;
}
.card-journal-date{
    
}
.card-journal-views{
    
}
/*********************/
.tab-btn-active {
    pointer-events: none;
    color: #288bee;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
    transition: color .15s ease-in-out, border-color .15s ease-in-out;
    background: 0 0;
    border-bottom: 0.125rem solid #288bee;
  }

  .tab-pane:not(.tab-pane-show) {
    display: none;
  }
  .tab-btn{
    margin: 0px 15px;
  }
  .tab-nav-card{
    display: flex;
    margin: 20px 0px;
    align-items: center;
    justify-content: flex-start;
  }
  .tab-nav{
      
  }
  .tab-nav button{
      color: var(--color4);
      white-space: pre;
      cursor: pointer;
  }

/*********************/

.category-menu-flt-list{
    display: flex;
    margin: 1px;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row; 
}
@media only screen and (max-width: 950px) {
    .category-menu-flt-list{
        flex-wrap: nowrap;
    }
}
#set_sort_category_mn{
   width: 100%;
   overflow-x: overlay;
   /*overflow-x: scroll;*/
   -webkit-overflow-scrolling: touch;
   margin-bottom: 25px;
}

#set_sort_category_mn::-webkit-scrollbar {
    width: 10px;
    height: 7px;
}
#set_sort_category_mn::-webkit-scrollbar-track {
    background-color: #dcdcdc;
    border-radius: 50px;
}
#set_sort_category_mn::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}
/**************/
.icocomparison{
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg fill='%23626d7a' width='28px' height='28px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='icocomparison' stroke-width='0'%3E%3C/g%3E%3Cg id='icocomparison' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='icocomparison'%3E%3Cpath d='M1,8A1,1,0,0,1,2,7H9.586L7.293,4.707A1,1,0,1,1,8.707,3.293l4,4a1,1,0,0,1,0,1.414l-4,4a1,1,0,1,1-1.414-1.414L9.586,9H2A1,1,0,0,1,1,8Zm21,7H14.414l2.293-2.293a1,1,0,0,0-1.414-1.414l-4,4a1,1,0,0,0,0,1.414l4,4a1,1,0,0,0,1.414-1.414L14.414,17H22a1,1,0,0,0,0-2Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    width: 28px;
    height: 28px;
}
/*****************/
.requirements-documents-full{
    /*background: var(--bg2);*/
    padding: 20px;
    border-radius: var(--radius);
}
.requirements-documents{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, .5fr);
    grid-column-gap: 10px;
    grid-row-gap: 8px;
    margin-bottom: 40px;
}
.requirements-documents-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg2);
    margin: 0px;
    /*padding: 20px;*/
    border-radius: var(--radius);
    -webkit-box-shadow: 0px 0px 27px -20px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 27px -20px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 27px -20px rgba(34, 60, 80, 0.2);
}
.requirements-documents-card h3{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0px;
    border-bottom: 1px dotted #0a355f;
    padding: 10px;
    width: 100%;
    background: var(--bg2);
    border-radius: 12px 12px 0px 0px;
}
.requirements-documents-blok{
    padding: 10px 20px 20px 20px;
}
.requirements-documents-info{
    font-size: 14px;
    line-height: 1.5;
    color: var(--text2);
}
@media (max-width: 860px) {
    .requirements-documents {
        grid-template-columns: repeat(1, 1fr);
    }
}
/********************/
.info-card-offers{
   display: flex;
   flex-direction: column;
   margin-top: 15px;  
}
.info-card-offers-date{
   font-size: 11px;
   color: #787878; 
}
.info-card-offers-lic{
   font-size: 11px;
   color: #787878;
}
/****************/
/*
.card-pattern-finans{
   display: flex;
   flex-direction: column;
}
.card-pattern-price{
    font-size: 20px;
    font-weight: 600;
}
.card-pattern-decision{
    font-size: 20px;
    font-weight: 600;
}
*/
/****************/
.approval-offer{
    display: flex;
    flex-direction: row;
    padding: 3px 10px;
    border-radius: var(--radius);
    background: #edf6ec;
}
.approval-offer-cf{
    background: linear-gradient(165deg, #15c65b 16.44%, #4dc537 63.42%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 5px;
}
.approval-offer-cn{
    background: linear-gradient(165deg, #15c65b 16.44%, #4dc537 63.42%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 5px;
}
.approval-offer-ct{
    background: linear-gradient(165deg, #15c65b 16.44%, #4dc537 63.42%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 5px;
}
/******************/
.journal-post-text{
    
}
.images-journal-post{
    background: var(--bg2);
    border-radius: 20px;
    padding: 15px;
    margin: 30px 5px;
}
.images-journal-post img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
}

@media (max-width: 575px){
  .images-journal-post img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
  }
}

/******************/
#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 12px;
  background-color: white;
  border-radius: 5px;
  z-index: 9999;
  box-shadow: 2px 3px 10px rgb(182 200 255);
}

#cookie_notification p{
  margin: 0;
  font-size: 11px;
  text-align: left;
  color: #000000;
  margin-bottom: 5px;
}


@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
    float: right;
  }
}
/******************/
.e-cover{
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(1, 1fr) !important;
}
/******************/
.categories-journal{
    
}
.categories-journal-title{
    margin-bottom: 15px;
}
/****************/
#cookie_note{
    position: fixed;
    z-index: 100;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: var(--bg2);
    border-radius: 20px;
    box-shadow: 2px 3px 10px rgb(0 0 0 / 5%);
}
#cookie_note p{margin: 0;font-size: 0.7rem;text-align: left;color: var(--text3);}
#cookie_note .btn-sm {
    display: block;
    margin: 0 auto;
    background: var(--color1);
    color: #fff;
    padding: 10px 10px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}
.cookie_accept{width:50%;}
@media (min-width: 576px){
    #cookie_note.show{
    display: flex;
    justify-content: center;
    align-items: center;
    }
}
@media (max-width: 575px){
    #cookie_note.show{
    display: flex;
    text-align: left;
    flex-direction: column;
    }
}
/*************/
.seo-category-description{
   margin-bottom: 50px;
    background: var(--bg2);
    border-radius: 20px;
    padding: 20px; 
}
/************/
.footer-soc a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
 }
.footer-soc a img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/*************/
.number-articles-in-journal{
    float: right;
}
/*  start dec-osago  */

.osago-blok{
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
}
    .ops-osago-text-seorel{
        line-height: 25px;
        margin-top: 40px;
        background: var(--bg2);
        padding: 20px;
        border-radius: 20px;
    }
    .ops-osago-text-seorel-marker{
        font-size: 17px;
        font-weight: 500;
        color: #344e9d;
    }
    .ops-osago-text-seorel-title{
    
    }
    .ops-osago-text-seorel-desc{
    
    }
    .ops-osago-text-seorel-desc h3{
       font-size: 19px;
       padding: 20px 0px 20px 0px;
    }
    .ops-osago-text-seorel-desc p{
       font-size: 15px;
       padding: 10px 0px 10px 0px;
    }
    .ops-osago-text-seorel-ptn{
       padding: 10px;
       display: flex;
       flex-direction: column;
    }
/*  end dec osago  */
.calculator {
    background: var(--bg2);
    padding: 20px;
    border-radius: 20px;
}

.calculator label {
    display: block;
    margin: 10px 0 5px;
}

.calculator input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: solid 1px #cdcdcd;
    border-radius: 14px;
}

.calculator button {
    padding: 10px 15px;
    background-color: var(--color1);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.calculator button:hover {
    background-color: var(--color1);
}

.calculator table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.calculator th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.calculator thead {
    background-color: #f2f2f2;
}
/****************/
.zaim-calculator-blok{
    background: var(--bg2);
    padding: 20px;
    border-radius: 20px;
}
.zaim-calculator {
    max-width: 100%;
    margin: auto;
    background: var(--bg2);
    padding: 20px;
    
}

.zaim-calculator label {
    display: block;
    margin: 10px 0 5px;
}

.zaim-calculator input[type="number"], input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 14px;
}

.zaim-calculator .error {
    color: red;
    display: none;
}

.zaim-calculator button {
    padding: 10px;
    background-color: var(--color1);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.zaim-calculator button:hover {
    background-color: var(--color1);
}

.zaim-calculator table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    display: block !important;
    overflow-x: auto;
    white-space: nowrap;
}

.zaim-calculator th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
/******************/
.content-faq {
    margin-bottom: 30px;
}
#faq{
    background: var(--bg2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.faq-heading{
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    margin-bottom: 45px;
}
.faq-heading h3{
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    color: var(--color4);
    text-transform: uppercase;
}
.faq-heading p{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--color4);
    max-width: 100%;
}
.faq-content{
    display: grid;
    /*grid-template-columns: 1.3fr 1fr;*/
    width: 100%;
    align-items: flex-start;
}
.faq-box{
    padding: 25px;
    background: var(--bg);
    border: 1px solid var(--bg);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}
.faq-box:last-child{
    margin-bottom: 0px;
}
.faq-box-question{
    display: grid;
    grid-template-columns: 1fr 30px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-box-question h4{
    font-weight: 700;
    font-size: 22.625px;
    line-height: 31px;
    color: var(--text);
    margin-bottom: 0px;
}
.faq-box-answer{
    max-height: 0px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.faq-box-answer p{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--color4);
    padding-top: 20px;
}
.faq-img{
    width: 100%;
    overflow: hidden;
    border-radius: 27px 0px 0px 27px;
    display: flex;
    box-shadow: 14px 14px 60px rgba(59, 42, 130, 0.06);
}
.faq-box-container{
    margin-right: 40px;
}
.faq-img img{
    width: 100%;
    object-fit: contain;
    object-position: right;
}

.faq-box-icon{
    display: block;
    position: relative;
    height: 3px;
    transition: background 0.2s ease-out;
    width: 23px;
    margin-left: auto;
}
.faq-box-icon::before,
.faq-box-icon::after{
    background: #288bee;
    content: '';
    position: absolute;
    height: 100%;
    transition: all ease-out 0.2s;
    width: 100%;
    border-radius: 3px;
}

.faq-box-icon::before{
    top: 0px;
}
.faq-box-icon::after{
    transform: rotate(90deg);
    top: 0px;
}
.faq-box-question.active h4{
    color: #2273c5;
}
.faq-box-question.active .faq-box-icon::after{
    transform: rotate(0deg);
}
@media(max-width:1200px){
#faq{
    padding: 84px 0px 144px 20px;
}
}
@media(max-width:800px){
#faq{
    padding: 84px 0px 144px 20px;
}
.faq-content{
    grid-template-columns: 1fr;
}
.faq-box-container{
    margin-right: 0px;
    padding-right: 20px;
}
.faq-img{
    margin-top: 25px;
}
}
@media(max-width:724px){
#faq{
    padding: 82px 0px 80px 20px;
}
.faq-img{
    border-radius: 18.0651px 0px 0px 18.0651px;
}
.faq-heading{
    padding: 0px 20px;
}
.faq-heading h3{
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
}
.faq-box-question h4{
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
}
.faq-box{
    padding: 24px 21px;
}
.faq-box-icon{
    width: 16px;
}
.faq-box-question{
    grid-template-columns: 1fr 16px;
 }
}

