/* STYLES 15.03.2026
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #f8f8f8;
    --bg2: #fff;
    --bg3: #e2f1f2;
    --engine: #fff;
    --engine2: #f8f8f8;
    --text: #191c20;
    --text1: #fff;
    --text2: #676e7e;
    --text3: #a4a8b2;
    --color1: #2eafb7;
    --color2: #34bcc4;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 15px;
    --shadow: 0 0 35px 0 rgb(0 0 0 / 10%);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* HEADER */
.header-top {
    background: #e2f1f2;
    color: #426c6f;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.header-top > .container {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.header-top_city {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-right: auto;
}

.header-top a {
    border-bottom: 1px dashed transparent;
}

.header-top a:hover {
    border-bottom: 1px dashed;
}

header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--bg3);
    padding: 10px 0;
    color: var(--text);
    transition: top 0.3s;
    z-index: 5;
}

header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    box-shadow: var(--shadow);
}

header.is-hidden {
    top: -100px;
}

header > .container {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

@media (max-width: 860px) {
    header > .container {
        grid-gap: 15px;
    }
}

.header-logo {
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-store {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    color: var(--text2);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

.header-store > span#cart_counts {
    position: absolute;
    top: -5px;
    right: 0px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    background: #F44336;
    color: #fff;
}

.header-store > i {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.header-store:hover > i {
    background: var(--color1);
    color: #fff;
}

/* SHOPMENU */
.shopmenu-btn {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--color1);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.shopmenu-btn:hover {
    background: var(--color2);
}

.shopmenu-btn.active {
    background: var(--bg2);
    color: var(--text);
    z-index: 9;
}

.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;
    z-index: 9;
}

.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 7 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;
        height: 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;
    grid-gap: 10px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 3px;
    margin-right: auto;
    z-index: 2;
}

@media (max-width: 860px) {
    .header-search {
        background: var(--bg2);
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        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-microphone, .header-search .fa-xmark {
    background: var(--color1);
    color: #fff;
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.header-search .fa-magnifying-glass {
    background: transparent;
    color: #b0b8c5;
    margin-left: 15px;
}

.header-search_btn {
    display: none;
}

@media (max-width: 860px) {
    .header-search_btn {
        display: inline-block;
        margin-left: auto;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: var(--bg);
        color: var(--text2);
    }
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 250px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search input::placeholder {
    color: #b0b8c5;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 300px;
    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: 8;
}

@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 AND LOGIN 2025*/
.header-user {
    position: relative;
}

.header-user > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    color: var(--text2);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

.header-user > a > i {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.header-user > a:hover > i {
    background: var(--color1);
    color: #fff;
}

.header-user > div {
    position: absolute;
    width: 210px;
    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(0);
    transition: 0.3s;
    z-index: 6;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_info {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    border-bottom: 1px solid var(--bg);
    padding: 10px 20px;
}

.header-user_info > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-user_info > div > span {
    display: block;
    font-size: 10px;
    font-weight: 200;
    color: var(--text2);
}

.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: 8px;
}

.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(--bg);
    color: var(--color2);
}

.header-user_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 5px 10px;
    border-top: 1px solid var(--bg);
    color: var(--text2);
    padding: 10px 20px;
    font-size: 12px;
}

.header-user_meta > span {
    font-size: 10px;
    font-weight: 400;
    color: var(--text3);
}

.header-user_meta a:hover {
    color: var(--color2);
}

a[href="#modal-login"] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    color: var(--text2);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

a[href="#modal-login"] > i {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

a[href="#modal-login"]:hover > i {
    background: var(--color1);
    color: #fff;
}

.header-login {
    position: fixed;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--text);
    padding: 40px 60px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .header-login {
        min-width: 100%;
        border-radius: 0;
    }
}

.header-login > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.header-login > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.header-login_logo {
    font-size: 25px;
    font-weight: 600;
}

.header-login_type {
    display: block;
    max-width: max-content;
    border: 1px solid #d1d3d8;
    border-radius: var(--radius);
    padding: 3px;
    margin: 20px auto 30px;
}

.header-login_type > a:first-child {
    background: #e9e9ef;
    color: #000;
}

.header-login_type > a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    color: var(--text2);
}

.header-login_lost {
    display: block;
    color: var(--text2);
    margin-bottom: 20px;
    font-size: 14px;
}

.header-login_lost > a {
    color: var(--color1);
    border-bottom: 1px dotted;
    margin-left: 8px;
}

.header-login button {
    min-width: 100%;
}

.header-login_soc {
    position: relative;
    max-width: max-content;
    font-size: 14px;
    color: var(--text2);
    margin: 20px auto 0;
}

.header-login_soc > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 15px;
}

.header-login_soc > div > a {
    background: var(--bg);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.header-login_soc > div > a img {
    padding: 10px;
    width: 100%;
    height: 100%;
}

/* VITA HOME */
.vita-home {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 280px;
    align-content: center;
    height: 380px;
}

@media (max-width: 860px) {
    .vita-home {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.vita-home_items {
    position: relative;
    height: inherit;
    border-radius: var(--radius);
    z-index: 4;
    overflow: hidden;
}

.vita-home_items > .far {
    position: absolute;
    top: 40%;
    left: -10px;
    background: var(--light);
    backdrop-filter: blur(20px);
    color: #fff;
    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) {
    .vita-home_items > .far {
        display: none;
    }
}

.vita-home_items > .fa-chevron-right {
    left: unset;
    right: -10px;
    border-radius: 80px 0 0 80px;
}

.vita-home_items .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}

.vita-home_items .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color1);
    width: 20px;
    border-radius: 50px;
}

.vita-home_item {
}

.vita-home_mini {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vita-home_mini > .e-h3 {
    margin-bottom: 15px;
}

/* VITA SECT, SHORT */
.vita-sect_title {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
}

.vita-sect_title a {
    border-radius: var(--radius);
    background: #e2f1f2;
    color: #426c6f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
}

.vita-sect_title a:hover {
    background: var(--color2);
    color: #fff;
}

.vita-sect_items {
    position: relative;
    padding: 12px 20px 0;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vita-sect_items {
        padding: 0;
        overflow: visible;
    }
}

.vita-sect_items > .fa-regular {
    position: absolute;
    display: inline-block;
    top: 25%;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

.vita-sect_items > .fa-regular:hover {
    background: var(--color2);
    color: #fff;
}

@media (max-width: 860px) {
    .vita-sect_items > .fa-regular {
        display: none;
    }
}

.vita-sect_items > .fa-regular + .fa-regular {
    left: unset;
    right: 0;
}

.vita-sect_items .swiper-button-disabled, .vita-sect_items .swiper-button-disabled {
    display: none;
}

.vita-short {
    position: relative;
    background: var(--bg2);
    padding: 2px;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.vita-short_head {
    position: absolute;
    width: 100%;
    padding: 10px 15px;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.vita-short_head > a[onclick] {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: rgb(0 0 0 / 48%);
    margin-left: auto;
}

.vita-short_bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.vita-short_bg img {
    transition: 0.3s;
}

.vita-short:hover .vita-short_bg img {
    transform: scale(1.05);
}

.vita-short_bg > .label {
    position: absolute;
    left: 20px;
    bottom: 0;
    border-radius: 12px 12px 0 0;
    z-index: 2;
}

.vita-home_mini .vita-short_bg {
    aspect-ratio: 16/10;
}

.vita-short_content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-height: 160px;
}

.vita-short_price {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.vita-short_price > span {
    font-size: 14px;
    color: var(--text2);
    text-decoration: line-through;
    font-weight: 300;
}

.vita-short_title {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.vita-short:hover .vita-short_title {
    color: var(--color1);
}

.vita-short_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

.vita-short_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    font-size: 14px;
    color: var(--text2);
    margin-top: auto;
}

.vita-full_head ~ .vita-short_meta {
    margin-top: -15px;
    margin-bottom: 25px;
}

.vita-short_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.vita-short_meta .rating > i {
    color: #ffb45b;
}

.vita-short_meta .stock {
    margin-right: auto;
}

.vita-short_meta .stock > i {
    color: #8BC34A;
}

.vita-short_meta > a {
    display: inline-block;
    color: var(--text3);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    margin: 0 -8px;
}

/* VITA FULL */
.vita-full_speedbar {
    position: relative;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.vita-full_speedbar > a:after {
    content: "\f054";
    font-family: "Font Awesome 7 Pro";
    margin: 0 10px;
    font-size: 12px;
}

.vita-full_speedbar > span {
    font-weight: bold;
}

.vita-full {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 450px 1fr;
}

@media (max-width: 860px) {
    .vita-full {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        margin-bottom: 40px;
    }
}

.vita-screens {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vita-screens {
        flex-direction: column;
    }
}

.vita-screens_big {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.vita-screens_mini {
}

@media (max-width: 860px) {
    .vita-screens_mini {
        height: auto;
    }
}

.vita-screens_big .swiper-slide {
    background: var(--bg);
    border-radius: var(--radius);
    width: 100%;
    height: max-content;
    overflow: hidden;
}

.vita-screens_big > .far {
    position: absolute;
    top: 40%;
    left: -10px;
    background: var(--color1);
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 0 80px 80px 0;
    width: 40px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    transition: 0.3s;
}

.vita-screens_big:hover > .far {
    opacity: 1;
}

.vita-screens_big > .fa-chevron-right {
    left: unset;
    right: -10px;
    border-radius: 80px 0 0 80px;
}

.vita-screens img {
    background: var(--bg);
    padding: 5px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.vita-screens_mini .swiper-slide.swiper-slide-thumb-active {
    border: 2px solid var(--color1);
}

.vita-screens_mini .swiper-slide {
    width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    border: 2px solid var(--bg);
}

.vita-full_head {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.vita-full_grid {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .vita-full_grid {
        grid-template-columns: 1fr;
    }
}

.vita-full_text.dle-text * {
    font-size: 16px;
}

.vita-full_left > ul > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.vita-full_left > ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    font-size: 14px;
    margin: 10px 0;
}

.vita-full_left > ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    border-bottom: 1px dotted #a8b9cd;
    width: 100%;
    z-index: -1;
}

.vita-full_left > ul li span {
    background: var(--bg2);
    padding: 0 10px;
    margin-left: -10px;
}

.vita-full_left > ul li span:last-child {
    font-weight: 600;
}

.vita-full_left > span + .dle-text * {
    font-size: 14px;
}

.vita-full_buy {
    position: relative;
    background: var(--bg2);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: var(--radius);
}

.vita-full_price {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 30px;
}

.vita-full_price span:nth-child(2) {
    position: relative;
    display: block;
    color: var(--text3);
    font-size: 18px;
    font-weight: 200;
    text-decoration: line-through;
    margin-left: 5px;
}

.vita-full_link {
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
}

.vita-full_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;
}

.vita-full_link a:first-child {
    background: var(--bg3);
    color: var(--color1);
}

.vita-full_right > ul {
    position: relative;
    background: var(--bg2);
    box-shadow: var(--shadow);
    padding: 30px 30px 10px 30px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.vita-full_right > ul > span {
    display: block;
    margin: -30px -30px 10px;
    padding: 15px 30px;
    border-bottom: 1px solid var(--dark);
    font-weight: 500;
}

.vita-full_right > ul > li {
    display: flex;
    grid-gap: 20px;
    margin: 15px 0;
}

.vita-full_right > ul > li > i {
    background: #e2f1f2;
    color: #426c6f;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: var(--radius);
}

.vita-full_right > ul > li > div > span {
    display: block;
    font-size: 14px;
    color: var(--text2);
}

.vita-full_tabs {
    display: flex;
    align-items: center;
    background: var(--bg);
    padding: 3px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    max-width: max-content;
}

.tab-content:not(.tab-content.active) {
    display: none;
}

.tab-content #dle-comments-form textarea {
    background: var(--bg);
}

.vita-full_tabs > span {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 500;
}

.vita-full_tabs > span.active {
    background: #e2f1f2;
    color: #426c6f;
    font-weight: 600;
}

.gre-full_tabs #dle-comments-form textarea {
    background: var(--bg);
}

/* LABEL, BADGE */
.label {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    max-width: max-content;
    padding: 5px 10px;
    background: #1B4;
    box-shadow: 0 6px 12px rgb(17 187 68 / 36%);
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.label.violet {
    background: #A7F;
    box-shadow: 0 6px 12px rgb(170 119 255 / 36%);
}

.label.red {
    background: #f66;
    box-shadow: 0 6px 12px rgb(255 102 102 / 36%);
}

.label.yellow {
    background: #fe8;
    box-shadow: none;
    font-weight: 600;
    color: #000;
}

/* FOOTER */
footer {
    position: relative;
    background: #18191d;
    box-shadow: 0px -7px 10px rgb(0 0 0 / 10%);
    color: #fff;
}

footer > .container {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
    justify-content: space-between;
    font-size: 14px;
    padding: 30px 0;
}

@media (max-width: 860px) {
    footer > .container {
        grid-template-columns: 1fr;
    }
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    color: #c4d6e2;
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: auto;
}

@media (max-width: 860px) {
    .footer-soc {
        margin: 15px 0;
    }
}

.footer-soc a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #4d5161;
    font-size: 18px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color2);
    border: 2px solid var(--color2);
}

.footer-copy {
    color: var(--text2);
}
