/*==========================
          Developed Azewolf 
==========================*/
.lightrope {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  margin: -15px 0 0 0;
  padding: 0;
  pointer-events: none;
  width: 100%;
}

#main_page #cheats-page-wrapper {
    display: none;
}

.lightrope li {
  position: relative;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 12px;
  height: 28px;
  border-radius: 50%;
  margin: 20px;
  display: inline-block;
  background: #00f7a5;
  box-shadow: 0px 4.66667px 24px 3px #00f7a5;
  -webkit-animation-name: flash-1;
  animation-name: flash-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.lightrope li:nth-child(2n+1) {
  background: cyan;
  box-shadow: 0px 4.66667px 24px 3px rgba(0, 255, 255, 0.5);
  -webkit-animation-name: flash-2;
  animation-name: flash-2;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

.lightrope li:nth-child(4n+2) {
  background: #f70094;
  box-shadow: 0px 4.66667px 24px 3px #f70094;
  -webkit-animation-name: flash-3;
  animation-name: flash-3;
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}

.lightrope li:nth-child(odd) {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
}

.lightrope li:nth-child(3n+1) {
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
}

.lightrope li:before {
  content: "";
  position: absolute;
  background: #222;
  width: 10px;
  height: 9.33333px;
  border-radius: 3px;
  top: -4.66667px;
  left: 1px;
}

.lightrope li:after {
  content: "";
  top: -14px;
  left: 9px;
  position: absolute;
  width: 52px;
  height: 18.66667px;
  border-bottom: solid #222 2px;
  border-radius: 50%;
}

.lightrope li:last-child:after {
  content: none;
}

.lightrope li:first-child {
  margin-left: -40px;
}

@-webkit-keyframes flash-1 {
  0%, 100% {
    background: #00f7a5;
    box-shadow: 0px 4.66667px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}

@keyframes flash-1 {
  0%, 100% {
    background: #00f7a5;
    box-shadow: 0px 4.66667px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}

@-webkit-keyframes flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4.66667px 24px 3px cyan;
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(0, 255, 255, 0.2);
  }
}

@keyframes flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4.66667px 24px 3px cyan;
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(0, 255, 255, 0.2);
  }
}

@-webkit-keyframes flash-3 {
  0%, 100% {
    background: #f70094;
    box-shadow: 0px 4.66667px 24px 3px #f70094;
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(247, 0, 148, 0.2);
  }
}

@keyframes flash-3 {
  0%, 100% {
    background: #f70094;
    box-shadow: 0px 4.66667px 24px 3px #f70094;
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(247, 0, 148, 0.2);
  }
}
/*==========================
          Cookie
==========================*/

.cookie-banner {
    position: fixed;
    bottom: 20px;
    background-color: #1d1e23;
    color: white;
    left: 60px;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    z-index: 10000 !important; /* Убедимся, что баннер поверх всех окон */
    width: 450px;
    box-shadow: 0 4px 8px rgba(71, 95, 56, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    padding-right: 10px;
    display: block;
}

#cookie-accept {
    background-color: #475f38;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
}

#cookie-accept:hover {
    background-color: #78a94b;
}

#cookie-link {
    text-decoration: underline;
    color: #85bb55;
    cursor: pointer;
}

#cookie-link:hover {
    color: #78a94b;
}
/*==========================
          SNOW
==========================*/    
    

#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999; /* Убедитесь, что слой выше */
}

.sf-snow-flake {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.8);
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-100px); /* Снежинка стартует чуть выше текущей позиции */
  }
  100% {
    transform: translateY(100vh); /* Доходит до нижней границы экрана */
  }
}
/*==========================
          DS to TG
==========================*/

@keyframes slideBackground {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.marquee {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #475f38, #1f2024, #88c057);
    background-size: 200% 100%;
    animation: slideBackground 10s linear infinite alternate;
    color: white;
    text-align: center;
    padding: 5px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}


.marquee-controls {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}


#prev-btn {
    font-size: 20px;
    margin: 0 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#next-btn {
    font-size: 20px;
    margin: 0 60px;
    position: absolute;
    top: 50%;
    left: calc(100% + 5px); /* Располагаем кнопку next-btn от правого края prev-btn */
    transform: translate(-100%, -50%); /* Сдвигаем на 100% ширины next-btn влево */
}

#close-btn {
    font-size: 20px;
    margin-right: 20px; /* Расстояние слева от текста до кнопки закрытия */
    position: absolute;
    top: 50%;
    right: 10px; /* Располагаем кнопку закрытия справа */
    transform: translateY(-50%);
}

.marquee a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.marquee i {
    cursor: pointer;
    margin-right: 5px; /* Добавляем отступ справа от иконки */
}
/*==========================
          Scroll bar
==========================*/
#scroll-progress {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(71 95 56);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  cursor: pointer;
}

#scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#88C057 0%, #88C057 var(--scroll-progress, 0%), transparent var(--scroll-progress, 0%), transparent 100%);
}

#inner-circle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  background-color: #1e1f24;
}

.arrow-up {
  position: absolute;
  font-size: 16px;
  color: white;
}

/*==========================
          Кнопка профиля
==========================*/

.profile-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #475f38; /* Цвет фона */
  color: #ffffff; /* Цвет текста */
  text-decoration: none;
  border-radius: 15px; /* Закругленные углы */
  transition: background-color 0.3s ease; /* Плавное изменение цвета фона при наведении */
}

/* Стиль иконки пользователя */
.profile-link .fa-user {
  margin-right: 5px;
}

/* Изменение цвета фона при наведении */
.profile-link:hover {
  background-color: #88c057; /* Новый цвет фона при наведении */
}

.go-auth, .user-name {
  margin: 0;
  padding: 10px 10px;
  color: #ffffff; /* Цвет текста */
  text-decoration: none;
  border-radius: 5px; /* Закругленные углы */
  transition: background-color 0.3s ease; /* Плавное изменение цвета фона при наведении */
}

/*==========================
          PRELOADER
==========================*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* фоновый цвет */
    background: #00000000;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}

#loader {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid #bc3d3d00;
    border-top-color: #8efa02;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f8fbfb;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 1.5s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1dc500;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseA {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.95);
    }
}

/*==========================
          CHAT
==========================*/
@keyframes pulse {
    0% {
        background-color: rgba(255, 255, 255, 0.8);
        /* Начальный цвет */
    }

    50% {
        background-color: rgba(255, 255, 255, 0.5);
        /* Промежуточный цвет */
    }

    100% {
        background-color: rgba(255, 255, 255, 0.8);
        /* Конечный цвет (тот же, что начальный) */
    }
}

.chatbro_header.chatbro_minimized_header.chatbro_opacity {
    height: 50px !important;
    transition: background-color 0.3s ease !important;
    animation: pulse 2s infinite;
    /* Применение анимации с пульсацией */
}

.chatbro_header.chatbro_minimized_header.chatbro_opacity:hover {
    background: #88C057 !important;
    /* Новый цвет фона при наведении */
}

/*==========================
          GLOBAL
==========================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.no-reviews-wrapper {
    width: 100%;
    text-align: center;
    color: #555;
    font-size: 24px;
    margin-bottom: 20px;
    /* просто для примера, чтобы был небольшой отступ снизу */
}

#product .content .main-info .left-block .frameshow {
    width: 100%;
    height: 239px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    border: 2px solid #475f38;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #88C057;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #1d1e23;
    position: relative;
    min-height: 100%;
    top: 0px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently not supported by any browser */
}


body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .4s all;
}

a:hover {
    color: #fff !important;
}

.teg a {
    color: #88C057 !important;
}

.teg a:hover {
    text-decoration: underline;
}

.games-center {
    display: block;
    text-align: center;
    margin-top: -23px;
    z-index: 4;
    position: relative;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .03;
    background-image: url('../img/bg.png');
    background-size: cover;
    z-index: -1;
}

.container {
    width: 1403px;
    padding: 0 60px;
    margin: auto;
}

.container-droduct {
    width: 1600px;
    padding: 0 60px;
    margin: auto;
}

.container-reviews {
    width: 1403px;
    padding: 0 60px;
    margin: auto;
}

.link,
.link i {
    cursor: pointer;
    transition: .4s all;
}

.link:hover,
.link:hover i {
    color: #fff !important;
}

.btn-new-style {
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: .25s all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: #88C057;
}

.btn-new-style1 {
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: .25s all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: #88C057;
}

.btn-new-style2 {
            margin-top: 15px;
            border-radius: 15px;
            padding: 20px 30px;
            cursor: pointer;
            transition: .25s all;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            background: #0070ba;
            color: white;
            text-decoration: none; /* Убирает подчеркивание текста */
        }
        
        .btn-new-style2 span {
            position: relative;
            z-index: 1; /* Устанавливаем иконку и текст выше псевдоэлемента */
        }
        
        .btn-new-style2 i  {
            position: relative;
            z-index: 1; /* Устанавливаем иконку и текст выше псевдоэлемента */
            margin-right: 10px;
            font-size: 2em;
        }

        .btn-new-style2 .fa-paypal {
            margin-right: 20px; /* Увеличиваем расстояние между иконкой и текстом */
            font-size: 1.5em; /* Увеличиваем размер иконки */
        }

        .btn-new-style2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 112, 186, 1); /* Полупрозрачный цвет */
            transition: .25s all;
            z-index: 0; /* Псевдоэлемент позади иконки и текста */
        }

        .btn-new-style2:hover::before {
            background: rgb(0 41 186 / 50%); /* Яркий цвет при наведении */
        }
        
.btn-new-style span {
    position: relative;
}



.btn-new-style1 span {
    position: relative;
}

.btn-new-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #475f38;
    opacity: 1;
    transition: .25s all;
}

.btn-new-style1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #475f38;
    opacity: 1;
    transition: .25s all;
}



.btn-new-style:hover::before {
    opacity: 0;
}

.btn-new-style1:hover::before {
    opacity: 0;
}



.btn-new-style.outline {
    background: 0;
    border: 2px solid #2d3037;
    color: #848a9a;
}

.btn-new-style.outline::before {
    opacity: 0;
}

.btn-new-style.outline:hover {
    color: #fff;
}

.btn-new-style.outline:hover::before {
    opacity: 1;
}

.btn {
    padding: 20px 25px;
    border-radius: 10px;
    background: #475f38;
    ;

    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .4s all;
}

.btn:hover {
    opacity: 1;
    background: #88C057;
    ;

}

.btn.purple {
    font-weight: 600;
}

.btn.purple:hover {
    background: #88C057;
}

.btn.gray {
    background: #2c303c;
    color: #9fa4b0;
    cursor: pointer;
}

.btn.gray:hover {
    color: #fff;
    background: #323746;
}

.btn.red {
    color: rgba(255, 255, 255, .7);
    background: #af031d;
}

.btn.red:hover {
    background: #d90424;
    color: #fff;
}

.btn.green {
    background: #2dc312;
    cursor: pointer;
}

.btn.green:hover {
    background: #32d714;
}

input,
textarea {
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    resize: none;
    background: 0;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}

.input .disabled {
    background: #141518 !important;
    border-color: #141518 !important;
}

input:disabled {
    color: rgba(255, 255, 255, .5) !important;
    background: #141518 !important;
    border-color: #141518 !important;
}

.-navigation-links {
    position: relative;
    margin-bottom: 40px;
    color: #464850;
    z-index: 4;
}

.-navigation-links .fa-light.fa-angle-right {
    margin: 0 10px;
}

.-navigation-links .fa-light.fa-house-heart {
    margin-right: 5px;
}

.-navigation-links a.active {
    color: #fff;
}


/*==========================
       MODAL WINDOW
==========================*/

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
    width: 100%;
    padding-top: 200px;
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .5s all;
}

.modal-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
}

.modal-wrapper .modal {
    width: 50%;
    background: rgb(29 33 40);
    border: 2px solid #242932;
    padding: 25px;
    padding-top: 100px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: auto;
    display: none;
    opacity: 0;
    z-index: -1;
}

.modal-wrapper.show,
.modal-wrapper .modal.show {
    opacity: 1;
    z-index: 55;
    display: block;
}

.modal-wrapper .modal .header {
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.modal-wrapper .modal .header .close {
    margin-left: auto;
    cursor: pointer;
}

.modal-wrapper .modal .input {
    height: 70px;
    padding-left: 25px;
    padding-right: 20px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    border: 2px solid #242932;
}

.modal-wrapper .modal .input i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242932;
}

.modal-wrapper .modal .input input {
    width: 100%;
    height: 100%;
}

.modal-wrapper .modal .input1 input {
    width: 100%;
    height: 100%;
}

.modal-wrapper .modal input.custom {
    height: 60px;
    padding: 0 20px;
    width: 100%;
    border: 2px solid #242932;
    border-radius: 10px;
    margin-bottom: 15px;
}

