@charset "UTF-8";

@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Regular.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Medium.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Medium.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot");
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Semibold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Semibold.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Bold.svg#Gilroy") format("svg");
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --tr: 0.3s ease;
  --trd: 0.3s ease 0.3s;
  --transition: 0.3s ease;
  --default-font-family: "Gilroy";
  --heading-font-family: "Gilroy";
  --sp: 70px;
  --accent: #EF358B;
  --accent-h: #E01F78;
  --white: #ffffff;
  --gray: #626B77;
  --bg: #fff;
  --text-color: #242424;
  --fz-default: 16px;
  --h1: 20px;
  --h2: 20px;
  --h3: 16px;
  --h4: 16px;
  --l: 27px;
  --m: 21px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.03em;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  border: 1px solid red !important;
}

form input.not_error {
  border: 1px solid #99FF99 !important;
}

h1,
._h1 {
  font: 700 var(--h1)/1.3 var(--heading-font-family);
}

h2,
._h2 {
  font: 700 var(--h2)/1.3 var(--heading-font-family);
}

h3,
._h3 {
  font: 700 var(--h3) var(--heading-font-family);
}

h4,
._h4 {
  font: 700 var(--h4) var(--heading-font-family);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

.btn {
  background: var(--accent);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 5px;
  padding: 17px;
  width: 100%;
  transition: var(--tr);
  text-align: center;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3%;
  line-height: 1.4;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-h);
}

