@charset "UTF-8";
:root {
  --size-1: 8px;
  --size-2: 16px;
  --size-3: 24px;
  --size-4: 48px;
  --header-h: 82px;
  --container-header-w: 1390px;
  --container-w: 1250px;
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 24px;
  --rounded-xxl: 48px;
  --shadow-1: 0px 4px 8px 0px rgb(195 69 150 / 0.3);
  --shadow-2: 0px 4px 8px 0px rgba(254, 181, 44, 0.3);
  --shadow-active-1: 0px 4px 24px 0px rgba(69, 195, 104, 0.5);
  --shadow-active-2: 0px 4px 24px 0px rgba(254, 181, 44, 0.5);
  --color-ui-1: linear-gradient(180deg, #5b59d0, #233f90);
  --color-ui-2: linear-gradient(180deg, #fcf45f, #fead25);
  --color-ui-1-d: linear-gradient(180deg, #42ad50, #1b7225);
  --color-ui-2-d: linear-gradient(180deg, #d6cf48, #e49b1e);
  --active-el: #f8be00;
  --light: #fff;
  --light-100: #f6f7f8;
  --light-200: #dadadd;
  --light-300: #878c9a;
  --light-400: #f3f4f4;
  --light-100-h: #eceef0;
  --light-200-h: #c9c9cc;
  --light-400-h: #eaebeb;
  --dark: #000;
  --dark-100: #2c2e33;
  --dark-200: #3a3a3a;
  --dark-300: #303238;
  --dark-400: #666b7a;
  --danger: #f34d58;
  --danger-h: #c7323c;
}
@keyframes fadeFromTop {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeFromTopFull {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes maxHeight {
  0% {
    max-height: 0;
  }
  to {
    max-height: 2000px;
  }
}
@keyframes maxHeightInverse {
  0% {
    max-height: 2000px;
  }
  to {
    max-height: 0;
  }
}
@keyframes search {
  0% {
    opacity: 0;
    transform: scaleX(0.6) translateY(200%);
  }
  to {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}
@keyframes langs {
  0% {
    opacity: 0;
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes langsClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(200%);
  }
}
@keyframes header {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buble {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes bigEntrance {
  0% {
    opacity: 0.2;
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
  }
  30% {
    opacity: 1;
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
  }
  45% {
    opacity: 1;
    transform: scale(0.98) rotate(1deg) translateX(0) translateY(0);
  }
  60% {
    opacity: 1;
    transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0);
  }
  75% {
    opacity: 1;
    transform: scale(0.99) rotate(1deg) translateX(0) translateY(0);
  }
  90% {
    opacity: 1;
    transform: scale(1.01) rotate(0deg) translateX(0) translateY(0);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0) translateY(0);
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes fullWidth {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
body {
  background: #f2ebfa;
  box-sizing: border-box;
  color: var(--dark);
  font-family: Montserrat, sans-serif;
}
h1 {
  font-size: 36px;
  font-weight: 800;
}
h2 {
  color: var(--dark);
  font-size: 32px;
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
p,
ul {
  margin: 0px;
  padding: 10px;
  

}
li {
  margin-top: 15px;
  margin-left: 45px;
}
p {
  color: var(--dark);
}
.core_content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-top: 36px;
}
.core_content h4 {
  font-size: 21px;
  font-weight: 400;
  line-height: 100%;
  margin-top: 20px;
}
button {
  background: none;
  border: none;
}
button path {
  transition: 0.3s;
}
a {
  text-decoration: none;
}
.zoom_img {
  cursor: zoom-in;
}
.screenbox {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-top: var(--size-3);
  padding: 0;
  width: 100%;
}
.screenbox picture {
  cursor: zoom-in;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.screenbox figcaption {
  font-style: 14px;
  font-style: italic;
  font-weight: 500;
  margin-top: 10px;
}
.screenbox img {
  max-width: 60%;
}
.full_modal,
.full_modal__content {
  align-items: center;
  display: flex;
  justify-content: center;
}
.full_modal__content {
  aspect-ratio: 16/9;
  height: 100%;
  max-width: 90%;
  overflow: hidden;
  width: 100%;
}
.full_modal__content img {
  cursor: zoom-in;
  transition: 0.3s;
  width: 100%;
}
.full_modal__content.zoom {
  background: #353535;
  border-radius: var(--rounded-md);
  height: 100%;
  max-height: 60vh;
  max-width: 60vw;
  width: 100%;
}
.full_modal__content.zoom img {
  width: 100%;
}
.full_modal__box {
  align-items: center;
  aspect-ratio: 16/9;
  border-radius: var(--rounded-md);
  display: flex;
  justify-content: center;
  max-height: 80vh;
  overflow: hidden;
  transition: 0.3s;
}
.full_modal__box img {
  border-radius: var(--rounded-md);
  width: 100%;
}
.full_modal.active .full_modal__content {
  animation: fadeFromTop 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.txt {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.txt b {
  font-weight: 700;
}
header {
  animation: header 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  background: var(--light);
  border-bottom: 1px solid #f1f3f5;
  height: var(--header-h);
  left: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header,
header .container {
  align-items: center;
  display: flex;
}
header .container {
  margin: 0 auto;
  max-width: var(--container-header-w);
}
section:not(:last-child) {
  margin-bottom: var(--size-3);
}
.content_wrap p {
  margin-top: var(--size-2);
}
.title_section {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.6s ease;
}
.title_section.visible {
  opacity: 1;
  transform: translateY(0);
}
.core_content .title_section {
  margin-top: var(--size-2);
}
.core_content p {
  font-weight: 400;
  line-height: 24px;
}
.container {
  margin: 0 auto;
  max-width: var(--container-w);
  width: 100%;
}
.content_wrap {
  padding: var(--size-3);
}
.block .container {
  background: var(--light);
  border-radius: var(--rounded-lg);
  box-shadow: 0 5px 0 0 #dadadd;
  box-sizing: border-box;
  overflow: hidden;
}
.rating_stars {
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
  display: flex;
}
.rating_star {
  background: url(../images/star_full.svg) 50%/100% no-repeat;
  height: 20px;
  transform: translateY(-2px);
  width: 20px;
}
.rating_star.half {
  background: url(../images/star_half.svg) 50%/100% no-repeat;
}
.rating_star.empty {
  background: url(../images/star_empty.svg) 50%/100% no-repeat;
}
.btn {
  align-items: center;
  border: none;
  border-radius: var(--rounded-xxl);
  cursor: pointer;
  display: flex;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  min-width: 80px;
  padding: 13px 25px;
}
.btn,
.btn span {
  transition: 0.3s;
}
.btn:hover span {
  transform: scale(0.95);
}
.btn_1 {
  background: var(--color-ui-1);
  box-shadow: var(--shadow-1);
  color: var(--light);
}
.btn_1:hover {
  box-shadow: var(--shadow-active-1);
}
.navigation__controls {
  -moz-column-gap: var(--size-3);
  column-gap: var(--size-3);
  display: flex;
}
.full_modal {
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: 0.2s ease-out;
  z-index: 100;
}
.full_modal.active {
  opacity: 1;
  pointer-events: auto;
}
.full__close_btn {
  cursor: pointer;
  position: absolute;
  right: 5rem;
  top: 50px;
}
.full__close_btn:hover path {
  stroke: var(--danger);
}
.navigation__menu {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 4.5rem;
  width: 100%;
}
.navigation .navigation__wrap {
  align-items: center;
  -moz-column-gap: 32px;
  column-gap: 32px;
  display: flex;
  list-style: none;
}
.navigation a {
  color: var(--light-300);
  text-decoration: none;
  transition: 0.3s;
}
.navigation .navigation__wrap > li:hover a {
  color: var(--dark);
}
.header__burger {
  cursor: pointer;
  display: none;
  height: 24px;
  position: relative;
  width: 36px;
  z-index: 3;
}
.header__logo {
  max-height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__burger span {
  top: 11px;
}
.header__burger span,
.header__burger:after,
.header__burger:before {
  background-color: var(--dark);
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 100%;
}
.header__burger:after,
.header__burger:before {
  content: "";
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger.active span {
  transform: scale(0);
}
.header__burger.active:before {
  top: 11px;
  transform: rotate(45deg);
}
.header__burger.active:after {
  bottom: 11px;
  transform: rotate(-45deg);
}
input[type="text"]::-ms-clear,
input[type="text"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.plus_minus {
  -moz-column-gap: var(--size-2);
  column-gap: var(--size-2);
  display: flex;
  margin-top: var(--size-2);
}
.plus_minus__block {
  background: #f2ebfa;
  border-radius: 16px;
  padding: var(--size-2);
}
.plus_minus__title {
  align-items: center;
  -moz-column-gap: var(--size-1);
  column-gap: var(--size-1);
  display: flex;
}
.plus_minus__title span {
  font-size: 18px;
  font-weight: 600;
}
.plus_minus__list {
  list-style: none;
  margin-top: var(--size-2);
}
.plus_minus__item {
  align-items: flex-start;
  display: flex;
  line-height: 150%;
  position: relative;
  margin-left: 10px;
  margin-top: 0px;
}

.plus_minus__item:not(:first-child) {
  margin-top: 0.75rem;
}
.plus_minus__item:before {
  background: url(../images/plus_stroke.svg) 50%/100% no-repeat;
  content: "";
  display: inline-block;
  margin-left: 6px;
  margin-right: 14px;
  min-height: 16px;
  min-width: 16px;
  transform: translateY(20%);
}
.minus .plus_minus__item:before {
  background: url(../images/minus_stroke.svg) 50%/100% no-repeat;
}
#footer {
  background: var(--dark-100);
  color: var(--light);
  margin-top: 70px;
  padding: 2.5rem 0;
}
.footer__desc {
  margin-top: 3.125rem;
  text-align: center;
}
.footer__desc a {
  color: #c0c0c2;
  text-decoration: underline;
}
.footer__partners {
  -moz-column-gap: 4.375rem;
  column-gap: 4.375rem;
  display: flex;
  justify-content: center;
  margin-top: var(--size-4);
}
.footer__txt {
  color: #c0c0c2;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.to_top_btn {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  bottom: 50px;
  cursor: pointer;
  height: 45px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 60px;
  transform: translateY(-100%);
  transition: 0.3s;
  width: 45px;
  z-index: 5;
}
.to_top_btn:hover {
  background: rgba(0, 0, 0, 0.4);
}
.to_top_btn img {
  filter: invert(100%);
  transform: rotate(180deg);
  width: 50%;
}
a.btn {
  box-sizing: border-box;
  text-align: center;
}
.info_wrap {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  row-gap: var(--size-3);
}
.info_wrap .btn {
  box-sizing: border-box;
  min-width: 185px;
  width: 100%;
}
.info_platforms {
  -moz-column-gap: var(--size-2);
  column-gap: var(--size-2);
}
.info_platforms,
.rating_full {
  align-items: center;
  display: flex;
}
.rating_full {
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: var(--size-2);
}
.header__wrap {
  align-items: center;
  display: flex;
}
#search_results .content_wrap,
#sitemap .content_wrap {
  min-height: 32vh;
}
.plus_minus__block {
  box-sizing: border-box;
  width: 50%;
}
#promo {
  margin-top: 34px;
}
.promo__offer_img {
  animation: bigEntrance 1.2s ease-out forwards;
  border: 6px solid var(--light);
  border-radius: var(--rounded-lg);
  display: inline-block;
  height: 174px;
  overflow: hidden;
  width: 174px;
}
#promo .content_wrap {
  margin-top: -180px;
}
.promo__offer_wrap {
  color: var(--light);
  -moz-column-gap: 2.625rem;
  column-gap: 2.625rem;
  display: flex;
}
.promo__offer_content {
  margin-top: 1.75rem;
}
.promo__offer_content h1 {
  animation: fadeFromTopFull 0.4s forwards;
  font-size: 36px;
  font-weight: 800;
}
.promo__info {
  display: flex;
  margin-top: var(--size-2);
}
.promo__info_totals {
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 2rem;
  row-gap: var(--size-3);
  width: 100%;
}
.totals__item_title {
  color: var(--dark-400);
  font-size: 14px;
  font-weight: 500;
}
.totals__item_value {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  margin-top: 4px;
}
#promo .txt {
  margin-top: 1.75rem;
}
#brands .title_section {
  margin-top: var(--size-4);
}
#totals {
  margin-top: var(--size-3);
}
.promo__banner {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.promo__banner img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
.promo__banner:after {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 4%, 0.67) 77.43%);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 35%;
  left: 0;
  position: absolute;
  width: 100%;
}
#view .content_wrap {
  padding-bottom: var(--size-4);
}
#summary .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 60px;
  padding-right: 60px;
}
#reviews .content_wrap {
  padding-bottom: var(--size-4);
}
#not_found {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 65vh;
  text-align: center;
}
#not_found h1 {
  animation: rubberBand 1.2s forwards;
  font-size: 7rem;
  font-weight: 600;
}
@media (max-width: 1450px) {
  :root {
    --container-header-w: 95%;
  }
}
@media (max-width: 1330px) {
  :root {
    --container-w: 95%;
  }
}
@media (max-width: 1250px) {
  .full_modal__content.zoom {
    max-height: 70vh;
    max-width: 80vw;
  }
  .header__burger {
    display: block;
  }
  header {
    border-bottom: 2px solid #eee;
    box-sizing: border-box;
  }
  .navigation__menu {
    background: var(--light);
    box-sizing: border-box;
    flex-direction: column;
    height: calc(100vh - var(--header-h));
    justify-content: flex-start;
    left: 0;
    margin: 0;
    max-width: 300px;
    overflow-y: scroll;
    padding-top: 50px;
    pointer-events: none;
    position: fixed;
    row-gap: 1.25rem;
    top: var(--header-h);
    transform: translateX(-100%);
    transition: 0.4s ease;
    z-index: 99;
  }
  .navigation__menu.active {
    box-shadow: 3px 10px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transform: translateX(0);
  }
  .navigation .navigation__wrap {
    flex-direction: column;
  }
  .navigation {
    order: 2;
  }
  .navigation__controls {
    box-sizing: border-box;
    flex-direction: column;
    order: 1;
    padding: 0 1.5rem;
    row-gap: 1.25rem;
    width: 100%;
  }
  header .container {
    justify-content: space-between;
  }
  .header__wrap {
    -moz-column-gap: var(--size-3);
    column-gap: var(--size-3);
    height: 100%;
  }
  .navigation {
    width: 100%;
  }
  .navigation .navigation__item,
  .navigation ul {
    box-sizing: border-box;
    width: 100%;
  }
  .navigation .navigation__item {
    border-bottom: 1px solid var(--light-100);
    padding: 0.9375rem 1.5rem;
  }
}
@media (max-width: 1215px) {
  .promo__banner {
    height: 380px;
  }
  .promo__offer_content h1 {
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 1100px) {
  #promo {
    margin-top: var(--size-3);
  }
  .promo__banner {
    height: 330px;
    overflow: hidden;
  }
}
@media (max-width: 925px) {
  #summary .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 920px) {
  .full_modal__content.zoom {
    max-height: 70vh;
    max-width: 90vw;
  }
  .promo__banner {
    height: 280px;
  }
  .promo__offer_content h1 {
    font-size: 32px;
  }
  .promo__info_totals {
    margin-left: 0;
  }
  .promo__info {
    flex-direction: column;
    row-gap: var(--size-3);
  }
  .promo__info .promo__info_wrap {
    -moz-column-gap: var(--size-3);
    column-gap: var(--size-3);
    flex-direction: row;
  }
  .promo__info .btn {
    max-width: 280px;
  }
}
@media (max-width: 890px) {
  .footer__partners {
    -moz-column-gap: normal;
    column-gap: normal;
    justify-content: space-around;
  }
}
@media (max-width: 800px) {
  .promo__banner {
    height: 230px;
  }
  .screenbox img {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .full_modal__content.zoom {
    max-height: 70vh;
    max-width: 95vw;
  }
  .full__close_btn {
    right: 25px;
  }
  .plus_minus {
    flex-direction: column;
    row-gap: var(--size-2);
  }
  .plus_minus__block {
    width: 100%;
  }
  :root {
    --container-w: 92%;
    --container-header-w: 92%;
  }
}
@media (max-width: 750px) {
  #view .info_wrap .btn {
    min-width: 220px;
  }
  #summary .container {
    box-sizing: border-box;
    padding: 0;
    width: var(--container-w);
  }
  #summary .content_wrap {
    padding: var(--size-3);
  }
}
@media (max-width: 680px) {
  .promo__banner img {
    width: 125%;
  }
}
@media (max-width: 660px) {
  .promo__offer_wrap {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  #brands .title_section {
    margin-top: 32px;
  }
  .title_section {
    font-size: 26px;
  }
  .footer__partners {
    flex-wrap: wrap;
    gap: var(--size-3);
    justify-content: center;
  }
}
@media (max-width: 590px) {
  .promo__offer_content h1 {
    text-shadow: none;
  }
  .full_modal__content.zoom {
    max-height: 60vh;
  }
  .promo__banner {
    height: 190px;
  }
  .rating_full {
    margin-top: 6px;
  }
  .promo__info_totals {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo__offer_wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .promo__offer_content {
    color: #242424;
    margin-top: 6px;
  }
  .promo__info .promo__info_wrap {
    -moz-column-gap: normal;
    column-gap: normal;
    justify-content: space-between;
  }
  #promo .content_wrap {
    margin-top: -175px;
  }
  .promo__offer_content h1 {
    font-size: 28px;
  }
}
@media (max-width: 580px) {
  #not_found h1 {
    font-size: 5rem;
  }
}
@media (max-width: 550px) {
  .promo__info .promo__info_wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 490px) {
  .footer__desc {
    margin-top: 24px;
  }
  .content_wrap {
    padding: var(--size-2);
  }
  .screenbox img {
    max-width: 100%;
  }
}
@media (max-width: 460px) {
  #sitemap .content_wrap {
    padding-bottom: 36px;
  }
  #not_found {
    min-height: 50vh;
  }
  .navigation .navigation__item,
  .navigation__controls {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
  .promo__banner {
    height: 150px;
  }
  #promo .content_wrap {
    margin-top: -125px;
  }
  .promo__offer_content h1 {
    font-size: 24px;
  }
  .promo__offer_content {
    margin-top: 10px;
  }
  ol {
    padding-left: 20px;
  }
  ol ol {
    padding-left: 10px;
  }
  .promo__info_totals {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo__info .btn {
    max-width: 100%;
  }
  .promo__offer_img {
    height: 120px;
    width: 120px;
  }
  .promo__offer_img img {
    width: 100%;
  }
  .navigation__menu {
    max-width: 100%;
  }
  .header__wrap {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .navigation a {
    color: var(--dark);
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .container {
    max-width: 95%;
  }
  .block .container {
    border-radius: 0;
    max-width: 100%;
  }
  .block .container .promo__banner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 120%;
  }
  #footer .container {
    max-width: var(--container-w);
  }
  #brands .title_section {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-w);
  }
  #summary .content_wrap {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
  }
}
@media (max-width: 440px) {
  .full_modal__content.zoom {
    max-height: 50vh;
  }
  .navigation__menu {
    row-gap: 0.9rem;
  }
  .promo__offer_content h1,
  .title_section {
    font-size: 22px;
  }
}
@media (max-width: 420px) {
  .to_top_btn {
    bottom: 30px;
    right: 50px;
  }
  p {
    text-align: justify;
  }
  .full__close_btn {
    top: 90px;
  }
}
@media (max-width: 400px) {
  .plus_minus__item:before {
    margin-left: 0;
  }
}
@media (max-width: 360px) {
  .plus_minus__item {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .to_top_btn {
    right: 30px;
  }
}
@media (max-width: 340px) {
  .block .container .promo__banner img {
    width: 130%;
  }
  .navigation .navigation__item,
  .navigation__controls {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #4caf50;
  color: white;
}

tr:nth-child(odd) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

@media screen and (max-width: 600px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  th {
    position: sticky;
    top: 0;
  }

  tr {
    margin-bottom: 15px;
  }

  td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.showcase .showcase-item {
  display: flex;
  justify-content: space-between;
  background-color: #f2ebfa;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 12px;
}
@media (max-width: 750px) {
  .showcase .showcase-item {
    flex-direction: column;
  }
}
.showcase .showcase-item .showcase-content {
  display: flex;
}
@media (max-width: 750px) {
  .showcase .showcase-item .showcase-content {
    flex-direction: column;
  }
}
.showcase .showcase-item .showcase-content img.showcase-logo {
  width: 150px;
  height: 150px;
  margin-right: 16px;
  border-radius: 8px;
}
@media (max-width: 750px) {
  .showcase .showcase-item .showcase-content img.showcase-logo {
    margin-bottom: 15px;
    margin-right: 0;
    width: 200px;
    height: 200px;
    margin-left: 82px;
  }
}
.showcase .showcase-item .showcase-content .showcase-name {
  width: 518px;
}
@media (max-width: 750px) {
  .showcase .showcase-item .showcase-content .showcase-name {
    width: unset;
  }
}
.showcase .showcase-item .showcase-content .showcase-name .name {
  margin-top: 0;
  margin-bottom: 1px;
  color: #8F8F95;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 17.05px;
}
.showcase .showcase-item .showcase-content .showcase-name .award {
  margin-top: -18px;
  margin-bottom: -20px;
  font-size: 12px;
}
.showcase .showcase-item .showcase-content .showcase-name .award img {
  margin-bottom: -5px;
}
.showcase .showcase-item .showcase-content .showcase-name h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 24px;
  line-height: 29.23px;
  font-family: "Proxima Nova Rg", sans-serif;
}
.showcase .showcase-item .showcase-content .showcase-name .text {
  margin-top: -21px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
}
.showcase .showcase-item .showcase-payment {
  padding-top: -30px;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item {
  margin-bottom: 10px;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item .name {
  font-weight: 600;
  margin-bottom: -20px;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item .text {
  display: flex;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item .text img {
  margin-right: 17px;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item .text p {
  font-style: "Proxima Nova Rg", sans-serif;
  font-weight: 600;
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 0;
}
.showcase .showcase-item .showcase-payment .showcase-payment-item:last-child {
  margin-bottom: 0;
}
.showcase .showcase-item .showcase-play {
  padding-top: 14.5px;
  display: flex;
  flex-direction: column;
}
.showcase .showcase-item .showcase-play .btn {
  width: -webkit-fill-available;
  margin-bottom: 8px;
}
.showcase .showcase-item .showcase-play .rating {
  display: flex;
  justify-content: center;
}
.showcase .showcase-item .showcase-play .rating img {
  margin-right: 4px;
}
.showcase .showcase-item .showcase-play .rating p {
  padding-top: 3px;
  padding-left: 4px;
  font-weight: 600;
}
.showcase .showcase-item .showcase-play .rating p span {
  color: #8F8F95;
}
.showcase .showcase-item:last-child {
  margin-bottom: 0;
}