#product .content .main-info .left-block .carousel .main-screen {
    position: relative;
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.modal-wrapper .modal input.custom1 {
    height: 60px;
    padding: 0 20px;
    width: 100%;
    border: 2px solid #242932;
    border-radius: 10px;
    margin-bottom: 15px;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
    display: table;
    color: rgb(255, 255, 255);
    cursor: pointer;
    background: #475f38;
    border-radius: 10px;
    padding: 5px;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name.active {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    display: table;
    color: rgb(255, 255, 255);
    cursor: pointer;
    background: #88C057;
    border-radius: 10px;
    padding: 5px;
}

.modal-wrapper .modal textarea {
    border: 2px solid #242932;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
}

.modal-wrapper .modal .go-send {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-wrapper .modal .go-send .rate {
    margin-right: auto;
}

.modal-wrapper .modal .go-send .rate p {
    padding: 10px;
    font-size: 20px;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .5s all;
    float: right;
}

.modal-wrapper .modal .go-send .rate p:first-child {}

.modal-wrapper .modal .go-send .rate p:hover,
.modal-wrapper .modal .go-send .rate p:hover~p,
.modal-wrapper .modal .go-send .rate p.active {
    color: #ffba00;
}

.modal-wrapper .modal .select-img {
    color: #5a5f68;
    padding: 10px 15px;
    border: 2px solid #242932;
    background: rgb(32 36 44);
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    transition: .25s all;
}

.modal-wrapper .modal .select-img:hover {
    background: #242932;
    color: #666e7e;
}

.modal-wrapper .modal .select-img i {
    margin-right: 10px;
    font-size: 16px;
}

.modal-wrapper .modal .uploaded_img {
    color: #5a5f68;
    margin-right: auto;
    margin-left: 10px;
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-wrapper .modal input[type="file"] {
    display: none;
}

.modal-wrapper .modal.tickets-views {
    width: 100%;
    margin-top: -50px;
}

.modal-wrapper .modal.tickets-views .ticket-view {
    display: none;
}

.modal-wrapper .modal.tickets-views .ticket-view.show {
    display: block;
}

.modal-wrapper .modal.tickets-views .ticket-view .info {
    background: #242932;
    padding: 20px 25px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .title {
    font-size: 20px;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket {
    padding: 5px 8px;
    border-radius: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.open,
.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.solved {
    background: #0ddd25;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.refused {
    background: #e01414;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat {
    overflow-y: auto;
    height: 450px;
    padding: 25px;
    background: #191d24;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar {
    width: 5px;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar-track {
    background: transparent;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #2a313c;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg {
    background: #242932;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 40%;
    margin-left: auto;
    margin-bottom: 15px;
    display: table;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg.admin {
    margin-right: auto;
    margin-left: 0;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg.full {
    width: 40%;
    position: relative;
    padding-top: 260px;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg img {
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    background: #000;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg a {
    color: orange;
    text-decoration: underline;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg .date {
    font-size: 13px;
    color: #677081;
    margin-top: 5px;
    text-align: right;
}

.modal-wrapper .modal.tickets-views .ticket-view textarea {
    height: 80px;
    background: #242932;
    border: none;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-wrapper .modal.accept-email .description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-wrapper .modal.accept-email .description span {
    color: orange;
}

.modal-wrapper .modal.accept-email .inp {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.modal-wrapper .modal.accept-email .warning {
    color: orange;
    font-weight: 600;
    margin-top: 20px;
}

.modal-wrapper .modal.accept-email .warning i {
    margin-right: 10px;
    font-size: 18px;
}

.modal-wrapper .modal.select-buy {
    max-width: 30% !important;
}

.modal-wrapper .modal.select-buy .blocks .left-block,
.modal-wrapper .modal.select-buy .blocks .right-block {
    width: 50%;
    padding: 25px;
    border-radius: 15px;
    background: #242932;
    display: flex;
    flex-direction: column;
}

.modal-wrapper .modal.select-buy .blocks .title-s {
    text-align: center;
}

.modal-wrapper .modal.select-buy .blocks .btn {
    text-align: center;
    margin-top: auto;
}

.modal-wrapper .modal.select-buy .blocks .left-block {
    margin-right: 25px;
}

.modal-wrapper .modal.select-buy .blocks .img {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-wrapper .modal.select-buy .blocks .img img {
    width: 130px;
    object-fit: contain;
}

.modal-wrapper .modal.select-buy .blocks .left-block img {
    border-radius: 10px;
    width: 150px;
}

.modal-wrapper .modal.select-buy .blocks .right-block .img img {
    height: 130px;
    width: 100%;
}

.modal-wrapper .modal.send-review {
    background: #212328;
    border: 2px solid #475f38;
}

/* .modal-wrapper .modal.send-review .header {
    background: #ffffff0a;
} */

.modal-wrapper .modal.send-review .input {
    border: 2px solid #ffffff0a;
}

.modal-wrapper .modal.send-review .input i {
    background: #ffffff0a;
}

.modal-wrapper .modal.send-review textarea {
    border: 2px solid #ffffff0a;
}

/*==========================
       NOTIFICATION
==========================*/

.notification-wrapper-note {
    position: fixed;
    top: 100px;
    right: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #242932;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    border-radius: 5px;
    overflow: hidden;
    padding-right: 20px;
    z-index: -1;
    opacity: 0;
    transition: .2s all;
}

.notification-wrapper-note i {
    height: 100%;
    width: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: orange;
}

.notification-wrapper-note.show {
    opacity: 1;
    z-index: 9999;
}



/*==========================
          HEADER
==========================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    backdrop-filter: blur(5px);
    transition: .5s all;
    border-bottom: 1px solid #1d1e23;
}

header.show-preview {
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #88C057;
    
}

header .navbar-nav {
    width: 100%;
}

header .navbar-nav .logo {
    margin-right: 30px;
}

header .navbar-nav .logo img {
    width: 150px;
}

header .navbar-nav .menu a {
    padding: 30px;
    position: relative;
    font-weight: 300;
    transition: all 0.15s ease;
}

header .navbar-nav .menu a:hover,
header .navbar-nav .menu a.active {
    color: #88C057 !important;
}

header .navbar-nav .menu a.active {
    color: #fff;
}

header .navbar-nav .menu a:hover {
    color: #88C057 !important;
}

header .navbar-nav .menu a:last-child {
    margin-right: 0;
}

header .navbar-nav .contacts {
    margin-left: auto;
}

header .navbar-nav .contacts a {
    padding: 20px 15px;
    font-size: 20px;
}

header .navbar-nav .contacts a i {
    transition: .1s all;
}

header .navbar-nav .contacts a:hover i {
    color: #88C057;
}

header .navbar-nav .contacts a:last-child {
    padding-right: 0;
}

header .navbar-nav .profile-link {
    margin-left: auto;
    padding: 5px;
    cursor: pointer;
}



header .navbar-nav .profile-user {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #88C057;
    margin-left: auto;
}

header .navbar-nav .profile-user img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*==========================
      PROFILE MENU
==========================*/

.profile-auth-menu {
    position: fixed;
    top: 130px;
    right: -450px;
    height: 80vh;
    width: 450px;
    backdrop-filter: blur(5px);
    border: 1px solid #88c057;
    padding: 50px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    background: rgb(29 30 35 / 90%);
    transition: .5s opacity;
    border-radius: 10px;
    border-right: 0;
}

.profile-auth-menu.visible {
    right: -10px;
    opacity: 1;
}

.profile-auth-menu .big-icon {
    font-size: 90px;
    margin-bottom: 30px;
    color: #0bc40b;
}

.profile-auth-menu .auth-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.profile-auth-menu .auth-block .input {
    display: flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, .05);
    height: 60px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.profile-auth-menu .auth-block .input i {
    height: 100%;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.profile-auth-menu .auth-block .input input {
    color: #fff;
    font-weight: 500;
    height: 100%;
    width: 100%;
}

.profile-auth-menu .auth-block .input input::placeholder {
    color: rgba(255, 255, 255, .2);
}

.profile-auth-menu .auth-block .personal-politic {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .2);
    cursor: pointer;
}

.profile-auth-menu .auth-block .personal-politic .check-box {
    height: 20px;
    width: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .05);
    margin-right: 10px;
}

.profile-auth-menu .auth-block .personal-politic .check-box.active {
    border: 1px solid #0bc40b;
}

.profile-auth-menu .auth-block .personal-politic .check-box .check {
    height: 8px;
    width: 8px;
    background: #0bc40b;
    opacity: 0;
    border-radius: 2px;
}

.profile-auth-menu .auth-block .personal-politic .check-box.active .check {
    opacity: 1;
}

.profile-auth-menu .auth-block .personal-politic a {
    color: #0bc40b;
    font-weight: 600;
}


.profile-auth-menu .auth-block .btn {
    margin-top: 25px;
    width: 100%;
    height: 65px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #118711;
}

.profile-auth-menu .auth-block .note {
    display: flex;
    align-items: center;
}

.profile-auth-menu .auth-block .note p {
    color: #0bc40b;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
}

#product-wrapper.profile {
    height: auto;
}

#product-wrapper.profile .content .header-block .user-cart {
    width: 35%;
    height: 100px;
    background: linear-gradient(-135deg, rgb(40, 119, 162), rgb(99, 157, 37));
    margin-right: 20px;
    padding: 20px 25px;
    border-radius: 20px;
}

#product-wrapper.profile .content .header-block .user-cart .user-avatar {
    height: 50px;
    width: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
}


#product-wrapper.profile .content .header-block .user-cart .user-avatar img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


#product-wrapper.profile .content .header-block .user-cart .user-name span {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .7);
}

#product-wrapper.profile .content .header-block .user-cart .user-name p {
    font-size: 18px;
    font-weight: 600;
}

#product-wrapper.profile .content .header-block .user-cart .logout {
    margin-left: auto;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 9px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s all;
}

#product-wrapper.profile .content .header-block .user-cart .logout:hover {
    background: rgba(255, 255, 255, .1);
}

#product-wrapper.profile .content .header-block .profile-info-navbar {
    background: #27292e;
    padding: 20px 25px;
    border-radius: 20px;
    width: 65%;
    height: 100px;
    display: flex;
    align-items: center;
}

#product-wrapper.profile .content .header-block .select-button {
    width: 33.33333333333%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c707b;
    cursor: pointer;
    height: 100%;
    transition: .2s all;
    font-size: 15px;
    position: relative;
}

#product-wrapper.profile .content .header-block .select-button.active,
#product-wrapper.profile .content .header-block .select-button:hover {
    color: #fff;
}

#product-wrapper.profile .content .header-block .select-button::before {
    content: '';
    position: absolute;
    right: 0;
    height: 25px;
    width: 1px;
    background: rgba(108 112 123 / 12%);
}

#product-wrapper.profile .content .header-block .select-button:last-child:before {
    display: none;
}

#product-wrapper.profile .content .header-block .select-button i {
    margin-right: 10px;
    font-size: 18px;
}

#product-wrapper.profile .content .content-block {
    margin-top: 20px;
}

#product-wrapper.profile .content .content-block .support-block {
    background: #27292e;
    width: 35%;
    margin-right: 20px;
    padding: 40px 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

#product-wrapper.profile .content .content-block .support-block .title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

#product-wrapper.profile .content .content-block .person-meta {
    margin: 35px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

#product-wrapper.profile .content .content-block .person-meta img {
    width: 50%;
}

#product-wrapper.profile .content .content-block .support-block span {
    color: #6c707b;
    font-size: 15px;
    margin-bottom: 40px;
    text-align: center;
}

#product-wrapper.profile .content .content-block .button-open-ticket {
    height: 65px;
    width: 100%;
    background: rgb(99, 157, 37);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
}

#product-wrapper.profile .content .content-block .button-open-ticket i {
    margin-right: 10px;
}

#product-wrapper.profile .content .content-block .profile-block-content {
    display: none;
    flex-direction: column;
}

#product-wrapper.profile .content .content-block .profile-info-main {
    background: #27292e;
    width: 65%;
    padding: 30px;
    border-radius: 20px;
}

#product-wrapper.profile .content .content-block .profile-block-content .head-title {
    font-size: 16px;
    font-weight: 600;
}

#product-wrapper.profile .content .content-block .profile-block-content .hr-line {
    height: 1px;
    width: 100%;
    background: rgba(108 112 123 / 12%);
    margin: 20px 0;
}

#product-wrapper.profile .content .content-block .profile-block-content span.pre-title {
    color: #6c707b;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
}

#product-wrapper.profile .content .content-block .profile-block-content .input-custom {
    width: 100%;
    display: flex;
    align-items: center;
    height: 60px;
    background: #2b2d33;
    padding: 15px 20px;
    border-radius: 10px;
}

#product-wrapper.profile .content .content-block .profile-block-content.settings .last-d {
    margin-left: 15px;
}

#product-wrapper.profile .content .content-block .profile-block-content .input-custom i {
    font-size: 16px;
    margin-right: 15px;
    color: #adb3c3;
}

#product-wrapper.profile .content .content-block .profile-block-content .input-custom input {
    width: 100%;
    height: 100%;
}

#product-wrapper.profile .content .content-block .profile-block-content .input-custom input::placeholder {
    color: #6c707b;
}

#product-wrapper.profile .content .content-block .profile-block-content .button-save-changes {
    height: 65px;
    width: 100%;
    background: rgb(99, 157, 37);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
}

#product-wrapper.profile .content .content-block .profile-block-content.settings {
    display: flex;
}

#product-wrapper.profile .content .content-block .profile-block-content .tbl-header {
    background: rgb(46 49 55);
    border-radius: 15px;
    margin-top: 20px;
}

#product-wrapper.profile .content .content-block .profile-block-content table {
    width: 100%;
    table-layout: fixed;
    font-family: 'Montserrat', sans-serif;
}

#product-wrapper.profile .content .content-block .profile-block-content th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}

#product-wrapper.profile .content .content-block .profile-block-content .tbl-content {
    min-height: 400px;
    overflow-x: auto;
    margin-top: 0px;
}

#product-wrapper.profile .content .content-block .profile-block-content tbody tr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s all;
    position: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#product-wrapper.profile .content .content-block .profile-block-content td {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    height: 80px;
    overflow-x: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#product-wrapper.profile .content .content-block .profile-block-content .accept-ticket-success,
#product-wrapper.profile .content .content-block .profile-block-content .status-ticket.open {
    padding: 5px 10px;
    background: rgb(12, 150, 12);
    border-radius: 5px;
}

#product-wrapper.profile .content .content-block .profile-block-content .status-ticket.wait-accept {
    padding: 5px 3px;
    background: rgb(219, 151, 5);
    border-radius: 5px;
}

/*==========================
      HEADER-WRAPPER
==========================*/

#header-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;

}

#header-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, #1d1e23 90%);
    position: absolute;
    z-index: 7;
}

#header-wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e));
    background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, #1d1e23 120%);
    position: absolute;
    z-index: 7;
}


#header-wrapper #slider {
    height: 100vh;
}

#header-wrapper .nivoSlider .geog img {
    height: 100vh !important;
    object-fit: cover;
    opacity: 0;
}

#header-wrapper .nivoSlider .govno img {
    height: 100vh !important;
    object-fit: cover;
    opacity: 1;
}

#header-wrapper .container {
    position: relative;
}

#header-wrapper .content {
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transition: .7s all;
    z-index: 10;
}

#header-wrapper .content.hide {
    opacity: 0;
    z-index: 9;
}

#header-wrapper .content img {
    object-fit: cover;
    width: 100%;
}

.nivo-directionNav {
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nivo-nextNav {
    transform: rotate(90deg);
    margin-top: 250px;
}

.nivo-prevNav {
    left: auto;
    transform: rotate(90deg);
    margin-bottom: 250px;
}

.nivo-directionNav a {
    border: 2px solid #88C057;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s all;
    font-size: 20px;
    right: 310px !important;
    top: auto;
    z-index: 40;
}

.nivo-directionNav a i.fal.fa-chevron-right {
    font-weight: 500;
}

.nivo-directionNav a i.fal.fa-chevron-left {
    font-weight: 500;
}

.nivo-directionNav a i {
    transition: .25s all;
}

.nivo-directionNav a:hover {
    border-color: #fff;
}

.nivo-directionNav a:hover i {
    color: #88C057;
    transform: scale(1.25);
}

.nivo-controlNav {
    text-align: center;
    padding: 0;
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 0;
    right: 328px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.nivo-controlNav a {
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: .25s all;
    z-index: 10;
}

.nivo-controlNav a:last-child {
    margin-bottom: 0;
}

.nivo-controlNav a:hover {
    border-color: #fff;
}

.nivo-controlNav a.active {
    background: #fff;
    border-color: #fff;
}

#header-wrapper .content .content-fluid {
    /*    align-items: baseline;*/
}

#header-wrapper .content .content-fluid .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
    position: relative;
    z-index: 10;

}

