@font-face {
    font-family: 'MazzardH';
    src: url('../fonts/MazzardH-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'MazzardH';
    src: url('../fonts/MazzardH-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'MazzardH';
    src: url('../fonts/MazzardH-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: MazzardH, 'MazzardH', sans-serif;
    font-style: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 14px;
}

html, body {
    overflow-x: hidden;
}

body {
    position: relative;
    background: #F6F8FA;
    background-size: cover;
    overflow-y: hidden;
}
.body-fixed {
    overflow-y: hidden;
    margin-right: 2.5px;
}

.wrapper {
    max-width: 1750px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    pointer-events: none;
}

.closeable-bg {

}

/*BUTTON*/
.button {
    position: relative;
    box-shadow: 0 8px 25px rgba(62, 95, 211, 0.35);
    border-radius: 6px;
    transition: .3s;

    white-space: nowrap;
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: unset;
}
.button:before {
    content: '';
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    border-radius: 6px;
    z-index: 1;
    transition: .3s;
}
.button:after {
    content: '';
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(293.8deg, #85A7FF 8.61%, #3E55D9 49.85%, #7625BF 104.61%, #801BCF 108.24%);
    border-radius: 6px;
    z-index: 2;
    opacity: 0;
    transition: .3s;

    font-size: 20px;
    color: #FFFFFF;
    font-weight: 700;
}
.button:hover {
    box-shadow: 0 25px 45px rgba(50, 36, 174, 0.45);
}
.button:hover:after {
    opacity: 1;
}
.button__icon {
    position: relative;
    z-index: 3;
    margin-left: 13px;
}
.button__text {
    position: relative;
    z-index: 3;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.button.disabled {
    background: #F6F8FA;
    box-shadow: unset;
    cursor: default;
    border: 1px solid #B7C6D6;
}
.button.disabled .button__text {
    color: #B7C6D6;
}
.button.disabled:before,
.button.disabled:after {
    display: none;
}

.button.check-small::before {
    opacity: 0;
}
.button.check-small::after {
    background: linear-gradient(293.8deg, #64DF52 8.61%, #58CC40 49.85%, #1EC650 108.24%);

    opacity: 1;

    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
}
.button.check-small img {
    opacity: 0;
}
.button.check-small .button__text {
    opacity: 0;
}

.button.check-big::before {
    opacity: 0;
}
.button.check-big-click::after {
    font-size: 16px;
    line-height: 19px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(293.8deg, #64DF52 8.61%, #58CC40 49.85%, #1EC650 108.24%);
    content: 'OK ✓';
    transition: .3s opacity;
}
.button.check-big::after {
    opacity: 1;
}
.button.check-big img {
    opacity: 0;
}
.button.check-big .button__text {
    opacity: 0;
}
.button.check-big .card-info__buttonText {
    opacity: 0;
}
/*BUTTON END*/

/*SCROLLBARS*/
::-webkit-scrollbar {
    width: 5px;
    background: #E3ECF4;
    border-radius: 2px;
}
::-webkit-scrollbar-thumb {
    border-width: 1px 1px 1px 2px;
    background-color: #CBD8E4;
    -webkit-border-radius: 2px;
}
::-webkit-scrollbar-track {
    border-width: 0;
}
:root {
    scrollbar-color: #CBD8E4 #E3ECF4 !important;
    scrollbar-width: thin !important;
}
/*SCROLLBARS END*/

/*NAME AND INPUT*/
.main-input__block {
    width: 100%;
    height: 55px;
    background: #F0F3F6;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}
.main-input__block:last-child {
    margin-bottom: 0;
}

.main-input__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}
.main-input__iconBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #FFB906;
    border-radius: 6px;
    margin-right: 10px;
}

.main-input {
    width: 100%;
    height: 100%;
    outline: none;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #3A3E46;

    padding: 0 50px 0 20px;

    background: transparent;
    border: none;
    transition: .3s;
}
.main-input::placeholder {
    color: #B2C3D3;
}

.main-input__icons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right: 20px;
    height: 21px;
    width: 21px;
    pointer-events: unset;
}
.main-input__icon {
    position: absolute;
    pointer-events: unset;
    z-index: 1;
}
.main-input__icon.open {
    display: block;
}
.main-input__icon.closed {
    display: none;
}
.main-input__block.show-pass .main-input__icon.open {
    display: none;
}
.main-input__block.show-pass .main-input__icon.closed {
    display: block;
}

.main-input__block.textarea {
    height: unset;
}
.main-input__block.textarea .main-input {
    height: 160px;
    resize: none;
    padding: 20px;
}

.main-account__inputText {
    position: absolute;
    right: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #B7B2CF;
}
/*NAME AND INPUT END*/

/*HEADER*/
.header {
    width: 100%;
    padding: 40px 0;
    z-index: 10;
    height: 128px;
}
.header .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}
.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-logo__link {
    display: flex;
    margin-right: 45px;
}
.header-logo {
    height: 45px;
}
.header-logo.mobile {
    display: none;
}
.header-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 289px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 12px 15px;
    margin-right: 20px;
}
.header-search__icon {
    margin-right: 4px;
    opacity: .5;
}
.header-search__input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.header-search__input::placeholder {
    color: rgba(255, 255, 255, .5);
}
.header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-nav__item {
    height: 48px;

    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;

    padding: 0 20px;
    text-decoration: unset;
    border-radius: 100px;
    margin-right: 10px;
    position: relative;
}
.header-nav__item span {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
.header-nav__item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background: radial-gradient(51.11% 79.26% at 49.15% 45.93%, #79AFFF 0%, #4457FF 100%);
}
.header-nav__item:hover:before,
.header-nav__item.active:before {
    opacity: 1;
    visibility: visible;
}
.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    transition: .3s;
    position: relative;
}
.header-circle.active .popup {
    display: block;
}
.header-circle__button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.header-circle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.header-circle__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
}
.header-circle__icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
}
.header-circle__icon:last-child {
    visibility: hidden;
    opacity: 0;
}
.header-circle:hover,
.header-circle.active {
    border: 1px solid transparent;
}
.header-circle:hover:before,
.header-circle.active:before {
    visibility: visible;
    opacity: 1;
}
.header-circle:hover,
.header-circle.active {
    border: 1px solid transparent;
}
.header-circle:hover:before,
.header-circle.active:before {
    visibility: visible;
    opacity: 1;
}
.header-circle:hover .header-circle__icon:first-child,
.header-circle.active .header-circle__icon:first-child {
    visibility: hidden;
    opacity: 0;
}
.header-circle:hover .header-circle__icon:last-child,
.header-circle.active .header-circle__icon:last-child {
    visibility: visible;
    opacity: 1;
}
.header-circle__number {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    padding: 0 8px 0;
    height: 25px;
    min-width: 25px;
    border-radius: 13px;
    background: lightgray;
}
.header-circle__number.green {
    background: linear-gradient(315deg, #00E7B2 21.78%, #1FA999 83.14%);
}
.header-circle__number.red {
    background: linear-gradient(315deg, #E97264 21.78%, #ED5D64 83.14%);
}

.header-user {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    margin-right: 20px;
    cursor: pointer;
    padding: 0 38px 0 25px;
    position: relative;
    text-decoration: unset;
    transition: .3s;
}
.header-user:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 100px;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.header-user__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    position: relative;
}
.header-user__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transition: .3s;
}
.header-user__icon:last-child {
    visibility: hidden;
    opacity: 0;
}
.header-user:hover,
.header-user.active {
    border: 1px solid transparent;
}
.header-user:hover:before,
.header-user.active:before {
    visibility: visible;
    opacity: 1;
}
.header-user:hover .header-user__icon:first-child,
.header-user.active .header-user__icon:first-child {
    visibility: hidden;
    opacity: 0;
}
.header-user:hover .header-user__icon:last-child,
.header-user.active .header-user__icon:last-child {
    visibility: visible;
    opacity: 1;
}
.header-user__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}
.header-user.name {
    padding: 0 23px 0 13px;
}
.header-user.active .popup {
    display: block;
}

.header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.header-menu__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.header-menu.active .popup {
    display: block;
}
.header-menu__icon {
    margin-right: 12px;
}
.header-menu__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.header-money {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 111px;
    margin-right: 4px;
    padding: 0 8px 0 11px;
}
.header-money__left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-money__icon {
    min-width: 24px;
    margin-right: 5px;
}
.header-money__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.header-money__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(315deg, #00E7B2 21.78%, #1FA999 83.14%);
    transition: .3s;
    border-radius: 50%;
}
.header-money__button:hover {
    opacity: .8;
}

.header-menu .header-money {
    display: none;
}

.header-circle.currency {
    width: auto;
    border-radius: 100px;
}
.header-circle.currency .header-circle__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
}
.header-circle.currency:before {
    border-radius: 100px;
}
/*HEADER END*/

/*FOOTER*/
.footer {
    width: 100%;
    height: 100px;
    background: #3A4255;
}
.footer .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.footer-nav__item {
    margin: 0 44px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #8E97AE;
    text-decoration: unset;
    transition: .3s;
}
.footer-nav__item:hover {
    color: #FFFFFF;
}
/*FOOTER END*/

/*DECOR*/
.main-decor__block {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 560px;
    background: #221F1F;
}
.main-decor {
    opacity: .45;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/*DECOR END*/

/*MODALS*/
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 66, 85, .9);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    max-width: 930px;
    min-height: 550px;
    height: 550px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 18px;
}

.modal-content__info {
    height: 100%;
    max-width: 450px;
    width: 100%;
    min-width: 450px;
    background: url(../img/auth.png) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 45px;
    border-radius: 18px 0 0 18px;
}
.modal-content__bonus {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #F5F6FA;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    padding: 12px;
    width: 100%;
    border-radius: 35px;
}
.modal-content__bonusIconBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(50% 50% at 50% 50%, #B8E160 0%, #8AAD3E 100%);
    box-shadow: 0 5px 15px rgba(89, 116, 33, 0.45);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-right: 13px;
}
.modal-content__bonusText {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #3A3E46;
}
.modal-content__infoLogo {
    height: 58px;
}
.modal-content__copyright {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.modal-content__forms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 450px;
    width: 100%;
    margin-right: 17px;
    padding: 45px 30px 27px;
}
.modal-content__buttons {
    width: 100%;
    height: 50px;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #F0F3F6;
    border-radius: 111px;
    position: relative;
    cursor: pointer;
    transition: .3s;
}
.modal-content__buttons:hover {
    background: #e9ecf3;
}
.modal-content__button {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #3A3E46;
    width: 195px;
    position: relative;
    z-index: 1;
    transition: .3s;
}
.modal-content__buttonBg {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 195px;
    height: 100%;
    background: linear-gradient(90deg, #7449E6 0.06%, #69A4FF 98.49%);
    border-radius: 25px;
    transition: .3s;
}
.modal-content__button:first-child {
    color: #FFFFFF;
}
.modal-content__forms.reg .modal-content__buttonBg {
    left: 195px;
}
.modal-content__forms.reg .modal-content__button:first-child {
    color: #3A3E46;
}
.modal-content__forms.reg .modal-content__button:last-child {
    color: #FFFFFF;
}
.modal-content__footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-content__footerText {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #3A3E46;
    text-align: center;
    margin-bottom: 12.5px;
}
.modal-content__footerText a {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-decoration-line: underline;
    color: #556DFF;
}
.modal-content__footerText a:hover {
    text-decoration: unset;
}
.modal-content__footerForgot {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #A7BACB;
    text-decoration: unset;
}
.modal-content__footerForgot:hover {
    text-decoration: underline;
}
.modal-content__form {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.modal-content__form.login {
    display: block;
}
.modal-content__form.reg {
    display: none;
}
.modal-content__forms.reg .modal-content__form.login {
    display: none;
}
.modal-content__forms.reg .modal-content__form.reg {
    display: flex;
}
.modal-content__form .button {
    width: 100%;
    height: 60px;
    border-radius: 111px;
    z-index: 3;
}
.modal-content__form .button:before,
.modal-content__form .button:after {
    border-radius: 111px;
}
.modal-content__form .button__text {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}
.modal-content__delimiter {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.modal-content__delimiter span {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #3A3E46;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    padding: 0 7px;
    margin: 0 auto;
}
.modal-content__delimiter:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E2DDFC;
    z-index: 0;
}
.modal-content__social {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.modal-content__socialItem {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content__socialItem:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}
.modal-content__socialItemIcon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.modal-search {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: transparent;
    max-width: 1210px;
    width: 100%;
    padding: 0 15px 15px;
    overflow-y: auto;
}
.modal-search__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 33px;
}
.modal-search__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: none;
}
.modal-search__inputBlock {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 72px;
    position: relative;
}
.modal-search__input {
    height: 62px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 45px 45px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    border: unset;
    outline: none;
    padding: 0 60px;

    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
}
.modal-search__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.modal-search__items .card {
    max-width: 280px;
}
.modal-search__items.empty {
    grid-template-columns: 1fr;
}
.modal-search__items .empty {
    color: #FFFFFF;
    margin-top: 36px;
    text-align: center;
    width: 100%;
    font-size: 18px;
}
.modal-search__inputIcon {
    position: absolute;
    left: 20px;
}
.modal-search__inputClose {
    position: absolute;
    right: 27px;
    cursor: pointer;
    pointer-events: auto;
}

.modal-seller {

}
.modal-seller__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 460px;
    width: 100%;
}
.modal-seller__form {
    width: 100%;
    margin-bottom: 30px;
}
.modal-seller__form .main-input__block {
    margin-bottom: 15px;
}
.modal-seller__form .button {
    margin-top: 15px;
    height: 60px;
    width: 100%;
    border-radius: 111px;
}
.modal-seller__form .button:after,
.modal-seller__form .button:before {
    border-radius: 111px;
}
.modal-seller__wrapper {

}
.modal-content__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 38px;
}
.modal-content__headerIcon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    pointer-events: unset;
}
.modal-content__headerText {
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #3A3E46;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-content__headerText:after {
    position: absolute;
    content: '';
    display: block;
    bottom: -11px;
    width: 35px;
    height: 6px;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    box-shadow: 0 15px 15px rgba(114, 85, 255, 0.25);
    border-radius: 111px;
}
.modal-seller__wrapper .modal-content {
    flex-direction: column;
    align-items: center;
    padding: 35px 35px 29px;
    height: unset;
    min-height: unset;
    max-height: unset;
}
.modal-seller__wrapper .modal-content__bonus {
    margin-bottom: 25px;
}
.modal-seller__wrapper .modal-content__bonusIconBlock {
    box-shadow: unset;
}

