.common__container {
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 1921px) {
  .common__container {
    width: 1840px;
  }
}
@media (max-width: 1920px) and (min-width: 1600px) {
  .common__container {
    width: 1590px;
  }
}
@media (max-width: 1599px) and (min-width: 1300px) {
  .common__container {
    width: 1290px;
  }
}
@media (max-width: 1299px) and (min-width: 992px) {
  .common__container {
    width: 990px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .common__container {
    width: 750px;
  }
}
@media (max-width: 767px) {
  .common__container {
    width: 100%;
  }
}

.DD2 {
  background: #000;
}
.DD2 header {
  padding: 0.5em 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
}
.DD2 .header__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .DD2 .header__block {
    flex-direction: column;
    gap: 1.5em;
  }
}
.DD2 .header__block-logo {
  flex-shrink: 0;
}
.DD2 .header__block-logo img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 991px) {
  .DD2 .header__block-logo img {
    height: 40px;
  }
}
.DD2 .header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .DD2 .header__nav {
    order: 3;
  }
}
.DD2 .header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .DD2 .header__nav-list {
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.DD2 .header__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .DD2 .header__nav-link {
    font-size: 1em;
  }
}
.DD2 .header__nav-link:hover {
  color: #1ec6d9;
  background: rgba(30, 198, 217, 0.1);
  transform: translateY(-2px);
}
.DD2 .header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1ec6d9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.DD2 .header__nav-link:hover::after {
  width: 80%;
}
.DD2 .header__content {
  text-align: right;
  max-width: 350px;
}
@media screen and (max-width: 991px) {
  .DD2 .header__content {
    text-align: center;
    max-width: 100%;
    order: 2;
  }
}
.DD2 .header__title {
  font-family: var(--fontA);
  font-weight: 900;
  font-size: 1.8em;
  color: #1ec6d9;
  margin: 0 0 0.5em 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .DD2 .header__title {
    font-size: 1.5em;
  }
}
.DD2 .header__subtitle {
  color: #ccc;
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .DD2 .header__subtitle {
    font-size: 0.9em;
  }
}
.DD2 #game-app {
  background: url("https://storage-asset.msi.com/event/2025/CND/findmyfavor/images/bg.png") no-repeat center center;
  background-size: 100%;
  background-position: top center;
}
.DD2 .kv {
  position: relative;
  overflow: hidden;
}
.DD2 .kv #video-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.DD2 .kv #text-overlay {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .DD2 .kv #text-overlay {
    width: 95%;
  }
}
.DD2 .kv #text-overlay a {
  color: white;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.5em 1em;
  position: relative;
  font-weight: 900;
  margin-top: 3em;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .DD2 .kv #text-overlay a {
    font-size: 4vw;
  }
}
.DD2 .kv #text-overlay a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.4862745098), rgba(255, 255, 255, 0));
}
.DD2 .kv #text-overlay a:hover::before {
  width: 130%;
  height: 130%;
  opacity: 1;
}
.DD2 .kv #text-overlay a:hover svg {
  width: 120%;
  height: 120%;
}
.DD2 .kv #text-overlay a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transform-origin: center;
  height: 100%;
  transition: 0.3s ease;
}
.DD2 .kv #typing-text {
  font-size: 2vw;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .DD2 .kv #typing-text {
    font-size: 4vw;
  }
}
.DD2 .kv .kv__text {
  font-size: 1vw;
  line-height: 1.5;
  margin-top: 1em;
}
@media screen and (max-width: 991px) {
  .DD2 .kv .kv__text {
    font-size: 2.5vw;
  }
}
.DD2 .kv #typing-text:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.75em;
  background-color: white;
  animation: blink 1s infinite step-end;
  margin: 0 0.1em;
}
.DD2 .kv #loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-direction: column;
  z-index: 10;
  transition: opacity 0.5s;
}
.DD2 .kv #loader #progress-bar-container {
  width: 80%;
  max-width: 400px;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}
