@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #F5F5F5;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* COMMONS */

.canvas {
    padding-top: 141px;
    overflow: hidden;
}

.layout-expanded {
    padding-top: 210px;
}

.block {
    position: relative;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
}

.block-alt {
    position: relative;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
}

.block-green {
    padding-top: 72px;
    padding-bottom: 64px;
    border-radius: 22px;
    background-color: #B5CD34;
}

.block-green-alt {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 22px;
    background-color: #B5CD34;
}

.frame {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.frame-alt {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

.frame-alt-2 {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
}

.frame-alt-3 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.layout {
    display: flex;
    column-gap: 32px;
}

.layout-side {
    flex: none;
    position: relative;
    width: 260px;
}

@keyframes layout-side-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.layout-side::-webkit-scrollbar {
    width: 17px;
    height: 17px;
    border-radius: 30px;
}

.layout-side::-webkit-scrollbar-thumb {
    background: #ACACAC;
    border-radius: 30px;
    border: solid 6px #FFFFFF;
}

.layout-side::-webkit-scrollbar-thumb:hover {
    background: #ACACAC;
}

.layout-side::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.layout-expanded .layout-side {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 360px;
    height: 100%;
    padding: 32px;
    background-color: #FFFFFF;
    overflow: auto;
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
    animation: layout-side-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 99;
}

.layout-expanded .layout-side-shown {
    display: block;
}

.layout-side-close {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background-image: url(../assets/close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    cursor: pointer;
    transition: 0.5s;
    z-index: 100;
}

.layout-expanded .layout-side-close {
    right: unset;
    left: 312px;
}

.layout-side-close:hover {
    transform: rotate(180deg);
}

.touch .layout-side-close:hover {
    transform: rotate(0deg);
}

.layout-side-close:active,
.touch .layout-side-close:active {
    transform: rotate(180deg);
}

.layout-content {
    flex: auto;
    min-width: 0;
}

.layout-blocks {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.title {
    color: #000000;
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
}

.title strong {
    color: #B5CD34;
    font-weight: 600;
}

.title-alt {
    color: #000000;
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
}

.title-alt strong {
    color: #B5CD34;
    font-weight: 600;
}

.title-alt-2 {
    color: #000000;
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
}

.title-alt-2 strong {
    color: #FFFFFF;
    font-weight: 600;
}

.caption {
    padding-top: 16px;
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}

.caption-alt {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.caption strong {
    font-weight: 700;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.45);
    transition: 0.25s;
}

.button:hover {
    color: #B5CD34;
}

.touch .button:hover {
    color: #FFFFFF;
}

.button:active,
.touch .button:active {
    color: #B5CD34;
}

.button path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.button:hover path {
    fill: #B5CD34;
}

.touch .button:hover path {
    fill: #FFFFFF;
}

.button:active path,
.touch .button:active path {
    fill: #B5CD34;
}

.button-green {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #B5CD34;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.75);
    transition: 0.25s;
}

.button-green:hover {
    background-color: #000000;
    color: #B5CD34;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.45);
}

.touch .button-green:hover {
    background-color: #B5CD34;
    color: #FFFFFF;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.75);
}

.button-green:active,
.touch .button-green:active {
    background-color: #000000;
    color: #B5CD34;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.45);
}

.button-green path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.button-green:hover path {
    fill: #B5CD34;
}

.touch .button-green:hover path {
    fill: #FFFFFF;
}

.button-green:active path,
.touch .button-green:active path {
    fill: #B5CD34;
}

.button-green-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #B5CD34;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.75);
    transition: 0.25s;
}

.button-green-alt:hover {
    background-color: #000000;
    color: #B5CD34;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.45);
}

.touch .button-green-alt:hover {
    background-color: #B5CD34;
    color: #000000;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.75);
}

.button-green-alt:active,
.touch .button-green-alt:active {
    background-color: #000000;
    color: #B5CD34;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.45);
}

.button-green-alt path {
    fill: #000000;
    transition: 0.25s;
}

.button-green-alt:hover path {
    fill: #B5CD34;
}

.touch .button-green-alt:hover path {
    fill: #000000;
}

.button-green-alt:active path,
.touch .button-green-alt:active path {
    fill: #B5CD34;
}

.button-black {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #000000;
    color: #B5CD34;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.75);
    transition: 0.25s;
}

.button-black:hover {
    background-color: #B5CD34;
    color: #FFFFFF;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.45);
}

.touch .button-black:hover {
    background-color: #000000;
    color: #B5CD34;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.75);
}

.button-black:active,
.touch .button-black:active {
    background-color: #B5CD34;
    color: #FFFFFF;
    box-shadow: 2px 2px 10px -2px rgba(181, 205, 52, 0.45);
}

.button-black path {
    fill: #B5CD34;
    transition: 0.25s;
}

.button-black:hover path {
    fill: #FFFFFF;
}

.touch .button-black:hover path {
    fill: #B5CD34;
}

.button-black:active path,
.touch .button-black:active path {
    fill: #FFFFFF;
}

.button-gray {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #BBBBBB;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.25);
    transition: 0.25s;
}

.button-gray:hover {
    background-color: #AAAAAA;
}

.touch .button-gray:hover {
    background-color: #BBBBBB;
}

.button-gray:active,
.touch .button-gray:active {
    background-color: #AAAAAA;
}

.button-yellow {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 50px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 10px;
    background-color: #FFE400;
    border: solid 2px #0A0080;
    color: #0A0080;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.35);
    transition: 0.25s;
}

.button-yellow-alt {
    height: 44px;
    font-size: 14px;
    line-height: 14px;
}

.button-yellow:hover {
    background-color: #B5CD34;
}

.touch .button-yellow:hover {
    background-color: #000000;
}

.button-yellow:active,
.touch .button-yellow:active {
    background-color: #B5CD34;
}

.button-yellow img {
    height: 28px;
    width: auto;
}

.button-yellow-alt img {
    height: 24px;
    width: auto;
}

.button-yellow-loader {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #FFE400;
}

.button-waiting-spinner {
    width: 32px;
    height: 32px;
    animation: button-waiting-spinner-rotate 1s linear infinite;
}

.button-waiting-spinner-path {
    stroke: #0A0080;
    stroke-linecap: round;
    animation: button-waiting-spinner-dash 1.3125s ease-in-out infinite;
}

@keyframes button-waiting-spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes button-waiting-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.button-bagde {
    position: relative;
}

.button-bagde-point {
    position: absolute;
    top: -2px;
    right: -7px;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: #E63F31;
}

.button-full {
    width: 100%;
}

.button-icon {
    column-gap: 12px;
}

.button-icon-alt {
    column-gap: 12px;
}

.button-icon-alt-2 {
    column-gap: 12px;
}

.button-icon-alt-3 {
    column-gap: 12px;
}

.button-icon svg {
    width: auto;
    height: 22px;
}

.button-icon-alt svg {
    width: auto;
    height: 21px;
}

.button-icon-alt-2 svg {
    width: auto;
    height: 19px;
    margin-top: -1px;
}

.button-icon-alt-3 svg {
    width: auto;
    height: 21px;
}

.fields {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    padding: 32px;
    border: solid 2px #CCCCCC;
    border-radius: 14px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.1);
}

.fields-title {
    padding-top: 32px;
    padding-bottom: 24px;
}

.fields-title-alt {
    padding-top: 16px;
    padding-bottom: 8px;
    text-align: left;
}

.fields-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fields-centered {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.fields-triple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.fields-space {
    padding-top: 18px;
}

.field-label {
    display: flex;
    padding-bottom: 4px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.field-label>div:nth-child(1) {
    flex: auto;
}

.field-label>div:nth-child(2) {
    flex: none;
    font-size: 14px;
}

.field-label-note {
    color: #999999;
    font-weight: 400;
}

.field-featured {
    padding: 20px;
    padding-top: 18px;
    padding-bottom: 28px;
    border-radius: 10px;
    border: solid 1px #B5CD34;
}

.field-limits {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 15px;
    line-height: 23px;
}

.field-limits a {
    color: #B5CD34;
    font-weight: 700;
    transition: 0.25s;
}

.field-limits a:hover {
    color: #96A929;
}

.touch .field-limits a:hover {
    color: #B5CD34;
}

.field-limits a:active,
.touch .field-limits a:active {
    color: #96A929;
}

.listing {
    display: flex;
    flex-direction: column;
}

.listing-nothing {
    font-size: 15px;
    line-height: 19px;
}

.listing-item {
    padding-bottom: 16px;
    padding-top: 16px;
    border-bottom: solid 1px #CCCCCC;
}

.listing-item:first-of-type {
    padding-top: 0px;
}

.listing-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0px;
}

.listing-item-header {
    padding-bottom: 4px;
    font-size: 15px;
    line-height: 19px;
    font-weight: 500;
}

.listing-item-gray {
    font-weight: 400;
    color: #999999;
}

.link {
    display: inline-block;
    color: #B5CD34;
    font-size: 15px;
    line-height: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.link:hover {
    color: #999999;
}

.touch .link:hover {
    color: #B5CD34;
}

.link:active,
.touch .link:active {
    color: #999999;
}

.textbox {
    width: 100%;
    height: 44px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 10px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    box-shadow: none;
    transition: 0.25s;
}

.textbox::placeholder {
    color: #999999;
    font-weight: 500;
    opacity: 1;
}

.textbox:focus {
    border-color: #B5CD34;
    box-shadow: 0px 0px 10px -2px rgba(181, 205, 52, 0.5);
}

.textbox-big {
    width: 44px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.textarea {
    width: 100%;
    height: 240px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 10px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    color: #000000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    box-shadow: none;
    resize: none;
    transition: 0.25s;
}

.textarea-small {
    height: 100px;
}

.textarea::placeholder {
    color: #999999;
    font-weight: 500;
    opacity: 1;
}

.textarea:focus {
    border-color: #B5CD34;
    box-shadow: 0px 0px 10px -2px rgba(181, 205, 52, 0.5);
}

.textarea::-webkit-scrollbar {
    width: 17px;
    height: 17px;
    border-radius: 30px;
}

.textarea::-webkit-scrollbar-thumb {
    background: #ACACAC;
    border-radius: 30px;
    border: solid 6px #FFFFFF;
}

.textarea::-webkit-scrollbar-thumb:hover {
    background: #ACACAC;
}

.textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.checkbox {
    position: relative;
    display: inline-block;
    padding-top: 2px;
    padding-left: 34px;
    margin-bottom: 4px;
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    border: solid 1px #CCCCCC;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.checkbox:hover input~.checkbox-checkmark {
    border-color: #B5CD34;
}

.checkbox input:checked~.checkbox-checkmark {
    border-color: transparent;
    background-color: #B5CD34;
    box-shadow: 0px 0px 10px -2px rgba(181, 205, 52, 0.5);
}

.checkbox-checkmark:after {
    content: "";
    display: none;
    position: absolute;
}

.checkbox input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox .checkbox-checkmark:after {
    top: 3px;
    left: 8px;
    width: 7px;
    height: 13px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-link {
    color: #96A929;
    transition: 0.25s;
}

.checkbox-link:hover {
    color: #666666;
}

.touch .checkbox-link:hover {
    color: #96A929;
}

.checkbox-link:active,
.touch .checkbox-link:active {
    color: #666666;
}

/* SWITCH */

.switch {
    position: relative;
    display: inline-block;
    padding-top: 6px;
    padding-left: 60px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.18s;
}

.switch-alt {
    display: block;
    width: 50px;
    height: 28px;
    padding-top: 0px;
    padding-left: 0px;
}

.switch input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.switch-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 28px;
    border-radius: 100px;
    background-color: #E2E2E2;
    border: solid 1px transparent;
    transition: 0.18s;
}

.switch input:checked~.switch-checkmark {
    background-color: rgba(181, 205, 52, 0.3);
    border: solid 1px #B5CD34;
}

.switch-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #999999;
    transition: 0.18s;
}

.switch input:checked~.switch-checkmark .switch-circle {
    top: 3px;
    left: 24px;
    background-color: #B5CD34;
}

.uploader {
    position: relative;
}

.uploader-waiting {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    animation-name: uploader-waiting-anima;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes uploader-waiting-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.uploader-waiting-spinner {
    width: 54px;
    height: 54px;
    animation: uploader-waiting-spinner-rotate 1s linear infinite;
}

.uploader-waiting-spinner-path {
    stroke: #B5CD34;
    stroke-linecap: round;
    animation: uploader-waiting-spinner-dash 1.3125s ease-in-out infinite;
}

@keyframes uploader-waiting-spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes uploader-waiting-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.uploader-pictures {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.uploader-btn-frame {
    width: 100%;
    border-radius: 10px;
    border: dotted 2px #CCCCCC;
    background-color: #EFEFEF;
    cursor: pointer;
    transition: 0.25s;
}

.uploader-btn-frame:hover {
    background-color: rgba(181, 205, 52, 0.2);
    border-color: #B5CD34;
}

.touch .uploader-btn-frame:hover {
    border-color: #CCCCCC;
    background-color: #EFEFEF;
}

.uploader-btn-frame:active,
.touch .uploader-btn-frame:active {
    background-color: rgba(181, 205, 52, 0.2);
    border-color: #B5CD34;
}

.uploader-btn {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-color: #EFEFEF;
    cursor: pointer;
    transition: 0.25s;
}

.uploader-btn-frame:hover .uploader-btn {
    background-color: rgba(181, 205, 52, 0.2);
}

.touch .uploader-btn-frame:hover .uploader-btn {
    background-color: #EFEFEF;
}

.uploader-btn-frame:active .uploader-btn,
.touch .uploader-btn-frame:active .uploader-btn {
    background-color: rgba(181, 205, 52, 0.2);
}

.uploader-btn-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uploader-btn path {
    fill: #999999;
    transition: 0.25s;
}

.uploader-btn:hover path {
    fill: #B5CD34;
}

.touch .uploader-btn:hover path {
    fill: #999999;
}

.uploader-btn:active path,
.touch .uploader-btn:active path {
    fill: #B5CD34;
}

.uploader-image {
    width: 100%;
    border-radius: 14px;
    cursor: grab;
}

.uploader-picture {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-color: #CCCCCC;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.uploader-image:first-of-type {
    border: solid 4px #B5CD34;
}

.uploader-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.75);
    background-position: center;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-image: url(../assets/close-3.svg);
    color: #B5CD34;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.25s;
}

.uploader-remove:hover {
    transform: rotate(90deg);
}

.touch .uploader-remove:hover {
    transform: rotate(0deg);
}

.uploader-remove:active,
.touch .uploader-remove:active {
    border-color: #B5CD34;
    transform: rotate(90deg);
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 7px;
    background-color: #FFFFFF;
    transition: 0.25s;
    z-index: 99;
}

.bar-compact {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
}

.bar-layout {
    display: grid;
    grid-template-columns: 190px auto 264px;
    column-gap: 5%;
}

.bar-brand {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-logo {
    display: block;
}

.bar-iso {
    display: none;
}

.bar-logo img {
    width: 190px;
    height: 54px;
}

.bar-iso img {
    width: 50px;
    height: 44px;
}

.bar-finder {
    flex: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.bar-finder form {
    width: 100%;
}

.bar-keywords {
    position: relative;
    width: 100%;
    height: 44px;
}

.bar-actions {
    flex: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 10px;
}

.bar-menu {
    display: none;
}

.bar-menu-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 5px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #B5CD34;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #000000;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #B5CD34;
}

.bar-layout-alt {
    display: grid;
    grid-template-columns: 190px auto;
    column-gap: 5%;
}

.bar-buttons {
    flex: auto;
    position: relative;
    height: 48px;
}

.bar-buttons-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.bar-swiper .swiper-button-prev {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 100%;
    margin-top: 0 !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.bar-swiper .swiper-button-prev::after {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/prev.svg);
    background-position: left center;
    background-repeat: no-repeat;
}

.bar-swiper .swiper-button-next {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    margin-top: 0 !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.bar-swiper .swiper-button-next::after {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/next.svg);
    background-position: right center;
    background-repeat: no-repeat;
}

.bar-swiper .swiper-button-disabled {
    opacity: 0 !important;
}

.bar-button-slide {
    width: auto !important;
    margin-right: 20px;
}

.bar-button {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    margin-top: 17px;
    margin-bottom: 17px;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.25s;
}

.bar-button-slide:first-of-type .bar-button {
    padding-left: 8px;
}

.bar-button-alt {
    font-weight: 600;
}

.bar-button-alt-2 {
    border-bottom: solid 2px #000000;
    padding-bottom: 4px;
}

.bar-button-alt-2:hover {
    border-color: #B5CD34;
}

.touch .bar-button-alt-2:hover {
    border-color: #000000;
}

.bar-button-alt-2:active,
.touch .bar-button-alt-2:active {
    border-color: #B5CD34;
}

.bar-button-alt-3 {
    margin-left: 20px;
    color: #B5CD34;
    font-weight: 600;
}

.bar-button-alt-3.panel-link {
    margin-top: 8px;
    margin-left: 0px;
}

.bar-button-alt-3:hover {
    opacity: 0.5;
}

.touch .bar-button-alt-3:hover {
    opacity: 1;
}

.bar-button-alt-3:active,
.touch .bar-button-alt-3:active {
    opacity: 0.5;
}

.bar-button:hover {
    color: #B5CD34;
}

.touch .bar-button:hover {
    color: #000000;
}

.bar-button:active,
.touch .bar-button:active {
    color: #B5CD34;
}

.bar-button path {
    fill: #000000;
    transition: 0.25s;
}

.bar-button:hover path {
    fill: #B5CD34;
}

.touch .bar-button:hover path {
    fill: #000000;
}

.bar-button:active path,
.touch .bar-button:active path {
    fill: #B5CD34;
}

.bar-button-on {
    border-color: #B5CD34 !important;
    color: #B5CD34 !important;
}

/* FINDER */

.finder {
    width: 100%;
    height: 44px;
    padding-left: 16px;
    padding-right: 70px;
    border-radius: 10px;
    background-color: #FFFFFF;
    border: solid 2px #CCCCCC;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    box-shadow: none;
    transition: 0.25s;
}

.finder::placeholder {
    color: #999999;
    font-weight: 500;
    opacity: 1;
}

.finder:focus {
    border-color: #B5CD34;
    box-shadow: 0px 0px 10px -2px rgba(181, 205, 52, 0.5);
}

.finder-icon {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 100%;
    cursor: pointer;
}

.finder-icon path {
    fill: #CCCCCC;
    transition: 0.25s;
}

.finder-icon:hover path {
    fill: #B5CD34;
}

.touch .finder-icon:hover path {
    fill: #CCCCCC;
}

.finder-icon:active path,
.touch .finder-icon:active path {
    fill: #B5CD34;
}

.finder-results {
    display: none;
    position: absolute;
    top: 48px;
    width: 100%;
    height: auto;
    max-height: 480px;
    padding: 24px;
    border-radius: 8px;
    border: solid 2px #000000;
    background: #FFFFFF;
    box-shadow: 10px 4px 22px 0 rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 102;
}

.finder-results::-webkit-scrollbar {
    width: 13px;
    height: 13px;
    border-radius: 30px;
}

.finder-results::-webkit-scrollbar-thumb {
    background: #ACACAC;
    border-radius: 30px;
    border: solid 4px #FFFFFF;
}

.finder-results::-webkit-scrollbar-thumb:hover {
    background: #ACACAC;
}

.finder-results::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.finder-results-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.finder-results-entities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.finder-results-entity {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #B5CD34;
    border: solid 2px transparent;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.finder-results-entity:hover {
    background-color: #000000;
}

.touch .finder-results-entity:hover {
    background-color: #B5CD34;
}

.finder-results-entity:active,
.touch .finder-results-entity:active {
    background-color: #000000;
}

.finder-results-entity-alt {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #FFFFFF;
    border: solid 2px #B5CD34;
    color: #B5CD34;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.finder-results-entity-alt:hover {
    border-color: #000000;
    color: #000000;
}

.touch .finder-results-entity-alt:hover {
    border-color: #B5CD34;
    color: #B5CD34;
}

.finder-results-entity-alt:active,
.touch .finder-results-entity-alt:active {
    border-color: #000000;
    color: #000000;
}

.finder-results-entity-alt-2 {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #000000;
    border: solid 2px transparent;
    color: #B5CD34;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.finder-results-entity-alt-2:hover {
    color: #FFFFFF;
}

.touch .finder-results-entity-alt-2:hover {
    color: #B5CD34;
}

.finder-results-entity-alt-2:active,
.touch .finder-results-entity-alt-2:active {
    color: #FFFFFF;
}

.finder-results-entity-alt-3 {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #CCCCCC;
    border: solid 2px transparent;
    color: #000000;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.finder-results-entity-alt-3:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.touch .finder-results-entity-alt-3:hover {
    background-color: #CCCCCC;
    color: #000000;
}

.finder-results-entity-alt-3:active,
.touch .finder-results-entity-alt-3:active {
    background-color: #000000;
    color: #FFFFFF;
}

.finder-results-entity-alt-4 {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #00A650;
    border: solid 2px transparent;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.finder-results-entity-alt-4:hover {
    background-color: #000000;
}

.touch .finder-results-entity-alt-4:hover {
    background-color: #00A650;
}

.finder-results-entity-alt-4:active,
.touch .finder-results-entity-alt-4:active {
    background-color: #000000;
}

.finder-results-products {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.finder-result-product {
    display: flex;
    column-gap: 10px;
    transition: 0.25s;
}

.finder-result-product:hover {
    color: #B5CD34;
}

.touch .finder-result-product:hover {
    color: #000000;
}

.finder-result-product:active,
.touch .finder-result-product:active {
    color: #B5CD34;
}

.finder-result-product-picture {
    flex: none;
    width: 48px;
}

.finder-result-product-image {
    width: 100%;
    padding-bottom: 100%;
    background-color: #E2E2E2;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.finder-result-product-info {
    flex: auto;
    display: flex;
    align-items: center;
}

.finder-result-product-name {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.finder-results-all {
    padding-top: 24px;
    text-align: center;
    border-top: solid 1px #CCCCCC;
}

.finder-no-results {
    padding-bottom: 2px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

/* ENTRANCE */

.entrance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.entrance-picture {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #E2E2E2;
    background-image: url(../assets/entrance.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.entrance-content {
    padding-top: 90px;
    padding-bottom: 120px;
    padding-left: 32px;
    padding-right: 32px;
}

.entrance-block {
    display: none;
}

.entrance-block-alt {
    display: block;
}

#entrance-login {
    display: block;
}

.entrance-title {
    padding-bottom: 16px;
}

.entrance-caption {
    padding-bottom: 24px;
}

.entrance-caption p {
    padding-bottom: 10px;
}

.entrance-caption p:last-of-type {
    padding-bottom: 0px;
}

.entrance-fields {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.entrance-code-label {
    color: #B5CD34;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.entrance-code {
    display: grid;
    grid-template-columns: 44px 44px 44px 44px 44px 44px;
    column-gap: 8px;
    justify-content: center;
    padding-bottom: 12px;
}

.entrance-help {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    color: #000000;
    cursor: pointer;
    transition: 0.25s;
}

.entrance-help-alt {
    margin-top: -13px;
}

.entrance-help-label {
    padding-bottom: 2px;
    font-size: 14px;
    line-height: 14px;
}

.entrance-help:hover {
    color: #B5CD34;
}

.touch .entrance-help:hover {
    color: #000000;
}

.entrance-help:active,
.touch .entrance-help:active {
    color: #B5CD34;
}

.entrance-profile {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 16px;
    border-radius: 500px;
    background-color: #FFFFFF;
    background-image: url(../assets/users/none.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* SLIDER */

.slider-swiper {
    height: 400px;
    --swiper-theme-color: #FFFFFF;
    --swiper-pagination-bottom: 18px;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-inactive-color: rgb(255, 255, 255);
    --swiper-pagination-bullet-inactive-opacity: 0.35;
}

.slider-swiper .swiper-button-prev {
    width: 46px;
    height: 46px;
    margin-top: -23px !important;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

.slider-swiper .swiper-button-prev::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../assets/prev.svg);
    background-position: 19px center;
    background-repeat: no-repeat;
}

.slider-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
}

.touch .slider-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-swiper .swiper-button-prev:active,
.touch .slider-swiper .swiper-button-prev:active {
    background-color: rgba(255, 255, 255, 1);
}

.slider-swiper .swiper-button-next {
    width: 46px;
    height: 46px;
    margin-top: -23px !important;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

.slider-swiper .swiper-button-next::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../assets/next.svg);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.slider-swiper .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.touch .slider-swiper .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-swiper .swiper-button-next:active,
.touch .slider-swiper .swiper-button-next:active {
    background-color: rgba(255, 255, 255, 1);
}

.slider-slide {
    background-color: #DADADA;
}

.slider-block {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.slider-picture-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

.slider-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 48px;
    padding-left: 66px;
    padding-right: 66px;
}

.slider-content-left {
    display: flex;
    justify-content: flex-start;
}

.slider-content-right {
    display: flex;
    justify-content: flex-end;
}

.slider-content-center {
    display: flex;
    justify-content: center;
}

.slider-text {
    width: 100%;
    max-width: 700px;
}

.slider-text-left {
    text-align: left;
}

.slider-text-right {
    text-align: right;
}

.slider-text-center {
    text-align: center;
}

.slider-title {
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
}

.slider-title strong {
    color: #B5CD34;
    font-weight: 800;
}

.slider-caption {
    padding-top: 14px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.slider-caption strong {
    font-weight: 700;
}

.slider-button {
    position: relative;
    margin-top: 27px;
    z-index: 2;
}

.slider-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* KINDS */

.kinds {
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
}

.kinds-shape {
    position: absolute;
    top: 22%;
    right: -74%;
    width: 100%;
    height: 132%;
    background-image: url(../assets/shape.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left top;
}

.kinds-swiper {
    height: 344px !important;
    padding-top: 64px !important;
    --swiper-theme-color: #000000;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-inactive-color: rgb(0, 0, 0);
    --swiper-pagination-bullet-inactive-opacity: 0.2;
}

.kinds-slide {
    height: 240px !important;
}

.kinds-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 18px;
    border-radius: 10px;
    background-color: #000000;
    color: #FFFFFF;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.25);
    transition: 0.25s;
}

.kinds-button:hover {
    color: #B5CD34;
    transform: scale(0.94);
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.5);
}

.touch .kinds-button:hover {
    color: #FFFFFF;
    transform: scale(1);
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.25);
}

.kinds-button:active,
.touch .kinds-button:active {
    color: #B5CD34;
    transform: scale(0.94);
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.5);
}

.kinds-icon {
    padding-bottom: 22px;
    text-align: center;
}

.kinds-icon svg {
    width: auto;
    height: 70px;
    margin: 0 auto;
}

.kinds-name {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
}

/* PROMO */

.promo {
    position: relative;
    padding-top: 100px;
    padding-bottom: 130px;
    padding-left: 48px;
    padding-right: 48px;
}

.promo-shape {
    position: absolute;
    top: 0;
    left: -80%;
    width: 100%;
    height: calc(100% + 14px);
    background-image: url(../assets/shape.svg);
    background-repeat: no-repeat;
    background-size: auto 190%;
    background-position: right top;
}

.promo-layout {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-title {
    color: #000000;
    font-size: 60px;
    line-height: 65px;
    font-weight: 600;
    text-align: center;
}

.promo-title strong {
    color: #B5CD34;
    font-weight: 600;
}

.promo-description {
    padding-top: 30px;
    padding-bottom: 42px;
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}

/* BANNER */

.banner {
    padding-top: 32px;
    padding-bottom: 24px;
}

.banner-alt {
    padding-bottom: 84px;
    margin-top: -64px;
}

.banner-caption {
    padding-bottom: 10px;
    padding-left: 10px;
    color: #808080;
    font-size: 12px;
    line-height: 16px;
}

.banner-content {
    position: relative;
    width: 100%;
    padding-bottom: 30%;
    border-radius: 22px;
    background-color: #CCCCCC;
    box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.banner-resource {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-media-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* ABOUT */

.about-title {
    padding-top: 72px;
    padding-bottom: 24px;
    color: #000000;
    font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    text-align: center;
}

.about-title strong {
    color: #B5CD34;
    font-weight: 600;
}

.about-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
}

.about-content strong {
    font-weight: 700;
}

.about-img {
    width: 100%;
    padding-bottom: 45%;
    margin-top: 48px;
    margin-bottom: 48px;
    border-radius: 22px;
    background-color: #FFFFFF;
    background-image: url(../assets/about.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.25);
}

.about-swiper {
    height: 780px !important;
    padding-top: 0px !important;
    margin-top: 64px;
    margin-bottom: 64px;
    border-radius: 22px;
    background-color: #000000;
    overflow: hidden;
    --swiper-theme-color: #000000;
    --swiper-pagination-color: #B5CD34;
    --swiper-pagination-right: 18px;
    --swiper-pagination-bottom: auto;
    --swiper-pagination-top: auto;
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-inactive-color: rgb(181, 205, 52);
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-vertical-gap: 8px;
}

.about-swiper .block,
.about-swiper .frame {
    height: 100%;
}

.about-slide {
    padding-right: 28px;
}

.about-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10%;
    height: 100% !important;
    padding-top: 84px;
    padding-bottom: 84px;
}

.about-number {
    margin-top: -10%;
    color: #B5CD34;
    font-size: 160px;
    line-height: 160px;
    font-weight: 700;
}

.about-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-caption {
    color: #FFFFFF;
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
}

.about-text {
    padding-top: 24px;
    padding-bottom: 48px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}

.about-text strong {
    font-weight: 700;
}

.about-picture {
    flex: auto;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background-color: #111111;
    overflow: hidden;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* LIST */

.list-header {
    width: 100%;
    background-color: #E2E2E2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.list-header-gray {
    background-color: #CCCCCC;
}

.list-header-green {
    background-color: #00A650;
}

.list-header-black {
    background-color: #000000;
}

.list-header-alt {
    padding-top: 18px;
}

.list-header-rounded {
    border-radius: 22px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.list-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    z-index: 2;
}

.list-header-content-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 2;
}

.list-header-content-alt-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    z-index: 2;
}

.list-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.list-header-overlay-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(181, 205, 52, 0.8) 0%, rgba(181, 205, 52, 1) 100%);
}

.list-header-overlay-alt-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
    mix-blend-mode: multiply;
}

.list-header-width-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.list-header-width-icon svg {
    transform: translateY(2px);
}

.list-header-title {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
}

.list-header-title-alt {
    color: #FFFFFF;
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}

.list-header-content-alt .list-header-title {
    color: #000000;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}

.list-header-black .list-header-title {
    color: #B5CD34;
}

.list-header-green .list-header-title {
    color: #FFFFFF;
}

.list-header-caption {
    padding-top: 16px;
    padding-bottom: 10px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.list-header-icon {
    text-align: center;
}

.list-header-icon svg {
    width: auto;
    height: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.list {
    padding-bottom: 148px;
}

.list-bar {
    display: flex;
    column-gap: 18px;
    padding-top: 32px;
    padding-bottom: 14px;
}

.list-breadcrumbs {
    flex: auto;
    padding-bottom: 10px;
    color: #999999;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.list-breadcrumb {
    color: #96A929;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    transition: 0.25s;
}

.list-breadcrumb:hover {
    color: #000000;
}

.touch .list-breadcrumb:hover {
    color: #96A929;
}

.list-breadcrumb:active,
.touch .list-breadcrumb:active {
    color: #000000;
}

.list-breadcrumb-on {
    color: #96A929;
    font-weight: 600;
}

.list-breadcrumb-on:hover {
    color: #96A929;
}

.touch .list-breadcrumb-on:hover {
    color: #96A929;
}

.list-breadcrumb-on:active,
.touch .list-breadcrumb-on:active {
    color: #96A929;
}

.list-order {
    flex: none;
    position: relative;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 17px;
}

.list-filters-drop-selector {
    display: inline-flex;
    cursor: pointer;
}

.list-order-label {
    color: #96A929;
    transition: 0.25s;
}

.list-order:hover .list-order-label {
    color: #999999;
}

.touch .list-order:hover .list-order-label {
    color: #96A929;
}

.list-order:active .list-order-label,
.touch .list-order:active .list-order-label {
    color: #999999;
}

.list-order svg {
    display: inline-block;
    height: 8px;
    width: auto;
}

.list-order path {
    fill: #96A929;
    transition: 0.25s;
}

.list-order:hover path {
    fill: #999999;
}

.touch .list-order:hover path {
    fill: #96A929;
}

.list-order:active path,
.touch .list-order:active path {
    fill: #999999;
}

.list-order-options {
    display: none;
    position: absolute;
    top: 100%;
    right: -9px;
    padding: 24px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 10px 4px 22px 0 rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.list-order-fixed .list-order-options {
    right: 10px;
}

.list-order-option {
    display: inline-block;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #000000;
    font-size: 15px;
    line-height: 24px;
    transition: 0.25s;
}

.list-order-option:hover {
    color: #B5CD34;
}

.touch .list-order-option:hover {
    color: #000000;
}

.list-order-option:active,
.touch .list-order-option:active {
    color: #B5CD34;
}

.list-filters-btn {
    flex: none;
    display: none;
    column-gap: 10px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000000;
    cursor: pointer;
    transition: 0.25s;
}

.list-filters-btn:hover {
    color: #B5CD34;
}

.touch .list-filters-btn:hover {
    color: #000000;
}

.list-filters-btn:active,
.touch .list-filters-btn:active {
    color: #B5CD34;
}


.list-filters-btn-icon {
    flex: none;
}

.list-filters-btn-label {
    flex: auto;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

.list-title {
    padding-bottom: 8px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.list-results {
    color: #808080;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
}

.list-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 20px;
}

.list-filter {
    padding: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    border: 1px solid #96A929;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #96A929;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    transition: 0.25s;
}

.list-filter:hover {
    opacity: 0.5;
}

.touch .list-filter:hover {
    opacity: 1;
}

.list-filter:active,
.touch .list-filter:active {
    opacity: 0.5;
}

.list-section {
    padding-top: 32px;
    padding-bottom: 14px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.list-options {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.list-options-compact {
    row-gap: 0px;
}

.list-group {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.list-option {
    padding-top: 10px;
}

.list-option-hidden {
    display: none;
}

.list-option-inactive {
    opacity: 0.5;
}

.list-options-full .list-option-hidden {
    display: block;
}

.list-options-compact .list-option {
    padding-top: 8px;
}

.list-option:first-of-type {
    padding-top: 0px;
}

.list-option-alt {
    padding-top: 0;
    padding-left: 10px;
}

.list-link {
    display: inline-flex;
    column-gap: 4px;
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    transition: 0.25s;
}

.list-options-compact .list-link {
    font-size: 14px;
    line-height: 18px;
}

.list-link:hover {
    color: #96A929;
}

.touch .list-link:hover {
    color: #000000;
}

.list-link:active,
.touch .list-link:active {
    color: #96A929;
}

.list-check {
    display: none;
    width: 16px;
    height: 16px;
    margin-right: 2px;
    border-radius: 3px;
    background-color: #96A929;
    transform: translateY(1px);
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
}

.list-check::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-link-on .list-check {
    display: flex;
}

.list-link-arrow {
    margin-top: -2px;
}

.list-link-arrow svg {
    transform: rotate(-90deg);
}

.list-link path {
    fill: #000000;
    transition: 0.25s;
}

.list-link:hover path {
    fill: #96A929;
}

.touch .list-link:hover path {
    fill: #000000;
}

.list-link:active path,
.touch .list-link:active path {
    fill: #96A929;
}

.list-link-alt {
    color: #999999;
}

.list-link-alt:hover {
    color: #96A929;
}

.touch .list-link-alt:hover {
    color: #999999;
}

.list-link-alt:active,
.touch .list-link-alt:active {
    color: #96A929;
}

.list-quantity {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    opacity: 0.6;
}

.list-link-on {
    color: #96A929;
}

.list-link-on:hover {
    color: #96A929;
}

.touch .list-link-on:hover {
    color: #96A929;
}

.list-link-on:active,
.touch .list-link-on:active {
    color: #96A929;
}

.list-link-on .list-link-arrow {
    margin-top: -1px;
}

.list-link-on .list-link-arrow svg {
    transform: rotate(0deg);
}

.list-link-on path {
    fill: #96A929;
    transition: 0.25s;
}

.list-link-on:hover path {
    fill: #96A929;
}

.touch .list-link-on:hover path {
    fill: #96A929;
}

.list-link-on:active path,
.touch .list-link-on:active path {
    fill: #96A929;
}

.list-more {
    display: inline-block;
    margin-top: 10px;
    color: #96A929;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    transition: 0.25s;
    cursor: pointer;
}

.list-more:hover {
    color: #999999;
}

.touch .list-more:hover {
    color: #96A929;
}

.list-more:active,
.touch .list-more:active {
    color: #999999;
}

.list-featured {
    position: absolute;
    top: 0;
    left: -18px;
    width: calc(100% + 18px + 18px);
    height: 100%;
    background: linear-gradient(to bottom, rgba(181, 205, 52, 1) 0%, rgba(181, 205, 52, 0) 100%);
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.list-featured-frame {
    position: relative;
    padding-top: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: solid 1px #DBDBDB;
}

.list-grid-frame {
    padding-top: 72px;
    padding-bottom: 120px;
}

.list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.list-grid-alt {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.list-shape {
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 25%;
    height: 500px;
    background-image: url(../assets/shape.svg);
    background-repeat: no-repeat;
    background-size: auto 190%;
    background-position: left top;
}

.list-radios {
    display: flex;
    column-gap: 14px;
}

.list-radio {
    position: relative;
    display: block;
    padding-left: 24px;
    cursor: pointer;
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.25s;
}

.list-radio:hover {
    color: #B5CD34;
}

.touch .list-radio:hover {
    color: #000000;
}

.list-radio:active,
.touch .list-radio:active {
    color: #B5CD34;
}

.list-radio input {
    position: absolute;
    cursor: pointer;
    opacity: 0;
}

.list-radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: solid 2px #BBBBBB;
    background-color: #FFFFFF;
    transition: 0.25s;
}

.list-radio input:checked~.list-radio-checkmark {
    border-color: #B5CD34;
}

.list-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.list-radio input:checked~.list-radio-checkmark:after {
    display: block;
}

.list-radio .list-radio-checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B5CD34;
    transition: 0.25s;
}

.list-range {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-width: 400px;
    border-radius: 10px;
    border: solid 2px #DDDDDD;
    padding: 10px;
    padding-top: 14px;
    margin-bottom: 2px;
}

.list-range-textbox {
    width: 100%;
    height: 36px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 8px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    box-shadow: none;
    transition: 0.25s;
}

.list-range-textbox::placeholder {
    color: #999999;
    font-weight: 400;
    opacity: 1;
}

.list-range-textbox:focus {
    border-color: #B5CD34;
    box-shadow: 0px 0px 10px -2px rgba(181, 205, 52, 0.5);
}

.list-range-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 36px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 8px;
    background-color: #B5CD34;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s;
}

.list-range-button:hover {
    background-color: #000000;
    color: #B5CD34;
}

.touch .list-range-button:hover {
    background-color: #B5CD34;
    color: #FFFFFF;
}

.list-range-button:active,
.touch .list-range-button:active {
    background-color: #000000;
    color: #B5CD34;
}

.list-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-top: 48px;
    padding-bottom: 90px;
}

.list-page {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 39px;
    height: 39px;
    background-color: #FFFFFF;
    color: #B5CD34;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 600;
    transition: 0.25s;
}

.list-page:hover {
    background-color: #000000;
}

.touch .list-page:hover {
    background-color: #FFFFFF;
}

.list-page:active,
.touch .list-page:active {
    background-color: #000000;
}

.list-page-on {
    background-color: #B5CD34;
    color: #FFFFFF;
}

.list-page-on:hover {
    background-color: #B5CD34;
    color: #FFFFFF;
}

.touch .list-page-on:hover {
    background-color: #B5CD34;
    color: #FFFFFF;
}

.list-page-on:active,
.touch .list-page-on:active {
    background-color: #B5CD34;
    color: #FFFFFF;
}

/* ITEM */

.items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 16px;
    row-gap: 24px;
}

.items-group {
    padding-top: 72px;
}

.items-group-alt {
    padding-bottom: 64px;
}

.items-header {
    display: flex;
    column-gap: 10px;
    padding-bottom: 48px;
}

.items-header-title {
    flex: auto;
}

.items-header-button {
    display: flex;
    align-items: flex-end;
}

.items-header-more {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    padding-top: 6px;
    padding-bottom: 7px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.25s;
}

.items-header-more svg {
    width: auto;
    height: 10px;
}

.items-header-more:hover {
    color: #B5CD34;
}

.touch .items-header-more:hover {
    color: #000000;
}

.items-header-more:active,
.touch .items-header-more:active {
    color: #B5CD34;
}

.items-header-more path {
    fill: #000000;
    transition: 0.25s;
}

.items-header-more:hover path {
    fill: #B5CD34;
}

.touch .items-header-more:hover path {
    fill: #000000;
}

.items-header-more:active path,
.touch .items-header-more:active path {
    fill: #B5CD34;
}

.items-header-more-alt:hover {
    color: #FFFFFF;
}

.touch .items-header-more-alt:hover {
    color: #000000;
}

.items-header-more-alt:active,
.touch .items-header-more-alt:active {
    color: #FFFFFF;
}

.items-header-more-alt:hover path {
    fill: #FFFFFF;
}

.touch .items-header-more-alt:hover path {
    fill: #000000;
}

.items-header-more-alt:active path,
.touch .items-header-more-alt:active path {
    fill: #FFFFFF;
}

.items-swiper-frame {
    position: relative;
}

.items-swiper {
    --swiper-theme-color: #FFFFFF;
    width: 100% !important;
    max-width: 100% !important;
}

.items-swiper .swiper-wrapper {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 1fr !important;
}

.items-swiper-prev.swiper-button-prev {
    left: -23px !important;
    width: 46px;
    height: 46px;
    margin-top: -23px !important;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

.items-swiper-prev.swiper-button-prev::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../assets/prev.svg);
    background-position: 19px center;
    background-repeat: no-repeat;
}

.items-swiper-prev.swiper-button-prev:hover {
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 1);
}

.touch .items-swiper-prev.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.items-swiper-prev.swiper-button-prev:active,
.touch .items-swiper-prev.swiper-button-prev:active {
    background-color: rgba(255, 255, 255, 1);
}

.items-swiper-next.swiper-button-next {
    right: -23px !important;
    width: 46px;
    height: 46px;
    margin-top: -23px !important;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

.items-swiper-next.swiper-button-next::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../assets/next.svg);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.items-swiper-next.swiper-button-next:hover {
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.8);
}

.touch .items-swiper-next.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.items-swiper-next.swiper-button-next:active,
.touch .items-swiper-next.swiper-button-next:active {
    background-color: rgba(255, 255, 255, 1);
}

.items-swiper-prev.swiper-button-disabled {
    opacity: 1 !important;
}

.items-swiper-prev.swiper-button-disabled::after {
    opacity: 0.25 !important;
}

.items-swiper-next.swiper-button-disabled {
    opacity: 1 !important;
}

.items-swiper-next.swiper-button-disabled::after {
    opacity: 0.25 !important;
}

.item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.25s;
}

.item:hover {
    transform: scale(0.94);
}

.touch .item:hover {
    transform: scale(1);
}

.item:active,
.touch .item:active {
    transform: scale(0.94);
}

.item:hover .item-name {
    color: #B5CD34;
}

.touch .item:hover .item-name {
    color: #000000;
}

.item:active .item-name,
.touch .item:active .item-name {
    color: #B5CD34;
}

.item-feature:hover .item-name {
    color: #000000;
}

.touch .item-feature:hover .item-name {
    color: #000000;
}

.item-feature:active .item-name,
.touch .item-feature:active .item-name {
    color: #000000;
}

.item:hover .item-border {
    opacity: 1;
}

.touch .item:hover .item-border {
    opacity: 0;
}

.item:active .item-border,
.touch .item:active .item-border {
    opacity: 1;
}

.item-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #222222;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #B5CD34;
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

.item-picture {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #DADADA;
    box-shadow: 0px 10px 10px -12px rgba(0, 0, 0, 0.1);
    transition: 0.25s;
}

.item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.item-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    padding-bottom: 30px;
}

.item-feature .item-info {
    background: linear-gradient(135deg, rgba(181, 205, 52, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
}

.item-label-frame {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.item-label {
    display: inline-flex;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    background-color: #B5CD34;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.item-name {
    flex: auto;
    padding-top: 12px;
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    transition: 0.25s;
}

.item-price {
    flex: none;
    padding-top: 10px;
}

.item-value {
    color: #000000;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}

.item-sale {
    display: flex;
    column-gap: 10px;
    padding-bottom: 6px;
}

.item-discount {
    color: #BEBEBE;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.item-off {
    color: #00A650;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.item-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: solid 2px #B5CD34;
    opacity: 0;
    transition: 0.25s;
}

.item-feature .item-border {
    border: solid 2px #222222;
}

.block-green .item-border,
.list-featured-frame .item-border {
    border-color: #000000;
}

/* POSTS */

.posts {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.post {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.25s;
}

.post:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.35);
}

.touch .post:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.post:active,
.touch .post:active {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.35);
}

.post-off {
    opacity: 0.7;
}

.post-expired {
    opacity: 0.5;
    filter: grayscale(100);
}

.post-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: solid 2px #000000;
    opacity: 0;
    transition: 0.25s;
}

.post:hover .post-border {
    opacity: 1;
}

.touch .post:hover .post-border {
    opacity: 0;
}

.post:active .post-border,
.touch .post:active .post-border {
    opacity: 1;
}

.post-picture {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #DADADA;
}

.post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-info {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    padding-bottom: 40px;
    z-index: 2;
}

.post-data {
    flex: auto;
}

.post-label {
    display: inline-flex;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    border: solid 1px #B5CD34;
    color: #B5CD34;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-name {
    flex: none;
    padding-bottom: 6px;
    font-size: 20px;
    line-height: 26px;
}

.post-brand {
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.post-location {
    display: inline-flex;
    column-gap: 6px;
    color: #96A929;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.post-location img {
    margin-top: 4px;
    width: auto;
    height: 14px;
}

.post-status {
    flex: none;
    display: flex;
    column-gap: 8px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 21px;
}

.post-status-caption {
    padding-top: 3px;
}

.post-status-caption strong {
    font-weight: 600;
}

.post-actions {
    flex: none;
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 12px;
    padding-top: 24px;
}

.posts-nothing {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
    border-radius: 10px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.posts-nothing-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
    border-radius: 10px;
    text-align: center;
}

.posts-nothing-title {
    padding-bottom: 24px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.posts-nothing-subtitle {
    margin-top: -12px;
    padding-bottom: 24px;
    color: #999999;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.posts-nothing-icon {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 24px;
}

.posts-nothing-icon-alt {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 24px;
}

/* MESSAGES */

.messages {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.messages-nothing {
    display: none;
}

.messages-product {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
    border-radius: 10px;
    border: solid 2px #B5CD34;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.messages-product-picture {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
}

.messages-product-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.messages-product-counter {
    padding-top: 8px;
    color: #B5CD34;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

.message {
    padding: 24px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
    transition: 0.25s;
}

.message-unseen {
    border: solid 1px #B5CD34;
}

.message-header {
    display: flex;
    column-gap: 10px;
    padding-bottom: 16px;
    border-bottom: solid 1px #EFEFEF;
}

.message-name {
    flex: auto;
    display: flex;
    column-gap: 10px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.message-profile {
    width: 32px;
    height: 32px;
    border-radius: 300px;
    background-color: rgba(181, 205, 52, 0.25);
    background-image: url(../assets/users/none.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.message-name div:nth-child(2) {
    display: flex;
    align-items: center;
}

.message-date {
    flex: none;
    display: flex;
    align-items: center;
    color: #999999;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

.message-content {
    padding-top: 24px;
    padding-bottom: 24px;
    color: #000000;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
}

.message-content p {
    padding-bottom: 10px;
}

.message-content p:last-of-type {
    padding-bottom: 0px;
}

.message-product {
    display: inline-flex;
    column-gap: 12px;
    padding-bottom: 16px;
    color: #96A929;
    transition: 0.25s;
}

.message-product:hover {
    color: #B5CD34;
}

.touch .message-product:hover {
    color: #96A929;
}

.message-product:active,
.touch .message-product:active {
    color: #B5CD34;
}

.message-product-picture {
    flex: none;
    width: 40px;
}

.message-product-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.2);
}

.message-product-name {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.message-data {
    padding-top: 10px;
    color: #999999;
    font-size: 13px;
    line-height: 21px;
}

.message-data strong {
    font-weight: 600;
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.message-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    height: 39px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 10px;
    border: solid 1px #E2E2E2;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s;
}

.message-action-post {
    width: 48px;
    height: 44px;
}

.message-action:hover {
    border-color: #B5CD34;
    color: #B5CD34;
}

.touch .message-action:hover {
    border-color: #E2E2E2;
    color: #FFFFFF;
}

.message-action:active,
.touch .message-action:active {
    border-color: #B5CD34;
    color: #B5CD34;
}

.message-action svg {
    margin-top: 1px;
}

.message-action path {
    fill: #000000;
    transition: 0.25s;
}

.message-action:hover path {
    fill: #B5CD34;
}

.touch .message-action:hover path {
    fill: #000000;
}

.message-action:active path,
.touch .message-action:active path {
    fill: #B5CD34;
}

.message-action-alt path {
    fill: #999999;
}

.message-action-alt:hover path {
    fill: #B5CD34;
}

.touch .message-action-alt:hover path {
    fill: #999999;
}

.message-action-alt:active path,
.touch .message-action-alt:active path {
    fill: #B5CD34;
}

/* SEND */

.send-title {
    padding-top: 8px;
    padding-bottom: 40px;
    color: #000000;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
}

.send-title strong {
    color: #B5CD34;
    font-weight: 600;
}

.send-fields {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.send-field {
    position: relative;
    cursor: text;
}

.send-textbox {
    display: block;
    width: 100%;
    height: 46px;
    padding-top: 1px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 8px;
    border: solid 1px #CCCCCC;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.send-textarea {
    display: block;
    height: 200px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 14px;
    line-height: 22px;
    resize: none;
}

.send-textarea::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.send-textarea::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 30px;
    border: solid 4px #FFFFFF;
}

.send-textarea::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

.send-textarea::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.send-field-on .send-textbox {
    border-color: #B5CD34;
}

.send-field-filled .send-textbox {
    border-color: #CCCCCC;
}

.send-label {
    position: absolute;
    top: 12px;
    left: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    padding-left: 3px;
    padding-right: 3px;
    background-color: #FFFFFF;
    color: #999999;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    transition: 0.25s;
}

.send-field-on .send-label {
    top: -12px;
    left: 10px;
    color: #B5CD34;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    cursor: default;
}

.send-field-filled .send-label {
    color: #B5CD34;
}

.send-button {
    text-align: center;
}

/* PRODUCT */

.product-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    row-gap: 48px;
    column-gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 96px;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 0px 20px 10px -10px rgba(0, 0, 0, 0.025);
}

.product-gallery {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 10px;
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.product-thumb {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
    background-color: #E2E2E2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.25s;
}

.product-thumb:hover {
    transform: scale(1.12);
    filter: brightness(120%);
}

.touch .product-thumb:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.product-thumb:active,
.touch .product-thumb:active {
    transform: scale(1.12);
    filter: brightness(120%);
}

.product-thumb-on {
    box-shadow: 0px 0px 0px 3px rgba(181, 205, 52, 1);
}

.product-thumb-on:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.touch .product-thumb-on:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.product-thumb-on:active,
.touch .product-thumb-on:active {
    transform: scale(1);
    filter: brightness(100%);
}

.product-pictures {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 9px;
    background-color: #E2E2E2;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: zoom-in;
}

.product-image-show {
    animation: product-image-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.product-image-hidden {
    display: none;
}

@keyframes product-image-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.product-image-blur {
    position: absolute;
    top: -32px;
    left: -32px;
    width: calc(100% + 64px);
    height: calc(100% + 64px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(32px);
}

.product-image-blur-show {
    animation: product-image-blur-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.product-image-blur-hidden {
    display: none;
}

@keyframes product-image-blur-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.product-info {
    padding: 24px;
    padding-bottom: 64px;
    border: solid 1px #E2E2E2;
    border-radius: 9px;
}

.product-labels {
    display: inline-flex;
    column-gap: 8px;
    padding-bottom: 20px;
}

.product-label {
    display: inline-flex;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    background-color: #B5CD34;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-label-alt {
    background-color: #000000;
}

.product-name {
    padding-bottom: 8px;
    color: #000000;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.product-brand {
    color: #000000;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

.product-location {
    display: inline-flex;
    column-gap: 6px;
    color: #96A929;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

.product-location img {
    margin-top: 2px;
}

.product-price {
    padding-top: 20px;
    padding-bottom: 4px;
}

.product-value {
    color: #000000;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
}

.product-sale {
    display: flex;
    column-gap: 10px;
    padding-bottom: 6px;
}

.product-discount {
    color: #BEBEBE;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-decoration: line-through;
}

.product-off {
    color: #00A650;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-actions {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-top: 24px;
}

.product-description-title {
    padding-bottom: 20px;
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

.product-description {
    padding-top: 32px;
    padding-bottom: 64px;
    color: #000000;
    font-size: 15px;
    line-height: 24px;
}

.product-description p {
    padding-bottom: 10px;
}

.product-description p:last-of-type {
    padding-bottom: 0px;
}

/* FOOTER */

.footer {
    position: relative;
    padding-top: 46px;
    padding-bottom: 20px;
    margin-top: -14px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    background-color: #000000;
    color: #FFFFFF;
}

.footer-layout {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
}

.footer-networks {
    display: flex;
    column-gap: 12px;
}

.footer-network {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 200px;
    border: solid 1px #9D9D9C;
    transition: 0.25s;
}

.footer-network:hover {
    border-color: #B5CD34;
}

.touch .footer-network:hover {
    border-color: #9D9D9C;
}

.footer-network:active,
.touch .footer-network:active {
    border-color: #B5CD34;
}

.footer-network svg {
    width: 34px;
    height: 34px;
}

.footer-network:hover path {
    fill: #FFFFFF;
    transition: 0.25s;
}

.footer-network:hover path {
    fill: #B5CD34;
}

.touch .footer-network:hover path {
    fill: #FFFFFF;
}

.footer-network:active path,
.touch .footer-network:active path {
    fill: #B5CD34;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 12px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.footer-copy {
    color: #999999;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.footer-lood {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.footer-link {
    color: #FFFFFF;
    transition: 0.25s;
}

.footer-link:hover {
    color: #B5CD34;
}

.touch .footer-link:hover {
    color: #FFFFFF;
}

.footer-link:active,
.touch .footer-link:active {
    color: #B5CD34;
}

.footer-link-alt {
    color: #999999;
    transition: 0.25s;
}

.footer-link-alt:hover {
    color: #B5CD34;
}

.touch .footer-link-alt:hover {
    color: #999999;
}

.footer-link-alt:active,
.touch .footer-link-alt:active {
    color: #B5CD34;
}

.footer-link-on {
    color: #B5CD34 !important;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #FFFFFF;
    animation: panel-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    column-gap: 16px;
    justify-content: center;
}

.panel-actions-close {
    flex: none;
}

.panel-close {
    display: flex;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-top: 0px;
    text-align: center;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
}

.panel-shortcuts {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    row-gap: 16px;
    padding-top: 24px;
    padding-bottom: 0px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 18px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    height: 30px;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #000000;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    color: #B5CD34;
}

.touch .panel-link:hover {
    color: #000000;
}

.panel-link:active,
.touch .panel-link:active {
    color: #B5CD34;
}

.panel-link-on {
    color: #B5CD34;
    border-color: #B5CD34;
    opacity: 1;
}

.panel-link-on:hover {
    color: #B5CD34;
    border-color: #B5CD34;
}

.touch .panel-link-on:hover {
    color: #B5CD34;
    border-color: #B5CD34;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    color: #B5CD34;
    border-color: #B5CD34;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.6s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.7s;
}

.panel-link-block:nth-child(7) {
    animation-delay: 0.8s;
}

.panel-link-block:nth-child(8) {
    animation-delay: 0.9s;
}

.panel-link-block:nth-child(9) {
    animation-delay: 1s;
}

.panel-link-block:nth-child(10) {
    animation-delay: 1.1s;
}

.panel-link-block:nth-child(11) {
    animation-delay: 1.2s;
}

.panel-link-block:nth-child(12) {
    animation-delay: 1.3s;
}

.panel-link-block:nth-child(13) {
    animation-delay: 1.4s;
}

.panel-link-block:nth-child(14) {
    animation-delay: 1.5s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    border: solid 2px #B5CD34;
    background-color: #FFFFFF;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-social:hover {
    border-color: transparent;
    background-color: #000000;
}

.touch .panel-social:hover {
    border-color: #B5CD34;
    background-color: #FFFFFF;
}

.panel-social:active,
.touch .panel-social:active {
    border-color: transparent;
    background-color: #000000;
}

.panel-social svg {
    width: 100%;
    height: 100%;
    transition: 0.25s;
}

.panel-social:nth-child(1) {
    animation-delay: 1s;
}

.panel-social:nth-child(2) {
    animation-delay: 1.25s;
}

.panel-social:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CATEGORIES */

.categories-box {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 32px;
    padding-bottom: 48px;
    padding-left: 44px;
    padding-right: 44px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 10px 4px 22px 0 rgba(0, 0, 0, 0.1);
    animation: categories-box-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 101;
}

@keyframes categories-box-anima {
    0% {
        transform: translateY(-10%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.categories-box::-webkit-scrollbar {
    width: 13px;
    height: 13px;
    border-radius: 30px;
}

.categories-box::-webkit-scrollbar-thumb {
    background: #BBBBBB;
    border-radius: 30px;
    border: solid 4px #FFFFFF;
}

.categories-box::-webkit-scrollbar-thumb:hover {
    background: #BBBBBB;
}

.categories-box::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0px;
}

.categories-box-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    animation: categories-box-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 100;
}

@keyframes categories-box-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.categories-box-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 32px;
    row-gap: 32px;
}

.categories-box-group {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.categories-box-link {
    display: inline-flex;
    column-gap: 3px;
    margin-bottom: 6px;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.25s;
}

.categories-box-link:hover {
    color: #96A929;
}

.touch .categories-box-link:hover {
    color: #000000;
}

.categories-box-link:active,
.touch .categories-box-link:active {
    color: #96A929;
}

.categories-box-link-alt {
    margin-bottom: 0px;
    color: #999999;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.categories-box-link-alt:hover {
    color: #96A929;
}

.touch .categories-box-link-alt:hover {
    color: #999999;
}

.categories-box-link-alt:active,
.touch .categories-box-link-alt:active {
    color: #96A929;
}

.categories-box-link-on {
    color: #96A929;
}

.categories-box-link-on:hover {
    color: #96A929;
}

.touch .categories-box-link-on:hover {
    color: #96A929;
}

.categories-box-link-on:active,
.touch .categories-box-link-on:active {
    color: #96A929;
}

/* ACCOUNT */

.account {
    padding-top: 48px;
    padding-bottom: 120px;
}

.account-bar {
    display: none;
    position: fixed;
    top: 210px;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.layout-expanded .account-bar>div {
    width: 100%;
    max-width: 1180px;
}

.layout-expanded .account-bar {
    display: flex;
    justify-content: center;
    top: 141px;
}

.account-bar-button {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    color: #000000;
    cursor: pointer;
    transition: 0.25s;
}

.account-bar-button:hover {
    color: #B5CD34;
}

.touch .account-bar-button:hover {
    color: #000000;
}

.account-bar-button:active,
.touch .account-bar-button:active {
    color: #B5CD34;
}

.account-bar-button-icon {
    flex: none;
}

.account-bar-button-label {
    flex: auto;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

.account-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
}

.layout-expanded .account-title {
    padding-top: 72px;
}

.account-title-name {
    display: inline-flex;
    padding-bottom: 8px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.account-title-name>div {
    display: inline-block;
}

.account-title-user {
    display: inline-flex;
    column-gap: 8px;
    color: #808080;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}

.account-title-user>div:nth-child(1) {
    padding-top: 1px;
}

.account-title-user svg {
    width: 19px;
    height: 19px;
}

.account-title-user path {
    fill: #B5CD34;
}

.account-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.account-button {
    display: flex;
    column-gap: 8px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    color: #000000;
    border: solid 2px #E2E2E2;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.account-button:hover {
    border-color: #B5CD34;
}

.touch .account-button:hover {
    border-color: #E2E2E2;
}

.account-button:active,
.touch .account-button:active {
    border-color: #B5CD34;
}

.account-button-label {
    flex: auto;
    padding-top: 14px;
    padding-bottom: 15px;
    padding-left: 16px;
    padding-right: 8px;
}

.account-button-badge {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
}

.account-button-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #B5CD34;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    background-color: #000000;
    border-radius: 100px;
    text-align: center;
}

.account-button-point {
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 100px;
    background-color: #E63F31;
}

.account-button-badge svg {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.account-button-badge path {
    fill: #B5CD34;
}

.account-button-on {
    background-color: #B5CD34;
    color: #FFFFFF;
    font-weight: 600;
    border-color: transparent;
}

.account-button-on .account-button-badge path {
    fill: #FFFFFF;
}

.account-button-on:hover {
    background-color: #B5CD34;
    border-color: transparent;
}

.touch .account-button-on:hover {
    background-color: #B5CD34;
    border-color: transparent;
}

.account-button-on:active,
.touch .account-button-on:active {
    background-color: #B5CD34;
    border-color: transparent;
}

.account-tabs {
    display: flex;
    column-gap: 16px;
    margin-top: 6px;
    margin-bottom: 24px;
}

.account-tab {
    padding-top: 8px;
    padding-bottom: 7px;
    border-bottom: solid 2px transparent;
    color: #000000;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    transition: 0.25s;
}

.account-tab:hover {
    color: #B5CD34;
}

.touch .account-tab:hover {
    color: #000000;
}

.account-tab:active,
.touch .account-tab:active {
    color: #B5CD34;
}

.account-tab-on {
    border-color: #000000;
    font-weight: 600;
    cursor: default;
}

.account-tab-on:hover {
    color: #000000;
}

.touch .account-tab-on:hover {
    color: #000000;
}

.account-tab-on:active,
.touch .account-tab-on:active {
    color: #000000;
}

.account-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.account-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    padding-top: 16px;
    padding-bottom: 32px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.25s;
}

.account-widget-icon {
    flex: auto;
    height: 100%;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-widget-icon img {
    transition: 0.25s;
}

.account-widget:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.35);
}

.touch .account-widget:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.account-widget:active,
.touch .account-widget:active {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.35);
}

.account-widget:hover .account-widget-icon img {
    transform: scale(1.15);
}

.touch .account-widget:hover .account-widget-icon img {
    transform: scale(1);
}

.account-widget:active .account-widget-icon img,
.touch .account-widget:active .account-widget-icon img {
    transform: scale(1.15);
}

.account-widget-green {
    background-color: #B5CD34;
    cursor: default;
}

.account-widget-green:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.touch .account-widget-green:hover {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.account-widget-green:active,
.touch .account-widget-green:active {
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
}

.account-widget-green:hover .account-widget-icon img {
    transform: scale(1);
}

.touch .account-widget-green:hover .account-widget-icon img {
    transform: scale(1);
}

.account-widget-green:active .account-widget-icon img,
.touch .account-widget-green:active .account-widget-icon img {
    transform: scale(1);
}

.account-widget-greeting {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
}

.widget-caption {
    flex: none;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
}

.widget-caption strong {
    color: #B5CD34;
    font-weight: 600;
}

/* PACKS */

.packs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
}

.packs-title {
    padding-bottom: 36px;
}

.pack {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: #FFFFFF;
    border: solid 2px #B5CD34;
    border-radius: 14px;
    box-shadow: 0px 0px 16px -2px rgba(181, 205, 52, 0.25);
}

.pack-header {
    flex: none;
    padding-top: 24px;
    padding-bottom: 16px;
    color: #000000;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    border-bottom: solid 1px #B5CD34;
}

.pack-header strong {
    font-weight: 700;
    color: #B5CD34;
}

.pack-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 32px;
    padding-bottom: 24px;
    flex: none;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}

.pack-price-month {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

.pack-features {
    flex: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding-bottom: 26px;
    padding-left: 16px;
    padding-right: 16px;
}

.pack-feature {
    display: flex;
    column-gap: 8px;
    font-size: 15px;
    line-height: 19px;
}

.pack-feature>div:nth-child(1) {
    padding-top: 6px;
}

.pack-feature strong {
    font-weight: 600;
}

.pack-feature em {
    font-weight: 600;
}

.pack-button {
    flex: none;
}

.packs-advices {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 18px;
}

.pack-advice {
    display: flex;
}

.packs-advice-content {
    text-align: center;
}

.packs-advice-title {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.packs-advice-title img {
    margin-top: 7px;
}

.packs-advice-caption {
    font-size: 16px;
    line-height: 20px;
}

.packs-advices-divisor {
    display: flex;
    justify-content: center;
    column-gap: 8px;
}

.packs-advices-bullet {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: #B5CD34;
}

.pack-bar-frame {
    display: flex;
    justify-content: center;
}

.pack-bar {
    display: inline-flex;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 24px;
}

.pack-bar-name {
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #222222;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    border-radius: 6px;
    text-transform: uppercase;
}

.pack-bar-name strong {
    font-weight: 600;
    color: #B5CD34;
}

.pack-bar-progress {
    display: inline-flex;
    column-gap: 5px;
    padding: 10px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

.pack-bar-progress strong {
    font-weight: 600;
}

.pack-bar-buy {
    display: flex;
    column-gap: 4px;
    align-items: center;
    padding-right: 16px;
    background-color: #FFFFFF;
    color: #B5CD34;
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.pack-bar-buy:hover {
    color: #000000;
}

.touch .pack-bar-buy:hover {
    color: #B5CD34;
}

.pack-bar-buy:active,
.touch .pack-bar-buy:active {
    color: #000000;
}

.pack-bar-buy svg {
    margin-bottom: 0px;
}

.pack-bar-buy path {
    fill: #B5CD34;
    transition: 0.25s;
}

.pack-bar-buy:hover path {
    fill: #000000;
}

.touch .pack-bar-buy:hover path {
    fill: #B5CD34;
}

.pack-bar-buy:active path,
.touch .pack-bar-buy:active path {
    fill: #000000;
}


.buy-layout {
    text-align: center;
}

.buy-title {
    padding-bottom: 16px;
    color: #000000;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

#buy-name {
    text-transform: lowercase;
}

.buy-title strong {
    color: #B5CD34;
    font-weight: 600;
}

.buy-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex: none;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: solid 2px #CCCCCC;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}

.buy-price-month {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

.buy-frame {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.buy-payment {
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.buy-payment strong {
    font-weight: 700;
}

.buy-note {
    padding-top: 16px;
    padding-bottom: 4px;
    color: #888888;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

.payment {
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
}

.payment-icon {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 24px;
    background-color: #B5CD34;
    border-radius: 500px;
}

.payment-counter {
    padding-top: 32px;
}

.payment-button {
    padding-top: 8px;
}

/* CREATE */

.create-price {
    display: none;
    padding-top: 8px;
    font-size: 14px;
    line-height: 14px;
}

.create-price-old {
    color: #999999;
    text-decoration: line-through;
}

.create-price-new {
    color: #96A929;
    font-weight: 600;
}

/* ARTICLES */

.articles-filter {
    padding-top: 40px;
    padding-bottom: 40px;
}

.articles-filters {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.articles-filters-button {
    padding: 8px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 200px;
    border: solid 1px #B5CD34;
    color: #B5CD34;
    font-size: 15px;
    line-height: 21px;
    font-weight: 700;
    text-align: center;
    transition: 0.25s;
}

.articles-filters-button:hover {
    border-color: #000000;
    color: #000000;
}

.touch .articles-filters-button:hover {
    border-color: #B5CD34;
    color: #B5CD34;
}

.articles-filters-button:active,
.touch .articles-filters-button:active {
    border-color: #000000;
    color: #000000;
}

.articles-filters-button-on {
    border-color: transparent;
    background-color: #B5CD34;
    color: #FFFFFF;
    cursor: default;
}

.articles-filters-button-on:hover {
    border-color: transparent;
    color: #FFFFFF;
}

.touch .articles-filters-button-on:hover {
    border-color: transparent;
    color: #FFFFFF;
}

.articles-filters-button-on:active,
.touch .articles-filters-button-on:active {
    border-color: transparent;
    color: #FFFFFF;
}

.articles-grid {
    display: none;
    position: relative;
    padding-bottom: 120px;
}

.articles-layout {
    padding: 16px;
    padding-bottom: 48px;
}

.articles-picture {
    flex: none;
    position: relative;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.articles-picture img {
    width: 100%;
}

.articles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #B5CD34;
    opacity: 0;
    transition: 0.25s;
}

.articles-layout:hover .articles-overlay {
    opacity: 0.25;
}

.touch .articles-layout:hover .articles-overlay {
    opacity: 0;
}

.articles-layout:active .articles-overlay,
.touch .articles-layout:active .articles-overlay {
    opacity: 0.25;
}

.articles-body {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-top: 24px;
}

.articles-header {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    transition: 0.25s;
}

.articles-layout:hover .articles-header {
    color: #B5CD34;
}

.touch .articles-layout:hover .articles-header {
    color: #000000;
}

.articles-layout:active .articles-header,
.touch .articles-layout:active .articles-header {
    color: #B5CD34;
}

.articles-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    transition: 0.25s;
}

.articles-layout:hover .articles-intro {
    color: #B5CD34;
}

.touch .articles-layout:hover .articles-intro {
    color: #000000;
}

.articles-layout:active .articles-intro,
.touch .articles-layout:active .articles-intro {
    color: #B5CD34;
}

.articles-tag {
    display: inline-block;
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
    background-color: rgba(150, 169, 41, 0.2);
    color: #96A929;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.article-layout {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    column-gap: 72px;
    padding-top: 48px;
    padding-bottom: 100px;
}

.article-title {
    padding-bottom: 16px;
    color: #000000;
    font-weight: 700;
    text-align: left;
}

.article-intro {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.article-date {
    padding-top: 8px;
    padding-bottom: 13px;
    font-size: 16px;
    line-height: 22px;
}

.article-picture {
    width: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.article-picture img {
    width: 100%;
}

.article-share {
    padding-top: 16px;
    margin-top: 48px;
    border-top: solid 1px rgba(150, 169, 41, 0.5);
    color: #B5CD34;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
}

.article-share-buttons {
    display: flex;
    column-gap: 4px;
    margin-top: 24px;
}

.article-share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

.article-share-button svg {
    width: auto;
    height: 18px;
}

.article-share-button path {
    fill: #000000;
    transition: 0.25s;
}

.article-share-button:hover path {
    fill: #B5CD34;
}

.touch .article-share-button:hover path {
    fill: #000000;
}

.article-share-button:active path,
.touch .article-share-button:active path {
    fill: #B5CD34;
}

.articles-suggestions-title {
    padding-bottom: 16px;
    margin-top: 16px;
    margin-bottom: 22px;
    border-bottom: solid 1px rgba(150, 169, 41, 0.5);
    color: #B5CD34;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
}

.articles-suggestions {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.articles-suggestion {
    display: flex;
    column-gap: 16px;
    width: 100%;
}

.articles-suggestion:hover .articles-overlay {
    opacity: 0.25;
}

.touch .articles-suggestion:hover .articles-overlay {
    opacity: 0;
}

.articles-suggestion:active .articles-overlay,
.touch .articles-suggestion:active .articles-overlay {
    opacity: 0.25;
}

.articles-suggestion-picture {
    flex: none;
    width: 164px;
}

.articles-suggestion-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.articles-suggestion-info {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.articles-suggestion-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    overflow: hidden;
    transition: 0.25s;
}

.articles-suggestion:hover .articles-suggestion-title {
    color: #B5CD34;
}

.touch .articles-suggestion:hover .articles-suggestion-title {
    color: #000000;
}

.articles-suggestion:active .articles-suggestion-title,
.touch .articles-suggestion:active .articles-suggestion-title {
    color: #B5CD34;
}

.articles-suggestion-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 15px;
    line-height: 19px;
    overflow: hidden;
}

/* DOCUMENTS */

.content {
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 0px;
}

.content-alt {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 110px;
}

.document-title {
    padding-bottom: 24px;
    color: #B5CD34;
    font-size: 52px;
    line-height: 56px;
    font-weight: 700;
}

.document-intro {
    padding-bottom: 32px;
    color: #000000;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.content h2,
.content h3,
.content p,
.content ul,
.content ol,
.content-image,
.content-embed {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
}

.content-embed {
    padding-top: 20px;
    padding-bottom: 20px;
}

.content-embed-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.content-embed-frame-alt {
    border-radius: 12px;
    overflow: hidden;
}

.content-embed iframe {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.content-embed-frame iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.content strong,
.content b {
    font-weight: 700;
}

.content p,
.content ul,
.content ol {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.content ul,
.content ol {
    padding-left: 48px;
    padding-right: 48px;
}

.content li {
    padding: 0;
    margin: 0;
}

.content h2 {
    padding-top: 20px;
    color: #000000;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

.content h3 {
    padding-top: 12px;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.content a,
.content a:link,
.content a:visited {
    color: #96A929;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.content a:hover {
    color: #666666;
}

.touch .content a:hover {
    color: #96A929;
}

.content a:active,
.touch .content a:active {
    color: #666666;
}

.content-image {
    padding-top: 22px;
    padding-bottom: 22px;
}

.content img {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.1);
}

.content-image-full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.content-image-full img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
}

.content-image-with-border img {
    border: solid 2px #E2E2E2;
}

.content-image-with-bg img {
    padding: 32px;
    background-color: #E2E2E2;
}

.content figcaption {
    padding-top: 10px;
    color: #999999;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.content-embed figcaption {
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
}

/* FAQS */

.faqs {
    position: relative;
    background-color: #FFFFFF;
    padding-top: 120px;
    padding-bottom: 120px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
}

.faqs-item {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}

.faqs-header {
    display: flex;
    column-gap: 10px;
    cursor: pointer;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #000000;
    transition: 0.25s;
}

.faqs-header:hover {
    color: #B5CD34;
}

.touch .faqs-header:hover {
    color: #000000;
}

.faqs-header:active,
.touch .faqs-header:active {
    color: #B5CD34;
}

.faqs-item-on .faqs-header {
    color: #B5CD34;
}

.faqs-item-on .faqs-header:hover {
    color: #B5CD34;
}

.touch .faqs-item-on .faqs-header:hover {
    color: #B5CD34;
}

.faqs-item-on .faqs-header:active,
.touch .faqs-item-on .faqs-header:active {
    color: #B5CD34;
}

.faqs-question {
    flex: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.faqs-arrow {
    flex: none;
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    padding-right: 16px;
}

.faqs-arrow svg {
    transition: 0.5s;
}

.faqs-item-on .faqs-arrow svg {
    transform: rotate(180deg);
}

.faqs-arrow path {
    fill: #000000;
    transition: 0.25s;
}

.faqs-header:hover .faqs-arrow path {
    fill: #B5CD34;
}

.touch .faqs-header:hover .faqs-arrow path {
    fill: #000000;
}

.faqs-header:active .faqs-arrow path,
.touch .faqs-header:active .faqs-arrow path {
    fill: #B5CD34;
}

.faqs-item-on .faqs-arrow path {
    fill: #B5CD34;
    transition: 0.25s;
}

.faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #B5CD34;
}

.touch .faqs-item-on .faqs-header:hover .faqs-arrow path {
    fill: #B5CD34;
}

.faqs-item-on .faqs-header:active .faqs-arrow path,
.touch .faqs-item-on .faqs-header:active .faqs-arrow path {
    fill: #B5CD34;
}

.faqs-response {
    display: none;
    width: 100%;
    padding-bottom: 34px;
    font-size: 18px;
    line-height: 26px;
    opacity: 0;
    transform: scale(0.9);
    animation: faqs-response-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.faqs-item-on .faqs-response {
    display: block;
}

.faqs-response p {
    padding-bottom: 8px;
}

.faqs-response p:last-of-type {
    padding-bottom: 0px;
}

@keyframes faqs-response-anima {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* VIEWER */

.viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    overflow: auto;
    z-index: 102;
}

.viewer-show {
    opacity: 1 !important;
    transition: 0.5s;
}

.viewer-hide {
    opacity: 0 !important;
    transition: 0.35s !important;
}

.viewer-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.viewer-centered {
    margin: auto;
    width: 100%;
}

.viewer-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 22px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 24px -2px rgba(0, 0, 0, 0.5);
}

.viewer-close-frame {
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    z-index: 3;
}

.viewer-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    cursor: pointer;
}

.viewer-close img {
    width: 18px;
    height: 18px;
    transition: 0.25s;
}

.viewer-close:hover img {
    transform: scale(1.2);
}

.touch .viewer-close:hover img {
    transform: scale(1);
}

.viewer-close:active img,
.touch .viewer-close:active img {
    transform: scale(1.2);
}

.viewer-content {
    padding-top: 64px;
    padding-bottom: 48px;
    padding-left: 64px;
    padding-right: 64px;
}

/* TOAST */

#toast {
    position: fixed;
    top: 48px;
    left: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    transform: translateX(-50%);
    z-index: 110;
}

.toast-item {
    display: none;
    column-gap: 12px;
    padding-top: 16px;
    padding-bottom: 18px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 10px;
    background-color: #000000;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
    transform: translateY(-100%);
}

.toast-show {
    opacity: 1;
    transform: translateY(0%);
    transition: 0.5s;
}

.toast-hide {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s;
}

.toast-caption {
    color: #B5CD34;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.toast-inverse .toast-caption {
    color: #000000;
}

.toast-button {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.25s;
}

.toast-inverse .toast-button {
    color: #000000;
}

.toast-button:hover {
    opacity: 1;
}

.touch .toast-button:hover {
    opacity: 0.7;
}

.toast-button:active,
.touch .toast-button:active {
    opacity: 1;
}

/* ADVICE */

.advice {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #B5CD34;
    animation: advice-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes advice-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.advice-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes advice-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.advice-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.advice-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.advice-actions {
    display: flex;
    justify-content: center;
}

.advice-close {
    display: inline-flex;
    padding: 12px;
    padding-top: 11px;
    padding-bottom: 17px;
    cursor: pointer;
}

.advice-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.advice-close:hover img {
    transform: rotate(180deg);
}

.touch .advice-close:hover img {
    transform: rotate(0deg);
}

.advice-close:active img,
.touch .advice-close:active img {
    transform: rotate(180deg);
}

.advice-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.advice-content {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.advice-main {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.advice-main strong {
    display: inline-block;
    padding-bottom: 8px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.advice-detail {
    padding-top: 16px;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    animation-name: advice-content-anima;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.advice-detail strong {
    font-weight: 700;
}

.advice-main div,
.advice-detail div {
    padding-bottom: 16px;
}

@keyframes advice-content-anima {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ------- DIALOG ------- */

#dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    z-index: 120;
}

.dialog-block {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.2);
}

@keyframes anima-dialog-show {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dialog-show {
    animation-name: anima-dialog-show;
    animation-duration: 0.5s;
}

@keyframes anima-dialog-hide {
    from {
        opacity: 1;
        transform: translateY(0%);
    }

    to {
        opacity: 0;
        transform: translateY(-50%);
    }
}

.dialog-hide {
    animation-name: anima-dialog-hide;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 120;
}

@keyframes anima-dialog-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dialog-overlay-show {
    animation-name: anima-dialog-overlay-show;
    animation-duration: 0.5s;
}

@keyframes anima-dialog-overlay-hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.dialog-overlay-hide {
    animation-name: anima-dialog-overlay-hide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.dialog-message {
    padding: 32px;
    padding-top: 32px;
    padding-bottom: 0px;
    color: #B5CD34;
}

.dialog-caption {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

.dialog-detail {
    padding-top: 16px;
    color: #000000;
    font-size: 15px;
    line-height: 22px;
}

.dialog-detail strong {
    font-weight: 700;
}

.dialog-detail a {
    color: #CCCCCC;
    font-weight: 700;
    text-decoration: none;
    transition: 0.15s;
}

.dialog-detail a:hover {
    color: #B5CD34;
}

.touch .dialog-detail a:hover {
    color: #CCCCCC;
}

.dialog-detail a:active,
.touch .dialog-detail a:active {
    color: #B5CD34;
}

.dialog-form {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding-top: 16px;
    padding-bottom: 4px;
}

#reason-other {
    display: none;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    column-gap: 12px;
    padding-top: 16px;
    padding-bottom: 32px;
    margin-left: 32px;
    margin-right: 32px;
}

/* RESPONSIVE */

@media (max-width: 1250px) {

    .items-swiper-prev.swiper-button-prev {
        left: -12px !important;
    }

    .items-swiper-next.swiper-button-next {
        right: -12px !important;
    }

}

@media (max-width: 1200px) {

    .list-grid {
        grid-template-columns: 1fr 1fr;
    }

    .layout-side {
        width: auto;
    }

    .account-widgets {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 1100px) {

    .kinds-shape {
        right: -70%;
    }

    .post-actions {
        grid-template-columns: 1fr;
    }

    .message-action-post {
        width: 100%;
    }

}

@media (max-width: 1025px) {

    .kinds-shape {
        right: -70%;
    }

}

@media (max-width: 1000px) {

    .product-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .product-secondary {
        order: 2;
    }

    .product-info {
        order: 1;
    }

    .packs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 960px) {

    .article-layout {
        grid-template-columns: 1fr;
        row-gap: 130px;
    }

}

@media (max-width: 940px) {

    .canvas {
        padding-top: 210px;
    }

    .bar-layout {
        grid-template-columns: auto 264px;
        grid-template-rows: 1fr auto;
        column-gap: 20px;
        row-gap: 20px;
    }

    .bar-layout> :first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .bar-layout> :nth-child(n+2) {
        grid-row: 2;
    }

    .bar-brand {
        justify-content: center;
    }

    .bar-layout-alt {
        grid-template-columns: 1fr;
        width: calc(100% + 18px + 18px);
        padding-top: 5px;
        margin-left: -18px;
    }

    .bar-swiper .swiper-button-prev {
        height: calc(100% - 2px);
    }

    .bar-swiper .swiper-button-next {
        height: calc(100% - 2px);
    }

    .layout-side {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: unset !important;
        padding: 32px;
        background-color: #FFFFFF;
        overflow: auto;
        box-shadow: none !important;
        animation: layout-side-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        z-index: 99;
    }

    .layout-side-shown {
        display: block;
    }

    .layout-side-close {
        right: 16px !important;
        left: unset !important;
    }

    .account-bar {
        display: flex;
        top: 210px !important;
    }

    .account-title {
        padding-top: 72px;
    }

    .account {
        padding-top: 80px;
    }

    .list-filters-btn {
        display: flex;
    }

    .list-bar {
        flex-direction: column;
        row-gap: 24px;
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .list-order {
        text-align: right;
    }

    .list-order {
        display: flex;
        column-gap: 24px;
        align-items: center;
        padding-bottom: 0px;
        height: 52px;
    }

    .list-filters-drop {
        flex: auto;
    }

    .list-order-fixed {
        position: fixed;
        top: 210px;
        left: 0;
        right: 0;
        padding-right: 24px;
        background-color: #FFFFFF;
        box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .list-order-fixed {
        padding-left: 18px;
    }

}

@media (max-width: 800px) {

    .entrance-layout {
        grid-template-columns: 1fr;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .entrance-picture {
        height: 300px;
    }

    .entrance-content {
        padding-top: 48px;
        padding-left: 0px;
        padding-right: 0px;
    }

}

@media (max-width: 780px) {

    .banner-content {
        padding-bottom: 75%;
        border-radius: 16px;
    }

    .banner-media {
        display: none;
    }

    .banner-media-mobile {
        display: block;
    }

    .kinds-shape {
        right: -50%;
        height: 120%;
    }

}

@media (max-width: 720px) {

    .categories-box {
        width: calc(100% - 20px);
        max-height: calc(100% - 225px);
        padding: 32px;
        padding-bottom: 48px;
        padding-left: 24px;
        padding-right: 24px;
        overflow: auto;
    }

    .categories-box-grid {
        grid-template-columns: auto auto;
        column-gap: 24px;
        row-gap: 24px;
    }

    .finder-results {
        top: 160px;
        left: 10px;
        width: calc(100% - 20px);
        max-height: calc(100% - 170px);
        padding: 16px;
    }

    .about-title {
        font-size: 35px;
        line-height: 45px;
    }

    .about-title-alt {
        padding-top: 48px;
    }

    .about-content {
        font-size: 18px;
        line-height: 24px;
    }

    .about-img {
        padding-bottom: 100%;
    }

    .about-swiper {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        height: auto !important;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .about-number {
        margin-top: 0%;
        padding-bottom: 16px;
        font-size: 100px;
        line-height: 100px;
    }

    .about-caption {
        font-size: 32px;
        line-height: 38px;
    }

    .about-info {
        height: auto;
    }

    .about-text {
        font-size: 17px;
        line-height: 23px;
    }

    .about-picture {
        height: unset;
        padding-bottom: 56.25%;
    }

    .packs-advice-title {
        flex-direction: column;
        row-gap: 14px;
    }

    .packs-advice-title img {
        margin: 0 auto;
        margin-top: 7px;
    }

    .fields-double {
        grid-template-columns: 1fr;
    }

    .fields-triple {
        grid-template-columns: 1fr;
    }

    .post {
        grid-template-columns: 1fr;
    }

    .post-picture {
        padding-bottom: 56.25%;
    }

    .articles-grid {
        padding-bottom: 64px;
    }

    .articles-layout {
        padding: 0px;
        padding-bottom: 48px;
    }

    .articles-body {
        row-gap: 10px;
        padding-top: 24px;
    }

    .articles-header {
        font-size: 24px;
        line-height: 32px;
    }

    .articles-intro {
        font-size: 17px;
        line-height: 21px;
    }

    .articles-tag {
        padding: 6px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .article-intro {
        padding-bottom: 24px;
        font-size: 19px;
        line-height: 27px;
    }

    .article-date {
        font-size: 16px;
        line-height: 22px;
    }

    .article-share {
        font-size: 17px;
        line-height: 19px;
    }

    .articles-suggestions-title {
        margin-top: 0px;
        font-size: 24px;
        line-height: 26px;
    }

    .articles-suggestion-picture {
        width: 100px;
    }

    .articles-suggestion-info {
        padding-top: 0px;
        padding-bottom: 10px;
        margin-top: -3px;
    }

    .faqs {
        padding-top: 72px;
        padding-bottom: 100px;
    }

    .faqs-header {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .faqs-question {
        font-size: 16px;
        line-height: 24px;
    }

    .faqs-arrow {
        padding-top: 8px;
    }

    .faqs-arrow svg {
        width: 16px;
        height: auto;
    }

    .faqs-response {
        font-size: 16px;
        line-height: 24px;
    }

}

@media (max-width: 620px) {

    .canvas {
        padding-top: 110px;
    }

    .bar {
        padding-top: 18px;
        padding-bottom: 0px;
    }

    .bar-layout {
        grid-template-columns: 50px auto 30px;
        grid-template-rows: unset;
        column-gap: 10px;
    }

    .bar-layout> :first-child {
        grid-column: unset;
        grid-row: unset;
    }

    .bar-layout> :nth-child(n+2) {
        grid-row: unset;
    }

    .bar-layout-alt {
        padding-top: 0px;
    }

    .bar-actions {
        display: none;
    }

    .bar-logo {
        display: none;
    }

    .bar-iso {
        display: block;
    }

    .bar-menu {
        display: block;
    }

    .bar-button {
        margin-top: 7px;
        margin-bottom: 0px;
        padding-top: 10px;
    }

    .bar-button-slide:first-of-type .bar-button {
        padding-left: 0px;
    }

    .bar-swiper .swiper-button-prev::after {
        background-image: none;
    }

    .bar-swiper .swiper-button-next::after {
        background-image: none;
    }

    .finder-results {
        top: 80px;
        left: 0px;
        width: 100%;
        max-height: calc(90% - 80px);
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .account-bar {
        top: 110px !important;
    }

    .list-order-fixed {
        top: 110px;
    }

    .slider-swiper {
        height: 480px;
    }

    .slider-swiper .swiper-button-prev {
        display: none;
    }

    .slider-swiper .swiper-button-next {
        display: none;
    }

    .slider-picture {
        display: none;
    }

    .slider-picture-mobile {
        display: block;
    }

    .slider-content {
        padding-left: 32px;
        padding-right: 32px;
    }

    .slider-title {
        font-size: 38px;
        line-height: 48px;
    }

    .slider-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .list-grid {
        grid-template-columns: 1fr;
    }

    .promo {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .promo-shape {
        top: 55%;
        left: -50%;
        background-size: auto 100%;
    }

    .promo-title {
        font-size: 40px;
        line-height: 45px;
    }

    .promo-description {
        font-size: 18px;
        line-height: 26px;
    }

    .account {
        padding-bottom: 72px;
    }

    .account-widgets {
        grid-template-columns: 1fr;
    }

    .packs-title {
        padding-top: 24px;
    }

    .fields {
        padding: 16px;
    }

    .layout-blocks {
        row-gap: 24px;
    }

    .fields-title {
        padding-top: 24px;
        padding-bottom: 16px;
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .fields-title-alt {
        padding-top: 16px;
        padding-bottom: 0px;
        font-size: 26px !important;
        line-height: 36px !important;
    }

    .uploader-pictures {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pack-bar {
        display: flex;
        flex-direction: column;
    }

    .pack-bar-name {
        justify-content: center;
        height: 38px;
        text-align: center;
    }

    .pack-bar-progress {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .pack-bar-buy {
        justify-content: center;
        padding-right: 0px;
        padding-bottom: 8px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .footer-columns-alt {
        row-gap: 8px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-buttons {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-networks {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-lood {
        justify-content: center;
        text-align: center;
    }

}

@media (max-width: 490px) {

    .categories-box {
        max-height: calc(100% - 130px);
    }

    .categories-box-grid {
        grid-template-columns: 1fr;
    }

    .finder-result-product-picture {
        width: 56px;
    }

    .finder-result-product-name {
        font-size: 14px;
        line-height: 19px;
    }

    .block-alt {
        padding-left: 0px;
        padding-right: 0px;
    }

    .title {
        font-size: 38px;
        line-height: 48px;
    }

    .title-alt {
        font-size: 30px;
        line-height: 36px;
    }

    .title-alt-2 {
        font-size: 30px;
        line-height: 36px;
    }

    .caption {
        padding-top: 16px;
        font-size: 18px;
        line-height: 26px;
    }

    .entrance-caption {
        font-size: 16px;
        line-height: 24px;
    }

    .entrance-picture {
        border-radius: 12px;
        height: 200px;
    }

    .entrance-content {
        padding-top: 32px;
    }

    .slider-title {
        font-size: 34px;
        line-height: 42px;
    }

    .slider-caption {
        font-size: 17px;
        line-height: 25px;
    }

    .list-header-title {
        font-size: 30px;
        line-height: 30px;
    }

    .list-header-title-alt {
        font-size: 30px;
        line-height: 30px;
    }

    .items-group {
        padding-top: 64px;
    }

    .items-group-alt {
        padding-bottom: 48px;
    }

    .items-header {
        padding-bottom: 24px;
    }

    .items-header-more {
        font-size: 14px;
        line-height: 14px;
    }

    .kinds {
        padding-top: 72px;
        padding-bottom: 32px;
    }

    .kinds-shape {
        top: 28%;
        right: -50%;
        height: 100%;
    }

    .kinds-swiper {
        height: 328px !important;
        padding-top: 48px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .promo {
        padding-left: 24px;
        padding-right: 24px;
    }

    .list-order-by {
        display: none;
    }

    .product-layout {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 72px;
    }

    .product-info {
        padding: 0px;
        padding-bottom: 24px;
        border: none;
        border-bottom: solid 1px #E2E2E2;
        border-radius: 0px;
    }

    .document-title {
        font-size: 38px;
        line-height: 42px;
    }

    .document-intro {
        font-size: 18px;
        line-height: 26px;
    }

    .product-description {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .product-thumbs {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 8px;
    }

    .product-pictures {
        order: 1;
        padding-bottom: 100%;
    }

    .packs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .account-tab-counter {
        display: none;
    }

    .uploader-pictures {
        grid-template-columns: 1fr 1fr;
    }

    .message-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .message-action {
        display: flex;
    }

    .message-date {
        font-size: 13px;
        line-height: 19px;
    }

    .post-picture {
        padding-bottom: 100%;
    }

    .post-info {
        height: auto;
        padding: 16px;
    }

    .content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .content ul,
    .content ol {
        padding-left: 32px;
        padding-right: 0px;
    }

}