.modal.report .modal-content {
    max-width: 370px;
    padding: 22px 24px 25px;
}
.modal.report .modal-content__headerIcon {
    width: 15px;
    top: 8px;
    right: 5px;
}
.modal.report .modal-content__header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 19px;
}
.modal.report .modal-content__headerText:after {
    display: none;
}
.modal.report .modal-content__headerTextIcon {
    width: 29px;
    margin-right: 7px;
}
.modal.report .modal-seller__form {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal.report .button {
    width: 150px;
    height: 45px;
    margin-top: 5px;
}

.modal.google .modal-content {
    max-width: 370px;
    padding: 30px 24px 24px;
}
.modal.google .modal-content__headerIcon {
    width: 15px;
    top: 0;
    right: 6px;
}
.modal.google .modal-content__header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.modal.google .modal-content__headerText {
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
}
.modal.google .modal-content__headerText:after {
    display: none;
}
.modal.google .modal-seller__form {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal.google .button {
    width: 150px;
    height: 45px;
    margin-top: 5px;
}

.modal-google__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 28px;
    gap: 6.8px;
}
.modal-google__input {
    background: rgba(230, 235, 239, 0.45);
    border-radius: 8px;
    width: 47.9px;
    height: 47.04px;
    text-align: center;
    outline-color: #9DB3C8;
    border: unset;
}
.modal-google__input::-webkit-outer-spin-button,
.modal-google__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.modal-google__input[type=number] {
    -moz-appearance: textfield;
}
.modal-google__input::placeholder {
    color: #9DB3C8;
}
.modal-google__input:focus::placeholder {
    color: transparent;
}
/*MODALS END*/

/*MAIN*/
.main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 40px;
}

.main-header__items {
    display: grid;
    grid-template:
"a b c d e"
"a f g h i";
    grid-template-columns: 560px 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 30px;
}
.main-header__items .card:nth-child(1) {
    grid-area: a;
}
.main-header__items .card:nth-child(2) {
    grid-area: b;
}
.main-header__items .card:nth-child(3) {
    grid-area: c;
}
.main-header__items .card:nth-child(4) {
    grid-area: d;
}
.main-header__items .card:nth-child(5) {
    grid-area: e;
}
.main-header__items .card:nth-child(6) {
    grid-area: f;
}
.main-header__items .card:nth-child(7) {
    grid-area: g;
}
.main-header__items .card:nth-child(8) {
    grid-area: h;
}
.main-header__items .card:nth-child(9) {
    grid-area: i;
}

.main-bestsellers {
    margin-bottom: 30px;
}
.main-bestsellers:last-child {
    margin-bottom: 0;
}
.main-bestsellers__header {
    height: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.main-bestsellers__title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-bestsellers__titleText {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #515B73;
}
.main-bestsellers__titleDecor {
    font-family: 'Benzin', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 72px;
    letter-spacing: 0.01em;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #E6ECF1;
    position: absolute;
    top: -23px;
    left: -28px;
    z-index: -1;
}
.main-bestsellers__headerDecor {
    margin-top: 10px;
}
.main-bestsellers__headerButton {
    width: 270px;
    height: 60px;
    background: #EDF1F4;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #8595A3;
    transition: .3s;
}
.main-bestsellers__headerButton:hover {
    background: #e7e9ec;
}
.main-bestsellers__headerButtonIcon {
    margin-left: 10px;
}
.main-bestsellers__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.main-bestsellers__nav {
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-bestsellers__navItem {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-right: 35px;
}
.main-bestsellers__navItem:last-child {
    margin-right: 0;
}
.main-bestsellers__navItem:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.main-bestsellers__navItemIcon {
    opacity: .45;
    margin-right: 5px;
    transition: .3s;
}
.main-bestsellers__navItemText {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #AAB0BE;
    white-space: nowrap;
    transition: .3s;
}
.main-bestsellers__navItem:hover:after,
.main-bestsellers__navItem.active:after {
    opacity: 1;
    visibility: visible;
}
.main-bestsellers__navItem:hover .main-bestsellers__navItemIcon,
.main-bestsellers__navItem.active .main-bestsellers__navItemIcon {
    opacity: 1;
}
.main-bestsellers__navItem:hover .main-bestsellers__navItemText,
.main-bestsellers__navItem.active .main-bestsellers__navItemText {
    color: #505B75;
}

.main-bestsellers__items {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 33px;
    grid-column-gap: 20px;
    display: none;
    animation-duration: 1s;
}
.main-bestsellers__items.active {
    display: grid;
}

.main-bestsellers__select {
    display: none;
}
/*MAIN END*/

/*CARD*/
.card {
    max-width: 270px;
    width: 100%;
    height: 314px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.card-bg__block {
    position: absolute;
    width: 100%;
    height: 100%;
}
.card-bg__block:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 49.4%);
    border-radius: 18px;
    transform: rotate(-180deg);
}
.card-bg {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
}
.card__sale {
    height: 40px;
    background: #ED5D64;
    border-radius: 8px;
    padding: 0 14px;

    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #FFFFFF;

    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}
.card__price {
    height: 40px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    background: linear-gradient(315deg, #79AFFF 21.78%, #4457FF 83.14%);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0 17px;

    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;
}
.card-hover {
    width: calc(100% - 30px);
    min-height: 72px;
    position: absolute;
    z-index: 1;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    transition: .3s;
    bottom: 15px;
    left: 15px;
    padding: 15px;
    cursor: default;
}
.card-hover__text {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    max-width: 170px;
    /*max-width: 100%;*/
    transition: .3s;
}
.card-hover__button {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1;

    right: 15px;
    top: 50%;
    transform: translateY(-50%);

    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.card-hover__buttonIcon {
    position: relative;
    z-index: 3;
}

.card:hover .card-hover {
    background: #FFFFFF;
    justify-content: space-between;
    align-items: center;
}
.card:hover .card-hover__text {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #505B75;
    max-width: calc(100% - 50px);
}
.card:hover .card-hover__button {
    visibility: visible;
    opacity: 1;
}
.card:hover {

}
.card:hover {

}

.card.big {
    max-width: 560px;
    width: 100%;
    height: 648px;
}
.card-info {
    position: absolute;
    left: 35px;
    bottom: 35px;
    width: calc(100% - 70px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    box-shadow: 0 45px 45px rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    padding: 20px 25px;
    cursor: default;
}
.card-info .card__sale {
    left: 25px;
    top: -20px;
}
.card-info__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.card-info__rate {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 5px;
}
.card-info__rateText {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #C1C7D7;
    margin-left: 5px;
}
.card-info__name {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 0.01em;
    color: #505B75;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: unset;
}
.card-info__name:hover {
    text-decoration: underline;
}
.card-info__description {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #BEC5D9;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-info__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 15px;
}
.card-info__price {
    width: 120px;
    height: 40px;
    background: #F0F3F7;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
}
.card-info__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 36px;
}
.card-info__buttonText {
    position: relative;
    z-index: 3;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.card-info__buttonIcon {
    margin-left: 10px;
    position: relative;
    z-index: 3;
}
/*CARD END*/

/*CARD ROW*/
.card-row {
    max-width: 100%;
    width: 100%;
    height: 130px;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #EAEDF0;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 25px;
    margin: 15px 0;
}
.card-row__left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.card-row__left .card-info__left {
    position: relative;
    height: 130px;
    justify-content: center;
    padding-top: 11px;
}
.card-row__left .card__sale {
    position: absolute;
    top: -15px;
    left: 0;
}
.card-row__imgBlock {
    height: 160px;
    width: 137.26px;
    min-width: 137.26px;
    filter: drop-shadow(0px 15px 25px #B3C0CC);
    border-radius: 8px;
    margin: -15px 25px -15px 20px;
}
.card-row__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 8px;
    background-position: center;
}
.card-row .card-info__name {
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #505B75;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-row .card-info__name:hover {
    text-decoration: underline;
}
.card-row .card-info__description {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #BEC5D9;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-row .card-info__rate {
    margin-bottom: 0;
    padding-top: 0;
    margin-top: 5px;
}
/*CARD ROW END*/

/*RATING START*/
.rating-holder {
    display: inline-block;
    box-sizing: border-box;
}
.c-rating button {
    display: inline-block;
    float: left;
    width: 1.25em;
    height: 1.25em;
    border: 0;
    text-indent: -9999px;
    outline: none;
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
    transition: background 0.25s ease;
}
.c-rating[data-rating-value="0"] button:nth-child(-n+0) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(-n+1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(-n+1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(-n+1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1"] button:nth-child(-n+1) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(-n+2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(-n+2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(-n+2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2"] button:nth-child(-n+2) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(-n+3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(-n+3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(-n+3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3"] button:nth-child(-n+3) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(-n+4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(-n+4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(-n+4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4"] button:nth-child(-n+4) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(-n+5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(-n+5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(-n+5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="5"] button:nth-child(-n+5) {
    background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating--small {
    font-size: 50%;
}
.c-rating--big {
    font-size: 150%;
}
/*RATING START END*/

/*BURGER ICON*/
.header-menu label {
    display: flex;
    flex-direction: column;
    width: 20px;
    cursor: pointer;
    margin-right: 12px;
}
.header-menu label span {
    background: #fff;
    border-radius: 1px;
    height: 3px;
    margin: 2px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.header-menu span:nth-of-type(1) {
    width: 50%;
    opacity: 0.5;
}
.header-menu span:nth-of-type(2) {
    width: 100%;
}
.header-menu span:nth-of-type(3) {
    width: 75%;
    opacity: 0.5;
}
.header-menu input[type="checkbox"] {
    display: none;
}
.header-menu input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(14px, 0px);
}
.header-menu input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}
.header-menu input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(1px, -12px) rotatez(45deg);
}
/*BURGER ICON END*/

/*POPUP*/
.popup {
    position: absolute;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.15);
    z-index: 5;
    display: none;
    animation-duration: .3s;
    transition: .3s;
}
.popup:before {
    content: url(../img/icons/triangle.svg);
    position: absolute;
    top: -10px;
    right: 30px;
}
.popup.menu {
    max-width: 349px;
    min-width: 349px;
    width: 100%;
    top: 70px;
    right: 22px;
    padding: 23px 15px 30px;
}
.popup.cart {
    max-width: 682px;
    min-width: 682px;
    width: 100%;
    top: 70px;
    right: -19px;
    padding: 33px 18px 40px 30px;
}
.popup.notify {
    max-width: 455px;
    min-width: 455px;
    width: 100%;
    top: 70px;
    right: -19px;
    padding: 33px 18px 30px 30px;
}
.popup.user {
    max-width: 255px;
    min-width: 255px;
    width: 100%;
    top: 70px;
    /*right: 32px;*/
    right: 0;
    padding: 15px;
}
.popup.lang {
    max-width: 127px;
    min-width: 127px;
    width: 100%;
    top: 70px;
    right: -19px;
}
.popup.currency {
    max-width: 127px;
    min-width: 127px;
    width: 100%;
    top: 70px;
    right: 0;
}

.popup-header {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #E4EBF2;
}
.popup-header__text {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #505B75;
}
.popup-header__number {
    background: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;

    padding: 0 10px 0;
    height: 30px;
    min-width: 30px;
    border-radius: 15px;
    margin-left: 9px;
}
.popup-header__number.green {
    background: linear-gradient(315deg, #00E7B2 21.78%, #1FA999 83.14%);
}
.popup-header__number.red {
    background: linear-gradient(315deg, #E97264 21.78%, #ED5D64 83.14%);
}

.popup-block {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 380px;
    padding-right: 19px;
}

.popup-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.popup-footer__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.popup-footer__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #99A2BB;
    margin-bottom: 5px;
}
.popup-footer__value {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: #000000;
}
.popup-footer__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.popup-footer__buttons .button {
    height: 52px;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.popup-footer__buttons .button .button__text {
    margin-bottom: 1px;
}
.popup-footer__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 31px;
    border: 1px solid #DEE7F0;
    border-radius: 6px;
    background: transparent;
    text-decoration: unset;
    margin-left: 20px;
    position: relative;
    transition: .3s;
}
.popup-footer__button span {
    position: relative;
    z-index: 1;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
    transition: .3s;
}
.popup-footer__button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    background: linear-gradient(299.24deg, #79AFFF 7.87%, #4457FF 79.84%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.popup-footer__button:hover {
    border: 1px solid transparent;
}
.popup-footer__button:hover span {
    color: #FFFFFF;
}
.popup-footer__button:hover:before {
    opacity: 1;
    visibility: visible;
}

.popup-lang__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.popup-lang__list-delimiter {
    width: calc(100% - 16px);
    margin: 0 8px;
    height: 1px;
    display: block;
    background: #fbf9f9;
    z-index: 0;
    position: relative;
}
.popup-lang__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.16px;
    padding: 8px 11px;
    text-decoration: none;
    transition: .3s;
}
.popup-lang__item:first-child {
    padding-top: 11px;
}
.popup-lang__item:last-child {
    padding-bottom: 11px;
}
.popup-lang__item:hover {
    background: #ededed;
}
.popup-lang__item-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    object-fit: contain;
    border-radius: 50%;
}
.header-circle.currency .popup-lang__item {
    gap: 10px;
}
.popup-lang__item span {
    width: 15px;
    text-align: center;
}
/*POPUP END*/

/*NOTIFY*/
.notify-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E4EBF2;
}
.notify-item:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}
.notify-item__iconBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0 5px 15px rgba(220, 228, 236, 0.45);
    border-radius: 8px;
    margin-right: 14px;
}
.notify-item__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.notify-item__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3px;
}
.notify-item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #505B75;
}
.notify-item__time {
    background: #E6EDF4;
    border-radius: 100px;
    padding: 5px 10px 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #BBC5CE;
}
.notify-item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #8799AA;
}
/*NOTIFY END*/

/*MENU*/
.menu-item {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #E9EEF4;
    border-radius: 8px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: .3s;
    position: relative;
}
.menu-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    background: linear-gradient(299.24deg, #79AFFF 7.87%, #4457FF 79.84%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.menu-item:last-child {
    margin-bottom: 0;
}
.menu-item__icons {
    width: 30px;
    height: 30px;
    position: relative;
    margin-right: 15px;
}
.menu-item__icon {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
    transition: .3s;
}
.menu-item__icon:last-child {
    opacity: 0;
    visibility: hidden;
}
.menu-item__text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 60px;
    color: #505B75;
    transition: .3s;
    position: relative;
    z-index: 1;
}
.menu-item.active .menu-item__text,
.menu-item:hover .menu-item__text {
    color: #FFFFFF;
}
.menu-item.active,
.menu-item:hover {
    border: 1px solid transparent;
}
.menu-item.active:before,
.menu-item:hover:before {
    opacity: 1;
    visibility: visible;
}
.menu-item.active .menu-item__icon:first-child,
.menu-item:hover .menu-item__icon:first-child {
    opacity: 0;
    visibility: hidden;
}
.menu-item.active .menu-item__icon:last-child,
.menu-item:hover .menu-item__icon:last-child {
    opacity: 1;
    visibility: visible;
}