#header-wrapper .content .content-fluid .text h3 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header-wrapper .content .content-fluid .text h1 {
    font-size: 44px;
    margin: 15px 0;
    white-space: nowrap;
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: animateA 5s linear infinite;
}

@keyframes animateA {
    0% {
        background-color: rgb(255, 255, 255); /* Белый цвет */
    }

    33.33% {
        background-color: rgb(71, 95, 56); /* Зеленый цвет */
    }

    66.66% {
        background-color: rgb(136, 192, 87); /* #88C057 в RGB */
    }

    100% {
        background-color: rgb(255, 255, 255); /* Белый цвет */
    }
}

#header-wrapper .content .content-fluid .text .description {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #9fa4b0;
}

#header-wrapper .content .content-fluid .text .info {}

#header-wrapper .content .content-fluid .text .info .price {
    font-size: 20px;
    margin-right: 20px;
}

#header-wrapper .content .content-fluid .text .info .price span {
    font-size: 30px;
}

#header-wrapper .content .content-fluid .game-list {
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}

#header-wrapper .content .content-fluid .game-list .game {
    height: 300px;
    width: 33.33333333333333%;
    background-position: center;
    background-size: 250%;
    background-repeat: no-repeat;
    margin-right: 15px;
    border-radius: 15px;
    cursor: pointer;
    filter: drop-shadow(2px 4px 6px black);
    transition: .25s all;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 2px solid #475f38;
}

#header-wrapper .content .content-fluid .game-list .game a {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

#header-wrapper .content .content-fluid .game-list .game:hover {
    background-size: 330%;
}

#header-wrapper .content .content-fluid .game-list .game:last-child {
    margin-right: 0;
}

#header-wrapper .content .content-fluid .game-list .game::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, rgba(29, 30, 35, .95) 80%);
    position: absolute;
    transition: .25s all;
}

#header-wrapper .content .content-fluid .game-list .game.hide-on {
    transform: scale(.95);
    opacity: .7;
}

#header-wrapper .content .content-fluid .game-list .game .info {
    z-index: 10;
    width: 100%;
}

#header-wrapper .content .content-fluid .game-list .game .info .icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(35, 37, 42, .48);
    margin-top: auto;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    left: 40%;
}

#header-wrapper .content .content-fluid .game-list .game .info .icon span {
    height: 36px;
    width: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*filter: brightness(0) invert(1);*/
}

#header-wrapper .content .content-fluid .game-list .game .info .name {
    font-weight: 600;
    margin-bottom: 3px;
}

#header-wrapper .content .content-fluid .game-list .game .info .count-products-status {
    font-size: 12px;
    color: #9acd90;
}

#header-wrapper .content .content-fluid .game-list .game .info .price {
    margin-left: auto;
    font-size: 12px;
    color: #9fa4b0;
}

#header-wrapper .content .content-fluid .game-list .game .info .price span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

#header-wrapper .content .content-fluid .game-list .game .name.undetected i,
#header-wrapper .content .content-fluid .game-list .game .cheat-status.undetected {
    color: #48af48 !important;
}

#header-wrapper .content .content-fluid .game-list .game .name.detected i,
#header-wrapper .content .content-fluid .game-list .game .cheat-status.detected {
    color: #cf5555 !important;
}

#header-wrapper .content .content-fluid .game-list .game .name.onupdate i,
#header-wrapper .content .content-fluid .game-list .game .cheat-status.onupdate {
    color: #5597cf !important;
}

#header-wrapper .content .content-fluid .game-list .game .name.useatownrisk i,
#header-wrapper .content .content-fluid .game-list .game .cheat-status.useatownrisk {
    color: #cfbc55 !important;
}

#header-wrapper .advantages {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 10;
    opacity: 0;
    /* Начальная прозрачность */
    transform: translateY(100px);
    /* Начальное положение сдвига вниз */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    /* Анимация прозрачности и сдвига */
}

#header-wrapper .advantages.appear {
    opacity: 1;
    /* Полная прозрачность */
    transform: translateY(0);
    /* Сдвиг в исходное положение */
}




#header-wrapper .advantages .advantage-content {
    display: flex;
    align-items: center;
}

#header-wrapper .advantages .advantage-content .advantage {
    width: 33.333333333333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header-wrapper .advantages .advantage-content .advantage i {
    font-size: 50px;
    color: #88C057;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#header-wrapper .advantages .advantage-content .advantage:hover {
    animation: pulse 2s infinite;
}

#header-wrapper .advantages .advantage-content .advantage p {
    font-weight: 600;
    margin-top: 20px;
    font-size: 16px;
}

#header-wrapper .advantages .advantage-content .advantage.scroll {
    cursor: pointer;
    -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
    animation: ca3_fade_move_down 2s ease-in-out infinite;
}

.advantage.scroll {
    cursor: pointer;
    -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
    animation: ca3_fade_move_down 2s ease-in-out infinite;
    width: 33.333333333333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-block-end: 58px;

}

.advantage-new.scroll .fa-duotone.fa-chevrons-down {
    /* Новый размер иконки */
    font-size: 90px;
}

.advantage-new.scroll {
    webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
    animation: ca3_fade_move_down 2s ease-in-out infinite;
    cursor: pointer;
    /* Другие свойства стилей, которые вы хотите применить */
    width: 200px;
    /* Пример значения ширины */
    height: 200px;
    /* Пример значения высоты */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Центрирование по горизонтали */
}



@-webkit-keyframes ca3_fade_move_down {
    0% {
        -webkit-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
}

@-moz-keyframes ca3_fade_move_down {
    0% {
        -moz-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 20px);
        opacity: 0;
    }
}

@keyframes ca3_fade_move_down {
    0% {
        transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 20px);
        opacity: 0;
    }
}

#header-wrapper .advantages .advantage-content .advantage.scroll i {
    color: #fff;
}



/*==========================
         PRODUCTS
==========================*/
#products.cheats .products .product-wrapper .product {
    position: relative;
    border-radius: 10px
}

#products .products .product-wrapper .product1 {
    position: relative;
    border-radius: 10px;
}

#products.cheats .products .product-wrapper .product .block {
    background: #1c1c1c;
    margin-top: -10px;
    padding: 20px;
    border-radius: 10px;
    background: rgb(54 57 65 / 48%);
    margin-top: -43px;
    backdrop-filter: blur(15px);
    height: 180px;
    transition: .2s all;
    border-left: 2px solid #475f38;
    border-right: 2px solid #475f38;
    border-bottom: 2px solid #475f38;
}

/* #products .products .product-wrapper .product1:hover .block {
    height: 230px;
    transform: translateY(-50px);
} */

#products .products .product-wrapper .product1 .block {
    background: #1c1c1c;
    margin-top: -10px;
    padding: 20px;
    border-radius: 10px;
    background: rgb(54 57 65 / 48%);
    margin-top: -43px;
    backdrop-filter: blur(15px);
    height: 180px;
    transition: .2s all;
    border-left: 2px solid #475f38;
    border-right: 2px solid #475f38;
    border-bottom: 2px solid #475f38;
}

#products .products .product-wrapper .product.non-cheats {
    cursor: default;
}



#products.cheats .products .product-wrapper .product .m-img {
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    object-fit: cover;
    border: 2px solid #475f38;
}

#products .products .product-wrapper .product1 .m-img {
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    object-fit: cover;
    border: 2px solid #475f38;

}


#products.cheats .products .product-wrapper .product .block .icon {
    border-radius: 50%;
    margin-top: -40px;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    margin-bottom: 10px;
    background: rgba(35 37 42 / 70%);
}

#products .products .product-wrapper .product1 .icon {
    border-radius: 50%;
    margin-top: -40px;
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    margin-bottom: 10px;
    background: rgba(35, 37, 42, 1);
}

#products.cheats .products .product-wrapper .product .block .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}



#products.cheats .products .product-wrapper .product:hover .name {
    display: none;
}

products.cheats .products .product-wrapper .product .block .info {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    width: 100%;
}

#products .products .product-wrapper .product .block .info span {
    color: orange;
    font-size: 13px;
}

#products .products .product-wrapper .product .block .info span:nth-child(2) {
    margin: 0 5px;
}

#products.cheats .products .product-wrapper .product .block .info {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

/* #products .products .product-wrapper .product1:hover .info {
    display: none;
} */

#products .products .product-wrapper .product1 .block .info span:last-child {
    color: #0bc40b;
}

#products .products .product-wrapper .product1 .block .info-block {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

#products .products .product-wrapper .product1:hover .block .info-block {
    display: none;
}

#products.cheats .products .product-wrapper .product:hover .info {
    display: none;
}

#products.cheats .products .product-wrapper .product .block .info span.detected,
#product .content .main-info .right-block .status span.detected,
#product .content .main-info .right-block .name.detected i {
    color: #b50e35;
}

#products.cheats .products .product-wrapper .product .block .info span.undetected,
#product .content .main-info .right-block .status span.undetected,
#product .content .main-info .right-block .name.undetected i {
    color: #48af48;
}

#products.cheats .products .product-wrapper .product .block .info span.useatownrisk,
#product .content .main-info .right-block .status span.useatownrisk,
#product .content .main-info .right-block .name.useatownrisk i {
    color: #d8a80b;
}

#products.cheats .products .product-wrapper .product .block .info span.onupdate,
#product .content .main-info .right-block .status span.onupdate,
#product .content .main-info .right-block .name.onupdate i {
    color: #048bc7;
}

.fa-shield-check:before {
    content: "\f2f7";
}

#products .products .product-wrapper .product .cheats {
    display: none;
    width: 100%;
}

#products .products .product-wrapper .product1 .cheats {
    display: none;
    width: 100%;
}

#products .products .product-wrapper .product1 .cheats.more-then-one {
    width: auto;
    margin-right: -10px;
}

#products .products .product-wrapper .product1:hover .cheats {
    display: flex;
}

#products .products .product-wrapper .product:hover .cheats {
    display: flex;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper.morr .cheat .cheat-info .cheat-name {
    font-size: 13px;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat1 .cheat-info1 .cheat-name {
    font-size: 13px;
}



#products .products .product-wrapper .product .cheats .cheat-wrapper {
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
    width: 50%;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper {
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
    width: 50%;
}

#products.cheats .products .product-wrapper {
    width: 25%;
    padding: 20px 25px;
    padding-left: 0;
    padding-top: 0;
    position: relative;
    max-height: 350px;
    min-height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s;

}

#products.cheats .products .product-wrapper:hover {
    transform: scale(1.05);
}


#products .products .product-wrapper {
    width: 25%;
    padding: 20px 25px;
    padding-left: 0;
    padding-top: 0;
    max-height: 350px;
    min-height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s;

}

#products .products .product-wrapper:hover {
    transform: scale(1.05);
}


#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat img {
    height: 30px;
    width: 30px;
    border-radius: 5px;
    margin-right: 5px;
    transition: .4s all;
}

#products .products .product-wrapper .product .cheats .cheat-wrapper .cheat {
    background: rgba(255, 255, 255, .1);
    padding: 10px;
    border-radius: 5px;
    transition: .4s all;
}

#products .products .product-wrapper .product .cheats .cheat-wrapper .cheat1 {
    background: 0;
    padding: 10px;
    border-radius: 5px;
    transition: .4s all;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper.morr .cheat {
    height: 100%;
    justify-content: center;
    font-size: 20px;
    background: 0;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat:hover {
    background: #9e9e9e;
}

#products .products .product-wrapper .product .cheats .cheat-wrapper.morr .cheat .cheat-info .cheat-name {
    font-size: 13px;
}

#products .products .product-wrapper .product .cheats .cheat-wrapper .cheat .cheat-info .cheat-name {
/*    margin-bottom: 5px; */
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat {
    padding: 10px;
    border-radius: 5px;
    transition: .4s all;
    background: rgba(255, 255, 255, .1);
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat:hover {
    background: #9e9e9e;
}






#products .products .product-wrapper .product .cheats .cheat-wrapper .cheat .cheat-info .cheat-price {
    font-size: 11px;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat .cheat-info .cheat-price {
    font-size: 11px;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat .cheat-info .cheat-name {
    margin-bottom: 5px;
    font-size: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat1 .cheat-info .cheat-name {
    margin-bottom: 5px;
    font-size: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#products.cheats .products .product-wrapper .product .block .go-buy {
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
}

#products .products .product-wrapper .product1 .block .price {
    font-size: 22px;
}

#products .products .product-wrapper .product .block .price {
    font-size: 22px;

}

#products.cheats .products .product-wrapper .product .block .go-buy .btn {
    background: 0;
    border: 2px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .2);
    text-transform: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: .3s all;
    padding: 12px 15px;
}

#products.cheats .products .product-wrapper .product:hover .go-buy .btn {
    background: #88c057;
    border-color: #88c057;
    color: #fff;
}

#products.cheats .products .product-wrapper .product:hover .block {
    height: 260px;
    transform: translateY(-80px);
}

#products {
    padding: 80px 0;
}

#products .sort-games {
    margin-bottom: 25px;
}

#products .sort-games .pretitle {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #9fa4b0;
}

#products .sort-games .vl {
    height: 25px;
    width: 1px;
    background: #25242a;
    margin: 0 15px;
}

#products .sort-games .list-cheats {
    max-width: 80%;
    overflow: hidden;
}

#products .sort-games .sort {
    height: 40px;
    padding: 0 12px;
    border-radius: 25px;
    margin-right: 10px;
    background: #1c1b20;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9fa4b0;
    transition: .45s all;
    overflow: hidden;
    position: relative;
}

#products .sort-games .sort[data-filter="*"] {
    margin-right: 0;
}

#products .sort-games .sort::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(left, #6a4ddd, #866bed);
    background: -o-linear-gradient(left, #6a4ddd, #866bed);
    background: linear-gradient(to right, #6a4ddd, #866bed);
    opacity: 0;
    transition: .45s all;
}

#products .sort-games .sort.active,
#products .sort-games .sort:hover {
    background: #25242a;
    color: #fff;
}

#products .sort-games .sort.active::before {
    opacity: 1;
}

#products .sort-games .sort .info {
    position: relative;
    display: flex;
    align-items: center;
}

#products .sort-games .sort img {
    width: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

#products .sort-games .sort-by-cheats .sort:last-child,
#products .sort-games .sort-by-games-filters .sort:last-child {
    margin-right: 0;
}

#products .sort-by-games-filters {
    margin-left: auto;
    width: 20%;
}

#products .sort-by-games-filters .sort i {
    margin-right: 5px;
}

