.non-standard {
  position: relative;
  overflow: hidden;
  padding: var(--sp) 0;
  color: var(--white);
}

.non-standard__container {
  position: relative;
  z-index: 10;
}

.non-standard__title {
  margin-bottom: 45px;
}

.non-standard__header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.non-standard_kinds_title {
  width: 24%;
  padding: 15px 20px 30px;
  text-align: center;
  border-bottom: 1px solid var(--white);
  font-size: var(--xl);
}

.non-standard_select {
  display: flex;
  gap: 30px;
}

.non-standard_select li {
  display: flex;
  padding: 25px;
  gap: 10px;
  font-size: var(--xl);
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
}

.non-standard_select li.active {
  border: 1px solid var(--white);
  border-radius: 5px;
}

.non-standard_kinds {
  width: 24%;
  min-height: 248px;
}

.non-standard_kinds li {
  display: flex;
  align-items: center;
  font-size: var(--l);
  font-weight: 500;
  line-height: 28px;
  gap: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid var(--white);
  padding: 5px 15px;
  min-height: 52px;
}

.non-standard_kinds li img {
  display: block;
}

.non-standard_description {
  width: 74%;
}

.non-standard_description__title {
  font-size: var(--xl);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 15px;
}

.non-standard_description__text {
  font-size: var(--m);
  line-height: 137.5%;
  min-height: 88px;
  margin-bottom: 25px;
}

.non-standard_description__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.non-standard_description__action .btn-main {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
  height: 56px;
  line-height: 24px;
}

.non-standard_description__action .btn-main:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.non-standard_description__action .btn-secondary {
  width: 295px;
  max-width: none;
  text-align: center;
  font-size: var(--l);
  height: 56px;
  line-height: 30px;
}

.non-standard_description__action .btn-secondary::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  background: url(../../img/arr_right.svg) no-repeat;
  width: 20px;
  height: 20px;
}

.non-standard_description__price {
  font-size: var(--h2);
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.192px;
  margin-right: auto;
}

.non-standard_description__price span {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.27px;
}

.non-standard_item {
  display: none;
}

.non-standard_item.active {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.non-standard::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

@media (max-width: 1260px) {
  .non-standard__header {
    flex-direction: column-reverse;
  }

  .non-standard_select li {
    padding: 15px;
  }
}

@media (max-width: 760px) {
  .non-standard_kinds_title {
    width: 100%;
    padding: 18px;
    border-top: 1px solid var(--white);
  }

  .non-standard_select {
    flex-wrap: wrap;
    gap: 10px;
  }

  .non-standard_select li {
    width: calc(50% - 5px);
    padding: 12px 8px;
    align-items: center;
    flex-direction: column;
  }

  .non-standard_kinds {
    width: 100%;
    min-height: auto;
  }

  .non-standard_kinds ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .non-standard_kinds li {
    width: calc(50% - 5px);
    font-size: var(--m);
    min-height: 47px;
    margin: 0;
  }

  .non-standard_description {
    width: 100%;
  }

  .non-standard_description__action .non-standard_button,
  .non-standard_description__action .non-standard_readmore {
    width: 100%;
  }

  .non-standard_description__action .btn-main {
    width: 100%;
    height: 46px;
    padding: 11px;
    line-height: 22px;
  }

  .non-standard_description__action .btn-secondary {
    width: 100%;
    height: 46px;
    padding: 11px;
    font-size: 16px;
    line-height: 22px;
  }

  .non-standard_description__action {
    flex-direction: column;
  }

  .non-standard_description__price {
    margin: 0 auto;
  }

  .non-standard_description__price span {
    font-size: 28px;
  }

  .non-standard_item.active {
    flex-direction: column;
  }
}