.menu-item.red {
    background: rgba(246, 172, 176, 0.35);
    border: unset;
    transition: .3s;
}
.menu-item.red:hover {
    background: rgba(246, 172, 176, 0.5);
}
.menu-item.red .menu-item__icon {
    transition: unset;
}
.menu-item.red .menu-item__text {
    color: #ED5D64;
}
.menu-item.red:before {
    display: none;
}
/*MENU END*/

/*CART*/
.cart-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #EAEDF0;
    border-radius: 12px;
    height: 143px;
}
.cart-item:first-child {
    margin-top: 20px;
}
.cart-item__delete {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
}
.cart-item .card__sale {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    right: unset;
}
.cart-item__imgBlock {
    max-width: 123px;
    width: 100%;
    min-width: 123px;
    border-radius: 8px 0 0 8px;
    margin-right: 21px;
    position: relative;

    max-height: 100%;
    height: 100%;
}
.cart-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 0 0 8px;
}
.cart-item__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 55px;
}
.cart-item__title {
    text-decoration: unset;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #505B75;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-item__title:hover {
    text-decoration: underline;
}
.cart-item__description {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #BEC5D9;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-item__price {
    width: 97px;
    height: 42px;
    background: #F0F3F7;
    border-radius: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*CART END*/

/*CARD PAGE*/
.main-card .wrapper {
    width: 100%;
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: 560px minmax(0, 705px) 415px;
    grid-template-rows: 648px;
}

.main-card__imgBlock {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-card__imgBlock:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.7%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 18px;
}
.main-card__img {
    border-radius: 18px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-card__info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 35px;
    position: relative;
}
.main-card__info .card-info__rate {
    position: absolute;
    top: 35px;
    right: 35px;
    padding-top: 0;
    margin-bottom: 0;
}
.main-card__title {
    width: 100%;
    margin-top: 7px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 22px;
    color: #505B75;
    margin-bottom: 21px;
    padding-right: 140px;
}
.main-card__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #505B75;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.main-card__subtitle:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 25px;
    height: 4px;
    background: radial-gradient(51.11% 79.26% at 49.15% 45.93%, #79AFFF 0%, #4457FF 100%);
    border-radius: 100px;
}
.main-card__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #9E9EBC;
    margin-top: -10px;
    margin-bottom: 10px;
    height: 100%;
    overflow-y: auto;
}
.main-card__gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
    grid-template-rows: repeat(2, 81px);
}
.main-card__galleryItem {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.main-card__galleryItem:after {
    content: url(../img/icons/zoom.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.main-card__galleryItem:hover:after {
    visibility: visible;
    opacity: 1;
}
.main-card__galleryItemImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.main-card__buy {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 30px 30px 25px;
}
.main-card__priceBlock {
    width: 100%;
    border: 1px solid #EAEFF4;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 20px 30px;
}
.main-card__sale {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 40px;

    background: #ED5D64;
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.main-card__priceTextBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.main-card__price.old {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FF575F;
    position: relative;
}
.main-card__price.old::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    display: block;
    top: 43%;
    left: 0;
    background: #FF575F;
}
.main-card__price.new {
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    color: #505B75;
}
.main-card__platform {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1px solid #EAEFF4;
    border-radius: 8px;
    margin-bottom: 15px;
}
.main-card__platformText {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #A4A4C0;
}
.main-card__platformItem {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-card__platformItem .main-bestsellers__navItemIcon {
    opacity: 1;
}
.main-card__platformItem .main-bestsellers__navItemText {
    color: #505B75;
}
.main-card__pros {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}
.main-card__prosItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 23px;
}
.main-card__prosItem:last-child {
    margin-bottom: 0;
}
.main-card__prosItemIcon {
    margin-right: 8px;
}
.main-card__prosItemText {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #505B75;
}
.main-card__buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: auto;
}
.main-card__buttons .button {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    font-size: 19px;
    line-height: 22px;
}
.main-card__buttons .button .button__icon {
    margin-left: 10px;
}
.main-card__buttons .button:first-child {
    /*margin-bottom: 15px;*/
    z-index: 1;
}
.main-card__buttons .button.gray {
    border: 1px solid #E5E8F0;
    border-radius: 8px;
    box-shadow: unset;
    font-size: 18px;
    line-height: 21px;
}
.main-card__buttons .button.gray .button__text {
    color: #C8CEDD;
    transition: .3s;
}
.main-card__buttons .button.gray:before {
    opacity: 0;
    visibility: hidden;
    box-shadow: unset;
}
.main-card__buttons .button.gray:hover .button__text {
    color: #FFFFFF;
}
/*CARD PAGE END*/

/*CART*/
.main-cart {
    width: 100%;
}
.wrapper {

}
.main-cart__block {
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    width: 100%;
    min-height: 648px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.main-cart__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.main-cart__headerIcon {
    margin-right: 9px;
}
.main-cart__headerText {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
}
.main-cart__content {
    display: grid;
    grid-template-columns: minmax(0, 1200px) 425px;
    grid-gap: 30px;
    align-items: flex-start;
}

.main-cart__items {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main-cart__itemsHeader {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding-right: 35px;
}
.main-cart__itemsHeaderText {
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #C0CDD9;
    margin-left: 35px;
}
.main-cart__itemsHeaderText:nth-child(1) {
    width: 120px;
}
.main-cart__itemsHeaderText:nth-child(2) {
    width: 240px;
}
.main-cart__itemsHeaderText:nth-child(3) {
    width: 120px;
}
.main-cart__item {
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #F6F8FA;
    box-shadow: 0 4px 4px rgba(234, 237, 240, 0.05);
    border-radius: 12px;
    margin-bottom: 35px;
}
.main-cart__item:last-child {
    margin-bottom: 0;
}
.main-cart__itemCard {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.main-cart__itemCard .card-row__imgBlock {
    max-width: 111px;
    width: 111px;
    height: 130px;
    display: flex;
    min-width: 111px;
    margin: 0 25px 0 0;
    filter: unset;
}
.main-cart__itemCard .card-row__img {
    border-radius: 8px 0 0 8px;
}
.main-cart__itemCard .card__sale {
    top: -20px;
    left: 136px;
}
.main-cart__itemCard .card-info__name {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 2px;
}
.main-cart__itemCard .card-info__description {
    font-size: 14px;
    line-height: 17px;
}
.main-cart__itemCard .card-info__rate {
    padding-top: 8px;
    margin-bottom: 0;
}
.main-cart__itemManage {
    padding: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-cart__itemManageColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-cart__itemManageColumnText {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #C0CDD9;
    display: none;
}
.main-cart__itemManageColumnPrice {
    width: 120px;
    height: 60px;

    background: #E9EFF4;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
}
.main-cart__itemManageButtons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 35px;
    padding: 9px;
    background: #E9EFF4;
    border-radius: 8px;
    width: 240px;
    height: 60px;
}
.main-cart__itemManageButtons .button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-cart__itemManageButtons .button__icon {
    margin-left: 0;
    pointer-events: none;
}
.main-cart__itemManageCounter {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #505B75;
}
.main-cart__itemCardDelete {
    display: none;
    pointer-events: auto;
    z-index: 1;
}

.main-cart__order {
    background: #F6F8FA;
    border-radius: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    margin-top: 41px;
}
.main-cart__orderTotal {
    width: 100%;
    padding: 21px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #E6EBF0;
    box-shadow: 0 8px 25px rgba(222, 228, 234, 0.45);
    border-radius: 8px;
    margin-bottom: 18px;
}
.main-cart__orderText {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #BFCCD9;
}
.main-cart__orderValue {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: right;
    color: #505B75;
}
.main-cart__discount {
    width: 100%;
    padding: 10px 10px 10px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #EEF2F5;
    border-radius: 8px;
    margin-bottom: 24px;
}
.main-cart__discount.error {
    background: #f0dbdb;
}
.main-cart__discountInput {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    background: transparent;
    border: unset;
    outline: none;
    color: #505B75;
    margin-right: 10px;
    width: 100%;
}
.main-cart__discountInput::placeholder {
    color: #BBCBD7;
}
.button.apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-width: 120px;
    height: 42px;
    text-decoration: none;
}
.button.apply .button__icon {
    margin-left: 6px;
}
.button.apply .button__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.button.order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 62px;
    text-decoration: unset;
}
.button.order .button__icon {
    margin-left: 6px;
}
.button.order .button__text {
    font-size: 17px;
    line-height: 22px;
    margin-top: 2px;
}
/*CART END*/

/*CHECKBOX*/
.checkbox {
    --border-default: #bbbbc1;
    --border-hover: #9898a3;
    --active: #6E7BF2;
    --active-tick: #ffffff;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.checkbox svg {
    display: block;
    position: absolute;
}
.checkbox input {
    display: block;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--background, #E5E8F0);
    transition: background 0.25s linear, box-shadow 0.25s linear;
}
.checkbox input + svg {
    width: auto;
    height: 30px;
    left: 0;
    top: 0;
    color: var(--active);
}
.checkbox input + svg .tick {
    stroke-dasharray: 20;
    stroke-dashoffset: var(--stroke-dashoffset, 20);
    transition: stroke-dashoffset 0.2s;
}
.checkbox input + svg .tick.mask {
    stroke: var(--active-tick);
}
.checkbox input + svg + svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: var(--active);
    stroke-width: 1.25;
    stroke-linecap: round;
    top: -6px;
    right: -10px;
    stroke-dasharray: 4.5px;
    stroke-dashoffset: 13.5px;
    pointer-events: none;
    -webkit-animation: var(--animation, none) 0.2s ease 0.175s;
    animation: var(--animation, none) 0.2s ease 0.175s;
}
.checkbox input:checked {
    --background: var(--active);
    --border: var(--active);
}
.checkbox input:checked + svg {
    --stroke-dashoffset: 0;
}
.checkbox input:checked + svg + svg {
    --animation: check;
}
.checkbox:hover input:not(:checked) {
    background: var(--background, #d6d8da);
}
@-webkit-keyframes check {
    100% {
        stroke-dashoffset: 4.5px;
    }
}
@keyframes check {
    100% {
        stroke-dashoffset: 4.5px;
    }
}
/*CHECKBOX END*/

/*CATALOG*/
.main-catalog__block {
    display: grid;
    grid-template-columns: minmax(0, 415px) minmax(0, 1305px);
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
}
.main-catalog__filter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.main-catalog__filterMenu {
    width: 100%;
    padding: 9px 10px 9px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-catalog__filterMenuLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-catalog__filterMenuIcon {
    margin-right: 10px;
}
.main-catalog__filterMenuText {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-right: 7px;
}
.main-catalog__filterMenuNumber {
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF0F2;
    border-radius: 50%;
}
.main-catalog__filterPopupWrapper {
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px 0 0 8px;
    padding: 30px;
}
.main-catalog__filterPopup {
    width: 100%;
}
.main-catalog__filterPopupHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 22px;
}
.main-catalog__filterPopupIcon {
    margin-right: 9px;
}
.main-catalog__filterPopupText {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
}
.button.filter {
    width: 150px;
    height: 42px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button.filter .button__text {
    font-size: 14px;
    line-height: 17px;
}
.button.filter span {
    position: absolute;
    transition: .3s;
}
.button.filter span:last-child {
    opacity: 0;
    visibility: hidden;
}
.button.filter.active span:first-child {
    opacity: 0;
    visibility: hidden;
}
.button.filter.active span:last-child {
    opacity: 1;
    visibility: visible;
}
.main-catalog__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px 41px 20px;
    border-left: 1px solid #E1E9F1;
    padding-top: 32px;
}
.main-catalog__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #F6F8FA;
    border-radius: 12px;
    padding-right: 25px;
    margin: 15px 0 35px;
}
.main-catalog__item:last-child {
    margin-bottom: 15px;
}
.main-catalog__item .card-info__name {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 2px;
}
.main-catalog__item .card-info__description {
    font-size: 14px;
    line-height: 17px;
}
.main-catalog__item .card-info__rateText {
    font-size: 16px;
    line-height: 19px;
    margin-left: 5px;
}
.main-catalog__item .card-info__rate {
    padding-top: 8px;
}
.main-catalog__filterCategory {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
}
.main-catalog__filterCategory:last-child {
    margin-bottom: 0;
}
.main-catalog__filterCategoryTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #B3B9BF;
    margin-bottom: 12px;
}
.main-catalog__filterCategoryItemText {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    position: absolute;
    top: 6px;
    left: 40px;
    white-space: nowrap;
}
.main-catalog__filterCategoryItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}
.main-catalog__filterCategoryItem:last-child {
    margin-bottom: 0;
}
.main-catalog__filterSlider {
    margin-bottom: 23px;
}
.main-catalog__filterSliderData {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    margin-bottom: 23px;
}
.main-catalog__filterSliderColumn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}
.main-catalog__filterSliderColumn:after {
    position: absolute;
    content: '$';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    right: 19px;
    bottom: 14px;
}
.main-catalog__filterSliderColumnText {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #B3B9BF;
    margin-bottom: 6px;
}
.main-catalog__filterSliderColumnInput {
    width: 100%;
    height: 52px;
    background: rgba(229, 232, 240, 0.35);
    border: 1px solid #E5E8F0;
    border-radius: 9px;
    text-align: center;
    outline: none;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    padding-right: 23px;
}
.main-catalog__filterSliderColumnInput::-webkit-outer-spin-button,
.main-catalog__filterSliderColumnInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.main-catalog__filterSliderColumnInput[type=number] {
    -moz-appearance: textfield;
}
/*CATALOG END*/