.price i {
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}

#products .sort-by-games-filters .sort[data-sort="popular"]::before {
    background: rgb(249, 175, 0);
    background: -webkit-linear-gradient(43deg, rgba(255, 115, 0, 1) 0%, rgba(249, 175, 0, 1) 100%);
    background: -o-linear-gradient(43deg, rgba(255, 115, 0, 1) 0%, rgba(249, 175, 0, 1) 100%);
    background: linear-gradient(133deg, rgba(255, 115, 0, 1) 0%, rgba(249, 175, 0, 1) 100%);
}

#products .sort-by-games-filters .sort[data-sort="new"]::before {
    background: rgb(0, 185, 249);
    background: -webkit-linear-gradient(43deg, rgba(0, 65, 255, 1) 0%, rgba(0, 185, 249, 1) 100%);
    background: -o-linear-gradient(43deg, rgba(0, 65, 255, 1) 0%, rgba(0, 185, 249, 1) 100%);
    background: linear-gradient(133deg, rgba(0, 65, 255, 1) 0%, rgba(0, 185, 249, 1) 100%);
}

#products .sort-by-games-filters .pretitle {
    margin-left: 15px;
    text-align: right;
}

#cheats-page-wrapper {
    width: 100%;
    border-bottom: 1px solid #3f5033;
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
}

#cheats-page-wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#cheats-page-wrapper .bg img {

    width: 100%;
    opacity: .03;
    object-fit: cover;
}


#cheats-page-wrapper .content {
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: auto;
    opacity: 0;
    transform: translateY(-20px);
    /* Начальное смещение по вертикали */
    animation: slideInFromTop 2s ease forwards, fadeIn 1s ease forwards;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-20px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#cheats-page-wrapper .content .icon {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27292e;
}

#cheats-page-wrapper .content .icon .icon-img {
    width: 36px;
    height: 36px;
    position: relative;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
}

#cheats-page-wrapper .content .icon .icon-img::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
    background: #88C057;
    left: 0;
    top: 0;
}

#cheats-page-wrapper .content .name {
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0;
}

#cheats-page-wrapper .content .description {
    text-align: center;
    font-weight: 400;
    color: #707480;
    line-height: 1.8;
}

#products.cheats {
    padding-top: 60px;
}

#products .pre-info {
    position: relative;
    margin-bottom: 45px;
    z-index: 4;
    display: block;
    text-align: center;
}

#product .pre-info {
    position: relative;
    margin-bottom: 35px;
    z-index: 4;
    display: block;
    text-align: center;
}

#products .title {
    font-size: 30px;
    font-weight: 600;
    display: block;
    text-align: center;
}

#product .title {
    font-size: 30px;
    font-weight: 600;
    display: block;
    text-align: center;
}

#products .title i {
    margin-right: 12px;
}

#products .title.popular i {
    color: #66fcf1;
}

#products .search-block {
    width: 80%;
    padding-left: 257px;
}

.search-block {
    width: 80%;
    padding-left: 257px;
}


#products .search-block .search {
    background: #27292e;
    padding: 20px 15px;
    border-radius: 14px;
    padding-left: 50px;
    position: relative;
    width: 100%;
    margin-top: -20px;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.2s, opacity 0.2s;

    /* Анимация появления слева */
    animation: slideFromLeft 0.5s forwards;
}

#products .search-block .search:hover {
    transform: scale(1.05);
    /* Анимация при наведении */
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-block .search {
    background: #27292e;
    padding: 20px 15px;
    border-radius: 14px;
    padding-left: 50px;
    position: relative;
    width: 100%;
    margin-top: -20px;
    opacity: 0;
    transform: translateX(-100%);
    /* Начальное положение за пределами экрана */
    transition: transform 0.2s, opacity 0.2s;
    /* Добавление transition */

    /* Анимация появления слева */
    animation: slideFromLeft 0.5s forwards;
}

.search-block .search:hover {
    transform: scale(1.05);
    /* Анимация при наведении */
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#products .search-block .search i {
    font-size: 17px;
    color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 20px;
}

.search-block .search i {
    font-size: 17px;
    color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 20px;
}

#products .search-block .search input {
    width: 100%;
}

.search-block .search input {
    width: 100%;
}

#products .products {
    margin-right: -25px;
}


#header-wrapper .carousel .product-wrapper {
    width: 50%;
}


#product-wrapper .products .product-wrapper .popular {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    top: 10px;
    left: 10px;
    z-index: 6;
}

#product-wrapper .products .product-wrapper .popular i {
    margin-right: 8px;
}



#products .products .product-wrapper .popular {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    top: 10px;
    left: 4px;
    animation: pulseA 5s infinite;
    z-index: 6;
}

#products .products .product-wrapper .new-item {
    position: absolute;
    color: orange; /* Обычный цвет текста, чтобы fallback был виден */
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    background: linear-gradient(90deg, red, orange, yellow, green, #ffffff, #b70be5, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbow-text 7s linear infinite;
    top: 10px;
    right: 30px;
    z-index: 6;
    overflow: hidden; /* Обрезаем анимацию по границам блока */
}

#products .products .product-wrapper .new-item1 {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(40px);
    background: rgba(35, 37, 42, .48);
    background: linear-gradient(90deg, red, orange, yellow, green, #ffffff, #b70be5, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbow-text 7s linear infinite;
    top: -180px;
    right: 4px;
    z-index: 6;
    overflow: hidden;
}

@keyframes rainbow-text {
    0% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

#products .products .product-wrapper .popular1 {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    top: -180px;
    left: 4px;
    z-index: 6;
}

#products .products .product-wrapper .popular i {
    margin-right: 8px;
}

#products .products .product-wrapper .popular1 i {
    margin-right: 8px;
}

.fl.ai-c {
    align-items: center;
}


#products .products .product-wrapper .product1:hover .btn-new-style::before {
    opacity: 1;
}

#products .products .product-wrapper .product1:hover .btn-new-style {
    color: #fff;
}




#products.cheats .products .product-wrapper .product .btn-new-style {
    padding: 15px 15px;
    margin-left: auto;
}

#products.cheats .products .product-wrapper .product .block .price-block {
    margin-left: 0;
}







#products .products .product-wrapper .product1 .icon img {
    width: 30px;
    filter: brightness(0) invert(1);
}

#products .products .product-wrapper .product1 .block .global {
    width: 100%;
}

#products .products .product-wrapper .product1 .block .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

/* #products .products .product-wrapper .product1:hover .name {
    display: none;
} */

#products.cheats .products .product-wrapper .product .block .info span:first-child i {
    margin-right: 3px;
}

#products.cheats .products .product-wrapper .product1 .block .info-block .count-products {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 5px;
}

#products .products .product-wrapper .product1 .block .info-block .count-products-status {
    font-size: 12px;
    color: #9acd90;
    font-weight: 500;
}

#products .products .product-wrapper .product1 .block .price-block {
    margin-left: auto;
}

#products .products .product-wrapper .product1 .block .price-block .info {
    color: #848a9a;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}



#products .products .product-wrapper .product1 .cheats .cheat-wrapper .cheat .cheat-info .cheat-price span {
    color: rgba(255, 255, 255, .4);
    margin-right: 5px;
}

/*----------- NON CHEATS -------------*/

#products .products .product-wrapper .product.non-cheats {
    cursor: default;
}

#products .products .product-wrapper .product.non-cheats:hover .name {
    display: block;
}

#products .products .product-wrapper .product.non-cheats:hover .block {
    height: 180px;
    transform: translateY(0);
}

#products .products .product-wrapper .product.non-cheats:hover .info {
    display: block;
}

#products .products .product-wrapper .product.non-cheats:hover .cheats {
    display: none;
}

#products .products .product-wrapper .product.non-cheats .m-img,
#products .products .product-wrapper .product.non-cheats .name,
#products .products .product-wrapper .product.non-cheats .block .icon img {
    opacity: .4;
}

#products .products .product-wrapper .product.non-cheats .block .info span:last-child {
    color: orange;
}

/*----------- /NON CHEATS -------------*/

#products .products .product-wrapper .product1 .block .price span {
    color: rgb(255 255 255);
    font-size: 13px;
}

#products .products .product-wrapper .product .block .price span {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
}


#products .products .product-wrapper .product .block .go-buy {
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
}





#products .products .product-wrapper .product1 .block .go-buy .btn {
    background: 0;
    border: 2px solid rgba(255, 255, 255, .05);
    color: rgb(191 191 201);
    text-transform: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: .3s all;
    padding: 12px 15px;
}

#products .products .product-wrapper .product1 .block .go-buy {
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
}

#products .products .product-wrapper .product1:hover .go-buy .btn {
    background: #88c057;
    border-color: #88c057;
    color: #fff;
}

#product-wrapper {
    padding-top: 130px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

#product-wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#product-wrapper .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#product-wrapper .bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #141416));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, #141416 90%);
    z-index: 2;
}

#product-wrapper .bg img {
    object-fit: cover;
    object-position: top;
    width: 100%;
}

#product-wrapper .content {
    position: relative;
    z-index: 3;
}

#product-wrapper .content .game-logo {
    background: #27292e;
    -ms-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
}

#product-wrapper .content .game-logo img {
    width: 40px;
    filter: brightness(0) invert(1);
}

#product-wrapper .content .description {
    text-align: center;
    line-height: 1.5;
    color: rgba(255, 255, 255, .4);
    font-size: 18px;
    font-weight: 300;
}

#product-wrapper .content .description span {
    color: #88C057;
    font-weight: 600;
}

#header-wrapper .product-wrapper .product .block .icon img,
#products.cheats .products .product-wrapper .product .block .icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: none;
}

#header-wrapper .carousel .product .block .price-block {
    margin-left: 0 !important;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.detected,
#header-wrapper .product-wrapper .product .block .info-block .count-products.detected,
#product .content .main-info .right-block .status span.detected,
#product .content .main-info .right-block .name.detected i {
    color: #b50e35;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.undetected,
#header-wrapper .product-wrapper .product .block .info-block .count-products.undetected,
#product .content .main-info .right-block .status span.undetected,
#product .content .main-info .right-block .name.undetected i {
    color: #48af48;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.useatownrisk,
#header-wrapper .product-wrapper .product .block .info-block .count-products.useatownrisk,
#product .content .main-info .right-block .status span.useatownrisk,
#product .content .main-info .right-block .name.useatownrisk i {
    color: #d8a80b;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.onupdate,
#header-wrapper .product-wrapper .product .block .info-block .count-products.onupdate,
#product .content .main-info .right-block .status span.onupdate,
#product .content .main-info .right-block .name.onupdate i {
    color: #048bc7;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products {
    font-weight: 600;
}

#header-wrapper .product-wrapper .product .block .info-block .count-products i,
#products.cheats .products .product-wrapper .product .block .info-block .count-products i {
    margin-right: 3px;
}

#products.cheats .products .product-wrapper .product .rate {
    color: #d8a80b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
}

#products.cheats .products .product-wrapper .product .block .stars i {
    margin-right: 5px;
    font-size: 18px;
    margin-top: -2px;
}


#products.cheats .products .product-wrapper .product1 .block .cheats .cheat-wrapper .cheat {
    background: rgba(255, 255, 255, .1);
    padding: 7px 10px;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat .icon {
    background: 0;
    height: auto;
    width: auto;
    min-height: auto;
    margin-top: 0;
    min-width: auto;
    border-radius: 0;
    margin-bottom: 0;
    margin-right: 5px;
    font-size: 12px;
    font-family: 'Font Awesome 6 Pro';
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat .cheat-info {
    padding-right: 7px;
    overflow: hidden;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat1 .cheat-info1 {
    padding-right: 7px;
    overflow: hidden;
}



/*==========================
          PRODUCT
==========================*/

.btn-new-style1 {
    border-radius: 15px;
    padding: 10px 15px;
    /* Изменено значение padding для уменьшения размера кнопки */
    cursor: pointer;
    transition: .25s all;
    display: inline-flex;
    /* Изменено значение display на inline-flex */
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: #88C057;
    margin-left: 10px;
    /* Добавлено отступ слева для разделения от текста */
}


#product {
    /*    min-height: 900px; */
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    background-image: url();

}

#product .content {
    position: relative;
    z-index: 6;
}

#product .content .main-info {
    margin-bottom: 60px;
}

#product .content .main-info .left-block {
    min-width: 30%;
    width: 26%;
    padding-right: 20px;
    max-width: 26%;
}



#product .content .main-info .left-block .global {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255, 255, 255, .05);
    margin-bottom: 20px;
}

#product .content .main-info .left-block .global .avatar {
    position: relative;
    width: 100%;
}

#product .content .main-info .left-block .global .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#product .content .main-info .left-block .global .avatar .popular {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 4;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#product .content .main-info .left-block .global .avatar .popular span {
    font-size: 12px;
    background: -webkit-linear-gradient(to right, #f9af00, #ff7300);
    background: -o-linear-gradient(to right, #f9af00, #ff7300);
    background: linear-gradient(to right, #f9af00, #ff7300);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

#product .content .main-info .left-block .global .avatar .popular i {
    margin-right: 5px;
}

#product .content .main-info .left-block .global .blocks .block {
    background: #21252c;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

#product .content .main-info .left-block .global .blocks .block .title {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 300;
}

#product .content .main-info .left-block .global .blocks .block span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#product .content .main-info .left-block .global .blocks .block:last-child {
    margin-bottom: 0;
}

#product .content .main-info .left-block .global .blocks .block.reviews .rate {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffba00;
}

#product .content .main-info .left-block .global .blocks .block.reviews .rate i {
    margin-right: 10px;
}

#product .content .main-info .left-block .global .blocks .block.reviews .avatars {
    margin-right: 30px;
}

#product .content .main-info .left-block .global .blocks .block.reviews .avatars .us {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid #21252c;
    margin-left: -4px;
}

#product .content .main-info .left-block .global .blocks .block.reviews span {
    color: rgba(255, 255, 255, .4);
    margin-right: 5px;
    font-weight: 300;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #2c5dcb;
    margin-right: 15px;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo img,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo img {
    width: 20px;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo img,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo img {
    filter: brightness(0) invert(1);
}

.accept-user-agreement {
    margin: 30px 0;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.accept-user-agreement p {
    color: #808080;
    /* Измените цвет на нужный вам серый */
}

#product .content .main-info .left-block .global .blocks .block.platform .game-logo {
    background: #000000;
}

#product .content .main-info .left-block .carousel {
    flex-direction: column-reverse;
}