.DD2 .kv #loader #progress-bar {
  width: 0%;
  height: 100%;
  background-color: #4CAF50;
  border-radius: 10px;
  transition: width 0.1s linear;
}
.DD2 .intro {
  padding-top: 6vh;
  padding-bottom: 6vh;
}
@media (max-width: 1300px) {
  .DD2 .intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1050px) {
  .DD2 .intro {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .DD2 .intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.DD2 .intro__block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .DD2 .intro__block {
    width: 100%;
  }
}
.DD2 .intro__block img {
  width: 100%;
  height: 100%;
}
.DD2 .intro p {
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: white;
  text-align: center;
  margin-top: 2em;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .DD2 .intro p {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  .DD2 .intro p {
    font-size: 17px;
  }
}
@media (max-width: 1050px) {
  .DD2 .intro p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .DD2 .intro p {
    width: 100%;
  }
}
.DD2 .btntab__block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}
.DD2 .btntab__block-item {
  width: 20%;
  display: flex;
  align-items: center;
  background: rgba(59, 59, 59, 0.16);
  border-radius: 10px;
  padding: 0.5em 0;
}
@media screen and (max-width: 991px) {
  .DD2 .btntab__block-item {
    width: 45%;
  }
}
.DD2 .btntab__block-item.active {
  background: #fff;
}
.DD2 .btntab__block-item.active p {
  color: #000;
}
.DD2 .btntab__block-item.active .btntab__block-circle {
  background: #000;
}
.DD2 .btntab__block-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(19, 19, 19, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.5em;
}
@media screen and (max-width: 991px) {
  .DD2 .btntab__block-circle {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
  }
}
.DD2 .btntab__block-circle img {
  width: 50%;
}
.DD2 .btntab__block p {
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: white;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-left: 1em;
}
@media (max-width: 1600px) {
  .DD2 .btntab__block p {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  .DD2 .btntab__block p {
    font-size: 17px;
  }
}
@media (max-width: 1050px) {
  .DD2 .btntab__block p {
    font-size: 16px;
  }
}

.search {
  padding-top: 6vh;
  padding-bottom: 6vh;
}
@media (max-width: 1300px) {
  .search {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1050px) {
  .search {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .search {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.search .common__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .search .common__container {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.search a {
  color: #1ec6d9;
  font-size: 1.1em;
  border-radius: 4px;
  background: #1B1B1B;
  padding: 0.6em 1em;
  margin-left: 1em;
  cursor: pointer;
}
.search .search__block {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 0.2em 1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #1ec6d9;
}
@media screen and (max-width: 991px) {
  .search .search__block {
    width: 100%;
  }
}
.search .search__block input {
  background: transparent;
  border: none;
  outline: none;
  color: #1ec6d9;
  font-size: 1.1em;
  padding: 0.5em 0.8em 0.5em 0;
  width: 200px;
}
@media screen and (max-width: 991px) {
  .search .search__block input {
    width: 100%;
  }
}
.search .search__block input::-moz-placeholder {
  color: #1ec6d9;
  opacity: 0.7;
}
.search .search__block input::placeholder {
  color: #1ec6d9;
  opacity: 0.7;
}
.search .search__block .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 0.5em;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.search .search__block .search-btn svg {
  display: block;
}

.game__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.game .more-btn {
  background: linear-gradient(180deg, #434343 0%, #2B2B2B 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 1.6em;
  font-size: 1.1em;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  transition: background 0.2s;
  display: inline-block;
  margin: 0 auto;
  margin-top: 2em;
  display: none;
}
.game .more-btn.active {
  display: inline-block;
}
.game .more-btn:hover {
  background: rgb(59, 59, 59);
}
.game .common__container {
  background: rgba(125, 125, 125, 0.16);
  padding: 4% 15px;
  border-radius: 14px;
}
.game__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.game__block-item {
  width: 27%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(217, 217, 217, 0);
  padding: 1% 1%;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .game__block-item {
    width: 40%;
  }
}
.game__block-item:hover {
  background: rgba(217, 217, 217, 0.2);
}
.game__block-item.active {
  background: rgba(217, 217, 217, 0.2);
}
.game__block-item img {
  width: 40%;
}
.game__block-item p {
  width: 55%;
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: white;
  margin-left: 1em;
}
@media (max-width: 1600px) {
  .game__block-item p {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  .game__block-item p {
    font-size: 17px;
  }
}
@media (max-width: 1050px) {
  .game__block-item p {
    font-size: 16px;
  }
}
.game__no-results {
  width: 100%;
  text-align: center;
  padding: 2em 1em;
}
.game__no-results p {
  color: #999;
  font-size: 16px;
  line-height: 1.5;
}

@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.filter__panel {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 28px;
  padding: 2.5em 2em 2em 2em;
  width: 340px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 5, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .filter__panel {
    width: 270px;
  }
}
@media screen and (max-width: 900px) {
  .filter__panel {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
  }
}

.filter__title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}

.filter__divider {
  width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0.5em 0 1.5em 0;
}

.filter__group {
  width: 100%;
  margin-bottom: 2em;
}
.filter__group.active .filter__options {
  max-height: 900px;
}
.filter__group.active .filter__arrow {
  transform: rotate(180deg);
}
.filter__group.active .filter__label {
  color: #1ec6d9;
}

.filter__header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.7em;
  cursor: pointer;
}

.filter__icon {
  display: flex;
  align-items: center;
  width: 24px;
}
.filter__icon.gpu {
  width: 32px;
}
.filter__icon img {
  width: 100%;
  vertical-align: middle;
}

.filter__label {
  font-size: 1.25em;
  font-weight: 600;
  color: #fff;
}
.filter__label.cpu, .filter__label.gpu {
  letter-spacing: 0.5px;
}

.filter__arrow {
  margin-left: auto;
  color: #1ec6d9;
  font-size: 1.2em;
}

.filter__options {
  margin-left: 2.2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-height: 0;
  overflow: hidden;
}
.filter__options label {
  font-size: 1em;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  position: relative;
}
.filter__options label::after {
  display: none;
  content: "";
  left: 5px;
  top: 2px;
  position: absolute;
  width: 7px;
  height: 14px;
  border-right: 2px solid #f39800;
  border-bottom: 2px solid #f39800;
  transform: rotate(40deg);
}
.filter__options label::before {
  content: "";
  left: 0;
  top: 2px;
  position: absolute;
  outline: 1px solid #333333;
  border-radius: 5px;
  width: 20px;
  height: 20px;
}

.filter__panel {
  border-radius: 28px;
}

.benchmark {
  width: 100%;
  margin: 0 auto 2em auto;
  background: transparent;
}
.benchmark .benchmark__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0.5em 0 0.5em 0;
}
.benchmark .benchmark__cover {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
.benchmark .benchmark__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.benchmark .benchmark__info {
  margin-left: 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benchmark .benchmark__info .benchmark__title {
  font-size: 2em;
  font-weight: 700;
  color: #1ec6d9;
  margin-bottom: 0.1em;
  margin-top: 0.2em;
  display: block;
}
.benchmark .benchmark__info .benchmark__subtitle {
  font-size: 1.3em;
  color: #6ee6e6;
  font-weight: 400;
  margin-top: 0.2em;
}
.benchmark .benchmark__help {
  background: rgba(59, 59, 59, 0.7);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #1ec6d9;
  font-size: 2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
  margin-top: 0.2em;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.benchmark .benchmark__help span {
  font-size: 0.8em;
  font-family: inherit;
}
.benchmark .benchmark__divider {
  width: 100%;
  height: 2px;
  background: #1ec6d9;
  opacity: 0.7;
  margin: 0.5em 0 1.5em 0;
}
.benchmark .benchmark__pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0.5em;
  margin-top: 1em;
}
.benchmark .benchmark__pagination .page-btn {
  background: #434343;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.3em 0.7em;
  font-size: 1.3em;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.7;
}
.benchmark .benchmark__pagination .page-btn.active {
  background: #1ec6d9;
  color: #222;
  opacity: 1;
}

.productcard {
  display: flex;
  align-items: center;
  background: transparent;
  margin: 2em 0;
}
@media screen and (max-width: 1300px) {
  .productcard {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.productcard__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  margin-right: 2em;
  width: 300px;
}
@media screen and (max-width: 1600px) {
  .productcard__left {
    min-width: 240px;
    margin: 0;
  }
}
.productcard__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1em;
}
.productcard__name {
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}
.productcard__btn {
  width: 80%;
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 0;
  font-size: 1.1em;
  margin-bottom: 0.7em;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.productcard__btn:hover {
  background: #1ec6d9;
  color: #222;
}
.productcard__compare {
  color: #fff;
  font-size: 1em;
  margin-top: 0.7em;
}
.productcard__compare input[type=checkbox] {
  accent-color: #1ec6d9;
  margin-right: 0.5em;
}
.productcard__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .productcard__right {
    width: 100%;
  }
}
.productcard__resolutions {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1300px) {
  .productcard__resolutions {
    width: 100%;
    justify-content: center;
  }
}
.productcard__resolutions .res-btn {
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.3em 3em;
  font-size: 1.2em;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
@media screen and (max-width: 1300px) {
  .productcard__resolutions .res-btn {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 991px) {
  .productcard__resolutions .res-btn {
    padding: 0.3em 0;
  }
}
.productcard__resolutions .res-btn.active {
  background: #1ec6d9;
  color: #222;
  opacity: 1;
}
.productcard__fps {
  width: 100%;
  margin-bottom: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .productcard__fps {
    flex-direction: column;
    gap: 10px;
  }
}
.productcard__fps-title {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 0.5em;
  width: 180px;
}
@media screen and (max-width: 991px) {
  .productcard__fps-title {
    width: 100%;
    text-align: center;
  }
}
.productcard__fps-title span {
  color: #1ec6d9;
  font-size: 1.2em;
  font-weight: 700;
}
.productcard__table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.productcard__table th, .productcard__table td {
  padding: 0.7em 1.2em;
  text-align: center;
  font-size: 1.1em;
}
.productcard__table th {
  font-size: 1.15em;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border-bottom: 2px solid #1ec6d9;
}
.productcard__table td {
  font-family: inherit;
  background: transparent;
  border-bottom: 1px solid #444;
}
.productcard__table tr:last-child td {
  border-bottom: 2px solid #1ec6d9;
}
.productcard__monitor {
  width: 100%;
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8em 0;
  font-size: 1.2em;
  margin-top: 1.2em;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.productcard__monitor:hover {
  background: #1ec6d9;
  color: #222;
}

.product__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.product__loading .loading-spinner {
  text-align: center;
}
.product__loading .loading-spinner .spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid rgba(30, 198, 217, 0.2);
  border-top-color: #1ec6d9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.product__loading .loading-spinner p {
  color: #1ec6d9;
  font-size: 1.2em;
  margin-top: 1em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fade-in-enter-active {
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in-enter-from {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-enter-to {
  opacity: 1;
  transform: translateY(0);
}

.mainblock {
  background: url("https://storage-asset.msi.com/event/2025/CND/findmyfavor/images/bg2.png") no-repeat center center;
  background-size: 100%;
  background-position: top center;
}
.mainblock__block {
  margin-top: 40px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .mainblock__block {
    flex-direction: column;
    gap: 20px;
  }
}
.mainblock__block .filter {
  max-width: 340px;
}
@media screen and (max-width: 1600px) {
  .mainblock__block .filter {
    max-width: 270px;
  }
}
@media screen and (max-width: 991px) {
  .mainblock__block .filter {
    width: 100% !important;
    max-width: 100%;
  }
  .mainblock__block .filter .filter__panel {
    width: 100%;
  }
}
.mainblock__block .product {
  width: calc(100% - 360px);
  margin-left: 20px;
  padding: 40px;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 28px;
}
@media screen and (max-width: 1600px) {
  .mainblock__block .product {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 991px) {
  .mainblock__block .product {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    margin-top: 20px;
  }
}

.custom-checkbox {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 1em;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 20px;
  width: 20px;
  background: transparent;
  border: 2px solid #1ec6d9;
  border-radius: 5px;
  transition: background 0.2s;
}
.custom-checkbox input[type=checkbox]:checked ~ .checkmark {
  background: #1ec6d9;
  border-color: #1ec6d9;
}
.custom-checkbox input[type=checkbox]:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
  display: block;
}
.custom-checkbox .checkmark::after {
  content: "";
  display: none;
}

.note {
  padding-top: 6vh;
  padding-bottom: 6vh;
  color: #fff;
}
@media (max-width: 1300px) {
  .note {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1050px) {
  .note {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .note {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.note__block {
  margin-left: 360px;
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.5em;
  opacity: 0.7;
  line-height: 1.5em;
}
@media (max-width: 1600px) {
  .note__block {
    font-size: 14px;
  }
}
@media (max-width: 1300px) {
  .note__block {
    font-size: 13px;
  }
}
@media (max-width: 1050px) {
  .note__block {
    font-size: 12px;
  }
}
.note__block div {
  margin-bottom: 1em;
}
.note__block div:last-child {
  margin-bottom: 0;
}

.backtolist-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7em 1em 0.7em 1em;
  font-size: 1.1em;
  font-family: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  overflow: hidden;
}
.backtolist-btn .backtolist-text {
  opacity: 0;
  max-width: 0;
  white-space: nowrap;
  transition: opacity 0.2s, max-width 0.2s;
}
.backtolist-btn .backtolist-arrow {
  font-size: 1.3em;
  display: inline-block;
  transition: color 0.2s;
}
.backtolist-btn:hover {
  background: #1ec6d9;
  color: #222;
}
.backtolist-btn:hover .backtolist-text {
  opacity: 1;
  max-width: 200px;
  margin-right: 0.7em;
}
.backtolist-btn:hover .backtolist-arrow {
  color: #222;
}

.fps-body-cell {
  transition: 0.3s;
}

.fps-body-cell:hover {
  background: #1ec6d9;
  color: #222;
}/*# sourceMappingURL=index2.css.map */