/*SLIDER*/
#slider {
    height: 6px;
}
#slider .noUi-base {
    background: #F0F3F6;
    border-radius: 4px;
}
#slider .noUi-connect {
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
}
#slider .noUi-handle {
    width: 28px;
    height: 28px;
    top: -12px;
    right: -14px;
    border-radius: 50%;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    box-shadow: unset;
    border: unset;
    cursor: pointer;
}
#slider.noUi-target {
    border: unset;
}
#slider .noUi-handle:before {
    content: unset;
}
#slider .noUi-handle:after {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    left: 7px;
    top: 7px;
}
/*SLIDER END*/

/*RADIOBUTTON*/
/* main styles */
.switch {
    width: 100px;
    position: relative;
}
.switch input {
    position: absolute;
    top: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.switch input:checked {
    z-index: 1;
}
.switch input:checked + label {
    opacity: 1;
    cursor: default;
}
.switch input:not(:checked) + label:hover {
    opacity: 0.5;
}
.switch label {
    color: #fff;
    opacity: 0.33;
    transition: opacity 0.25s ease;
    cursor: pointer;
}
.switch .toggle-outside {
    height: 100%;
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: 0.25s ease all;
}
.switch .toggle-inside {
    border-radius: 25px;
    background: #ED6064;
    position: absolute;
    transition: 0.25s ease all;
}
.switch--horizontal {
    width: 100px;
    min-width: 100px;
    height: 50px;
    margin: 0;
    font-size: 0;
}
.switch--horizontal input {
    height: 50px;
    width: 100px;
    left: 0;
    margin: 0;
}
.switch--horizontal .toggle-outside {
    background: #DFE8F1;
    position: absolute;
    width: 100px;
    left: 0;
}
.switch--horizontal .toggle-inside {
    width: 30px;
    height: 30px;

}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
    left: 10px;
    top: 10px;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
    left: 60px;
}
.switch--no-label label {
    width: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}
.switch--no-label input ~ input:checked ~ .toggle-outside .toggle-inside {
    background: #1CAF9C;
}
.switch--no-label.switch--horizontal {
    width: 100px;
}
.switch--no-label.switch--horizontal input,
.switch--no-label.switch--horizontal .toggle-outside {
    left: 0;
}
/* mixin */
/*RADIOBUTTON END*/

/*ACCOUNT*/
.main-account {
    height: 100%;
}
.main-account .wrapper {
    display: grid;
    grid-template-columns: 415px minmax(400px, 1285px);
    grid-gap: 20px;
    height: 100%;
    align-items: flex-start;
}
.main-account.single .wrapper {
    grid-template-columns: 1fr;
}
.main-account__buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 30px;
}
.main-account__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.main-account__headerIcon {
    margin-right: 9px;
}
.main-account__headerText {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
}
.main-account__button {
    width: 100%;
    height: 65px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #F6F8FA;
    border-radius: 8px;
    padding: 10px;
    transition: .3s;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}
.main-account__button.active {
    cursor: default;
}
.main-account__button:last-child {
    margin-bottom: 0;
}
.main-account__button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    background: linear-gradient(299.24deg, #79AFFF 7.87%, #4457FF 79.84%);
    transition: .3s;
}
.main-account__button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    background: #F6F8FA;
    transition: .3s;
}
.main-account__buttonIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ECF1F7;
    border-radius: 8px;
    margin-right: 10px;
    transition: .3s;
    position: relative;
    z-index: 1;
}
.main-account__buttonIcon {
    position: absolute;
    transition: .3s;
}
.main-account__buttonIcon:last-child {
    opacity: 0;
    visibility: hidden;
}
.main-account__buttonText {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #B7C6D6;
    position: relative;
    z-index: 1;
    transition: .3s;
}
.main-account__button:hover:after,
.main-account__button.active:after {
    opacity: 0;
    visibility: hidden;
}
.main-account__button:hover .main-account__buttonText,
.main-account__button.active .main-account__buttonText {
    color: #FFFFFF;
}
.main-account__button:hover .main-account__buttonIcons,
.main-account__button.active .main-account__buttonIcons {
    border-color: rgba(236, 241, 247, .15);
}
.main-account__button:hover .main-account__buttonIcon:last-child,
.main-account__button.active .main-account__buttonIcon:last-child {
    opacity: 1;
    visibility: visible;
}
.main-account__button:hover .main-account__buttonIcon:first-child,
.main-account__button.active .main-account__buttonIcon:first-child {
    opacity: 0;
    visibility: hidden;
}
.main-account__tabs {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-account__tab {
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    width: 100%;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
}
.main-account__tab.active {
    display: flex;
}

.main-account__inputBlock {
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}
.main-account__inputName {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #B7C6D6;
    margin-bottom: 8px;
}
.main-account__inputFooter {
    width: 100%;
    height: 65px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-account__input {
    background: #F6F8FA;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    border: unset;
    outline: none;
    padding-left: 23px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #505B75;
}
.main-account__inputIcon {
    position: absolute;
    left: 20px;
}
.main-account__inputButton {
    position: absolute;
    right: 15px;
    width: 75px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-account__inputBlock.icon .main-account__input {
    padding-left: 60px;
}
.main-account__inputBlock.steam {
    max-width: 900px;
}
.main-account__inputBlock.steam .main-account__input {
    padding-right: 100px;
}
.main-account__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-account__tab .main-account__inputBlock {
    max-width: 380px;
}
.main-account__columns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
.main-account__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
}
.main-account__column:first-child {
    margin-right: 42px;
}
.main-account__subtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 20px;
}
.button-account {
    max-width: 380px;
    width: 100%;
    height: 62px;
}

.main-account__radioWrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: #F6F8FA;
    border-radius: 8px;
    margin-bottom: 20px;
}
.main-account__radioWrapper:last-child {
    margin-bottom: 0;
}
.main-account__radioData {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 72px;
}
.main-account__radioTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 8px;
}
.main-account__radioText {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #8D9CAC;
}

.main-account__table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
}
.main-account__tableItem {
    width: 100%;
    min-width: 1200px;
    display: grid;
    grid-template-columns: 200px 205px 190px 280px 120px;
    grid-column-gap: 20px;
    background: #F6F8FA;
    border-radius: 8px;
    height: 60px;
    margin-bottom: 20px;
    padding: 0 25px;
}
.main-account__tableItem:last-child {
    margin-bottom: 0;
}
.main-account__tableItemText {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-account__tableItemText.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}
.main-account__tableItemIcon {
    margin-right: 8px;
}
.main-account__tableItem.table-header .main-account__tableItemText {
    color: #B7C6D6;
}
.main-account__tableItemCell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.main-account__tableItemCellName {
    display: none;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.01em;
    color: #B7C6D6;
    margin-bottom: 5px;
}
.main-account__formRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-account__formRow .main-account__inputBlock:first-child {
    margin-right: 20px;
}