#product .content .main-info .left-block .carousel .screens {
    max-height: 270px;
    overflow: hidden;
    flex-direction: row;
    margin-top: 10px;
    padding-bottom: 10px;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar {
    height: 3px;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar-track {
    background: transparent;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar-thumb {
    background: #88C057;
}

#product .content .main-info .left-block .carousel .screens .item {
    height: 80px;
    width: 90px;
    min-width: 74px;
    border-radius: 10px;
    margin-right: 5px;
    transition: .4s all;
    cursor: pointer;
    opacity: .3;
    border: 2px solid rgba(0, 0, 0, 0);
    overflow: hidden;
    position: relative;
}

#product .content .main-info .left-block .carousel .screens .item.active,
#product .content .main-info .left-block .carousel .screens .item:hover {
    /*    border-color: orange;*/
    border-color: #26292e;
    opacity: 1;
}

#product .content .main-info .left-block .carousel .screens .item:last-child {
    margin-bottom: 0;
}

#product .content .main-info .left-block .carousel .screens .item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

#product .content .main-info .left-block .carousel .screens .item .fa-solid.fa-image {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 6;
    background: rgba(0, 0, 0, .4);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 12px;
    opacity: .6;
    transition: .25s all;
}

#product .content .main-info .left-block .carousel .screens .item.active .fa-solid.fa-image,
#product .content .main-info .left-block .carousel .screens .item:hover .fa-solid.fa-image {
    opacity: 1;
}

#product .content .main-info .left-block .carousel .screens .item .video-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #26292e;
}

#product .content .main-info .left-block .carousel .screens .item .video-figure i {
    color: #fff;
    font-size: 16px;
}



#product .content .main-info .left-block .carousel .main-screen img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
    border: 2px solid #475f38;
}

#product .content .main-info .left-block .carousel .main-screen img:hover {
    transform: scale(1.05);
}

#product .content .main-info .left-block .carousel .main-screen span {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background: #88C057;
    z-index: 2;
}

#product .content .main-info .left-block .carousel .main-screen .count {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    background: rgba(35, 37, 42, .38);
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 10px;
    word-spacing: 5px;
    font-weight: 300 !important;
}

#product .content .main-info .left-block .carousel .main-screen .count b {
    font-weight: 300;
}

#product .content .main-info .left-block .carousel .preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 1200px;
    margin: auto;
    height: 100vh;
    width: 100%;
    z-index: -1;
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .5s all;
}

#product .content .main-info .left-block .carousel .preview.show {
    opacity: 1;
    z-index: 8;
}

#product .content .main-info .left-block .carousel .preview .container {
    margin: auto;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#product .content .main-info .left-block .carousel .preview::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
}

#product .content .main-info .left-block .carousel .preview .close {
    font-size: 25px;
    color: #fff;
    background: #21252c;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    margin-left: auto;
    display: inline-flex;
    margin-bottom: 20px;
}

#product .content .main-info .left-block .carousel .preview img {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 15px;
    object-fit: contain;
}


#product .content .main-info .right-block-wrapper {
    background: #212328;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    width: 100%;
}

#product .content .main-info .center-f {
    width: 45%;
    padding-right: 20px;
    opacity: 0;
    /* Начальная прозрачность */
    transform: translateX(-100%);
    /* Начальное положение за пределами экрана слева */
    transition: opacity 0.4s ease-in-out, transform 0.6s ease-in-out;
    /* Анимация прозрачности и сдвига */
}

#product .content .main-info .center-f.appear {
    opacity: 1;
    /* Полная прозрачность */
    transform: translateX(0);
    /* Сдвиг в исходное положение */
}

#product .content .main-info .center-f .system-recom-block {
    padding: 30px;
    border-radius: 10px;
    margin-top: 15px;
    background: #212328;
    padding-bottom: 0;
    transition: transform 0.2s;
    border: 2px solid #475f38;
}

#product .content .main-info .center-f .system-recom-block:hover {
    transform: scale(1.02);
}

#product .content .main-info .center-f .system-recom-block .content-block {
    display: none;
}

#product .content .main-info .center-f .system-recom-block .content-block.active {
    display: block;
}

#product .content .main-info .center-f .system-recom-block .content-block[data-id="1"] {
    max-height: 455px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 20px;
    height: 545px;
}

#product .content .main-info .center-f .system-recom-block .content-block[data-id="reviewsButton"] {
    max-height: 450px;
    overflow: hidden;
    overflow-y: auto;
    height: 546px;
}



#product .content .main-info .center-f .system-recom-block .content-block::-webkit-scrollbar-thumb {
    background: #88C057;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name i {
    margin-right: 5px;
}


#product .content .main-info .center-f .system-recom-block .content-block .desc {

    line-height: 1.5;
    opacity: 0;
    /* Начальная прозрачность элемента */
    max-height: 0;
    /* Начальная высота элемента (скрыт) */
    overflow: hidden;
    /* Скрыть содержимое, превышающее высоту */
    transition: opacity 0.45s ease, max-height 0.45s ease;
    /* Анимация для opacity и max-height */
}

#product .content .main-info .center-f .system-recom-block .content-block .desc.active {
    margin-bottom: 15px;
    opacity: 1;
    border-radius: 20px;
    color: rgba(255, 255, 255, .4);
    max-height: fit-content;
    background: #07100754;
    transition: opacity 0.45s ease, max-height 0.45s ease;
    padding: 15px;
    border: 2px solid #475f38;
}

#product .content .main-info .center-f .system-recom-block .content-block .desc:last-child {
    margin-bottom: 62px;
}

#product .content .main-info .center-f .system-recom-block .pre-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

#product .content .main-info .center-f .system-recom-block .blocks {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper {
    width: 50%;
    padding-right: 20px;
    padding-bottom: 30px;
    transition: transform 0.2s;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:hover {
    transform: scale(1.05);
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:nth-child(5),
#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:last-child {
    padding-bottom: 0;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom {
    display: flex;
    align-items: center;
    height: 60px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom i.main {
    margin-right: 10px;
    font-size: 50px;
    color: #515560;
    width: 50px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info span {
    color: #515560;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info img {
    height: 16px;
    width: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

#product .content .main-info .center-f .system-recom-block .filter-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s {
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.25s ease 0s;
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-weight: 400;
    font-size: 14px;
    background: #475f38;
    cursor: pointer;
    color: rgb(248 249 249);
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s:hover,
#product .content .main-info .center-f .system-recom-block .filter-info .fil-s.active {
    color: #ffffffa6;
    background: #88C057;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s:last-child {
    margin-right: 0;

}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s i {
    margin-right: 5px;
}

#product .content .main-info .right-block {
    position: relative;
    margin-bottom: 20px;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background: #212328;
    border: 2px solid #475f38;
}

#product .content .main-info .right-block.accept-order {
    width: 25%;
    padding: 30px;
    height: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    opacity: 0;
    /* Начальная прозрачность */
    transform: translateX(-100%);
    /* Начальное положение за пределами экрана слева */
    transition: opacity 0.4s ease-in-out, transform 0.6s ease-in-out;
    /* Анимация прозрачности и сдвига */
}

#product .content .main-info .right-block.accept-order.appear {
    opacity: 1;
    /* Полная прозрачность */
    transform: translateX(0);
    /* Сдвиг в исходное положение */
}

#product .content .main-info .right-block.accept-order:hover {
    transform: scale(1.05);
}

#product .content .main-info .right-block .name {
    font-size: 20px;
    font-weight: 600;
}

#product .content .main-info .right-block.accept-order .name {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
}

#product .content .main-info .right-block.accept-order .header-line::before {
    display: none;
}

#product .content .main-info .right-block.accept-order .header-line {
    padding-bottom: 0;
    margin-bottom: 15px;
}

#product .content .main-info .right-block.accept-order .select-region {
    margin-bottom: 20px;
}

#product .content .main-info .right-block.accept-order .btn-check {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: .4s all;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #ffffff0a;
    font-weight: 500;
    color: #515560;
    border-radius: 10px;
    margin-right: 15px;
    width: 50%;
}

#product .content .main-info .right-block.accept-order .btn-check:hover {
    background: #ffffff0a;
}

#product .content .main-info .right-block.accept-order .btn-check.check {
    background: #88C057;
    color: #fff;
}

#product .content .main-info .right-block.accept-order .btn-check:last-child {
    margin-right: 0;
}

#product .content .main-info .right-block.accept-order .btn-check img {
    margin-right: 10px;
}

#product .content .main-info .right-block.accept-order .btn-check {
    position: relative;
}

#product .content .main-info .right-block.accept-order .btn-check p {
    position: absolute;
    top: -65px;
    left: -2px;
    background: #212328;
    border: 1px solid #475f38;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 300;
    opacity: 0;
    transition: .4s opacity;
    transition-delay: .5s, 0s;
    color: #fff;
    min-width: 250px;
}

#product .content .main-info .right-block.accept-order .btn-check:hover p {
    opacity: 1;
}

/* #product .content .main-info .right-block.accept-order .btn-check:hover::before {
    opacity: 1;
} */

/* #product .content .main-info .right-block.accept-order .btn-check::before {
    content: attr(data-text);
    position: absolute;
    top: -65px;
    left: -2px;
    background: #212328;
    border: 1px solid #475f38;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 300;
    opacity: 0;
    transition: .4s opacity;
    transition-delay: .5s, 0s;
    color: #fff;
    min-width: 250px;
}

#product .content .main-info .right-block.accept-order .btn-check[data-id="en"]::before {
    content: 'Активация и работа ключа доступна в EU странах';
} */



#product .content .main-info .right-block.accept-order .pre-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

#product .content .main-info .right-block.accept-order .pre-title span {
    color: #88C057;
}

product .content .main-info .right-block.accept-order .accept-user-agreement {
    margin: 15px 0;
    font-size: 13px;
}

.check-all {
    margin-right: 3px;
}

.check-all {
    cursor: pointer;
    display: flex;
    align-items: center;

}

.check-box.active {
    border: 2px solid #88C057;
}

.check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    margin-right: 5px;
    border: 2px solid rgb(79, 84, 98);

}

.check-box.active .check {
    opacity: 1;

}


.check-box .check {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: .45s all;
    background: #88C057;
    opacity: 0;
}

.link {
    text-decoration: underline;
}

#product .content .main-info .right-block .name i {
    margin-left: 10px;
    color: #22b122;
    font-size: 16px;
}

#product .content .main-info .right-block .functions-block {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

#product .content .main-info .right-block .functions-block .func-name {
    padding: 10px 6px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 300;
    background: #25272c;
    margin-right: 5px;
    color: rgba(255, 255, 255, .4);
}

#product .content .main-info .right-block .name i {
    color: #55CF94 !important;
}

#product .main-screen .popular {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    top: 10px;
    left: 10px;
    z-index: 6;
    max-width: 700px;
}

#product .main-screen .popular i {
    margin-right: 8px;
}

#product .content .main-info .right-block .functions-block .func-name.cheat-status {
    display: flex;
    align-content: center;
    font-weight: 500;
}

#product .content .main-info .right-block .functions-block .func-name.cheat-status i {
    margin-right: 5px;
}

#product .content .main-info .right-block .name.undetected i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.undetected {
    color: #55CF94 !important;
}

#product .content .main-info .right-block .name.detected i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.detected {
    color: #cf5555 !important;
}

#product .content .main-info .right-block .name.onupdate i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.onupdate {
    color: #5597cf !important;
}

#product .content .main-info .right-block .name.useatownrisk i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.useatownrisk {
    color: #cfbc55 !important;
}

#product .content .main-info .right-block .functions-block .func-name:last-child {
    margin-right: 0;
    margin: 6px;
}

#product .content .main-info .right-block .pre-title {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#product .content .main-info .right-block .desc {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
}

#product .content .main-info .right-block .header-line {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#product .content .main-info .right-block .header-line img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

#product .content .main-info .right-block .header-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #27292e;
}

#product .content .main-info .right-block .header-line .game-block {
    font-weight: 500;
}

#product .content .main-info .right-block .header-line .game-block img {
    margin-right: 7px;
    height: 25px;
    width: 25px;
    filter: brightness(0) invert(1);
}

#product .content .main-info .right-block .func {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 40px;
}

#product .content .main-info .right-block .func .m-func i {
    font-size: 12px;
    margin-right: 5px;
}

#product .content .main-info .right-block .func .m-func {
    font-weight: 300;
}

#product .content .main-info .right-block .func span {
    color: rgba(255, 255, 255, .4);
    margin: 0 10px;
    font-size: 15px;
    font-weight: 600;
}

#product .content .main-info .right-block .func .more-func {
    color: orange;
    cursor: pointer;
    text-decoration: underline;
}

#product .content .main-info .right-block .recom .r {
    margin-right: 10px;
}

#product .content .main-info .right-block .recom .r:last-child {
    margin-right: 0;
}

#product .content .main-info .right-block .recom .r i {
    font-size: 18px;
}

#product .content .main-info .right-block .recom .r sup {
    font-size: 11px;
}

#product .content .main-info .right-block .status {
    margin-left: 40px;
}

#product .content .main-info .right-block .status span {
    font-weight: 600;
}

#product .content .main-info .right-block .status span i {
    margin-right: 5px;
}

#product .content .main-info .right-block .status span.undetected {
    color: #22b122;
}

#product .content .main-info .right-block .status span.detected {
    color: #b12222;
}

#product .content .main-info .right-block .status span.updating {
    color: #2264b1;
}

#product .content .main-info .right-block .func,
#product .content .main-info .right-block .recom,
#product .content .main-info .right-block .status {
    height: 70px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 10px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel {
    padding: 15px;
    transition: .4s all;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #ffffff0a;
    font-weight: 500;
    color: #515560;
    border-radius: 10px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .check {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    /*    border: 2px solid rgb(79, 84, 98);*/
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .check::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    transition: .45s all;
    background: rgb(65 69 80);
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active .check::before {
    background: #88C057;
    opacity: 1;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .price {
    margin-left: auto;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active {
    color: #88C057 !important;
    border-color: #88C057 !important;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel:hover {
    background: #ffffff0a;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active .check {
    border-color: #88C057 !important;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel:not(.active):hover .check::before {
    background: rgb(79, 84, 98) !important;
    opacity: 1;
}

#product .content .main-info .right-block .go-buy .price {
    font-size: 20px;
    margin-right: 0px;
    letter-spacing: 2px;
    font-weight: 600;
}

#product .content .main-info .right-block .go-buy .btn {
    text-transform: none;
    background: #88C057;
    width: 100%;
    text-align: center;
}

#product .content .main-info .right-block .go-buy .btn.disable {
    opacity: .6;
}


#product .content .main-info .right-block .report {
    margin-left: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
}


#product .content .main-info .right-block .oferta a {
    color: #88C057;
    text-decoration: underline;
}

#product .content .main-info .right-block .report .pretitle i {
    margin-right: 8px;
    margin-left: auto;
}