.btn_transparent {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn_transparent:hover {
  background: var(--accent);
  color: var(--white);
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 400px;
  position: relative;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 60px;
  border: 2px solid #dcdcdc;
  border-radius: 3px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  background: #FFDCEC;
  border-bottom: 1px solid rgba(239, 53, 140, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  z-index: 999999;
  padding: 20px 10px;
  margin: auto;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logoImg {
  height: 40px;
  width: 40px;
  border-radius: 5.024px;
  background: #EF358C;
  margin-right: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logoText {
  font-weight: 700;
  color: rgb(0, 0, 0);
  font-size: 20.856px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  letter-spacing: 0.626px;
}

.header__logoText span {
  color: var(--accent);
}

.header__mobileMenuBox {
  display: none;
}

.header__mobile_btns {
  display: none;
}

.header__menu {
  width: 424px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.header__menu li {
  font-size: 16px;
  font-weight: 400;
}

.header__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header__menuItem {
  font: normal 500 24px/150% Gilroy;
  color: #242424;
  letter-spacing: 0.72px;
}

.header__container {
  position: relative;
}

.header__enter_btns {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 60px;
}

.header__signInBtnMobile {
  display: none;
}

.header__signUpBtnMobile {
  display: none;
}

.header__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: nowrap;
  gap: 10px;
}

.header__btns a {
  background: var(--accent);
  padding: 5px 23px;
  border-radius: 5px;
  border: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.48px;
}

.header .footer__socials {
  gap: 10px;
  margin: 40px auto 30px;
  display: none;
}

.header .footer__phone {
  margin: 10px auto;
  display: none;
}

.header .footer__mail {
  margin: 10px auto;
  display: none;
}

.header .footer__fb {
  background: url(../img/facebook.svg) center/contain no-repeat;
}

.header .footer__inst {
  background: url(../img/instagram.svg) center/contain no-repeat;
}

.header .footer__yb {
  background: url(../img/youtube.svg) center/contain no-repeat;
}

.header .footer__tg {
  background: url(../img/telegram.svg) center/contain no-repeat;
}

.menu-open .header__menu {
  transform: translateY(0);
}

.menu-open .header__hamburger .top-bun {
  transform: translateY(10px) rotate(45deg);
}

.menu-open .header__hamburger .meat {
  transform: scale(0);
}

.menu-open .header__hamburger .bottom-bun {
  transform: translateY(-10px) rotate(-45deg);
}

.header.hide {
  top: -100px;
}

.main {
  padding-top: 150px;
}

.main__container {
  display: grid;
  grid-template-columns: 260px 1fr 295px;
  gap: 53px;
  grid-template-areas: "cover main ordering";
}

.cover {
  grid-area: cover;
}

.cover__image {
  width: 100%;
}

.ordering {
  grid-area: ordering;
}

.ordering__price {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.ordering__price-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--accent);
  margin-bottom: 18px;
}

.ordering__btn {
  margin-bottom: 12px;
}

.ordering__description {
  font-size: 14px;
  font-weight: 500;
}

.ordering__description b {
  font-weight: 700;
}

.content {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.content__item {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  transition: max-height 0.5s ease 0s;
}

.content__item:before {
  content: "";
  background: #ffffff;
  display: block;
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.content__text {
  font-size: var(--s);
  line-height: 1.4;
  max-height: 430px;
}

.content__text h1 span,
.content__text h2 span {
  color: var(--accent);
}

.content__text .author {
  margin-bottom: 24px;
}

.content__text p {
  margin: 1.125em 0;
}

.content__characteristics {
  max-height: 250px;
}

.content__characteristics h2 {
  margin-bottom: 24px;
}

.content__characteristics-list li {
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 500;
  line-height: 1.3;
}

.content__characteristics-list li:first-child {
  padding-top: 0;
}

.content__characteristics-list li span {
  flex: 0 0 50%;
  padding: 0 10px;
}

.content__characteristics-list li span:first-child {
  padding-left: 0;
  color: var(--gray);
}

.content__characteristics-list li span:last-child {
  padding-right: 0;
  text-align: right;
}

.content__topics {
  max-height: 380px;
}

.content__topics h2 {
  margin-bottom: 24px;
}

.content__topics-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 1.3;
}

.content__topics-list h3 {
  font-weight: 500;
  margin-bottom: 12px;
}

.content__topics-list h4 {
  font-weight: 400;
}

.content__topics-list h4:not(:last-child) {
  margin-bottom: 9px;
}

.content__btn {
  max-width: 295px;
}

.content__ordering {
  background: #F3F4F5;
  padding: 32px;
  border-radius: 10px;
}

.content__ordering-head {
  display: flex;
  margin-bottom: 32px;
  gap: 32px;
  justify-content: space-between;
}

.content__ordering-title {
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.content__ordering-price {
  background: var(--white);
  flex: 0 0 auto;
  padding: 10px 41.5px;
  color: var(--accent);
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 5px;
}

.content__ordering-description {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

.content__ordering-description b {
  font-weight: 700;
}

._gray {
  color: var(--gray);
}

._500 {
  font-weight: 500;
}

._more {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray);
  transition: var(--tr);
}

._more:hover {
  color: var(--text-color);
}

._more:after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 12px;
  background: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.0918%203.81836L6.00089%208.182L10.91%203.81836%22%20stroke%3D%22%23626B77%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A');
  margin-left: 5px;
  margin-top: 3px;
  transition: var(--tr);
}

._more._open:after {
  transform: rotate(180deg);
}

._mob {
  display: none;
}

._mob .cover {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

._mob .cover__image {
  width: 260px;
}

._mob .ordering {
  background: #F3F4F5;
  display: block;
  padding: 20px;
  border-radius: 10px;
}

.footer {
  color: #242424;
  font-size: var(--s);
  line-height: 150%;
  letter-spacing: 0.48px;
  margin-top: 105px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
}

.footer li {
  margin-bottom: 20px;
}

.footer__terms li:before {
  content: url(../img/ok.svg);
  margin-right: 20px;
}

.footer__socials {
  display: flex;
  margin-top: 20px;
  margin-bottom: 32px;
}

.footer__socials a {
  width: 45px;
  margin-right: 15px;
  display: inline-flex;
}

.footer__socials a:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__fb {
  background: url(../img/fb.svg) center/contain no-repeat;
}

.footer__inst {
  background: url(../img/inst.svg) center/contain no-repeat;
}

.footer__yb {
  background: url(../img/yb.svg) center/contain no-repeat;
}

.footer__tg {
  background: url(../img/tg.svg) center/contain no-repeat;
}

.footer__phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.footer__phone span {
  background: url(../img/phoneIcon.svg) center/contain no-repeat;
  width: 24px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__phone span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__mail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__mail span {
  background: url(../img/mail.svg) center/contain no-repeat;
  width: 24px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__mail span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__copyright {
  margin-top: 50px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 106px;
  border-top: 1px solid #E1E1E1;
}

.footer__studio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__studio span {
  background: url(../img/avs.svg) center/contain no-repeat;
  width: 32px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__studio span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before,
.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-overlay .close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#modal-order {
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 120px;
}

#modal-order .modal-content {
  position: relative;
}

#modal-order .close-button {
  left: calc(100% + 20px);
  top: 0;
}

.modal-order {
  background: #F3F4F5;
  max-width: 1030px;
  padding: 32px;
  border-radius: 10px;
}

.modal-order__inner h2 {
  margin-bottom: 24px;
}

.modal-order__row {
  display: flex;
  gap: 24px;
}

.modal-order__sidebar {
  flex: 0 0 312px;
}

.modal-order .form {
  flex: 1 1 100%;
  max-width: 100%;
  background: var(--bg);
  padding: 24px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal-order .form__block-title {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.modal-order .form__block-title.np-type-title {
  margin-bottom: 6px;
}

.modal-order .form__block-fields.contact-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.modal-order .form__block-fields.contact-fields label {
  flex: 0 0 calc(50% - 9px);
}

.modal-order .form__block-fields.contact-fields label input {
  background: #F3F4F5;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  height: 46px;
}

.modal-order .form__block-fields.contact-fields label input::-webkit-input-placeholder,
.modal-order .form__block-fields.contact-fields label input:-moz-placeholder,
.modal-order .form__block-fields.contact-fields label input::-moz-placeholder,
.modal-order .form__block-fields.contact-fields label input:-ms-input-placeholder {
  color: var(--gray);
}

.modal-order .form__block-fields.delivery-fields label {
  margin-bottom: 18px;
}

.modal-order .form__block-fields.delivery-fields label:last-child {
  margin-bottom: 0;
}

.modal-order .form__input {
  display: block;
}

.modal-order .form__input > span {
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}

.modal-order .form__input._disable {
  display: none;
}

.modal-order .form__input._active {
  display: block;
}

.modal-order .form__input input {
  font-size: var(--default-font-family);
  font-weight: 500;
  line-height: 1.4;
}

.modal-order .form__input.city {
  margin-bottom: 18px;
}

.modal-order .form__input.address textarea {
  font: var(--s) var(--default-font-family);
  background: #F3F4F5;
  width: 100%;
  resize: vertical;
  min-height: 100px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 15px;
}

.modal-order .form__input.address textarea.error {
  border: 1px solid red;
}

.modal-order__info {
  background: var(--white);
  padding: 24px;
  border-radius: 5px;
}

.modal-order__info-title {
  font-size: var(--s);
  font-weight: 600;
  margin-bottom: 18px;
}

.modal-order__book {
  display: flex;
  margin-bottom: 32px;
}

.modal-order__book-cover {
  aspect-ratio: 90/128;
  width: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  margin-right: 12px;
}

.modal-order__book-info {
  font-size: 14px;
  line-height: 1.3;
}

.modal-order__book-info b {
  font-weight: 700;
}

.modal-order__book-author {
  font-weight: 500;
  color: var(--gray);
}

.modal-order__info-prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-order__info-prices li {
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-weight: 500;
  font-size: var(--s);
  line-height: 1.125;
}

.modal-order__info-prices li span:last-child {
  text-align: right;
}

.modal-order__info-prices li.full_price {
  font-size: 20px;
  line-height: 0.9;
  font-weight: 600;
  color: var(--text-color);
}

.modal-order__info-btn {
  margin-bottom: 12px;
}

.modal-order__info-policy {
  color: var(--gray);
  font-size: 12px;
}

.modal-order__info-policy a {
  font-weight: 500;
  color: var(--text-color);
}

.modal-order .radio {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.modal-order .radio input {
  flex: 0 0 auto;
  margin: 0;
}

.modal-order .radio input:checked {
  accent-color: var(--accent);
}

.modal-order .radio__content {
  font-weight: 500;
}

.modal-order .radio__title {
  display: flex;
  align-items: center;
}

.modal-order .radio__title img {
  margin-right: 6px;
  aspect-ratio: 1/1;
  width: 16px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.modal-order .radio__price {
  color: var(--gray);
}

.modal-order .np-select {
  width: 100%;
  height: initial;
}

.modal-order .np-select.open {
  z-index: 10;
}

.modal-order .np-select__button {
  background: #F3F4F5;
  position: relative;
  height: 60px;
  color: #626B77;
  border: 1px solid #D9D9D9;
  z-index: 5;
}

.modal-order .np-select__button.error {
  border: 1px solid red;
}

.modal-order .np-select__button .icon svg {
  fill: var(--gray);
}

.modal-order .np-select__input {
  background: #ffffff;
  position: relative;
  height: 40px;
  border-radius: 5px;
  z-index: 3;
  top: 0;
  border: 1px solid #D9D9D9;
  margin: 0;
}

.modal-order .np-select__box {
  position: relative;
  top: 0;
  min-height: 240px;
  border-radius: 0px 0px 5px 5px;
  box-shadow: none;
  border: 1px solid #D9D9D9;
  border-top: none;
  /* Параметры скроллбара для этого элемента */
}

.modal-order .np-select__box::-webkit-scrollbar {
  background: transparent;
  /* Панель прокрутки */
  width: 5px;
}

.modal-order .np-select__box::-webkit-scrollbar-button {
  background: transparent;
  /* Кнопки навигации */
  height: 0;
  width: 0;
}

.modal-order .np-select__box::-webkit-scrollbar-thumb {
  background: var(--gray);
  /* Ползунок */
  border-radius: 10px;
}

.modal-order .np-select__placeholder {
  border-radius: 0 0 5px 5px;
  border: 1px solid #D9D9D9;
  box-shadow: none;
}

.modal-order .np-select__option {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.modal-order .np-select__option.selected {
  background: transparent;
  color: var(--accent);
}

.modal-order .np-select__option:hover {
  background: #E7E8EC;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Gilroy, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
  }

  .header {
    height: 65px;
  }

  .header__mobileMenuBox {
    display: none;
  }

  .header__hamburger {
    position: relative;
    z-index: 5;
    display: block;
    cursor: pointer;
  }

  .header__hamburger .top-bun,
  .header__hamburger .meat,
  .header__hamburger .bottom-bun {
    width: 30px;
    height: 4px;
    background-color: #000000;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
  }

  .header__mobile_btns {
    display: flex;
    z-index: 11;
  }

  .header__menu {
    padding-top: 60px;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 101vh;
    background-color: #ffffff;
    transform: translateY(-150%);
    transition: transform 700ms ease;
    z-index: 4;
    background: #FFF;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header__menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #FF93C5;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .header__menu ul li {
    color: #242424;
    font-size: 30px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.54px;
    margin: 20px 0;
  }

  .header__signInBtnMobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 44px;
    height: 28px;
    padding: 3px 13px;
    background: var(--accent);
  }

  .header__signInBtnMobile a {
    color: #FFF;
    font-size: 12px;
  }

  .header__signUpBtnMobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 86px;
    height: 28px;
    padding: 3px 13px;
    background: var(--accent);
  }

  .header__signUpBtnMobile a {
    color: #FFF;
    font-size: 12px;
  }

  .header__btns {
    display: none;
  }

  .header .footer__socials {
    display: flex;
  }

  .header .footer__phone {
    display: flex;
  }

  .header .footer__mail {
    display: flex;
  }

  .main {
    padding-top: 100px;
  }

  .main__container {
    gap: 30px;
    grid-template-rows: auto 1fr;
    /* Добавлено явное указание высоты строк */
    grid-template-columns: 240px 1fr;
    grid-template-areas: "cover main" "ordering main";
    align-items: start;
  }

  .cover {
    align-self: start;
  }

  .ordering {
    align-self: start;
  }

  .content__characteristics-list li {
    padding: 14px 0;
  }

  .content__btn {
    max-width: 100%;
  }

  .content__ordering {
    padding: 25px;
  }

  .content__ordering-head {
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
  }

  .content__ordering-title {
    font-size: 20px;
  }

  .content__ordering-price {
    font-size: 32px;
    padding: 10px 20px;
  }

  .footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer__socials {
    justify-content: space-between;
  }

  .footer__socials a {
    margin-right: initial;
  }

  .footer__phone {
    justify-content: center;
  }

  .footer__mail {
    justify-content: center;
  }

  .footer__copyright {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
  }

  #modal-order {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .modal-order {
    max-width: calc(var(--container-width) - 20px);
    padding: 20px;
  }

  .modal-order__row {
    flex-direction: column;
  }

  .modal-order__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .modal-order__info-title {
    flex: 0 0 100%;
  }

  .modal-order__book {
    flex: 0 0 40%;
  }

  .modal-order__info-prices {
    flex: 0 0 40%;
  }

  .modal-order__info-btn {
    flex: 0 0 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
  }

  [class*=__container] {
    flex-wrap: wrap;
  }

  .header__logoImg {
    height: 22px;
    width: 22px;
    margin-right: 7px;
  }

  .header__logoImg img {
    height: 18px;
    width: 18px;
  }

  .header__logoText {
    font-size: 12px;
  }

  .main__container {
    grid-template-columns: 1fr;
    grid-template-areas: "main";
  }

  .cover {
    display: none;
  }

  .ordering {
    display: none;
  }

  .content {
    gap: 50px;
  }

  .content__ordering {
    padding: 15px;
  }

  .content__ordering-head {
    flex-direction: column;
  }

  ._mob {
    display: block;
    margin: 32px 0;
  }

  #modal-order .close-button {
    right: 10px;
    top: 12px;
    left: auto;
  }

  #modal-order .close-button:before,
  #modal-order .close-button:after {
    background-color: #000000;
  }

  .modal-order {
    padding: 10px;
  }

  .modal-order__inner h2 {
    margin-bottom: 20px;
  }

  .modal-order .form {
    padding: 10px;
  }

  .modal-order .form__block-title {
    margin-bottom: 20px;
  }

  .modal-order .form__block-fields.contact-fields label {
    flex: 0 0 100%;
  }

  .modal-order .form__block-fields.contact-fields label span {
    font-size: 14px;
  }

  .modal-order .form__block-fields.contact-fields label input {
    height: 50px;
    font-size: 14px;
  }

  .modal-order .form__block-fields.delivery-fields label span {
    font-size: 14px;
  }

  .modal-order__info {
    display: block;
    padding: 10px;
  }

  .modal-order .radio__title {
    font-size: 12px;
  }

  .modal-order .radio__price {
    font-size: 12px;
  }

  .modal-order .np-select__button {
    height: 50px;
  }

  .modal-order .np-select__option {
    min-height: 50px;
  }
}