.main-account__table.four .main-account__tableItem {
    grid-template-columns: repeat(4, 1fr);
}
.main-account__appItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #F6F8FA;
    border-radius: 8px;
    height: 100px;
    padding: 22px 30px 22px 22px;
}
.main-account__appItem:last-child {
    margin-bottom: 0;
}
.main-account__appItemData {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-account__appItemIconBlock {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: lightgray;
}
.main-account__appItemIconBlock.facebook {
    background: #6976F1;
}
.main-account__appItemIconBlock.google {
    background: #E97264;
}
.main-account__appItemIconBlock.twitch {
    background: #936EFD;
}
.main-account__appItemIconBlock.paypal {
    background: #5A9BFD;
}
.main-account__appItemText {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
}
.main-account__appItemButton {
    width: 167px;
    height: 48px;
    background: radial-gradient(51.11% 79.26% at 49.15% 45.93%, #79AFFF 0%, #4457FF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    text-decoration: unset;

    transition: .3s;
}
.main-account__appItemButton:hover {
    opacity: .9;
}

.main-account__appItemButton.disable {
    background: radial-gradient(51.11% 79.26% at 49.15% 45.93%, #A1B0D7 0%, #7680aa 100%);
}

.main-account__tableItemGame {
    width: 34.39px;
    height: 40px;
    border-radius: 2px;
    min-width: 34.39px;
    object-fit: cover;
    object-position: center;
    margin-right: 8px;
    margin-left: -14px;
}
.main-account__table.shopping .main-account__tableItemText {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.main-account__table.shopping .main-account__tableItem {
    min-width: 1195px;
    margin-bottom: 15px;
    grid-template-columns: 185px 135px 180px 240px auto;
    border: 1px solid #ECF1F7;
    border-radius: 8px;
    background: unset;
}
.main-account__table.shopping .main-account__tableItem.table-header {
    background: #F6F8FA;
    border: unset;
    height: 50px;
    min-height: 50px;
}
.main-account__table.shopping .main-account__tableItemText.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.main-account__tableItemSeller {
    margin-top: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-account__tableItemSellerIcon {
    margin-right: 5px;
}
.main-account__tableItemSeller {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}
.main-account__tableItemSeller .green {
    color: #71CF44;
}
.main-account__tableItemSeller .delimiter {
    color: #B7C6D6;
    margin: 0 5px;
}
.main-account__tableItemSeller .red {
    color: #E65F5F;
}
.main-account__gameKey {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 295px;
    height: 38px;
}
.main-account__gameKeyBlock {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 295px;
    height: 100%;
    background: #F6F8FA;
    border-radius: 4px;
    padding: 0 8px;
}
.main-account__gameKeyIcon {
    margin-right: 9px;
}
.main-account__gameKeyInput {
    width: 220px;
    height: 100%;
    background: unset;
    border: unset;
    outline: unset;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.03em;
    color: #B7C6D6;
}
.main-account__gameKeyCopy {
    pointer-events: unset;
    cursor: pointer;
    transition: .3s;
}
.main-account__gameKeyCopy:hover {
    opacity: .8;
}
.main-account__gameKeyWarning {
    cursor: pointer;
    pointer-events: unset;
    width: 24px;
    margin-left: 16px;
    transition: .3s;
}
.main-account__gameKeyWarning:hover {
    opacity: .8;
}

.main-account__place {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;

    padding: 20px 20px 30px;
    background: #F8FAFD;
    border-radius: 8px;
}
.main-account__place .main-account__form {
    align-items: center;
}
.main-account__place .main-account__column {
    width: 100%;
    max-width: 100%;
}
.main-account__place .main-account__inputBlock {
    max-width: 100%;
    margin-bottom: 24px;
}
.main-account__place .main-account__column:first-child {
    margin-right: 0;
}
.main-account__place .main-account__input {
    background: #EEF2F7;
}
.main-account__place .button-account {
    max-width: 408px;
    margin-top: 14px;
}

.main-account.single .main-account__table.shopping .main-account__tableItem {
    grid-template-columns: minmax(185px, 1fr) minmax(135px, 1fr) minmax(180px, 1fr) minmax(240px, 1fr) 350px;
}

.main-account__table-empty {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #868686;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.19px;
}
/*ACCOUNT END*/

/*SHOPPING*/
.main-shopping__block {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 30px;
}
.main-shopping__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 25px;
}
.main-shopping__headerIcon {
    margin-right: 9px;
}
.main-shopping__headerText {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #000000;
}
.main-shopping__items {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}
.main-shopping__items .main-cart__item {
    margin-bottom: 20px;
}
.main-shopping__items .main-cart__item:last-child {
    margin-bottom: 0;
}
.main-shopping .main-cart__itemManage {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 40px;
}
.main-shopping__date {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #E9EFF4;
    border-radius: 6px;
    height: 60px;
    width: 209px;
}
.main-shopping__dateIcon {
    margin-right: 6px;
}
.main-shopping__price {
    background: #E9EFF4;
    border-radius: 6px;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #99A2BB;
}
.button-shopping {
    width: 261px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}
.button-shopping:before {
    border-radius: 100px;
}
.button-shopping:after {
    border-radius: 100px;
}
.main-shopping .main-cart__itemCard .card-info__name {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
}
.main-shopping .main-cart__itemCard .card-info__description {
    font-size: 16px;
    line-height: 19px;
}
/*SHOPPING END*/

/*NOTIFICATION*/
.notification {
    position: fixed;
    padding: 12px 31px 12px 12px;
    max-width: 355px;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;

    background: #FFFFFF;
    border-radius: 29px;

    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.notification__icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    min-width: 24px;
    margin-top: 3.5px;
}
.notification__text {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-top: 8px;
}
@media screen and (max-width: 570px) {
    .notification {
        width: calc(100% - 20px);
        max-width: 100%;
        top: 20px;
    }
}
/*NOTIFICATION END*/

/*SUPPORT*/
.main-support {

}
.main-support .wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: minmax(400px, 621px) minmax(421px, 1077px);
    grid-template-rows: 735px;
}
.main-support__list {
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 12px;
    padding: 40px;
}
.main-support__listHeader {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    /*margin-top: -15px;*/
}
.main-support__titleBlock {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 10px;
}
.main-support__titleBlock:after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: '';
    width: 35px;
    height: 4px;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    border-radius: 111px;
}
.main-support__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}
.button-tickets {
    width: 53.15px;
    height: 53.15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.button-tickets .button__icon {
    margin-left: 0;
}
.button-tickets:before,
.button-tickets:after {
    border-radius: 50%;
}
.main-support__name {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #ADA7C7;
    margin-left: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-support__chat {
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 12px;
    padding: 40px;
}
.main-support__items {
    width: calc(100% + 10px);
    max-height: 600px;
    height: 100%;
    padding-right: 10px;
    margin-top: 20px;
    overflow-y: auto;
    padding-bottom: 110px;
    overflow-x: hidden;
}
.main-support__items.questlist {
    padding-bottom: 0px;
}
.main-support__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #F6F8FA;
    border-radius: 6px;
    height: auto;
    min-height: 82px;
    gap: 16px;
    padding: 0 24px 0 22px;
    margin-bottom: 14px;
    cursor: pointer;
}
.main-support__item:last-child {
    margin-bottom: 0;
}
.main-support__item.select {
    background: #F2F5F9;
    box-shadow: 1px 1px 3px #11111130;
}
.main-support__item.close {
    background: #F9F0ED;
}
.main-support__itemId {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #B2C3D3;
}
.main-support__itemText {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #B2C3D3;
    text-decoration: unset;
}
.main-support__itemText.link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-support__itemText.link:hover {
    text-decoration: underline;
}
.main-support__itemAction {
    position: relative;
}
.main-support__itemIcon {
    pointer-events: auto;
    cursor: pointer;
}
.main-support__itemActionPopup {
    position: absolute;
    z-index: 1;
    width: 228.56px;
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0px 4px 35px rgba(173, 167, 199, 0.45));
    right: -20px;
    top: 38px;
    padding: 12px 0;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.main-support__itemAction:hover .main-support__itemActionPopup {
    opacity: 1;
    visibility: visible;
}
.main-support__itemActionPopup:before {
    content: url(../img/icons/triangle.svg);
    display: block;
    position: absolute;
    top: -15px;
    right: 20px;
}
.main-support__itemActionLink {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    background: rgba(246, 248, 250, .45);
    text-decoration: unset;
    height: 48px;
    padding-left: 33px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: .3s;
}
.main-support__itemActionLink:hover {
    background: rgba(246, 248, 250, 1);
}

.main-support__item-game {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 17px;
}
.main-support__game-icon {
    width: 34.395px;
    height: 40px;
    min-width: 34.395px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}
.main-support__game-name {
    color: #4E5B67;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.17px;
}
.main-support__item-date {
    color: #8299AE;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.15px;
}

.main-support__item.question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.main-support__item.question .main-support__item-question {
    color: #4E5B67;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.17px;
}

.main-support__chatBlock {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 34px;
    max-height: 600px;
}
.main-support__chatForm {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 85px;
    background: #F6F8FA;
    border-radius: 111px;
    padding: 15px 15px 15px;
}
.main-support__chatInput {
    padding-left: 20px;
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-right: 15px;
    border-radius: unset;
    height: 100%;
    outline: none;
    background: unset;
    border: unset;
}
.main-support__chatInput::placeholder {
    color: #B2C3D3;
}
.button-send {
    /*min-width: 130px;*/
    padding: 0 29px 0 32px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.button-send:after,
.button-send:before {
    border-radius: 50px;
}

.main-support__chatItems {
    width: calc(100% + 10px);
    height: 100%;
    padding-right: 10px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.main-support__chatItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.main-support__chatItem:last-child {
    margin-bottom: 20px;
}
.main-support__chatItemTextBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 25px;
    position: relative;
}
.main-support__chatItemTextBlock:before {
    content: url(../img/icons/tickets/triangle-chat-gray.svg);
    position: absolute;
    top: 16px;
    right: -13px;
    z-index: -1;
}
.main-support__chatItemText {
    max-width: 780px;
    text-align: right;
    padding: 19px 24px 18px 31px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #8495A4;
    background: #E9EFF5;
    border-radius: 30px;
}
.main-support__chatItemDate {
    margin-top: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: right;
    color: #CAD8E6;
}
.main-support__chatItemIconBlock {
    min-width: 58.47px;
    width: 58.47px;
    height: 58.47px;
    background: #EEF0F2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.main-support__chatItem.support .main-support__chatItemIconBlock {
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
}
.main-support__chatItem.support .main-support__chatItemTextBlock {
    align-items: flex-start;
    margin-right: 0;
    margin-left: 25px;
}
.main-support__chatItem.support .main-support__chatItemTextBlock:before {
    content: url(../img/icons/tickets/triangle-chat.svg);
    position: absolute;
    top: 16px;
    left: -13px;
}
.main-support__chatItem.support {
    justify-content: flex-start;
}
.main-support__chatItem.support .main-support__chatItemText {
    text-align: left;
    background: #F6F8FA;
}
/*SUPPORT END*/

/*TICKET*/
.modal.ticket .modal-content {
    width: 600px;
    height: auto;
    min-height: unset;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.modal-ticket__close {
    position: absolute;
    top: 40px;
    right: 40px;
    pointer-events: auto;
    cursor: pointer;
}
.modal-ticket__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 30px;
}
.main-account__inputBlock {
    width: 100%;
    max-width: 100%;
}
.button-ticket {
    width: 100%;
    max-width: 378px;
    height: 62px;
    margin-top: 8px;
}
.modal-ticket__form .main-account__input {
    padding: 0 25px;
}
.modal-ticket__form .main-account__inputBlock.select .main-account__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../img/icons/select-tickets.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 30px);
    background-position-y: 27px;
}
.modal-ticket__form .main-account__inputBlock.textarea .main-account__input {
    padding: 22px 25px;
    resize: none;
    height: 100%;
    min-height: 160px;
}
.modal-ticket__form .main-account__inputBlock.textarea .main-account__inputFooter {
    height: auto;
}
/*TICKET END*/

/*REVIEW*/
.main-review .wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: minmax(350px, 560px) minmax(auto, 1140px);
    align-items: flex-start;
}
.main-review__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 35px;
}
.main-review__cardHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}
.main-review__cardHeaderImg {
    width: 82px;
    height: 94px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    margin-right: 19px;
}
.main-review__cardHeaderColumn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-review__cardHeaderTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #505B75;
    margin-bottom: 13px;
}
.main-review__card .card-info__rate {
    padding-top: 0;
    margin-bottom: 0;
}
.main-review__cardTextBlock {
    margin-bottom: 20px;
}
.main-review__cardTextBlock:last-child {
    margin-bottom: 0;
}
.main-review__card .main-card__text {
    margin-bottom: 0;
}
.main-review__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 35px;
}
.main-review__infoSubtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 20px;
}
.main-review__infoRows {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}
.main-review__infoRows:last-child {
    margin-bottom: 0;
}
.main-review__infoRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
    padding: 10px 20px;
    min-height: 50px;
    border: 1px solid #EAEFF4;
    border-radius: 8px;
}
.main-review__infoRow:last-child {
    margin-bottom: 0;
}
.main-review__infoRowName {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #A4A4C0;
}
.main-review__infoRowValue {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #505B75;
    text-align: right;
}
.main-review__infoRowValue span {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #A4A4C0;
}
.main-review__infoRowLauncher {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-review__infoRowLauncherIcon {
    margin-right: 5px;
}
.main-review__infoRowLauncherText {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #505B75;
}
.main-review__rate {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-review__rateLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 15px;
    background: #F6F8FA;
    border-radius: 111px;
}
.main-review__rateLeft .button {
    width: 106px;
    height: 42px;
    border-radius: 111px;
}
.main-review__rateLeft .button span {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.main-review__rate .button:before,
.main-review__rate .button:after {
    border-radius: 111px;
}

.main-review__rateButtons {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-review__rateButtons .button {
    width: 200px;
    height: 52px;
    border-radius: 111px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-review__rateButtons .button span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}
.main-review__rateButtons .popup-footer__button {
    margin-right: 15px;
    background: #F6F8FA;
    border-radius: 100px;
    border: unset;
    margin-left: 0;

}
.main-review__rateButtons .popup-footer__button span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}
.main-review__rateButtons .popup-footer__button:before,
.main-review__rateButtons .popup-footer__button:after {
    border-radius: 100px;
}
.main-review__rateButtons .popup-footer__button .button__icon {
    margin-left: 8px;
}

.main-review__stars {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-review__starsNumber {
    width: 34px;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #A4A4C0;
    margin: 0 18px 0 3px;
}

.rating-area {
    overflow: hidden;
    width: 210px;
    margin: 0 auto;
}
.rating-area:not(:checked) > input {
    display: none;
}
.rating-area:not(:checked) > label {
    float: right;
    width: 30px;
    padding: 0;
    cursor: pointer;
    margin-right: 10px;
}
/*default*/
.rating-area:not(:checked) > label:before {
    content: url(../img/icons/account/star.svg);
    filter: invert(91%) sepia(12%) saturate(204%) hue-rotate(172deg) brightness(93%) contrast(90%);
}
/*checked*/
.rating-area > input:checked ~ label {
    filter: invert(88%) sepia(41%) saturate(1615%) hue-rotate(326deg) brightness(102%) contrast(104%);
}
/*on cheked before off*/
.rating-area > input:checked ~ label:before {
    filter: unset;
}

/*hover on non checked*/
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
    filter: invert(88%) sepia(41%) saturate(1615%) hue-rotate(326deg) brightness(102%) contrast(104%);
}
.rating-area:not(:checked) > label:hover:before,
.rating-area:not(:checked) > label:hover ~ label:before {
    filter: unset;
}
.rate-area > label:active {
    position: relative;
}
/*REVIEW END*/

/*PAYMENT*/
.main-payment {
    width: 100%;
}
.main-payment__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 4px 4px #E7EEF3;
    border-radius: 8px;
    padding: 40px 40px 76px;
}
.main-add__amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 363px;
    width: 100%;
    margin: 0 auto;
}
.main-add__amount .main-account__appItemButton {
    width: 272.29px;
    height: 56px;
}

.payment-grid {
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 7px 0 30px;
    /*max-width: 776px;*/
    max-width: 577px;
    width: 100%;
}
.payment-grid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 19px;

    background: #F6F4FE;
    border: 1px solid #EDEAF9;
    box-shadow: 0 15px 25px rgba(230, 227, 243, 0.25);
    border-radius: 8px;
    transition: .3s;
    cursor: pointer;
}
.payment-grid__item-img {
    width: 60px;
    height: 60px;
}
.payment-grid__item-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #000000;
    padding: 19px 10px;
    margin-top: 19px;
    border-top: 1px solid #EDEAF9;
    transition: .3s;
}

.main-payment__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 577px;
    width: 100%;
}
.main-payment__column .main-account__inputName {
    text-transform: uppercase;
}

.payment-grid__item:hover,
.payment-grid__item.active {
    border-color: #4457FF;
    background: #ebe7fd;
}
/*PAYMENT END*/

/*404*/
.header.page-404 .wrapper {
    justify-content: center;
}
.header.page-404 .header-logo__link {
    margin-right: 0;
}
.main.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-404__block {
    width: 100%;
}
.main-404__block .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-404__img {
    max-width: 100%;
}
.main-404__block .main-account__appItemButton {
    width: 260px;
    height: 70px;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer.page-404 {
    border-top: 1px solid #DFE5EB;
    background: unset;
}
.footer.page-404 .footer-nav__item:hover {
    color: #000000;
}
/*404 END*/

/*MODAL HOW TO BUY*/
.modal.buy {

}
.modal.buy .modal-content {
    max-width: 805px;
    min-height: auto;
    max-height: calc(100% - 40px);
    overflow-y: auto;
    padding: 20px 30px 24px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
}
.modal.buy .modal-ticket__close {
    top: 25px;
    right: 35px;
}
.modal-buy__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}
.modal-buy__text {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #505B75;
}
.modal-buy__text.small {
    font-size: 14px;
}
.modal-buy__text.last {
    max-width: 460px;
}
.modal-buy__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 15px 0;
}
.modal-buy__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #ECEFF5;
    border: 1px solid #ECEFF5;
    border-radius: 12px;
    padding: 15px 38px 31px 15px;
    gap: 16px;
}
.modal-buy__item-number {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(293.8deg, #789EFF 8.61%, #556DFF 49.85%, #A22BFF 108.24%);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}
.modal-buy__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
}
.modal-buy__item-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 14px;
}
/*MODAL HOW TO BUY END*/