#product .content .main-info .right-block .report .pretitle {
    margin-bottom: 12px;
}


#product .content .main-info .right-block .go-buy .report .btn {
    background: #21252c;
    border: 2px solid rgba(64, 73, 88, .4);
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: .4s all;
}

#product .content .main-info .right-block .go-buy .report .btn:hover {
    color: #fff;
    background: #404958;
}

.disabled {
    opacity: 0.6;
    /* Уменьшаем прозрачность для блока */
    pointer-events: none;
    /* Отключаем взаимодействие с элементами внутри блока */
    /* Другие стили, чтобы подчеркнуть неактивное состояние */
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.disable,
#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.disable:hover {
    cursor: default !important;
    border: 2px solid #ffffff0a !important;
    color: #515560 !important;
    background: 0 !important;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.disable .check::before {
    background: rgb(65 69 80) !important;
}

#product .content .main-info .right-block .go-buy .btn.disable {
    background: rgb(65 69 80) !important;
    pointer-events: none !important;
    cursor: default !important;
    animation: pulseA 2s infinite;
}

#product .content .main-info .right-block .warning {
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    background: #21252c;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    padding-left: 80px;
    overflow: hidden;
    border: 2px solid #272c34;
}

#product .content .main-info .right-block .warning i {
    margin-right: 20px;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272c34;
    color: orange;
}

#product .content .info-page .title {
    font-size: 25px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
}

#product .content .info-page .title span {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    font-size: 18px;
}

#product .content .info-page .functions {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    width: 50%;
    padding-right: 65px;
}

#product .content .info-page .functions .func-name {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

#product .content .info-page .functions .func-name i {
    margin-right: 8px;
    font-size: 15px;
}

#product .content .info-page .functions .desc.active {
    opacity: 1;
}

#product .content .info-page .functions .desc {
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0;
    display: none;
    transition: .45s all;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name i:last-child {
    margin-left: 8px;
    font-size: 12px;
    transition: .45s all;
    color: #ffffff;

}

#product .content .main-info .center-f .system-recom-block .content-block .func-name.active i:last-child {
    transform: rotate(180deg);
    color: #ffffff;
}


#product .content .info-page {
    width: 100%;
    padding-left: 0px;
    margin-left: auto;
    transition: transform 0.2s;
}



#product .content .info-page .reviews {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Для равномерного распределения блоков по ширине */
    gap: 5px;
    transform: translateY(-100%);
    animation: fadeInCenter 0.5s ease-in-out forwards;
}

#product .content .info-page .reviews .send-review {
    margin-bottom: 40px;
    background: #212328bf;
    overflow: hidden;
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    padding-left: 90px;
    width: 100%;
    font-size: 17px;
}

#product .content .info-page .reviews .send-review i.fa-solid.fa-message {
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26292e;
}

#product .content .info-page .reviews .send-review .rate-f {
    color: #ffba00;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

#product .content .info-page .reviews .send-review .rate-l {
    margin-left: auto;
    margin-right: 15px;
}

#product .content .info-page .reviews .send-review .rate-l i {
    margin-right: 5px;
    color: #ffba00;
}

#product .content .info-page .reviews .send-review .btn {
    font-size: 14px;
    text-transform: none;
    color: #fff;
    background: #475f38;

    cursor: pointer;
    transition: .4s all;
    padding: 15px;
}

#product .content .info-page .reviews .send-review .btn:hover {
    background: #88C057;
}

#product .content .info-page .reviews .review-block {
    padding: 20px;
    width: calc(50% - 15px);
    border-radius: 15px;
    background: #202126;
    border-bottom: 1px solid rgba(64, 73, 88, .4);
    margin-bottom: 20px;
    transition: transform 0.2s;
    border: 2px solid #475f38;
}

#product .content .info-page .reviews .review-block:hover {
    transform: scale(1.05);
}

/*#product .content .info-page .reviews .review-block:last-child {
    margin-bottom: 0;
    border: none;
} */

#product .content .info-page .reviews .review-block .user {
    margin-bottom: 20px;
}

#product .content .info-page .reviews .review-block .user img {
    border-radius: 10px;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    object-fit: cover;
    margin-right: 15px;
}

#product .content .info-page .reviews .review-block .user .info .nickname {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

#product .content .info-page .reviews .review-block .user .info .date {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    font-size: 13px;
}

#product .content .info-page .reviews .review-block .rate {
    color: #ffba00;
}

#product .content .info-page .reviews .review-block .rate i:not(:last-child) {
    margin-right: 5px;
}

#product .content .info-page .reviews .review-block .message {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    line-height: 1.4;
}

#product .content i.icon-func {
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
}

#product .rate-stars {
    margin-top: 20px;
}

#product .rate-stars .pre-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .4);
}

#product .rate-stars .rate {
    color: #ffba00;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#product .rate-stars .rate i {
    margin-left: 5px;
    font-size: 14px;
}

#products .garant-statistic {
    border-top: 2px solid hsla(0, 0%, 100%, .04);
    border-bottom: 2px solid hsla(0, 0%, 100%, .04);
    padding: 60px 60px;
    display: flex;
    margin: 80px auto -80px;
    justify-content: space-around;
    max-width: 1300px;
    animation: pulseA 5s infinite;
    border: 2px solid #475f38;
    border-radius: 15px;
}



#products .garant-statistic .garant-statistic-box {
    display: flex;
    align-items: center;
}

#products .garant-statistic .garant-statistic-box span {
    font-weight: 800;
    font-size: 40px;
    margin-right: 15px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: animateA 6s ease-in-out infinite;
    transition: color 0.5s ease; /* Добавлено */
}

.garant-statistic-box p {
    color: #8C8F99;
    font-weight: 600;
    font-size: 16px;
}

/*==========================
         POLITIC
==========================*/

#product-wrapper.terms {
    height: auto;
    padding-bottom: 60px;
}

#product-wrapper.terms .terms {
    margin-top: 15px;
    color: #e5e5e5;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromTop 2s ease forwards, fadeIn 1s ease forwards;
}

#product-wrapper .terms .statuses-card {
    justify-content: space-around;
    margin: 30px auto 40px;
    display: flex;
    padding: 20px 0px;
    width: 100%;
    max-width: 1022px;
    background: #202126;
    white-space: nowrap;
    flex-wrap: wrap;
    font-weight: 800;
    border-radius: 15px;
    border: 2px solid #475f38;
}

#product-wrapper .terms .statuses-card .statuses-card-item {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

#product-wrapper .terms .statuses-card .statuses-card-item i {
    margin-right: 8px;
}

#product-wrapper .terms .statuses-card .statuses-card-item .detected {
    color: #b50e35;
}

#product-wrapper .terms .statuses-card .statuses-card-item .risk {
    color: #d8a80b;
}

#product-wrapper .terms .statuses-card .statuses-card-item .undetected {
    color: #48af48;
}

#product-wrapper .terms .statuses-card .statuses-card-item .update {
    color: #048bc7;
}

#product-wrapper .terms .statuses-card .statuses-card-item i {
    margin-right: 8px;
}



#product-wrapper.terms .terms p {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    line-height: normal;
}

#product-wrapper.terms .terms span,
#product-wrapper.terms .terms a {
    font-weight: 600;
    color: #88C057;
}

#product-wrapper.terms .terms a {
    color: orange;
}

#product-wrapper .cheats-container {
    opacity: 0;
    transform: translateY(-100%);
    animation: fadeInCenter 0.5s ease-in-out forwards;
    margin-top: 2vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    max-width: 1403px;
}

#product-wrapper .cheats-container .cheats-cards {
    background: #202126;
    border-radius: 15px;
    width: 410px;
    transition: transform 0.2s;
}

#product-wrapper .cheats-container .cheats-cards:hover {
    transform: scale(1.05);
    /* Увеличиваем размер при наведении на 5% (или другое значение по вашему выбору) */
}

#product-wrapper .cheats-container .cheats-cards .content {
    padding: 17px;
    display: flex;
    border: 2px solid #475f38;
    border-radius: 10px;
    overflow: hidden;
}


#product-wrapper .cheats-container .cheats-cards .content img {
    border-radius: 8px;
    width: 188px;
    height: 168px;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info {
    font-weight: 800;
    font-size: 10px;
    margin-left: 10px;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll {
    max-height: 135px;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
    padding-right: 0;
    margin-right: 80px;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-container {
    display: flex;
    margin-top: 5px;
    padding-left: 2px;

    padding-right: 2px;

}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-container:hover {
    background: #475f38;
    border-radius: 5px;


}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll i {
    margin-right: 8px;
}

/* Statuses */
#product-wrapper .cheats-container .cheats-cards .content .game-info .undetected {
    color: #48af48;

}

#product-wrapper .cheats-container .cheats-cards .content .game-info .detected {
    color: #d10534;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .onupdate {
    color: #048bc7;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .useatownrisk {
    color: #d8a80b;
}

/* statuses */

/*==========================
          TICKETS
==========================*/

#tickets {
    min-height: 300px;
    margin-top: 30px;
}

.bg-wrap-ticket {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: url();

    z-index: -1;
}

#product-wrapper.tickets .game-logo i {
    font-size: 28px;
}

#tickets .content.select .block {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    height: 270px;
    transition: transform 0.2s;
}

#tickets .content.select .block:hover {
    transform: scale(1.05);
}

#tickets .content.select .vl {
    height: 150px;
    width: 1px;
    background: rgba(35, 37, 42, .48);
    margin: 0 30px;
}

#tickets .content.select .block .icon {
    font-size: 45px;
    margin-bottom: 15px;
}

#tickets .content.select .block .title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#tickets .content.select .block .description {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

#tickets .content.select .block .go-send .input {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    background: rgba(35, 37, 42, .48);
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    padding-right: 15px;
}

#tickets .content.select .block .go-send .input i {
    height: 100%;
    width: 60px;
    min-width: 60px;
    background: rgb(39, 43, 52, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    margin-right: 15px;
    font-size: 20px;
}

#tickets .content.select .block .go-send .input input {
    height: 100%;
    width: 100%;
}

#tickets .content.select .block .go-send .btn {
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tickets .content.select .block .go-send .btn i {
    font-size: 16px;
}

#tickets .content.select .block.create-new .icon i {
    color: #88C057;
}

#tickets .content.select .block.show-history .icon i {
    color: #88C057;
}

#tickets .content.show-tickets {
    padding-top: 150px;
    min-height: 700px;
}

#tickets .content.show-tickets .title-header {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

#tickets .content.show-tickets .title-header .auth {
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: normal;
}

#tickets .content.show-tickets .title-header .auth span {
    color: rgba(255, 255, 255, .3);
    margin-left: 5px;
}

#tickets .content.show-tickets .title-header .auth span a {
    font-weight: 300;
    cursor: pointer;
    text-decoration: underline;
}

#tickets .content.show-tickets table td .status-ticket {
    font-weight: 600;
}

#tickets .content.show-tickets table td .status-ticket.wait-accept {
    color: orange;
}

#tickets .content.show-tickets table td .status-ticket.open,
#tickets .content.show-tickets table td .accept-ticket-success {
    color: #0ddd25;
    font-weight: 600;
}

#tickets .content.show-tickets table td .status-ticket.reply {
    color: orange;
}

#tickets .content.show-tickets table td .status-ticket.solved {
    color: #0ddd25;
}

#tickets .content.show-tickets table td .status-ticket.refused {
    color: #e01414;
}

/*==========================
          FOOTER
==========================*/

footer {
    position: relative;
    z-index: 12;
    overflow: hidden;
    background: transparent;
    margin-top: 30px;
}

footer .content {
    padding: 50px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(35, 37, 42, .48);
    position: relative;
    z-index: 5;
}

footer .content .col {
    width: 20%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

footer .content .col:last-child {
    padding-right: 0;
}

footer .content .col .title {
    color: #51555f;
    margin-bottom: 15px;
    font-weight: 400;
}

footer .content .col a {
    font-weight: 400;
    margin-bottom: 10px;
}

footer .content .col a:hover {
    color: #88C057 !important;
}

footer .content .col .logo:hover {
    text-decoration: none;
}

footer .content .col .logo span {
    background: linear-gradient(to left, #6a4ddd, #866bed);
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    text-transform: uppercase;
}

footer .content .col .contacts {
    margin-top: 20px;
}

footer .content .col .contacts a {
    margin-bottom: 0 !important;
    margin-right: 10px;
    font-size: 24px;
    padding: 10px;
}

footer .content .col .contacts a:first-child {
    padding-left: 0;
}

footer .content .col .contacts a:hover {
    color: #88C057 !important;
    text-decoration: none;
}

footer .content .col .contacts a:last-child {
    margin-right: 0;
}

footer .content .col:first-child {
    width: auto;
}

footer .content .col:nth-child(2) {
    width: 40%;
    margin-right: 70px;
}

footer .content .col a:not(.logo) {
    margin-bottom: 15px;
    color: #dadada;
}

footer .content .col:first-child .logo img {
    width: 120px;
}

footer .content .col:nth-child(2) .desc {
    font-size: 13px;
    color: #848a9a;
    font-weight: 400;
    line-height: 1.8;
}

footer .after-footer {
    padding: 30px 0;
    padding-top: 40px;
    word-spacing: 4px;
    position: relative;
    z-index: 1;
}

footer .after-footer a,
footer .after-footer a:hover {
    font-weight: 800;
    background: #88C057;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
}

footer .after-footer .fl.ai-c img {
    margin-right: 15px;
}

footer .after-footer .fl.ai-c img:last-child {
    margin-right: 0;
}

/*==========================
       CHEATS STATUS
==========================*/

#products.cheats-status {
    padding-top: 130px;
}

#products.cheats-status .product::before {
    opacity: .7 !important;
}

#products.cheats-status .product::after {
    content: '';
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e)) !important;
    background: linear-gradient(1deg, rgba(33, 36, 41, 0) 0%, #191a1e 80%) !important;
    opacity: .7;
    position: absolute;
    transform: skewX(0) !important;
}

#products.cheats-status .product .blocks-wrap {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
}

#products.cheats-status .products .product-wrapper .product {
    padding: 15px;
}

#products.cheats-status .products .product-wrapper .product .name::before,
#products.cheats-status .products .product-wrapper .product::before {
    display: none;
}

#products.cheats-status .products .product-wrapper .product .game-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 0px 20px 20px;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: -2;
    height: 100%;
    width: 100%;
    display: block;
}

#products.cheats-status .products .product-wrapper .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    display: block;
}

#products.cheats-status .products .product-wrapper {
    min-height: 400px;
    max-height: 400px;
}

#products.cheats-status .products .product-wrapper .product .name {
    width: auto;
    height: auto;
    display: block;
}

#products.cheats-status .products .product-wrapper .product .game-name {
    position: relative;
    z-index: 2;
    width: 70%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
}

#products.cheats-status .products .product-wrapper .product .game-name span {
    margin-top: -4px;
}


#products.cheats-status .product1 .block-wrap.game {
    border-radius: 15px;
    background: rgb(51, 54, 60, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 5px;
    margin-bottom: 15px !important;
}


#products.cheats-status .product .blocks-wrap .list-wrap {
    height: 260px;
    overflow-y: auto;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar {
    width: 5px;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar-track {
    background: transparent;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #2a313c;
}

#products.cheats-status .product .blocks-wrap .block-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#products.cheats-status .product .blocks-wrap .block-wrap:last-child {
    margin-bottom: 0;
}

#products.cheats-status .product .blocks-wrap .block-wrap .icon {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#products.cheats-status .product .blocks-wrap .block-wrap .icon img {
    border-radius: 12px;
}

#products.cheats-status .product .blocks-wrap .block-wrap.game .icon {
    margin-right: 5px;
}

#products.cheats-status .product .icon.cheat {
    background: 0;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

#products.cheats-status .product .icon.cheat img {
    height: 100%;
    width: 100%;
    filter: none;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap {
    display: flex;
    flex-direction: column;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .name {
    margin-bottom: 5px;
}

#products.cheats-status .product .blocks-wrap .block-wrap.game .info-wrap .name {
    margin-bottom: 2px;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .count-cheats,
#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status {
    font-size: 12px;
    color: burlywood;
}

#products .products .product-wrapper .product1 .cheats .cheat-wrapper {
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
    width: 50%;
}



#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.undetected {
    color: #48af48;
    background: rgba(72, 175, 72, .2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.detected {
    color: #d10534;
    background: rgba(177, 0, 41, 0.2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.onupdate {
    color: #048bc7;
    background: rgba(4, 139, 199, .2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.useatownrisk {
    color: #d8a80b;
    background: rgba(216, 168, 11, .2);
}

/*==========================
        TRANSLATE
==========================*/

.translate-overlay {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 15;
    background: #27292e;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.translate-overlay .select {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s all;
}

.translate-overlay .select:hover,
.translate-overlay .select.active {
    background: #475f38;
}

/*==========================
            FAQ
==========================*/

#product-wrapper.tickets.terms.faq .content .description {
    font-size: 35px;
    font-weight: 100;
    color: #fff;
    letter-spacing: 5px;
    margin-top: 20px;
}

#product-wrapper.tickets.terms.faq .content .description-support {
    font-size: 50px;
    color: #fff;
    letter-spacing: 3px;
    margin-top: 30px;
}

#product-wrapper.tickets.terms.faq .content .description-support1 {
    font-size: 30px;
    color: #fff;
    letter-spacing: 3px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-left: 30px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInFromLeft 0.5s ease-in-out forwards;
}

.faq-blocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInFromLeft 0.5s ease-in-out forwards;
}

.faq-blocks .faq-wrapper .faq .fagname {
margin-left: 30px;
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
    width: 50%;
    padding: 30px;
    padding-left: 0;
    padding-top: 0;
}

.faq-blocks .faq-wrapper {
    width: 50%;
    padding: 30px;
    padding-left: 0;
    padding-top: 0;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    background: #202126;
    transition: transform 0.2s;
    /* Добавляем плавный переход для эффекта */
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq:hover {
    transform: scale(1.05);
    /* Увеличиваем размер при наведении на 5% (или другое значение по вашему выбору) */
}

.faq-blocks .faq-wrapper .faq {
    display: flex;
    padding: 40px;
    border-radius: 15px;
    background: #202126;
    transition: transform 0.2s;
    /* justify-content: space-evenly; */
}

.faq-blocks .faq-wrapper .faq:hover {
    transform: scale(1.05);
    /* Увеличиваем размер при наведении на 5% (или другое значение по вашему выбору) */
}

.faq-blocks .faq-wrapper .faq img {
    margin-right: 20px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq img {
    margin-right: 20px;
}



#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .prename {
    color: #9fa4b0;
    margin-bottom: 10px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .name {
    font-size: 18px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .btn-new-style {
    margin-left: auto;
}

/*==========================
          OTHERS
==========================*/

.fl {
    display: flex;
}

.fl.fw-w {
    flex-wrap: wrap;
}

.fl.fw-nw {
    flex-wrap: nowrap;
}

.fl.fd-c {
    flex-direction: column;
}

.fl.fd-r {
    flex-direction: row;
}

.fl.ai-s {
    align-items: flex-start;
}

.fl.ai-c {
    align-items: center;
}

.fl.ai-e {
    align-items: flex-end;
}

.fl.jc-s {
    justify-content: flex-start;
}

.fl.jc-c {
    justify-content: center;
}

.fl.jc-sb {
    justify-content: space-between;
}

.fl.jc-e {
    justify-content: flex-end;
}

/*==========================
        MOBILE MENU
==========================*/

.mobile-menu {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
    margin-left: 40px;
}

.mobile-menu span {
    background: #adadad;
    border-radius: 5px;
    height: 3px;
    margin: 5px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu span:nth-of-type(1) {
    width: 50%;
}

.mobile-menu span:nth-of-type(2) {
    width: 100%;
}

.mobile-menu span:nth-of-type(3) {
    width: 75%;
}

.mobile-menu input[type="checkbox"] {
    display: none;
}

.mobile-menu.active span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(7px, 1px);
}

.mobile-menu.active span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}

.mobile-menu.active span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(18px, -7px) rotatez(45deg);
}

.mobile-menu {
    display: none;
    z-index: 99999;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: #151418;
    padding-top: 40%;
    height: 100%;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: -6;
    transition: .45s all;
    opacity: 0;
}



.mobile-navbar a {
    font-size: 25px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .4);
}

.mobile-navbar a:last-child {
    margin-bottom: 0;
}

.mobile-navbar a.active,
.mobile-navbar a:hover {
    color: #fff;
}

/*==========================
     MEDIA MOBILE ADAPT
==========================*/

/*@media screen and (max-width: 1920px) and (max-height: 1080px) {
    
.nivo-directionNav a {
    border: 2px solid #88C057;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s all;
    font-size: 20px;
    right: 168px !important;
    top: auto;
    z-index: 40;
}

.nivo-controlNav {
    text-align: center;
    padding: 0;
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 0;
    right: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#header-wrapper .content {
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transition: .7s all;
    z-index: 10;
}

.container {
    width: 86%;
    padding: 0 60px;
    margin: auto;
}

.container-reviews {
    width: 86%;
    padding: 0 60px;
    margin: auto;
}

#header-wrapper .content .content-fluid .game-list {
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}

.nivo-directionNav {
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

}

@media screen and (max-width: 1920px) {
    
.nivo-directionNav a {
    border: 2px solid #88C057;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s all;
    font-size: 20px;
    right: 168px !important;
    top: auto;
    z-index: 40;
}

.nivo-controlNav {
    text-align: center;
    padding: 0;
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 0;
    right: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#header-wrapper .content {
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transition: .7s all;
    z-index: 10;
}

.container {
    width: 86%;
    padding: 0 60px;
    margin: auto;
}

.container-reviews {
    width: 86%;
    padding: 0 60px;
    margin: auto;
}

#header-wrapper .content .content-fluid .game-list {
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}

.nivo-directionNav {
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#header-wrapper::before {
    content: '';
    width: 100%;
    height: 1080px;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, #1d1e23 90%);
    position: absolute;
    z-index: 7;
}

#header-wrapper::after {
    content: '';
    width: 100%;
    height: 1080px;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #191a1e));
    background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, #1d1e23 120%);
    position: absolute;
    z-index: 7;
}

}

*/

@media screen and (max-width: 1600px) and (max-height: 900px) {
    body {
        -webkit-touch-callout: none;
        /* iOS Safari */
        -webkit-user-select: none;
        /* Chrome/Safari/Opera */
        -khtml-user-select: none;
        /* Konqueror */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        user-select: none;
        /* Non-prefixed version, currently not supported by any browser */
    }

    .modal-wrapper.show,
    .modal-wrapper .modal.show {
        z-index: 999;

    }

    .container-reviews {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .container-droduct {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 90vh;
        width: 100%;
        top: 0;
        right: 72px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 55px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 900px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 900px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    #products .search-block1 {
        width: 0;
        padding-left: 0;

    }

    .modal-wrapper {
        padding-top: 100px;
    }

    #tickets .content.select .block {
        width: 100%;
    }

    #tickets .content.select .vl {
        display: none;
    }

    #tickets .content.select {
        flex-direction: column;
    }


}

@media screen and (max-width: 1600px) {
    body {
        -webkit-touch-callout: none;
        /* iOS Safari */
        -webkit-user-select: none;
        /* Chrome/Safari/Opera */
        -khtml-user-select: none;
        /* Konqueror */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        user-select: none;
        /* Non-prefixed version, currently not supported by any browser */
    }

    .modal-wrapper.show,
    .modal-wrapper .modal.show {
        z-index: 999;

    }

    .container-reviews {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .container-droduct {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 90vh;
        width: 100%;
        top: 0;
        right: 72px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 55px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 900px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 900px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    #products .search-block1 {
        width: 0;
        padding-left: 0;

    }

    .modal-wrapper {
        padding-top: 100px;
    }

    #tickets .content.select .block {
        width: 100%;
    }

    #tickets .content.select .vl {
        display: none;
    }

    #tickets .content.select {
        flex-direction: column;
    }


}


@media screen and (max-width: 1440px) and (max-height: 900px) {
    /*  body {
    } */

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
        border: 3px solid #88C057;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 13px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 811px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 811px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */

    #header-wrapper .content {
        width: 100%;
        height: 100vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 98vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #header-wrapper {
        position: relative;
        height: 100vh;
        width: 100%;
    }

    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 100px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 40px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 98vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    /*    #products .products .product-wrapper {
        width: 33.3333333333333%;
    }
    
    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    } */

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        max-width: 1045px;
    }
}



@media screen and (max-width: 1366px) {
    /*  body {
    } */

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 770px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 770px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */

    #header-wrapper .content {
        width: 100%;
        height: 98vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 98vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 100px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 40px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 98vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    /*
    #products .products .product-wrapper {
        width: 33.3333333333333%;
    } 
    
    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    } */

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        max-width: 1045px;
    }
}

@media screen and (max-width: 1366px) and (max-height: 768px) {
    /*  body {
    } */

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 770px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 770px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */

    #header-wrapper .content {
        width: 100%;
        height: 98vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 98vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 100px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 40px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 98vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    /*
    #products .products .product-wrapper {
        width: 33.3333333333333%;
    } 
    
    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    } */

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        max-width: 1045px;
    }
}

@media screen and (max-width: 1280px) and (max-height: 1024px) {
    /*  body {
    } */

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 720px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 720px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */

    #header-wrapper .content {
        width: 100%;
        height: 66vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 66vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 100px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 40px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 66vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    #header-wrapper {
        position: relative;
        height: 80vh;
        width: 100%;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 220px;
        width: 80%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    #products .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        max-width: 1045px;
    }
}


@media screen and (max-width: 1280px) and (max-height: 720px) {
    /*  body {
    } */

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 720px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 720px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */

    #header-wrapper .content {
        width: 100%;
        height: 93vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 93vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 100px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 40px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 90vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 220px;
        width: 80%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    #products .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        max-width: 1045px;
    }
}

@media screen and (max-width: 1280px) {
    /*  body {
    } */
    #header-wrapper .content .content-fluid .game-list .game {
        height: 300px;
        width: 33.33333333333333%;
        background-position: center;
        background-size: 355%;
        background-repeat: no-repeat;
        margin-right: 15px;
        border-radius: 10px;
        cursor: pointer;
        filter: drop-shadow(2px 4px 6px black);
        transition: .25s all;
        position: relative;
        overflow: hidden;
        padding: 4px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border: 2px solid #475f38;
    }
    
    
header .navbar-nav .menu a {
    padding: 7px;
    position: relative;
    font-weight: 300;
    transition: all 0.15s ease;
}

#header-wrapper .content .content-fluid .game-list .game .info .name {
    font-weight: 300;
    margin-bottom: 3px;
}
    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 660px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        position: relative;
        width: 100%;
        height: 655px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 34px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 600;
        margin-top: 20px;
        font-size: 12px;
    }

    #product .content .main-info .right-block-wrapper {
        position: relative;
        padding-bottom: 10px;
        background: #212328;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .container {
        width: 100%;
        padding: 0 60px;
        margin: auto;
    }

    #products:not(.cheats) {
        padding-top: 10px;
        padding-bottom: 0px;
    }

    .container-droduct {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0px 60px;
        margin: auto;
    }

    #products .pre-info {
        position: relative;
        padding: 40px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .-navigation-links {
        position: relative;
        margin-bottom: 20px;
        color: #464850;
        z-index: 4;
    }

    #header-wrapper .advantages {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 20;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 620px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 720px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    /*#header-wrapper {
        display: none;
    }

    #header-wrapper {
        padding: 130px 0;
    } */
#header-wrapper {
    position: relative;
    height: 67vh;
    width: 100%;
}
    #header-wrapper .content {
        width: 100%;
        height: 70vh;
    }

    .nivo-directionNav {
        position: absolute;
        width: 100%;
        height: 70vh;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .nivo-directionNav a {
        border: 2px solid #88C057;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .25s all;
        font-size: 20px;
        right: 60px !important;
        top: auto;
        z-index: 40;
    }

    #header-wrapper .content .content-fluid .game-list {
        width: 65%;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        padding-right: 70px;
    }

    #header-wrapper .content .content-fluid .text h1 {
        font-size: 30px;
        margin: 15px 0;
        white-space: nowrap;
    }

    .nivo-controlNav {
        text-align: center;
        padding: 0;
        position: absolute;
        height: 70vh;
        width: 100%;
        top: 0;
        right: 77px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    header .navbar-nav .contacts a {
        padding: 0px 3px;
        font-size: 20px;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        padding-left: 220px;
        width: 80%;
    }

    #products .search-block1 {
        width: 100%;
        padding-left: 0px;

    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    #products .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #products.cheats .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #product .content .main-info {
        flex-wrap: wrap;
    }

    #product .content .main-info .left-block {
        width: 100%;
        margin: 39px auto;
        max-width: 100%;
        padding-right: 0;
    }

    #product .content .main-info .center-f {
        width: 50%;
        padding-right: 20px;
    }

    #product .content .main-info .right-block.accept-order {
        width: 50%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }

    .mobile-navbar.show {
        padding: 45px;
    }

        #product-wrapper .cheats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: wrap;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        max-width: 1403px;
    }
    
    #product-wrapper .cheats-container .cheats-cards {
    background: #202126;
    border-radius: 15px;
    width: 430px;
    transition: transform 0.2s;
}