/*FLAG*/
.flag {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
}
.flag-top {
    height: 50%;
    width: 100%;
    background: #0057b8;
    position: absolute;
    top: -50%;
    transition: .3s;
}
.flag-bottom {
    height: 50%;
    width: 100%;
    background: #ffd700;
    position: absolute;
    bottom: -50%;
    transition: .3s;
}
.flag.active .flag-top {
    top: 0;
}
.flag.active .flag-bottom {
    bottom: 0;
}
/*FLAG END*/

/*LOADERS*/
.main-catalog__items.loader {
    display: flex;
}
.main-catalog__loader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main-catalog__loader-icon {
    margin-bottom: 10px;
}
.main-catalog__loader-text {
    font-size: 17px;
    text-align: center;
}
.main-catalog__loader svg {
    transform: scale(1.5);
}
.main-catalog__loader svg path,
.main-catalog__loader svg rect {
    fill: #2C57BD;
}
.main-catalog__items.hidden, .hidden {
    display: none;
}
/*LOADERS END*/

/*MODAL EMAIL*/
.modal-email__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    padding-bottom: 18px;
}
.modal-email__block-icon {
    width: 81px;
    height: 81px;
    min-width: 81px;
    object-fit: contain;
}
.modal-email__block-title {
    margin-top: 27px;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.modal-email__block-text {
    margin-top: 20px;
    color: #3A3E46;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    max-width: 360px;
}
.modal-email__block-text span {
    text-decoration: underline;
}
/*MODAL EMAIL END*/

/*PRODUCT PURCHASE*/
.purchase {
    width: 100%;
    padding-top: 20px;
}
.purchase .wrapper {
    align-items: center;
}
.purchase-block {
    max-width: 1195px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px #E7EEF3;
    padding: 30px;
}
.purchase-block__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 58px;
}
.purchase-block .main-account__place {
    padding: 24px 24px 30px;
    grid-template-columns: 1fr;
}
.purchase-total {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 38px;
    border-radius: 8px;
    border: 1px solid #E6EBF0;
    background: #FFF;
    box-shadow: 0px 8px 25px 0px rgba(222, 228, 234, 0.45);
    margin: 11px 0 41px;
}
.purchase-total__text {
    color: #BFCCD9;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.purchase-total__value {
    color: #505B75;
    text-align: right;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.purchase-block .card.big {
    max-width: 453px;
    width: 100%;
    height: 482px;
}
.purchase-block .card-info {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
}
.purchase-block .card-info__name {
    font-size: 26px;
}
/*PRODUCT PURCHASE END*/

/*RESPONSIVE FIX*/
@media screen and (max-width: 1920px), only screen and (-webkit-min-device-pixel-ratio: 2) and ( max-width: 1920px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1920px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1920px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1920px), only screen and (min-resolution: 192dpi) and (max-width: 1920px), only screen and (min-resolution: 2dppx) and ( max-width: 1920px) {
    html {
        zoom: 0.8;
        -ms-zoom: 0.8;
        -webkit-zoom: 0.8;
        -moz-transform: scale(0.8, 0.8);
        -moz-transform-origin: left top;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 125vw;
        }
    }
    html, body {
        min-height: 125vh;
    }
    .modal {
        height: 125vh;
    }
    .flag {
        height: 125vh;
    }
}
@media screen and (max-width: 1365px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1365px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1365px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1365px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1365px), only screen and (min-resolution: 192dpi) and (max-width: 1365px), only screen and (min-resolution: 2dppx) and (max-width: 1365px) {
    html {
        zoom: 1;
        -ms-zoom: 1;
        -webkit-zoom: 1;
        -moz-transform: unset;
        -moz-transform-origin: unset;

    }
    @supports (-moz-appearance:none) {
        html {
            width: 100vw;
        }
    }
    html, body {
        min-height: 100vh;
    }
    .modal {
        height: 100vh;
    }
    .flag {
        height: 100vh;
    }
}
/*RESPONSIVE FIX END*/

/*MAIN MEDIA*/
@media screen and (max-width: 1365px) {
    body {
        overflow-y: auto;
    }
    .wrapper {
        width: 100%;
    }

    .header-nav {
        display: none;
    }
    .main-bestsellers__cards {
        grid-template-columns: repeat(4, 1fr);
    }
    .card {
        max-width: unset;
    }
    .card.big {
        max-width: unset;
    }
    .main-header__items {
        display: grid;
        grid-template:
        "a b c"
        "a d e";
        grid-template-columns: 2fr 1fr 1fr;
        grid-gap: 20px;
        margin-bottom: 30px;
    }
    .main-header__items .card:nth-last-child(-n+4) {
        display: none;
    }
    .main-bestsellers__cards .card:nth-last-child(-n+4) {
        display: none;
    }
    .footer-nav__item {
        margin: 0 10px;
    }
    .card-row .card-info__name {
        font-size: 18px;
    }

    .main-bestsellers__nav {
        display: none;
    }

    .main-bestsellers__select {
        position: relative;
        display: block;
    }
    .main-bestsellers__selectHeader {
        width: 175px;
        height: 40px;
        background: #FFFFFF;
        box-shadow: 0 4px 4px #E7EEF3;
        border-radius: 4px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 13px;
        transition: .3s;
    }
    .main-bestsellers__navItem {
        margin-right: 0;
        background: #FFFFFF;
        width: 100%;
    }
    .main-bestsellers__navItem:hover:after,
    .main-bestsellers__navItem.active:after {
        display: none;
    }
    .main-bestsellers__navItemText {
        color: #505B75;
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 0.01em;
    }
    .main-bestsellers__navItemIcon {
        height: 13px;
        margin-right: 5px;
        opacity: 1;
    }
    .main-bestsellers__selectHeaderIcon {
        position: absolute;
        right: 13px;
        transform: rotate(0deg);
        transition: .3s;
    }
    .main-bestsellers__selectItemsWrapper {
        position: absolute;
        width: 100%;
        z-index: 2;
        display: none;
        box-shadow: 0 4px 4px #e7eef3;
        background: #FFFFFF;
        border-radius: 0 0 4px 4px;
    }
    .main-bestsellers__selectItems .main-bestsellers__navItem {
        padding: 13px;
    }
    .main-bestsellers__selectItems .main-bestsellers__navItem:first-child {
        border-top: 1px solid #F0F3F7;
    }
    .main-bestsellers__selectItems .main-bestsellers__navItem:last-child {
        border-radius: 0 0 4px 4px;
    }
    .main-bestsellers__select.active .main-bestsellers__selectHeader {
        border-radius: 4px 4px 0 0
    }
    .main-bestsellers__select.active .main-bestsellers__selectHeaderIcon {
        transform: rotate(180deg);
    }

    .main-card .wrapper {
        grid-template:
    "a a"
    "b c" auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 648px 1fr;
        grid-gap: 15px;
    }
    .main-card__imgBlock {
        grid-area: a;
        max-width: 560px;
        height: auto;
        margin: 0 auto;
    }
    .main-card__info {
        grid-area: b;
    }
    .main-card__buy {
        grid-area: c;
    }

    .main-cart__itemsHeader {
        display: none;
    }
    .main-cart__order {
        margin-top: 0;
        padding: 20px;
    }
    .main-cart__orderTotal {
        padding: 17px 18px;
        margin-bottom: 13px;
    }
    .main-cart__orderText {
        font-size: 14px;
        line-height: 17px;
    }
    .main-cart__orderValue {
        font-size: 18px;
        line-height: 21px;
    }
    .main-cart__discountInput {
        font-size: 14px;
        line-height: 17px;
    }
    .button.apply .button__text {
        font-size: 12px;
        line-height: 14px;
    }
    .button.apply .button__icon {
        width: 18px;
    }
    .button.apply {
        min-width: 95px;
        width: 95px;
        height: 32px;
    }
    .main-cart__discount {
        margin-bottom: 18px;
    }
    .button.order {
        height: 45px;
    }
    .button.order .button__text {
        font-size: 14px;
        line-height: 17px;
    }
    .button.order .button__icon {
        width: 23px;
        margin-left: 10px;
    }
    .main-cart__content {
        display: grid;
        grid-template-columns: minmax(0, 1200px) 320px;
        grid-gap: 15px;
    }
    .main-cart__item {
        height: unset;
        background: unset;
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 15px;
    }
    .main-cart__itemCard {
        width: 100%;
        background: #F6F8FA;
        box-shadow: 0 4px 4px rgba(234, 237, 240, 0.05);
        border-radius: 6px;
        margin-bottom: 10px;
    }
    .main-cart__itemManage {
        padding: 10px 12px;
        background: #F6F8FA;
        box-shadow: 0 4px 4px rgba(234, 237, 240, 0.05);
        border-radius: 6px;
    }
    .main-cart__itemManageColumnText {
        display: block;
        margin-bottom: 5px;
    }
    .main-cart__itemManageColumnPrice {
        width: 68.4px;
        height: 34.2px;
        font-size: 14px;
        line-height: 17px;
    }
    .main-cart__itemManageButtons {
        margin: 0 6px;
        width: 136.8px;
        height: 34.2px;
    }
    .main-cart__itemManageButtons .button {
        width: 23.94px;
        height: 23.94px;
    }
    .main-cart__itemManageButtons .button__icon {
        width: 14px;
    }
    .main-cart__itemManageCounter {
        font-size: 16px;
        line-height: 19px;
    }
    .main-cart__itemCard .card-row__imgBlock {
        max-width: 85px;
        min-width: 85px;
        width: 85px;
        height: 100px;
        margin-right: 12px;
    }
    .main-cart__itemCard .card__sale {
        left: 8px;
        top: 8px;
        width: 45px;
        height: 24.29px;
        font-size: 11px;
        line-height: unset;
        border-radius: 5px;
    }
    .main-cart__itemCardDelete {
        display: block;
        position: absolute;
        top: 8px;
        right: 8px;
    }
    .main-cart__itemCard .card-info__name {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 5px;
        max-height: 28px;
        -webkit-line-clamp: 2;
        margin-right: 35px;
    }
    .main-cart__itemCard .card-info__description {
        font-size: 10px;
        line-height: 12px;
        max-height: 24px;
        -webkit-line-clamp: 2;
    }
    .main-cart__itemCard .card-info__rateText {
        font-size: 10px;
        line-height: 12px;
    }
    .main-cart__itemCard .c-rating button {
        width: 12px;
        height: 12px;
    }
    .main-cart__itemCard .card-info__rate {
        padding-top: 5px;
    }
    .main-cart__header {
        margin-bottom: 15px;
    }
    .main-cart__headerText {
        font-size: 14px;
        line-height: 17px;
    }
    .main-cart__headerIcon {
        width: 24px;
        margin-right: 5px;
    }
    .main-cart__block {
        min-height: unset;
        padding: 20px 25px 25px;
    }

    .main-shopping__block {
        padding: 20px 25px 25px;
    }
    .main-shopping__header {
        margin-bottom: 15px;
    }
    .main-shopping__headerIcon {
        margin-right: 5px;
        width: 24px;
    }
    .main-shopping__headerText {
        font-size: 14px;
        line-height: 17px;
    }
    .main-shopping__items .main-cart__item {
        margin-bottom: 15px;
    }
    .main-shopping__price {
        width: 68.4px;
        height: 34.2px;
        font-size: 14px;
        line-height: 17px;
    }
    .main-shopping__date {
        width: 122px;
        height: 34.2px;
        font-size: 14px;
        line-height: 17px;
    }
    .main-shopping__dateIcon {
        margin-right: 3.5px;
        width: 23.5px;
    }
    .main-shopping .main-cart__itemManage {
        grid-gap: 5.7px;
    }
    .button-shopping {
        width: 137px;
        height: 34.2px;
    }
    .button-shopping .button__text {
        font-size: 9.5px;
        line-height: 11px;
    }
    .button-shopping .button__icon {
        margin-left: 5px;
        width: 15px;
    }
    .button-shopping:after,
    .button-shopping:before {
        border-radius: 6px;
    }
    .main-shopping .main-cart__itemCard .card-info__name {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 5px;
    }
    .main-shopping .main-cart__itemCard .card-info__description {
        font-size: 10px;
        line-height: 12px;
    }

    .main-account__headerIcon {
        width: 24px;
        margin-right: 5px;
    }
    .main-account__headerText {
        font-size: 14px;
        line-height: 17px;
    }
    .main-account__buttons {
        padding: 20px;
    }
    .main-account__tab {
        padding: 20px;
    }
    .main-account__subtitle {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: unset;
    }
    .switch {
        transform: scale(.7);
    }
    .main-account__radioData {
        margin-right: 20px;
    }
    .main-account__radioWrapper {
        padding: 20px;
    }
    .main-account__table {
        padding-bottom: 10px;
    }
    .main-account__tableItem {
        margin-bottom: 10px;
    }
    .main-account__radioText {
        font-size: 14px;
        line-height: unset;
    }
    .main-account__appItem {
        padding: 20px;
    }
    .main-account__columns {
        flex-direction: column;
        align-items: center;
    }
    .main-account__column:first-child {
        margin-right: 0;
    }
    .main-account__tab .main-account__inputBlock {
        max-width: 100%;
    }
    .main-account__tab .button-account {
        max-width: 100%;
    }
    .main-account__column {
        max-width: 100%;
    }
    .main-account__table.shopping .main-account__tableItem {
        margin-bottom: 10px;
    }
    .main-account__table.shopping .main-account__tableItem:last-child {
        margin-bottom: 0;
    }
    .main-account.single .main-account__table {
        max-width: calc(100vw - 30px - 40px);
    }

    .main-support__list {
        padding: 20px;
    }
    .button-tickets {
        width: 45px;
        height: 45px;
    }
    .main-support__listHeader {
        margin-top: 0;
    }
    .main-support__item {
        margin-bottom: 10px;
        padding: 0 25px 0 15px;
        /*height: 51px;*/
        min-height: 51px;
        grid-gap: 10px;
    }
    .main-support__items {
        max-height: 635px;
        margin-top: 15px;
    }
    .main-support__itemId {
        font-weight: 600;
        font-size: 12px;
        line-height: 14px;
    }
    .main-support__itemText {
        font-size: 12px;
        line-height: 14px;
    }
    .main-support__itemActionPopup {
        width: 133px;
        filter: drop-shadow(0px 4px 35px rgba(173, 167, 199, 0.45));
        padding: 8px 0;
    }
    .main-support__itemActionLink {
        padding-left: 19px;
        height: 27.86px;
        font-size: 12px;
        line-height: 14px;
    }

    .main-support__chat {
        padding: 24px 20px 20px;
    }
    .main-support__chatBlock {
        max-height: 625px;
        height: 625px;
        margin-top: 15px;
    }
    .main-support__titleBlock {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-support__name {
        margin-left: 0;
        margin-top: 1px;
        font-size: 14px;
        line-height: 17px;
    }
    .main-support__chatForm {
        height: 60px;
        padding: 12px;
    }
    .main-support__chatInput {
        padding-left: 11px;
        margin-right: 10px;
        font-size: 12px;
        line-height: 14px;
    }
    .button-send {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;
    }
    .button-send .button__icon {
        margin-left: 0;
    }
    .button-send .button__text {
        display: none;
    }
    .main-support__chatItemIconBlock {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .main-support__chatItemIcon {
        width: 12px;
    }
    .main-support__chatItemTextBlock {
        margin-right: 5px;
    }
    .main-support__chatItem.support .main-support__chatItemTextBlock {
        margin-left: 5px;
    }
    .main-support__chatItem {
        margin-bottom: 10px;
    }
    .main-support__chatItem:last-child {
        margin-bottom: 10px;
    }
    .main-support__chatItemText {
        max-width: 100%;
        padding: 14px;
        border-radius: 4px;
        font-size: 12px;
        line-height: 15px;
    }
    .main-support__chatItemDate {
        font-size: 10px;
        line-height: 12px;
        margin-top: 5px;
    }
    .main-support__chatItemTextBlock:before {
        display: none;
    }

    .main-review__infoRow {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-review__infoRowName {
        margin-bottom: 5px;
    }
    .main-review__infoRowValue {
        text-align: left;
    }
    .main-review__rate {
        flex-direction: column;
        align-items: center;
    }
    .main-review__rateLeft {
        margin-bottom: 20px;
        padding: 9px 12px;
    }
    .main-review__rateLeft .button {
        width: 80.76px;
        height: 32px;
    }
    .main-review__rateLeft .button span {
        font-size: 12px;
        line-height: 14px;
    }
    .main-review__infoSubtitle {
        margin-bottom: 15px;
    }
    .main-review__starsNumber {
        font-size: 14px;
        line-height: 17px;
        margin-right: 13px;
        margin-left: 0;
    }
    .main-review__infoSubtitle.rate {
        text-align: center;
        width: 100%;
    }
    .rating-area {
        width: auto;
        transform: scale(.7);
        margin: 0 -20px 0 -15px;
    }
    .rating-area:not(:checked) > label {
        margin-right: 11px;
        width: 22px;
    }

    .main-account__table.history {
        overflow: unset;
        padding-bottom: unset;
    }
    .main-account__table.history .main-account__tableItem.table-header {
        display: none;
    }
    .main-account__table.history .main-account__tableItem {
        min-width: unset;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: unset;
        padding: 25px;
    }
    .main-account__tableItemCellName {
        display: block;
    }
    .main-account__tableItemCell {
        margin-bottom: 20px;
    }
    .main-account__tableItemCell:last-child {
        margin-bottom: 0;
    }

    .main-payment__block {
        padding: 30px 16px;
    }
    .payment-grid {
        grid-gap: 16px;
        margin: 0 0 20px;
    }

    .main-account__place .main-account__inputBlock {
        margin-bottom: 16px;
    }
    .main-account__place .button-account {
        margin-top: 4px;
    }

    .purchase-block {
        padding: 20px;
    }
    .purchase-block__row {
        gap: 20px;
    }
    .purchase-total {
        margin-bottom: 55px;
    }
    .purchase-block .card.big {
        height: 472px;
    }
}
@media screen and (max-width: 1200px) {
    .card-row .card-info__name {
        font-size: 13px;
        line-height: 15px;
    }
    .card-row .card-info__description {
        font-size: 12px;
        line-height: 14px;
    }
    .card-row__imgBlock {
        height: 140px;
        min-width: 120px;
        width: 120px;
    }
    .card-row__imgBlock {
        margin: -15px 15px;
    }


    .main-catalog__block {
        grid-template-columns: 300px minmax(0, 1285px);
    }

    .header-search {
        width: 100%;
        max-width: 200px;
    }

    .main-account__place {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }
}
@media screen and (max-width: 1023px) {
    .body-fixed {
        margin-right: 0;
    }

    .main {
        padding-bottom: 15px;
    }

    .header {
        padding: 13px 0;
        height: 60px;
    }
    .header-logo__link {
        margin-right: 12px;
    }
    .header-logo {
        display: none;
        height: 34px;
    }
    .header-logo.mobile {
        display: block;
    }
    .header-search {
        width: 100%;
        max-width: 110px;
        min-width: 90px;
        height: 34px;
        padding: 10px;
        margin-right: 8px;
    }
    .header-menu__button {
        flex-direction: row-reverse;
    }
    .header-menu__button label {
        transform: rotate(180deg);
    }
    .header-menu label {
        margin-right: 0;
        margin-left: 5px;
    }
    .header-menu__text {
        font-weight: 600;
        font-size: 12px;
        line-height: 14px;
    }
    .header-search__input {
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 0.01em;
        color: #FFFFFF;
    }
    .header-search__icon {
        opacity: 1;
        width: 20px;
    }
    .header-user {
        width: 34px;
        height: 34px;
        padding: unset;
        margin-right: 13px;
        align-items: center;
        justify-content: center;
    }
    .header-user__icons {
        margin-right: 0;
        width: 17px;
        height: 17px;
    }
    .header-user__icon {
        width: 17px;
        height: 17px;
    }
    .header-user__text {
        display: none;
    }
    .header-circle {
        margin-right: 10px;
        width: 34px;
        height: 34px;
    }
    .header-circle__icons {
        width: 17px;
        height: 17px;
    }
    .header-circle__icon {
        width: 17px;
        height: 17px;
    }
    .header-circle__number {
        min-width: 16px;
        padding: 0 5px;
        height: 16px;
        line-height: unset;
        font-size: 10px;
        top: -4px;
        right: -4px;
    }
    .header-user.name {
        padding: unset;
    }
    .header-money {
        display: none;
    }
    .header-menu .header-money {
        display: flex;
        background: #F6F8FA;
        width: 100%;
        margin-bottom: 8px;
        border: 1px solid #E9EEF4;
    }
    .header-money__text {
        color: #505B75;
    }

    .footer {
        height: unset;
        padding: 32px 0 25px;
    }
    .footer .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo__link {
        margin-bottom: 32px;
    }
    .footer-nav {
        max-width: 360px;
        position: relative;
        left: unset;
        transform: unset;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 175px));
        grid-gap: 10px;
    }
    .footer-nav__item {
        font-size: 14px;
        line-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 175px;
        width: 100%;
        height: 60px;
        border: 1px solid #464E63;
        border-radius: 8px;
        margin: 0;
    }

    .modal-search__header {
        padding-top: 25px;
    }
    .modal-search__title {
        display: block;
    }
    .modal-search__input {
        height: 50px;
        font-size: 14px;
        line-height: 17px;
        padding: 0 48px;
    }
    .modal-search__inputClose {
        width: 14px;
        right: 24px;
    }
    .modal-search__inputIcon {
        left: 16px;
        width: 25px;
    }
    .modal-search__inputBlock {
        margin-bottom: 20px;
    }
    .modal-search__items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .modal-search__items .card {
        max-width: 100%;
    }

    .popup.menu {
        top: 40px;
        right: 0;
        min-width: 300px;
        max-width: 300px;
        width: 100%;
        padding: 15px;
    }
    .popup.menu:before {
        right: 27px;
    }
    .menu-item {
        margin-bottom: 10px;
    }
    .menu-item__text {
        font-size: 14px;
    }

    .main-decor__block {
        height: 375px;
    }

    .card {
        height: 204px;
        max-width: 175px;
    }
    .card-bg__block:after {
        border-radius: 12px;
    }
    .card__price {
        top: 10px;
        right: 10px;
        width: 51px;
        height: 26px;
        border-radius: 5px;
        font-size: 11px;
        line-height: unset;
    }
    .card__sale {
        top: 10px;
        left: 10px;
        width: 48px;
        height: 26px;
        border-radius: 5px;
        font-size: 11px;
        line-height: unset;
    }
    .card-hover__text {
        font-size: 11.6px;
        line-height: 14px;
    }
    .card-hover {
        width: calc(100% - 20px);
        min-height: 49px;
        left: 10px;
        bottom: 10px;
        padding: 11px;
    }
    .card:hover .card-hover__text {
        font-size: 9px;
        line-height: 11px;
        max-width: calc(100% - 40px);
    }
    .card-hover__button {
        width: 27px;
        height: 27px;
        right: 11px;
    }
    .card-hover__buttonIcon {
        width: 13px;
    }
    .main-bestsellers__titleDecor {
        display: none;
    }
    .main-bestsellers__titleText {
        font-size: 16px;
        line-height: 19px;
    }
    .main-bestsellers__headerDecor {
        margin-top: 3px;
        width: 29px;
    }
    .main-bestsellers__headerButton {
        width: 150px;
        height: 33px;
        font-size: 9px;
        line-height: 11px;
    }
    .main-bestsellers__headerButtonIcon {
        width: 15px;
        margin-left: 5px;
    }
    .main-bestsellers__header {
        height: 40px;
        margin-bottom: 15px;
    }
    .main-bestsellers {
        margin-bottom: 15px;
    }
    .main-header__items {
        margin-bottom: 15px;
        grid-gap: 10px;
    }
    .main-header__items .card {
        max-width: unset;
    }
    .main-bestsellers__cards {
        grid-gap: 10px;
    }
    .main-bestsellers__cards .card {
        max-width: unset;
    }

    .card.big {
        height: 415px;
    }
    .card.big .card-bg__block:after {
        border-radius: 18px;
    }

    .card-info {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        padding: 13px 16px;
        box-shadow: unset;
    }
    .card-info .card__sale {
        top: -13px;
        left: 16px;
    }
    .card-info__name {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 4px;
    }
    .card-info__description {
        font-size: 12px;
        line-height: 14px;
    }
    .card-info__rate {
        margin-bottom: 3px;
    }
    .card-info__rateText {
        font-size: 14px;
        line-height: 17px;
        margin-left: 3px;
    }
    .card-info__button {
        padding: 7px 23px 7px 20px;
    }
    .card-info__buttonText {
        font-size: 12px;
        line-height: 14px;
    }
    .card-info__buttonIcon {
        margin-left: 5px;
        width: 15px;
    }
    .card-info__price {
        width: 77.14px;
        height: 26px;
        border-radius: 6px 6px 0 0;
        font-size: 14px;
        line-height: 17px;
    }

    .main-bestsellers__items {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 15px;
    }
    .card-row {
        max-width: 175px;
        width: 100%;
        height: unset;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 4px #EAEDF0;
        border-radius: 12px;
        padding: 0 0 17px;
        margin-bottom: 0;
    }
    .main-bestsellers__items .card-row {
        max-width: unset;
    }
    .card-row__left {
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .card-row__imgBlock {
        filter: drop-shadow(0px 5px 25px #B3C0CC);
        margin: -15px 0 20px;
    }
    .card-row__left .card-info__left {
        height: unset;
        position: unset;
        padding: 0 15px;
        margin-bottom: 6px;
        align-items: center;
    }
    .card-row__left .card__sale {
        top: -5px;
        left: 50%;
        transform: translateX(-100%);
    }
    .card-row .card-info__name {
        text-align: center;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }
    .card-row .card-info__description {
        text-align: center;
        -webkit-line-clamp: 2;
    }
    .card-row .card-info__rateText {
        font-size: 12px;
        line-height: 14px;
    }
    .card-row .card-info__button {
        width: 90px;
        height: 30px;
    }
    .card-info__price {
        font-size: 12px;
        line-height: 14px;
    }

    .modal-content {
        max-width: 360px;
        width: calc(100% - 30px);
        height: unset;
        min-height: unset;
    }
    .modal-content__info {
        display: none;
    }
    .modal-content__forms {
        margin-right: 0;
        max-width: 100%;
        padding: 26px 30px;
    }
    .modal-content__form {
        margin-bottom: 20px;
    }
    .modal-content__socialItem {
        width: 47px;
        height: unset;
    }
    .modal-content__social {
        gap: 15px;
    }
    .modal-content__button {
        width: 150px;
    }
    .modal-content__buttonBg {
        width: 149px;
    }
    .modal-content__forms.reg .modal-content__buttonBg {
        left: 125px;
        width: 174px;
    }

    .popup.notify {
        padding: 15px 15px 25px 24px;
        right: -115px;
        top: 46px;
        max-width: 360px;
        min-width: unset;
        width: calc(100vw - 30px);
    }
    .popup.notify:before {
        right: 119px;
    }

    .popup.lang {
        top: 46px;
        right: -26px;
    }
    .popup.currency {
        top: 46px;
        right: -26px;
    }

    .popup-header {
        padding-bottom: 14px;
        width: calc(100% - 19px);
    }
    .popup-header__text {
        font-size: 14px;
        line-height: 17px;
    }
    .popup-header__number {
        min-width: 24px;
        height: 24px;
        margin-left: 9px;
        padding: 0 7px;
        font-size: 12px;
        line-height: 14px;
    }
    .notify-item__iconBlock {
        width: 47px;
        min-width: 47px;
        height: 47px;
    }
    .notify-item__icon {
        width: 25px;
    }
    .notify-item__title {
        font-size: 12px;
        line-height: unset;
    }
    .notify-item__text {
        font-size: 10px;
        line-height: 12px;
    }
    .notify-item__time {
        font-size: 10px;
        line-height: 12px;
        padding: 4px 6px 2px 7px;
    }
    .popup-block {
        padding-right: 15px;
    }
    .notify-item {
        padding: 15px 0;
    }

    .popup.cart {
        right: -159px;
        top: 46px;
        padding: 15px 10px 19px 15px;
        max-width: 360px;
        min-width: unset;
        width: calc(100vw - 30px);
    }
    .popup.cart:before {
        right: 163px;
    }
    .popup-footer__block {
        display: none;
    }
    .cart-item:first-child {
        margin-top: 10px;
    }
    .cart-item {
        height: 75px;
        margin-bottom: 10px;
    }
    .popup-footer {
        margin-top: 15px;
    }
    .popup-footer__button {
        margin-left: 15px;
        height: 40px;
    }
    .popup-footer__button span {
        font-size: 12px;
        line-height: 14px;
    }
    .popup-footer__buttons {
        width: 100%;
        justify-content: space-between;
        padding-right: 18px;
    }
    .popup-footer__buttons .button {
        height: 40px;
        padding: 0 18px 0 20px;
        max-width: 141px;
        width: 100%;
        justify-content: center;
    }
    .popup-footer__buttons .button__text {
        font-size: 12px;
        line-height: 14px;
    }
    .popup-footer__buttons .button__icon {
        width: 18px;
        margin-left: 7px;
    }
    .cart-item__imgBlock {
        max-width: 65px;
        min-width: 65px;
        margin-right: 10px;
    }
    .cart-item__title {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 0;
    }
    .cart-item__description {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 2px;
    }
    .cart-item__price {
        font-size: 11px;
        line-height: 13px;
        min-width: 51px;
        height: 22px;
        width: unset;
    }
    .cart-item__delete {
        width: 25px;
        height: 25px;
        right: 10px;
        top: 10px;
    }
    .cart-item__content {
        padding-right: 35px;
    }

    .main-card .wrapper {
        grid-template:
    "a"
    "c"
    "b" auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }
    .main-card__imgBlock {
        grid-area: a;
        max-width: 100%;
        height: auto;
        max-height: 415px;
        margin: 0 auto;
    }
    .main-card__buy {
        padding: 20px;
    }
    .main-card__info {
        padding: 25px 20px 20px;
    }
    .main-card__platform {
        padding: 10px 15px;
    }
    .main-card__platformText {
        font-size: 12px;
        line-height: 14px;
        max-width: 100px;
    }
    .main-card__prosItem {
        margin-bottom: 15px;
    }
    .main-card__prosItemIcon {
        width: 25px;
        margin-right: 10px;
    }
    .main-card__prosItemText {
        font-size: 14px;
        line-height: 17px;
    }
    .main-card__pros {
        margin-bottom: 15px;
    }
    .main-card__text {
        font-size: 12px;
        line-height: 20px;
    }
    .main-card__title {
        font-size: 20px;
        line-height: unset;
        margin-bottom: 5px;
        margin-top: 25px;
        padding-right: 0;
    }
    .main-card__info .card-info__rate {
        left: 20px;
        top: 20px;
    }

    .main-catalog__block {
        grid-template-columns: 1fr;
        background: transparent;
        box-shadow: unset;
    }
    .main-catalog__filterMenu {
        display: flex;
    }
    .main-catalog__filterPopupWrapper {
        padding: 0;
        top: 75px;
        left: 0;
        position: absolute;
        z-index: 6;
        display: none;
        overflow-y: auto;
        max-height: calc(100vh - 60px - 60px - 15px - 15px - 10vh);

    }
    .main-catalog__filterPopup {
        padding: 20px;
    }
    .main-catalog__filterPopupHeader {
        display: none;
    }
    .main-catalog__filterCategoryTitle {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 19px;
    }
    .main-catalog__filterSliderColumnText {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 5px;
    }
    .main-catalog__item {
        flex-direction: column;
        align-items: center;
        padding: 0 0 17px;
        margin-bottom: 0;
    }
    .main-catalog__item .card-info__name {
        -webkit-line-clamp: 2;
        text-align: center;
        font-size: 13px;
        line-height: 15px;
        margin-bottom: 5px;
    }
    .main-catalog__item .card-info__description {
        -webkit-line-clamp: 2;
        text-align: center;
        font-size: 12px;
        line-height: 14px;
    }
    .main-catalog__items {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 15px;
        padding: 10px;
        border-left: unset;
        background: #FFFFFF;
        margin-top: 15px;
        border-radius: 8px;
    }
    .main-catalog__item .card-info__rateText {
        font-size: 12px;
        line-height: 14px;
    }
    .card-info__right {
        margin-left: 0;
    }
    .main-catalog__item .card-info__rate {
        padding-top: 5px;
    }
    .main-catalog__item:last-child {
        margin-bottom: 0;
    }

    .main-account .wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        grid-gap: 15px;
    }
    .main-account__buttonText {
        font-size: 14px;
        line-height: unset;
    }
    .main-account__header {
        margin-bottom: 15px;
    }
    .main-account__button {
        height: 58px;
    }
    .main-account__formRow {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-account__appItemText {
        font-size: 16px;
        line-height: unset;
    }
    .main-account__appItemIconBlock {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .main-account__appItemButton {
        width: 100px;
        height: 40px;
        font-size: 14px;
    }
    .main-account__appItem {
        margin-bottom: 10px;
        height: auto;
    }
    .main-account__formRow .main-account__inputBlock:first-child {
        margin-right: 0;
    }
    .main-account__inputBlock {
        margin-bottom: 10px;
    }
    .main-account__table {
        max-width: calc(100vw - 30px - 40px);
    }
    .main-account__radioWrapper {
        margin-bottom: 10px;
    }

    .main-support .wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-gap: 15px;
    }
    .main-support__items {
        max-height: 240px;
    }
    .main-support__chatBlock {
        max-height: 450px;
        height: 450px;
    }

    .modal.ticket .modal-content {
        padding: 30px;
        max-width: calc(100% - 30px);
    }
    .modal-ticket__close {
        top: 30px;
        right: 30px;
        width: 18px;
    }
    .modal-ticket__form {
        padding-top: 20px;
    }
    .button-ticket {
        margin-top: 3px;
        height: 55px;
    }
    .modal-ticket__form .main-account__inputBlock.textarea .main-account__input {
        min-height: 100px;
    }
    .modal-ticket__form .main-account__inputBlock.select .main-account__input {
        background-position-x: calc(100% - 20px);
        background-position-y: 22px;
    }
    .modal-ticket__form .main-account__inputName {
        font-size: 14px;
        line-height: 17px;
    }
    .modal-ticket__form .main-account__input {
        font-size: 14px;
        line-height: 17px;
    }
    .modal.ticket .main-support__title {
        font-size: 18px;
        line-height: 21px;
    }
    .modal.ticket .modal-ticket__form .main-support__titleBlock {
        padding-bottom: 5px;
    }
    .modal-ticket__form .main-account__inputBlock.select .main-account__inputFooter {
        height: 55px;
    }

    .main-review .wrapper {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    .main-review__card {
        padding: 20px;
    }
    .main-review__info {
        padding: 23px 20px 39px;
    }
    .main-review .main-review__rateButtons .popup-footer__button {
        height: 52px;
    }
    .main-review__rateLeft {
        margin-bottom: 25px;
    }
    .main-review__rateButtons {
        flex-direction: column;
        align-items: center;
    }
    .main-review__rateButtons .popup-footer__button {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .main-review .main-account__gameKeyBlock {
        width: 100%;
    }
    .main-review .main-account__gameKey {
        width: 100%;
        padding-right: 10px;
        margin-top: 4px;
    }
    .main-review .main-account__gameKeyWarning {
        margin-left: 8px;
    }
    .main-review .main-account__gameKeyInput {
        width: 100%;
    }
    .main-review__infoRow {
        padding: 16px 19px;
    }
    .main-review__cardHeader {
        margin-bottom: 20px;
    }

    .modal-seller__wrapper .modal-content__bonus {
        max-width: 360px;
        width: calc(100% - 30px);
        margin-bottom: 20px;
    }
    .modal-seller__wrapper .modal-content {
        padding: 35px 25px 25px;
    }

    .popup.user {
        top: 47px;
        padding: 15px;
        right: -26px;
    }

    .footer.page-404 .footer-nav__item {
        border-color: #DFE5EB;
    }
    .main-404__block .main-account__appItemButton {
        width: 152px;
        height: 48px;
        font-size: 14px;
    }
    .header.page-404 .header-logo {
        display: block;
    }

    .modal-email__block {
        padding-bottom: 0;
    }

    .header-circle.currency {
        width: 34px;
    }
    .header-circle.currency .header-circle__button {
        padding: 0;
        width: 100%;
    }

    .purchase-block .card-info__name {
        font-size: 14px;
    }
    .purchase-total__text {
        font-size: 14px;
    }
    .purchase-total__value {
        font-size: 18px;
    }
    .purchase-total {
        padding: 17px 18px;
        /*margin: 8px 0 10px;*/
        margin: 0;
    }
    .purchase-block .main-account__place {
        padding: 20px;
    }
    .purchase-block .main-account__place .button-account {
        max-width: 100%;
        margin-top: 14px;
    }
    .purchase-block__row {
        flex-direction: column;
        align-items: center;
    }
    .purchase-block .card.big {
        max-width: 390px;
        height: 415px;
    }
    .button-account {
        height: 48px;
    }
    .button-account .button__text {
        font-size: 14px;
    }

    .main-account__inputFooter {
        height: 48px;
    }
    .main-account__inputBlock.icon .main-account__input {
        padding-left: 48px;
        font-size: 14px;
    }
    .main-account__inputIcon {
        left: 10px;
        width: 21px;
        max-height: 21px;
        object-fit: contain;
        object-position: center;
    }
    .main-account__inputName {
        font-size: 14px;
    }
}
@media screen and (max-width: 725px) {
    .main-cart__content {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .main-cart__itemManage {
        max-width: 309px;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 68.4px) minmax(0, 136.8px) minmax(0, 68.4px);
        grid-gap: 5.7px;
    }
    .main-cart__itemManageColumnPrice {
        width: 100%;
    }
    .main-cart__itemManageButtons {
        width: 100%;
        margin: 0;
    }

    .main-shopping .main-cart__itemManage {
        max-width: 362px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal.buy .modal-content {
        padding: 16px;
    }
    .modal.buy .modal-ticket__close {
        top: 16px;
        right: 16px;
    }
    .modal-buy__item {
        padding: 15px;
    }
    .modal-buy__item-title {
        margin-bottom: 8px;
    }
    .modal-buy__item-content {
        padding-top: 0;
    }
}
@media screen and (max-width: 680px) {
    .main-header__items {
        grid-template:
        "a b"
        "a c";
        grid-template-columns: 2fr 1fr;
    }
    .main-header__items .card:nth-last-child(-n+6) {
        display: none;
    }

    .main-bestsellers__cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-bestsellers__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-card__gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 83px);
    }

    .main-catalog__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-support__title {
        font-size: 18px;
    }
    .main-support__item {
        padding: 8px 16px 8px 12px;
    }
    .main-support__item-game {
        gap: 12px;
    }
    .main-support__game-name {
        font-size: 14px;
    }
    .main-support__item-date {
        font-size: 12px;
    }

    .main-support__item.question {
        padding: 16px;
    }
    .main-support__item.question .main-support__item-question {
        font-size: 14px;
    }
}
@media screen and (max-width: 540px) {
    .main-header__items {
        grid-template: unset;
        grid-template-columns: 1fr;
    }
    .main-header__items .card.big {
        grid-area: unset;
    }
    .main-header__items .card:nth-last-child(-n+8) {
        display: none;
    }

    .main-bestsellers__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-bestsellers__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-catalog__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-account__radioWrapper {
        flex-direction: column;
    }
    .main-account__radioData {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .header-circle.notify {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .main-cart__itemManage {
        max-width: 100%;
        grid-template-columns: 1fr 2fr 1fr;
    }
    .main-cart__order {
        padding: 10px;
    }
    .main-cart__orderTotal {
        margin-bottom: 10px;
    }
    .main-cart__discount {
        margin-bottom: 10px;
        padding-left: 10px;
    }

    .main-shopping .main-cart__itemManage {
        display: grid;
        grid-template: "a b"
    "c c" auto;
        justify-content: flex-end;
        width: unset;
    }
    .button-shopping {
        grid-area: c;
        width: 100%;
    }

    .modal-google__input {
        width: 42px;
        height: 42px;
    }
    .modal.google .modal-content__header {
        margin-bottom: 20px;
    }
    .modal-google__row {
        margin-bottom: 20px;
    }
}
/*MAIN MEDIA END*/