#product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll {
    max-height: 135px;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
    padding-right: 0;
    margin-right: 100px;
}
}

@media screen and (max-width: 960px) {
    /*   body {
    
    } */
    
    .search-block .search {
    background: #27292e;
    padding: 20px 15px;
    border-radius: 14px;
    padding-left: 50px;
    position: relative;
    width: 100%;
    margin-top: 10px;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.2s, opacity 0.2s;
    animation: slideFromLeft 0.5s forwards;
}

.search-block {
    width: 100%;
    padding: 10px;
}

    #products:not(.cheats) {
        padding-top: 60px;
    }

    .container {
        padding: 30px;
        width: 100%;
    }

    #header-wrapper .advantages .advantage-content .advantage p {
        font-weight: 500;
        margin-top: 20px;
        font-size: 9px;
    }

    .container-droduct {
        width: 100%;
        padding: 0 30px;
        margin: auto;
    }



    #product-wrapper.tickets.terms.faq .content .description-support {
        font-size: 50px;
        color: #fff;
        letter-spacing: 3px;
        margin-top: 30px;
    }

    #product {
        min-height: 900px;
        padding-top: 150px;
        padding-bottom: 30px;
        position: relative;
        background-image: url();
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .search-block1 {
        padding-left: 351px;
        width: 100%;
    }

    #product .content .main-info .right-block.accept-order {
        width: 100%;
        margin-top: 20px;
    }

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 509px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    #header-wrapper .bg-person {
        display: none;
    }

    #header-wrapper .content {
        width: 100%;
    }

    #header-wrapper {
        display: none;
    }

    #main_page #cheats-page-wrapper {
        display: block;
    }

    #header-wrapper::before {
        content: "";
        width: 100%;
        height: 540px;
        left: 0px;
        top: 0px;
        background: linear-gradient(rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 90%);
        position: absolute;
        z-index: 7;
    }

    #header-wrapper::after {
        content: "";
        width: 100%;
        height: 540px;
        left: 0px;
        top: 0px;
        background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, rgb(29, 30, 35) 120%);
        position: absolute;
        z-index: 7;
    }

    .nivo-directionNav {
        display: none;
    }

    .nivo-controlNav {
        display: none;
    }

    #header-wrapper .content .content-fluid .game-list {
        display: none;
    }

    #header-wrapper .content .content-fluid .text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: -450px;
        width: 60%;
        position: relative;
        z-index: 10;
        animation: pulse 2s infinite;
    }

    #header-wrapper .content .content-fluid .text:hover {}

    #header-wrapper .advantages {
        position: absolute;
        bottom: -150px;
        width: 100%;
        z-index: 20;
    }

    #products .pre-info {
        position: relative;
        padding: 30px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    .translate-overlay {
        position: fixed;
        left: 0;
        top: 40%;
        z-index: 15;
        background: #27292e;
        overflow: hidden;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    #products .sort-games {
        flex-direction: column;
    }

    #products .sort-by-games-filters {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    #products .sort-by-games-filters .pretitle {
        margin-left: 0;
    }

    #product .content .info-page .reviews {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    #product .content .info-page .reviews .review-block {
        padding: 20px;
        width: auto;
        border-radius: 15px;
        background: rgb(32, 33, 38);
        border-bottom: 1px solid rgba(64, 73, 88, 0.4);
        margin-bottom: 20px;
        transition: transform 0.2s ease 0s;
    }

    #products .sort-by-games-filters .list {
        justify-content: flex-start;
    }

    #products .products .product-wrapper {
        width: 50%;
    }

    #products.cheats .products .product-wrapper {
        width: 50%;
    }

    #product .content .main-info {
        flex-direction: column;
    }

    #product .content .main-info .left-block {
        width: 100%;
        padding-right: 0;
        padding-bottom: 35px;
    }

    #product .content .main-info .right-block-wrapper {
        background: #212328;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    #product .content .main-info .left-block .global {
        display: none;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        height: 500px;
    }

    #product .content .info-page {
        width: 100%;
        padding-left: auto;
        margin-left: auto;
        margin-top: 30px;
    }

    .container-reviews {
        width: 100%;
        padding: 0 30px;
        margin: auto;
    }

    #product .content .main-info .center-f {
        width: 100%;
        padding-right: 0;
    }

    .modal-wrapper .modal.tickets-views .ticket-view .chat .msg {
        max-width: 60%;
    }

    .modal-wrapper .modal.tickets-views .ticket-view .chat .msg.full {
        width: 60%;
    }

    .mobile-menu {
        display: flex;
    }

    header {
        position: fixed;
        width: 100%;
        z-index: 55;
        border-bottom: none;
        backdrop-filter: none;
    }

    header.show-preview {
        backdrop-filter: none;
        border-bottom: none;
    }

    .mobile-navbar {
        left: auto;
        width: auto;
        height: auto;
        border-radius: 15px;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 200px;
    }

    .mobile-navbar.show {
        opacity: 1;
        z-index: 45;
        position: fixed;
        left: auto;
        padding-top: 110px;
        width: auto;
        height: auto;
    }

    header .navbar-nav .menu {
        display: none;

    }

    #cheats-page-wrapper .content {
        width: 100%;
    }

    #product .content .main-info .right-block {
        width: 100%;
    }

        #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: auto;
        grid-column-gap: 10px;
        grid-row-gap: 14px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 1403px;
    }
    
        #product-wrapper .cheats-container .cheats-cards {
        background: #202126;
        border-radius: 15px;
        width: 350px;
        transition: transform 0.2s;
    }


    #product-wrapper .terms .statuses-card {
        margin: 54px auto 0;
        display: grid;
        padding: 21px 31px;
        width: 100%;
        max-width: 1022px;
        background: #202126;
        white-space: nowrap;
        font-weight: 800;
        border-radius: 8px;
        justify-items: center;
    }

}

@media screen and (max-width: 600px) {
    /* body {
    } */
#product-wrapper .cheats-container .cheats-cards {
        background: #202126;
        border-radius: 15px;
        width: 370px;
        transition: transform 0.2s;
    }
        #product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll {
        max-height: 135px;
        overflow: auto;
        width: 100%;
        box-sizing: border-box;
        padding-right: 0;
        margin-right: 40px;
    }
    
    #header-wrapper .content {
        height: 84vh;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
    }
.cookie-banner {
    position: fixed;
    bottom: 30px;
    background-color: #1d1e23;
    color: white;
    left: 60px;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    z-index: 10000 !important;
    width: auto;
    box-shadow: 0 4px 8px rgba(71, 95, 56, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}


.marquee {
    display:none;
}
    .container {
        padding: 30px;
        width: 100%;
    }

    .container-product {
        width: 100%;
        padding: 0 30px;
        margin: auto;
    }

    .container-reviews {
        width: 100%;
        padding: 0 30px;
        margin: auto;
    }

    .games-center {
        margin-top: -53px;
    }

    #products .search-block1 {
        padding-left: 5px;
        width: 100%;
    }


    #products .sort-games .list-cheats {
        max-width: 50%;
        overflow-x: auto;
    }

    #product .content .main-info .left-block .frameshow {
        width: 100%;
        height: 302px;
        top: 30px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;

    }

    #products .sort-games .sort {
        min-width: 120px;
    }



    .btn-new-style1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #475f38;
        opacity: 1;
        transition: .25s all;
    }
    
    #products .garant-statistic {
    border-top: 2px solid hsla(0,0%,100%,.04);
    border-bottom: 2px solid hsla(0,0%,100%,.04);
    padding: 60px 60px;
    display: flex;
    margin: 80px auto -80px;
    /* max-width: 1300px; */
    animation: pulseA 5s infinite;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
}

    #products .title {
        margin-bottom: 15px;
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .pre-info {
        position: relative;
        padding: 30px 0px;
        z-index: 4;
        display: block;
        text-align: center;
    }

    #products .sort-games .list-cheats::-webkit-scrollbar {
        width: 0px;
        height: 0;
        background: transparent
    }

    #products .sort-games .list-cheats::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
        background: transparent;
        border-radius: 0;
    }

    #products .sort-games .list-cheats::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #5527E1
    }

    #products .products .product-wrapper {
        width: 100%;
    }

    #products.cheats .products .product-wrapper {
        width: 100%;
    }

    footer .content {
        flex-wrap: wrap;
    }

    footer .content .col {
        width: 50%;
        padding-right: 0;
    }

    footer .content .col:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer .after-footer {
        flex-direction: column;
    }

    footer .after-footer div:first-child {
        margin-bottom: 20px;
    }

    #header-wrapper {
        display: none;
    }

    .modal-wrapper .modal {
        width: 100%;
    }

    #products:not(.cheats) {
        padding-top: 100px;
    }

    #header-wrapper .content .title {
        font-size: 20px;
    }

    #header-wrapper .content .title span {
        align-items: baseline;
    }

    #header-wrapper .content .title span img {
        width: 25px;
    }

    body {
        overflow-x: hidden;
    }

    .mobile-navbar {
        left: auto;
        width: auto;
        height: auto;
        border-radius: 15px;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 200px;
    }

    .mobile-navbar.show {
        opacity: 1;
        z-index: 45;
        position: fixed;
        left: auto;
        padding-top: 110px;
        width: auto;
        height: auto;
    }

    .mobile-navbar a {
        text-align: center;
        font-size: 20px;
    }

    #product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    #product .content .info-page .functions {
        width: 100%;
    }

    #product .content .main-info .right-block .functions-block {
        flex-wrap: wrap;
    }

    #product .content .main-info .right-block .functions-block .func-name {
        margin-bottom: 10px;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 15px;
    }

    #header-wrapper .content h3 {
        font-size: 13px;
    }

    #products .sort-games .sort-by-cheats {
        width: 100%;
    }


    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .btn {
        margin: auto;
        margin-top: 15px;
    }

    header .navbar-nav .contacts {
        display: none;
    }

    .mobile-menu {
        margin-left: auto;
    }



    #product .content .main-info .left-block .carousel {
        flex-direction: column-reverse;
    }

    #product .content .main-info .left-block .carousel .screens {
        direction: initial;
        flex-direction: row;
        padding-left: 0;
        padding-top: 20px;
        max-width: 100%;
        overflow: hidden;
        overflow-x: auto;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 10px;
    }

    #product .content .main-info .left-block .carousel .screens .item {
        margin-bottom: 0;
        margin-right: 10px;
        min-width: 60px;
    }

    #product .content .main-info .left-block .carousel .screens::-webkit-scrollbar {
        height: 5px;
    }

    #product .content .main-info .right-block .func {
        display: none;
    }

    footer .after-footer {
        font-size: 12px;
    }

    #bg {
        height: 200%;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        height: 304px;
        border-radius: 10px;
    }

    footer .content .col:nth-child(2) {
        width: 100%;
        margin-right: 0;
    }

    #cheats-page-wrapper {
        padding-top: 100px;
    }

    #product {
        background: 0;
        padding-bottom: 30px;
    }

    #product .content .main-info .left-block {
        min-width: 100%;
    }

    #product .content .main-info .left-block .carousel .screens .item {
        min-width: 80px;
    }

    #product .content .main-info .left-block .carousel .screens {
        padding-top: 0;
    }

    #product .content .info-page .reviews {
        width: 130%;
        display: flex;
        flex-direction: column;
        position: relative;
        left: 0;

    }

    #product .content .info-page .reviews .review-block {
        padding: 20px;
        width: auto;
        border-radius: 15px;
        background: #202126;
        border-bottom: 1px solid rgba(64, 73, 88, .4);
        margin-bottom: 20px;
        transition: transform 0.2s;
    }

    #product .content .info-page {
        width: 100%;
        padding-left: auto;
        margin-left: auto;
        margin-top: 40px;
    }

    #product .content .info-page .reviews .send-review .rate-l {
        display: none;
    }

    #product .content .info-page .reviews .send-review .btn {
        margin-left: auto;
    }

    #product .content .main-info .right-block-wrapper {
        flex-direction: column;
    }

    #product .content .main-info .right-block.accept-order {
        margin-bottom: 0;
        padding: 30px;
        margin-top: 30px;
        width: 100%;
    }

    #product .content .main-info .right-block.accept-order::before {
        display: none;
    }

    #product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:nth-child(5) {
        padding-bottom: 30px;
    }

    #product .content .main-info .right-block .header-line {
        flex-direction: column;
    }

    #product .content .main-info .right-block .header-line .game-block {
        margin-top: 15px;
    }

    #product .content .main-info .center-f {
        padding-right: 0;
    }

    #product .content .main-info .center-f .system-recom-block .filter-info .fil-s {
        margin-right: 0;
        font-size: 11px;
    }

    #product-wrapper .content .description {
        font-size: 14px;
    }

    #product-wrapper {
        height: 350px;
    }


    #product-wrapper.terms .terms {
        margin-top: -20px;
        color: #e5e5e5;
        line-height: 1.5;
    }


    #product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: auto;
        grid-column-gap: 50px;
        grid-row-gap: 14px;
        max-width: 1045px;
    }

    #product-wrapper .terms .statuses-card {
        margin: 54px auto 0;
        display: grid;
        padding: 21px 31px;
        width: 100%;
        max-width: 1022px;
        background: #202126;
        white-space: nowrap;
        font-weight: 800;
        border-radius: 8px;
        justify-items: center;
    }

    #product-wrapper .cheats-container .cheats-cards .content {
        Padding: 15px;
        display: flex;
    }
}


/* ADDITIONS */
.title-carousel {
    display: flex;
    align-items: center;
    position: absolute;
    top: -50px;
    margin-left: 30vw;
    background: #27292e;
    padding: 10px 15px;
    border-radius: 10px;
    color: orange;
}

.title-carousel i {
    margin-right: 10px;
}



#product-wrapper.terms {
    padding-top: 100px;
    padding-bottom: 35px;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

@media screen and (max-width: 320px) {
    
     #product-wrapper .cheats-container .cheats-cards .content .game-info .cheat-scroll {
        max-height: 108px;
        overflow: auto;
        width: 100%;
        box-sizing: border-box;
        padding-right: 0;
        margin-right: 40px;
    }
    
        #product-wrapper .cheats-container .cheats-cards {
        background: #202126;
        border-radius: 15px;
        width: 320px;
        transition: transform 0.2s;
        margin: auto;
    }
    
    #product-wrapper .cheats-container .cheats-cards .content img {
    border-radius: 8px;
    width: 141px;
    height: 126px;
}
#product-wrapper .cheats-container {
        margin-top: 3vw;
        display: grid;
        grid-template-columns: auto;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 50px;
        /* grid-row-gap: 14px; */
        max-width: 1045px;
        margin: auto;
    }  
}