html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
canvas,
embed,
figcaption,
output,
ruby,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

input {
  border-radius: 0px;
}

:root {
  --brown-dark: #574b3b;
  --red: #da3e41;
  --brown-light: #999288;
  --grey: #c4c4c4;
  --light-grey: #f0f0f0;
  --red-light: #f17072;
  --brown: #be6a4a;
  --green: #47ad54;

  --swiper-theme-color: #da3e41;
  --swiper-navigation-color: #da3e41;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

* {
  font-family: Manrope, sans-serif;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

.red {
  color: var(--red);
}

.content-wrap {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.outer-wrap {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

header {
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 20;
}

header.__sticky {
  position: sticky;
  margin-bottom: 100px;
}

html[data-scroll-gt~="250"] {
  header {
    display: none;
  }
}

.header_top {
  background-color: var(--brown-dark);
}

.header_top_links {
  display: flex;
  gap: 40px;
  font-weight: 400;
  height: 30px;
  align-items: center;
}

.header_top_links a {
  text-decoration: none;
  color: #fff;
}

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

.logo_wrap {
  height: 72px;
  display: grid;
  grid-template-columns: 78px 180px;
}

.logo_img {
  width: 100%;
  object-fit: contain;
}

.logo_name_box {
  height: 20px;
  width: 100%;
  background-image: url("../img/logo_name.svg");
  background-repeat: no-repeat;
  margin-top: auto;
  margin-left: -5px;
  transition: 0.2s;
}

.logo_wrap:hover > .logo_name_box {
  background-image: url("../img/logo_orange.svg");
}

.header_mid > .content-wrap {
  display: flex;
  padding: 23px 0px;
  justify-content: space-between;
  align-items: flex-end;
}

.header_mid_wrap.scrolled {
  align-items: center;
  padding: 9px 0;
  transform: 0.3s;
}

.header_search {
  border: none;
  border-bottom: 2px solid var(--red);
  max-width: 350px;
  width: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 0px 5px;
  outline: none;
  flex-shrink: 1;
  border-radius: 0;
  display: flex;
  gap: 15px;
  align-items: flex-end;
  padding-bottom: 7px;
}

.header_search form {
  width: 100%;
}

.header_search .header_search_field {
  color: #000000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  border: none;
  width: 100%;
  outline: none;
}

.header_search .header_search_submit {
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
  margin-bottom: 1px;
}

.header_search .header_search_submit .search_icon {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

input.header_search {
  padding-left: 0;
}

.header_phone {
  color: var(--brown-dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.header_phone:hover {
  text-decoration: underline;
}

.orange_button {
  padding: 6px 15px;
  border-radius: 30px;
  background-color: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s;
  width: fit-content;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btns-wishlist {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.orange_button.__small {
  padding: 4px 9px;
  font-size: 12px;
}

.orange_button.__wide {
  width: 100%;
  text-align: center;
}

.orange_button.__category {
  padding: 10px 0px;
  position: absolute;
  bottom: 12px;
}

.orange_button:hover {
  background-color: var(--red-light);
}

.header_callback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header_info {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, 66px);
  margin-top: auto;
}

.header_date_box {
  background-color: var(--brown-dark);
  display: flex;
  padding: 1px;
  justify-content: space-between;
  height: 17px;
}

.header_date_box p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.date_box_insert {
  background-color: #fff;
  width: 33px;
  flex-shrink: 0;
}

.header_date_box.__orange {
  background-color: var(--red);
}

.header_week_day {
  color: #fff;
  font-size: 7.211px;
  font-weight: 600;
}

.header_hours {
  font-size: 8.653px;
  font-weight: 400;
  height: 100%;
}

.header_mailbox {
  grid-column: 1/3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_email_link {
  text-decoration: none;
  color: var(--brown-dark);
}

.header_email_link:hover {
  text-decoration: underline;
}

.header_cart_block {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--brown-dark);
  flex-shrink: 0;
}

.cart_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cart_text {
  font-size: 10px;
  font-weight: 500;
}

.cart_text.__offset {
  margin-left: 6px;
}

.cart_count {
  position: absolute;
  top: -9px;
  right: -8px;
  color: #fff;
  font-family: Manrope;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 5px; /* 83.333% */
  text-transform: lowercase;
  border-radius: 50px;
  background: #be6a4a;
  padding: 5px;
}

.header_cart_total {
  color: #000;
  font-weight: 700;
}

.header_bottom {
  border-top: 1px solid #e1e1e1;
  background: #ece8e2;
}

.header_bottom_brown_btn {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  background: #574b3b;
  height: 23px;
  align-self: center;
  margin-left: auto;
  text-decoration: none;
  padding: 3px 15px;
  transition: 0.2s;
}

.header_bottom_brown_btn:hover {
  background-color: var(--brown-light);
}

.brown_btn {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  background: #574b3b;
  text-decoration: none;
  padding: 6px 15px;
  transition: 0.2s;
}

.brown_btn:hover {
  background-color: var(--brown-light);
}

.header_bottom > .content-wrap {
  display: flex;
  gap: 20px;
  height: 57px;
}

.header_bottom_btn {
  background-color: transparent;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  padding: 0;
  height: 100%;
  padding-left: 6px;
  padding-right: 27px;
  background-image: url("../img/ico/bottom_open.svg");
  background-repeat: no-repeat;
  background-position: right 9px center;
  text-decoration: none;
  color: #000;
}

.header_bottom_btn.__active {
  background-color: var(--red);
  background-image: url("../img/ico/bottom_open_white.svg");
  color: #fff;
}

.header_bottom_btn.__no_open {
  background-image: none;
  padding-right: 7px;
}

.header_bottom_btn.__no_open:hover {
  background-color: var(--red);
  color: #fff;
}
.author_selector_wrap a:hover {
  text-decoration: underline;
  color: var(--red);
}
.menu_outer {
  padding: 50px;
  background-color: var(--light-grey);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  z-index: 20;
}

.header_menu_shade {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.header_menu > .content-wrap.__library_offset {
  padding-left: 139px;
}

.header_menu > .content-wrap.__author_offset {
  padding-left: 220px;
}

.header_bottom_btn.__orange {
  color: var(--red);
}

.top_header_list {
  margin-top: 22px;
}

.top_header_list li {
  margin-top: 8px;
}

.top_header_list a {
  font-weight: 300;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.top_header_list a:hover {
  text-decoration: underline;
  color: var(--red);
}

.author_selector_wrap {
  display: grid;
  gap: 22px 50px;
  grid-template-columns: 150px 148px 148px;
}

.author_alphabet_box {
  grid-row: 2;
  display: grid;
  gap: 10px 15px;
  grid-template-columns: repeat(6, 12px);
}

.author_alphabet_box a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

#header_alphabet_title {
  grid-column: 2/4;
}

#header_alphabet_ru {
  grid-column: 2;
}

#header_alphabet_en {
  grid-column: 3;
}

.author_selector_wrap a {
  text-decoration: none;
  color: #000;
}

.author_selector_wrap a:hover {
  text-decoration: underline;
  color: var(--red);
}

.page_banner {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page_banner.__mobile {
  display: none;
}

.separator {
  display: flex;
  align-items: center;
  position: relative;
}

.separator_hr {
  width: 100%;
  border-top: 1px solid #c4c4c4;
}

.separator_circle {
  height: 4px;
  width: 4px;
  border-radius: 999px;
  background-color: var(--red);
  z-index: 1;
  position: absolute;
  left: 0px;
}

.book_catogory_box {
  background-color: var(--light-grey);
  height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  position: relative;
  transition: 0.2s;
  overflow: hidden;
}

.book_catogory_box:hover {
  box-shadow: -5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.book_catogory_box:hover > .orange_button {
  background-color: var(--red-light);
}

.category_book_img {
  height: 100%;
  width: 100%;
  width: 216px;
  height: 220px;
  object-fit: contain;
  transition: 0.2s;
}

.book_catogory_box:hover > .category_book_img {
  transform: scale(1.1);
}

.category_slider > .splide__pagination li > .splide__pagination__page {
  border: none;
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background-color: #d9d9d9;
  margin: 0px 2px;
  padding: 0;
  transition: 0.3s;
}

.category_slider > .splide__pagination li > .is-active {
  width: 27px;
}

.category_slider > .splide__track {
  padding: 15px 0px;
}

.main_section {
  margin-top: 50px;
}

.book_item_box {
  width: 220px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.book_item_box.__adaptive {
  width: fit-content;
}

.book_item_title:hover {
  color: var(--red);
}

.splide__slide {
  display: flex;
  justify-content: center;
}

.book_item_img {
  width: 140%;
  height: 250px;
  object-fit: contain;
  object-position: center;
}

.book_item_box > .splide > .splide__track {
  transition: 0.3s;
}

.book_item_box > .splide:hover > .splide__track {
  /* box-shadow: -5px 5px 10px 0px rgba(0, 0, 0, 0.3); */
}

.book_item_pics > .splide__pagination li > .splide__pagination__page {
  border: 1px solid var(--grey);
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background-color: #d9d9d9;
  margin: 0px 2px;
  padding: 0;
  transition: 0.2s;
}

.book_item_pics > .splide__pagination li > .is-active {
  background-color: #fff;
}

.book_item_pics {
  margin: 6px;
  position: relative;
}

.book_item_title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 6px;
  text-decoration: none;
  color: #000;
}

.lines-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lines-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.book_item_about {
  font-size: 12px;
  font-weight: 400;
}

.book_price {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.book_price.__red {
  color: var(--red);
}

.book_buy_btn {
  text-decoration: none;
  color: #fff;
  background-color: var(--brown-dark);
  width: 100%;
  text-align: center;
  padding: 9px 0;
  border-radius: 30px;
  transition: 0.2s;
  margin-top: 10px;
}

.book_buy_btn:hover {
  background-color: var(--brown-light);
}

.book_slider {
  position: relative;
  margin-top: 50px;
}

.book_slider > .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: calc(50% - 23px);
}

.book_slider > .splide__track {
  margin: 0 30px;
}

.book_slider > .splide__arrows button {
  height: 48px;
  background-image: url("../img/ico/gallery_arrow.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  border: none;
  z-index: 2;
  opacity: 0.5;
  transition: 0.2s;
}

.book_slider > .splide__arrows > .splide__arrow--next {
  transform: rotate(180deg);
}

.book_slider > .splide__arrows button:hover {
  opacity: 1;
}

.book_slider > .splide__track {
  position: relative;
}

.sale_topper {
  width: 68px;
  height: 65px;
  background-image: url("../img/ico/sale_topper.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}

.sale_topper.__big {
  width: 108px;
  height: 104px;
  background-size: cover;
  top: -9px;
  left: -9px;
}

.sale_topper_text {
  transform: rotate(-45deg);
  color: #fff;
  margin-top: 14px;
  margin-right: 18px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.sale_topper_text.__big {
  font-size: 18px;
  margin-top: 24px;
  margin-right: 31px;
}

.book_hover_selector_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
}
@media (hover: hover) {
  .book_item_pics:hover > .book_hover_selector_wrap {
    display: flex;
  }
}

.book_hover_selector {
  width: 100%;
  height: 100%;
}

.book_price_box {
  margin-top: 10px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  height: 100%;
}

.products-box {
  margin-bottom: 50px;
  margin-top: 50px;
}

.book_sale_price {
  color: var(--grey);
  text-decoration: line-through;
}

.book_old_price {
  position: relative;
}

.book_price_percentage {
  font-size: 10px;
  color: #fff;
  padding: 3px 6px;
  font-weight: 700;
  border-radius: 30px;
  background-color: var(--red);
  position: absolute;
  top: -19px;
  right: -10px;
}

.main_red {
  background-color: var(--red);
  position: relative;
  padding-top: 30px;
  padding-bottom: 76px;
  margin-top: 50px;
  display: flex;
  overflow-x: hidden;
}

.main_red_left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 2;
}

.main_red_left * {
  max-width: 691px;
}

.main_red_input {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  max-width: 400px;
  outline: none;
}

.main_red_button {
  color: var(--red);
  border: none;
  background-color: #fff;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  padding: 6px 20px;
  transition: 0.2s;
}

.main_red_button:hover {
  background-color: var(--red-light);
  color: #fff;
}

.main_red_input::placeholder {
  color: #fff;
}

.main_red_book1 {
  position: absolute;
  z-index: 0;
  top: 67px;
  right: 320px;
  height: 290px;
}

.main_red_book2 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

.main_red_shade {
  background-color: rgba(0, 0, 0, 0.6);
  width: 175px;
  height: 164px;
  filter: blur(50px);
  position: absolute;
  right: 370px;
  top: 131px;
  z-index: 1;
}

.main_grey {
  background-color: var(--brown-light);
  overflow-x: hidden;
  padding-bottom: 60px;
}

.main_grey_book1 {
  margin-left: -141px;
  height: 503px;
  width: 734px;
  object-fit: cover;
  /* flex-shrink: 0; */
}

.main_grey_book2 {
  height: 643px;
  width: 884px;
  object-fit: contain;
  margin-right: -270px;
  flex-shrink: 1;
}

.main_grey_1 {
  display: flex;
  margin-right: 28px;
}

.main_grey_1 p {
  max-width: 710px;
}

.main_grey_heading {
  color: #fff;
  margin-bottom: 25px;
  line-height: 32px;
}

.main_grey_heading.__1 {
  max-width: 320px;
  margin-top: 89px;
}

.main_grey_2 {
  width: 100%;
  display: flex;
  justify-content: right;
}

.main_grey_2 > .main_grey_text {
  max-width: 735px;
  margin-left: 28px;
}

.main_grey_list li {
  list-style: disc;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  margin-left: 15px;
}

.main_grey_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main_brown_block {
  background-color: var(--brown);
  position: relative;
  display: flex;
  overflow: hidden;
}

.main_block_number {
  font-size: 24px;
  color: #fff;
  background-color: var(--brown-dark);
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.main_block_text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px; /* 100% */
}

.main_action_block {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
}

.main_brown_actions {
  display: grid;
  grid-template-rows: repeat(3, 40px);
  gap: 30px;
  grid-auto-flow: column;
  justify-content: flex-start;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 32px;
}

.brown_block_img_desktop {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.main_news {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.main_news_list {
  display: flex;
  gap: 20px;
  margin-bottom: 34px;
}

.main_news_item {
  border: 1px solid #d9d9d9;
  padding: 15px 10px;
  width: 25%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.main_news_item:hover p:not(.main_news_more_info) {
  color: #747474;
}

.main_news_date {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.main_news_title {
  color: #da3e41;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 20px 0px;
}

.main_news_text {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 46px;
}

.main_news_more_info {
  color: #da3e41;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
  text-decoration-line: underline;
  margin-top: auto;
}

.brown_button {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 180% */
  text-transform: uppercase;
  text-decoration: none;
  padding: 2px 9px;
  width: fit-content;
  background-color: var(--brown-dark);
  border-radius: 30px;
  transition: 0.2s;
}

.brown_button:hover {
  background-color: var(--brown);
}

footer {
  background-color: var(--brown-dark);
  padding: 19px 0;
  /*  margin-top: 52px;*/
  position: relative;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  padding-right: 240px;
  margin-left: auto;
  position: relative;
}

.footer_links {
  display: flex;
  flex-direction: column;
  grid-template-rows: repeat(9, 16px);
  grid-auto-flow: column;
  gap: 6px;
}

.footer_links.__grid {
  display: grid;
  grid-template-rows: repeat(9, 16px);
  grid-auto-flow: column;
  gap: 3px 10px;
}

.footer_links.__flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#footer_wrap {
  grid-row: 2;
}

.footer_links li:not(.footer_heading) {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 100% */
}

.footer_links.__info a {
  color: #fff;
}

.footer_links a {
  text-decoration: none;
  color: #98866c;
}

.footer_links a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer_heading {
  color: #dfc196;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  margin-bottom: 5px;
}

.footer_heading.__margin {
  margin-top: 10px;
  margin-bottom: 3px;
}

.footer_heading.__hours {
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 12px;
}

.footer_contact_info {
  display: flex;
  flex-direction: column;
}

.footer_contact_info > .orange_button {
  margin-top: 6px;
}

.footer_info_text {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.red_block_wrap {
  width: 100%;
  position: relative;
}

.red_block_wrap.__mobile {
  display: none;
}

.footer_red_block {
  background-color: var(--red);
  display: flex;
  flex-direction: column;
  padding: 12px;
  max-width: 220px;
  box-shadow: 6px -9px #fff;
  margin-top: -36px;
  height: fit-content;
  position: relative;
  margin-left: auto;
  position: absolute;
  right: 0px;
}

.footer_red_heading {
  color: #fff;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer_red_heading span {
  font-weight: 700;
}

.footer_red_input {
  background-color: transparent;
  color: white;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  border-bottom: 1px solid #fff;
  max-width: 180px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 16px;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0px;
}

.footer_red_input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.checkbox_wrap {
  margin-top: 17px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.checkbox_wrap label {
  color: #fff;
  font-family: Manrope;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 8px; /* 100% */
}

.footer_arrow {
  position: absolute;
  right: 65px;
  top: 96px;
}

.brown_block_img_mobile {
  display: none;
}

.footer_mobile_only {
  display: none;
}

.footer_copyright {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

.footer_legal {
  color: #98866c;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 100% */
  margin-top: 10px !important;
}

.open_menu {
  display: none;
}

.mobile_menu {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: var(--brown-dark);
  padding: 30px;
  padding-right: 0;
  overflow-x: hidden;
}

.mobile_menu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 15px 0;
}

.mobile_menu a, .mobile_menu button {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: none;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile_menu > .separator hr {
  margin: 0;
}

.mobile_menu a:hover, .mobile_menu button:hover {
  text-decoration: underline;
}

.mobile_menu_special {
  background-color: var(--red);
  width: 100%;
  padding: 5px 4px;
  margin-left: -4px;
  box-sizing: content-box;
}

.mobile_menu_arrows a, .mobile_menu_arrows button {
  background-image: url("../img/ico/arrow_right_menu.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 15px;
}

.mobile_menu_close {
  display: block;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: 20px;
}

.footer_legal_link {
  color: #fff;
  font-size: 12px;
}

.catalog_header {
  cursor: pointer;
  height: 90px;
  margin-top: -9px;
  margin-bottom: -9px;
}

.product_page_header,
.page_header {
  color: #000;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
}

a.page_header:hover {
  color: var(--red);
}

.page_header.__red {
  color: var(--red);
}

.sidebar_list {
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 15px;
  line-height: 20px;
}

.sidebar_list li::marker {
  font-size: 12px;
}

.sidebar_list a {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  line-height: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.sidebar_list a:hover {
  text-decoration: underline;
  color: var(--red);
}

.sidebar_title {
  color: #000;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

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

.sidebar_title.__red {
  color: var(--red);
}

.with_sidebar {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px;
  margin-top: 28px !important;
  margin-bottom: 30px !important;
}

.page_content {
  width: 100%;
}

.hidden {
  display: none !important;
}

.page_crumbs {
  display: flex;
  gap: 8px;
  color: #979797;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex-wrap: wrap;
}

.page_crumbs a {
  color: #979797;
  text-decoration: none;
}

.page_crumbs a:hover {
  color: #979797;
  text-decoration: underline;
}

.product_top {
  display: flex;
  justify-content: space-around;
  margin-top: 34px;
}

.product_left {
  display: flex;
  flex-direction: column;
  max-width: 430px;
}

.product_images {
  height: 500px;
  width: 440px;
}

.product_img {
  height: 500px;
  width: 100%;
  object-fit: contain;
}

.product_thumbnails {
  height: 130px;
  width: 550px;
  position: relative;
  /* margin: 15px -30px; */
  margin: 15px -50px;
}

.product_thumbnails.-is-one {
  display: none;
}

.product_thumb {
  height: 125px;
  width: 105px;
  object-fit: contain;
  margin-left: auto;
  margin: 10px;
  transition: 0.3s;
}

.product_thumb:hover {
  box-shadow: -5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.product_thumbnails > .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: calc(50% - 23px);
}

.product_thumbnails > .splide__track {
  margin: 0 40px;
  position: relative;
}

.product_thumbnails > .splide__arrows button {
  height: 48px;
  background-image: url("../img/ico/gallery_arrow_s.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  border: none;
  z-index: 2;
  opacity: 0.5;
  transition: 0.2s;
}

.product_thumbnails > .splide__arrows > .splide__arrow--next {
  transform: rotate(180deg);
}

.product_thumbnails > .splide__arrows button:hover {
  opacity: 1;
}

.product_price_wrap {
  border: 2px solid #d9d9d9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  z-index: 1;
}

.img_full_popup {
  background-color: #fff;
  margin: 80px;
  position: relative;
}

.product_img_full {
  height: 100%;
  width: 100%;
  max-width: calc(100vw - 100px);
  max-height: calc(100vh - 100px);
  object-fit: contain;
  z-index: 51;
}

.img_popup_controls {
  position: absolute;
  z-index: 50;
  width: calc(100% + 120px);
  display: flex;
  top: 50%;
  left: -60px;
  margin-top: -30px;
  justify-content: space-between;
  pointer-events: none;
}

.img_control {
  background-color: transparent;
  border: none;
  pointer-events: all;
}

.img_control.__next {
  transform: rotate(180deg);
}

.product_right {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}
@media (min-width:850px) {
  .product_right {
    max-width: 375px;
  }
}

.product_price_header {
  color: #999;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 8px; /* 57.143% */
}

.product_price_box {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  width: fit-content;
}

.product_price {
  color: #000;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 100% */
}

.product_old_price {
  color: #c4c4c4;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 75% */
  text-decoration: line-through;
}

.product_sale_box {
  color: #fff;
  font-family: Manrope;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 8px; /* 80% */
  background-color: var(--red);
  position: absolute;
  top: -9px;
  right: -25px;
  padding: 4px 4px;
  border-radius: 30px;
}

.product_buy_btns {
  display: flex;
  gap: 5px;
}

.add_to_cart {
  background-color: var(--red);
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 30px;
  transition: 0.2s;
}

.add_to_cart:hover {
  background-color: var(--red-light);
}

.add_to_cart.__brown {
  background-color: var(--brown-dark);
}

.add_to_cart.__brown:hover {
  background-color: var(--brown-light);
}

.product_spinbox {
  display: flex;
  margin-left: 5px;
  border: 1px solid var(--grey);
  border-radius: 16px;
  position: relative;
}

.product_spinbox.__big {
  border-radius: 56px;
}

.spinbox_input {
  max-width: 30px;
  border: none;
  background-color: transparent;
  text-align: center;
  outline: none;
}

.spinbox_input.__big {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  height: 54px;
  width: 80px;
}

/* Chrome, Safari, Edge, Opera */
.spinbox_input::-webkit-outer-spin-button,
.spinbox_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.spinbox_input[type="number"] {
  -moz-appearance: textfield;
}

.spinbox_btn {
  color: #da3e41;
  font-family: Manrope;
  font-size: 12.749px;
  font-style: normal;
  font-weight: 700;
  line-height: 6.375px; /* 50% */
  background-color: transparent;
  border: none;
}

.spinbox_btn.__big {
  font-size: 28.5px;
  padding: 19px 15px;
}

.product_delivery_options {
  display: grid;
  grid-template-columns: 160px 160px;
  gap: 10px;
  background: #faf8f5;
  padding: 24px 22px;
}

.delivery_options_col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product_delivery_option {
  display: flex;
  align-items: center;
  display: grid;
  grid-template-columns: 25px 1fr;
}

.delivery_option_icon {
  justify-self: center;
  margin-left: -10px;
}

.product_delivery_content {
  display: flex;
  align-items: center;
  gap: 3px;
}

.product_unique_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 25px;
}

.in_house_box {
  display: flex;
  align-items: center;
  background-color: var(--green);
  gap: 4px;
  padding: 2px 5px;
  margin-top: 3px;
}

.white_btn {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  padding: 2px 15px;
  border-radius: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: 0.2s;
  font-size: 12px;
}

.white_btn:hover {
  border: 1px solid var(--green);
  color: var(--green);
}

.product_green_arrow {
  position: absolute;
  top: -20px;
  right: 15px;
  height: 58px;
}

.product_bottom {
  display: flex;
  justify-content: space-between;
  padding: 19px 12px;
  padding-bottom: 5px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  gap: 10px;
  margin-top: 20px;
}

.product_bottom_right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-right: 50px;
}

.product_bottom_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product_bottom_link {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
}

.product_bottom_link.__red {
  color: var(--red);
}

.product_about_heading {
  margin-top: 50px;
}

.product_about_wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 15px;
  margin-top: 25px;
}

.product_about_text {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 178.571% */
}

.product_about_heading {
  color: #000;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 75% */
}

.product_about_right {
  background-color: var(--brown-dark);
  padding: 16px 19px;
  height: fit-content;
}

.product_right_white_heading {
  color: #fff;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-top: 24px;
}

.product_mobile_only {
  display: none;
}

.contact_top {
  background-color: var(--red);
  width: 100%;
  display: flex;
  /* height: 132px; */
  height: fit-content;
}

.contact_top_img {
  height: 124px;
  width: auto;
  object-fit: contain;
  margin-right: 69px;
}

.contact_top_text {
  color: #fff;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 100% */
  padding: 30px 20px;
}

.contact_middle_img {
  max-height: 158px;
}

.contact_middle_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.contact_block_text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
}

.contact_middle {
  display: flex;
  background-color: var(--red);
  justify-content: space-evenly;
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: -30px;
}

.contact_bottom {
  display: flex;
  justify-content: space-between;
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  margin: 50px 0;
}

.contact_bottom a {
  text-decoration: none;
  color: #000;
}

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

.contact_bottom_phones {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_bottom_list.__disk li:not(.contact_bottom_heading) {
  list-style: disc;
  margin-left: 20px;
}

.contact_bottom_heading {
  color: var(--red);
  font-weight: 700;
}

.contact_orange_button {
  color: #fff !important;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  text-transform: uppercase;
  padding: 6px 15px;
  background-color: var(--red);
  border-radius: 30px;
  width: fit-content;
  margin-top: 10px;
}

.contact_map_wrap {
  margin-bottom: 20px;
}

.page_banner {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quote_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
  margin: 20px 0;
}

.main_text {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px; /* 178.571% */
}

.main_text p {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 178.571% */
}

.content-wrap.main_text {
  margin-bottom: 20px;
}
.content-wrap.main_text h2 {
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: 36px;
}
.page_img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 10px 0px;
}

.img_inline {
  display: block;
  margin-top: 10px;
}

.page_img_inline {
  float: right;
  margin-top: 16px;
}

.about_red_box {
  background-color: var(--red);
  width: 100%;
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.about_red_text {
  color: #fff;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px; /* 141.667% */
  padding: 24px 20px;
}

.about_red_img {
  max-height: 225px;
  width: auto;
  object-fit: contain;
}

.cart_top {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-top: 52px;
}

.cart_items {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart_item {
  display: flex;
  border: 1.434px solid #d9d9d9;
  box-shadow: 0px 2.86857px 2.86857px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 28px;
}

.cart_item_img {
  max-height: 160px;
}

.cart_item_details {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 26px;
}

.cart_item_name {
  color: #000;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 14.343px; /* 100% */
  margin-top: 16px;
}

.cart_item_price {
  color: #000;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 12.909px; /* 72% */
}

.cart_item_btns {
  display: flex;
  align-items: center;
  gap: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: 30px;
  margin-top: 25px;
  margin-bottom: 17px;
}

.cart_item_delete {
  background-color: transparent;
  border: none;
  margin-left: 10px;
}

.item_price_per {
  color: #000;
  font-family: Manrope;
  font-size: 10.04px;
  font-style: normal;
  font-weight: 400;
  line-height: 10.04px; /* 100% */
  position: absolute;
  bottom: -17px;
  width: 100%;
  text-align: center;
}

.cart_totals_text {
  color: #000;
  font-family: Manrope;
  font-size: 11.474px;
  font-style: normal;
  font-weight: 300;
  line-height: 11.474px; /* 100% */
  height: fit-content;
}

.cart_totals_bold {
  color: #000;
  font-family: Manrope;
  font-size: 14.343px;
  font-style: normal;
  font-weight: 700;
  line-height: 14.343px; /* 100% */
  margin-top: 27px;
}

.cart_totals {
  display: grid;
  grid-template-columns: 100px 80px;
  grid-auto-rows: min-content;
  gap: 20px 90px;
  margin-top: 20px;
}

.cart_forms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-top: 100px;
}

.cart_input {
  width: 100%;
  max-width: 400px;
  height: 50px;
  border-radius: 30px;
  border: 2px solid #d9d9d9;
  padding-left: 24px;
  outline: none;
}

.cart_input:focus {
  border: 2px solid var(--red);
}

.cart_input.__big {
  height: 119px;
  resize: none;
  padding-top: 15px;
}

.cart_form_row {
  display: flex;
  flex-direction: column;
}

.cart_radio {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  transition: 0.2s;
}

.cart_radio:checked {
  background-color: var(--red);
  border-color: var(--red);
}

.cart_form_row label {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px; /* 100% */
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.checkout_btns {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}

.checkout_btns > .orange_button {
  margin-top: 10px;
}

.checkbox_text {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  -webkit-appearance: none;
}

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

.checkbox_block {
  margin-bottom: 5px;
  display: flex;
  gap: 7px;
}

.checkbox_block.__footer {
  margin-top: 17px;
  margin-bottom: 30px;
}

.checkbox_text.__white {
  color: #fff;
}

.cart_legal_checkbox {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  border: 1px solid #574b3b;
  width: 14px;
  height: 14px;
}

.cart_checkbox_wrap {
  position: relative;
}

.checkbox_check {
  position: absolute;
  opacity: 0;
  left: 3.5px;
  bottom: 4.5px;
  height: 11.5px;
  width: 11.5px;
}

.author_box {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 128.571% */
  text-decoration: none;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 13px 19px;
  transition: 0.2s;
  text-align: center;
}

.authors_wrap {
  display: grid;
  justify-content: space-between;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 250px));
  margin-bottom: 50px;
  margin-top: 20px;
}

.author_box:hover {
  box-shadow: -4px 4px 5px rgba(0, 0, 0, 0.25);
}

.alphabet_content {
  flex-grow: 1;
  height: 100%;
}

.with_alphabet {
  display: flex;
}

.alphabet_line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.alphabet_bar {
  display: flex;
  gap: 10px;
  top: 100px;
  position: sticky;
  height: fit-content;
}

.alphabet_bar.__vertical {
  flex-direction: column;
  gap: 5px;
}

.alphabet_bar button {
  color: #da3e41;
  text-align: center;
  /* Заголовок */
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 100% */
  border: none;
  background-color: transparent;
  padding: 0;
  transition: 0.2s;
}

.alphabet_bar button:hover {
  color: #f17072;
}

.author_letter_header {
  width: 100%;
  border-bottom: 1px solid var(--grey);
  margin-bottom: 20px;
}

.author_letter {
  color: #fff;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 100% */
  background-color: var(--red);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.author_letter_block:hover > .author_letter_header > .author_letter {
  background-color: var(--red-light);
}

.cart_legal_checkbox:checked + .checkbox_check {
  opacity: 1;
}

.news_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news_card {
  border: 1px solid #d9d9d9;
  transition: 0.2s;
  padding: 32px 29px;
  display: flex;
  flex-direction: column;
}

.news_date {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.news_heading {
  color: #da3e41;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  margin: 20px 0;
}

.news_card:hover,
.main_news_item:hover {
  box-shadow: -6px 6px 7px 0px rgba(0, 0, 0, 0.25);
}

.news_card_text {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 20px;
}

.news_more_info {
  color: #da3e41;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
  margin-top: auto;
}

.book_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 40px 20px;
  margin-bottom: 20px;
}

.category_sorting {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.category_sorting label {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 178.571% */
}

.category_sorting select {
  box-shadow: -3px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-left: 5px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  outline: none;
}

.category_sorting select:focus {
  border-color: var(--red);
}

.category_show_more {
  color: #fff;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 85.714% */
  text-transform: uppercase;
  border: none;
  background-color: #574b3b;
  padding: 19px 20px;
  border-radius: 30px;
  width: calc(100% - 60px);
  margin: 50px auto;
  transition: 0.3s;
  display: block;
}

.category_show_more:hover {
  background-color: var(--brown-light);
}

.category_pagination {
  display: flex;
  gap: 25px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-bottom: 50px !important;
}

.pagination_btn {
  background: transparent;
  color: var(--brown-dark);
  /* текст кнопки */
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  text-transform: uppercase;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination_arrow.__rotate {
  transform: rotate(180deg);
}

.pagination_page {
  color: var(--brown-dark);
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: none;
}

.pagination_page.__active {
  border: 2px solid #574b3b;
}

.pagination_page:not(.__active):hover {
  border: 2px solid rgba(87, 75, 59, 0.3);
}

.category_more_wrap {
  width: 100%;
  display: flex;
}

.category_red_block {
  background-color: var(--red);
  margin: 15px auto;
  overflow-x: hidden;
}

.category_red_block > .content-wrap {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.category_red_list {
  padding: 22px 0;
}

.category_red_list li:not(.no_disk) {
  list-style: disc;
  margin-left: 20px;
}

.category_red_text {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 156.25% */
}

.category_red_img {
  height: 170px;
  width: auto;
  object-fit: contain;
}

.category_bottom_heading {
  color: #000;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 20px 0;
}

.order_card {
  display: grid;
  align-items: center;
  padding: 25px;
  grid-template-columns: 51px 1fr 50px 100px;
  gap: 20px;
  border: 1.5px solid #d9d9d9;
  background: #fff;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.order_items {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 24px;
}

.order_thumb {
  height: 51px;
  width: 51px;
  object-fit: contain;
}

.order_item_name {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
}

.order_amount {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  text-transform: uppercase;
}

.order_price {
  color: #000;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 12.909px; /* 72% */
}

.order_price.__small {
  font-size: 24px;
}

.order_total {
  display: flex;
  gap: 68px;
  margin-left: auto;
  margin-right: 43px;
}

.delivery_gif {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 400px;
  margin: 24px 0;
}

.main_list li {
  list-style: disc;
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  margin-left: 20px;
}

.main_list li::marker {
  font-size: 12px;
}

.red_request_box {
  background-color: var(--red);
  margin-top: 50px;
}

.request_box_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.request_box_img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}

.request_box_left {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.request_box_left > .checkbox_text {
  margin: 0;
}

.request_box_heading {
  color: #fff;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 100% */
}

.request_box_input {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  max-width: 400px;
  padding: 4px 10px;
  margin-top: 10px;
  outline: none;
}

.request_box_input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: Manrope;
}

.request_submit_btn {
  color: #da3e41;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  background-color: #fff;
  border: 0;
  border-radius: 30px;
  padding: 6px 20px;
  width: fit-content;
  transition: 0.2s;
}

.request_submit_btn:hover {
  background-color: var(--red-light);
  color: #fff;
}

.legal_link {
  color: #000;
  font-size: 10px;
}

.legal_link.__white {
  color: #fff;
}

.searchbox_wrap {
  position: relative;
  width: 100%;
  max-width: 350px;
  flex-shrink: 1;
}

.search_results {
  position: absolute;
  top: 37px;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.searchbox_result {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 10px 25px;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--grey);
}

.searchbox_price {
  margin-top: 5px;
  font-size: 15px;
}

.searchbox_price s {
  font-size: 13px;
}

.searchbox_price .-is-action {
  color: var(--red);
}

.searchbox_text b {
  font-weight: 600;
}

.searchbox_result:last-child {
  border-bottom: 1px solid var(--grey);
}

.searchbox_title {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;
}

.searchbox_thumb {
  object-fit: contain;
  width: 100%;
  height: 51px;
  flex-shrink: 0;
}

.product-video {
  height: 350px;
  width: 100%;
  object-fit: contain;
  background: black;
}

.product-video-card {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: black;
}

.searchbox_text {
  text-decoration: none;
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
}

.popup {
  height: 100lvh;
  width: 100lvw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(196, 196, 196, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone_request_popup,
.eksklyuziv_request_popup {
  background-color: #fff;
  box-shadow: -4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  position: relative;
  gap: 20px;
}

.add_to_cart_popup {
  background-color: #fff;
  box-shadow: -4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  position: relative;
}
p.popup_title {
  font-size: 20px;
  font-weight: bold;
}
p.eksklyuziv_title {
  font-size: 24px;
  font-weight: 700;
}
.phone_request_popup > .checkbox_block {
  width: 100%;
}

.popup_input {
  width: 100%;
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px; /* 100% */
  padding: 13px 19px;
  border-radius: 30px;
  border: 2px solid #d9d9d9;
}

.popup_input::placeholder {
  width: 100%;
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px; /* 100% */
}

.popup_close {
  position: absolute;
  top: -30px;
  right: 10px;
  background-color: transparent;
  border: none;
}

.form_button {
  color: #fff;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background-color: var(--red);
  border: none;
  border-radius: 30px;
  padding: 6px 12px;
  transition: 0.2s;
  cursor: pointer;
}

.form_button:hover {
  background-color: var(--red-light);
}

.form_button.__brown {
  background-color: var(--brown-dark);
}

.form_button.__brown:hover {
  background-color: var(--brown);
}

.popup_btns {
  display: flex;
  gap: 23px;
  margin-top: 18px;
}

.filter_checkbox {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font: Manrope, sans-serif;
  font-size: 14px;
  margin-top: 1px;
}

.filter_checkbox_wrap {
  margin-top: 1px;
  position: relative;
}

.author_filter_box {
  max-height: 158px;
  overflow: auto;
  scrollbar-color: var(--grey) transparent;
  scrollbar-width: thin;
  margin-left: 5px;
}

.author_filter_box::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: transparent; /* or add it to the track */
}

/* Add a thumb */
.author_filter_box::-webkit-scrollbar-thumb {
  background: var(--grey);
  border-radius: 99px;
}

.filter_input {
  border-radius: 30px;
  border: 2px solid #d9d9d9;
  padding: 5px 12px;
  box-sizing: border-box;
  width: 100%;
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px; /* 100% */
  outline: none;
  margin-bottom: 8px;
}

.filter_input:focus {
  border: 2px solid var(--red);
}

.price_filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 5px;
}

.price_range_slider {
  height: 10px;
  padding: 0 10px;
  margin-bottom: 10px;
}

.price_range_slider,
.price_range_slider .noUi-handle {
  box-shadow: none;
  border: none;
}

/* Hide markers on slider handles */
.price_range_slider .noUi-handle::before,
.price_range_slider .noUi-handle::after {
  display: none;
}

.price_range_slider .noUi-handle {
  height: 18px;
  width: 18px;
  background-color: var(--red);
  border-radius: 9px;
  right: -10px;
  top: -7px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.price_range_slider .noUi-base {
  background-color: var(--grey);
  height: 5px;
  margin-top: 5px;
  border-radius: 10px;
}

.price_range_slider .noUi-connect {
  background-color: var(--red-light);
}

.price_range_boxes {
  display: flex;
  gap: 5px;
  /* flex-direction: column; */
  /* gap: 10px; */
}

.price_range_box {
  width: 100%;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px; /* 100% */
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price_range_box_input {
  padding: 5px 12px;
  border-radius: 30px;
  box-sizing: border-box;
  border: 2px solid #d9d9d9;
  color: #000;
  flex-grow: 1;
  outline: none;
  width: 100%;
}

.price_range_box_input:focus {
  border: 2px solid var(--red);
}

.price_range_box_title {
  margin-left: 10px;
}

.price_range_box_input::-webkit-outer-spin-button,
.price_range_box_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price_range_box_input[type="number"] {
  -moz-appearance: textfield;
}

.mobile_filters_wrap {
  background-color: #fff;
  box-shadow: -4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 50px;
  position: relative;
}

.open_filter_btn {
  display: none;
  align-items: center;
  gap: 3px;
  background-color: var(--brown-dark);
  border: none;
  border-radius: 30px;
  padding: 9px 20px;
  margin-bottom: 48px;
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  transition: 0.2s;
}

.open_filter_btn:hover {
  background-color: var(--brown-light);
}

.filter_icon {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.form_error_text {
  font-family: Manrope, sans-serif;
  font-size: 12px;
  margin-left: 20px;
  margin-top: 5px;
  font-weight: 400;
  color: #da3e41;
  display: none;
}

.form_error_text.__extra_offset {
  margin-left: 31px;
}

.form_error_text.__shown {
  display: block;
}

.book_item_box .splide__pagination {
  margin-top: 6px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.book_slider.content-wrap:last-child {
  margin-bottom: 40px;
}

.product_about_left p:not(strong) {
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}

.product_about_left p:not(:last-child) {
  margin-bottom: 25px;
}

.product_about_left p:has(strong) {
  background-image: url("/local/templates/family_book/img/line.svg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: initial;
  padding-bottom: 10px;
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 10px !important;
}

.product_about_left ul li {
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  margin-bottom: 10px;
}

.product_about_left ul {
  margin-bottom: 25px;
}

@media (max-width: 1380px) {
  .main_brown_actions {
    grid-template-rows: repeat(5, 40px);
  }
}

@media (max-width: 1310px) {
  .content-wrap {
    /*    margin: 0px 23px;*/
    margin-left: 23px;
    margin-right: 23px;
    width: auto;
  }

  .main_grey_book2 {
    height: 450px;
  }

  .brown_block_img_desktop {
    display: none;
  }

  .brown_block_img_mobile {
    display: block;
    object-fit: contain;
    z-index: 0;
  }

  .brown_block_img_mobile.__1 {
    position: absolute;
    height: 235px;
    width: 235px;
    top: -7px;
    right: -10px;
  }

  .brown_block_img_mobile.__2 {
    position: absolute;
    height: 235px;
    width: 235px;
    top: 155px;
    right: 32px;
  }
}

@media (max-width: 1310px) {
  #footer_catalog {
    display: none;
  }

  .book_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main_red_book1 {
    /* right: 0; */
    /* top: 20px; */
    right: 160px;
    top: 176px;
    height: 200px;
  }

  .main_red_shade {
    right: 180px;
    height: 120px;
    width: 120px;
    top: 140px;
  }

  .main_red_left * {
    max-width: 500px;
  }
}

@media (max-width: 1180px) {
  .header_info {
    display: none;
  }

  .main_news_list {
    flex-direction: column;
    gap: 40px;
  }

  .main_red_book2 {
    height: 280px;
  }

  .sidebar {
    display: none;
  }

  .with_sidebar {
    display: flex;
  }

  .open_filter_btn {
    display: flex;
  }

  .category_sorting {
    margin-bottom: 10px;
  }
}

@media (max-width: 975px) {
  .main_red_book2 {
    display: none;
  }

  .main_red_shade {
    display: none;
  }

  .main_red_book1 {
    right: -52px;
    bottom: 0px;
    top: unset;
  }

  .contact_top {
    flex-direction: column;
    height: fit-content;
  }

  .contact_top_img {
    max-height: 140px;
    margin: 0;
  }

  .contact_top_text {
    font-size: 14px;
  }

  .contact_middle {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: -30px;
  }

  .contact_bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact_bottom_phones {
    width: fit-content;
    align-items: flex-start;
  }

  .contact_bottom_wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .img_inline {
    display: flex;
    flex-direction: column-reverse;
  }

  .page_img_inline {
    width: 100%;
    aspect-ratio: 390/281;
    object-fit: cover;
  }

  .about_red_box {
    flex-direction: column;
  }

  .about_red_text {
    font-size: 14px;
    line-height: 18px;
  }

  .about_red_img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1100px) {
  .main_brown_actions {
    display: flex;
    flex-direction: column;
  }

  .brown_block_img_mobile.__1 {
    top: 48px;
    right: -63px;
  }

  .brown_block_img_mobile.__2 {
    top: 277px;
    right: -63px;
  }

  .header_mid > .content-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 18px;
    margin: 0;
  }

  .header_callback {
    flex-direction: row;
    grid-row: 1;
    grid-column: 1/3;
    justify-content: space-around;
    width: 100%;
    background-color: var(--brown-dark);
    padding: 15px 10px;
    padding-right: 40px;
    position: sticky;
    top: 0;
    z-index: 49;
  }

  .header_phone {
    color: #fff;
    font-size: 14px;
  }

  .header_search {
    grid-row: 2;
    grid-column: 1/3;
    gap: 13px;
    padding-bottom: 6.5px;
  }

  .searchbox_wrap {
    grid-row: 3;
    grid-column: 1/3;
  }

  .logo_wrap {
    grid-template-columns: 54px 102px;
    height: fit-content;
  }

  .logo_name_box {
    height: 14px;
    width: 102px;
    background-size: contain;
  }

  .logo_title {
    height: 9px;
    width: auto;
  }

  .logo_img {
    height: 54px;
    width: 54px;
    margin-bottom: -5px;
  }

  .header_bottom {
    /* display: none; */
  }

  .header_menu {
    display: none !important;
  }

  .header_top {
    display: none;
  }

  .orange_button {
    font-size: 12px;
    height: fit-content;
  }

  .open_menu {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    background-color: transparent;
    border: none;
  }

  .mobile_menu {
    display: block;
  }

  .catalog_header {
    display: none;
  }

  #callback_btn {
    display: block;
    margin-right: 30px;
  }

  header.__sticky {
    position: inherit;
    margin-bottom: 0;
  }

  .cart_top {
    flex-direction: column;
  }

  .cart_forms {
    display: flex;
    flex-direction: column;
  }

  .cart_input {
    max-width: none;
  }

  .cart_item_btns {
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 15px;
    width: 100%;
    margin-right: 23px;
    gap: 33px 0;
  }

  .cart_item_price {
    grid-row: 2;
  }

  .cart_item_delete {
    grid-row: 2;
    margin: 0;
  }

  .product_spinbox.__big {
    width: fit-content;
  }

  .spinbox_input.__big {
    height: 27px;
  }

  .spinbox_btn.__big {
    padding: 9px 11px;
    font-size: 19px;
  }

  /* .item_price_per {
  text-align: left;
} */

  .cart_totals {
    gap: 20px 0;
    justify-content: space-between;
    max-width: 300px;
  }

  .cart_forms {
    gap: 10px;
  }

  .alphabet_bar {
    top: 5px;
  }

  .alphabet_bar.__mobile_vertical {
    flex-direction: column;
  }

  .alphabet_bar button {
    font-size: 20px;
    height: 20px;
  }

  .cart_top {
    margin-top: 20px;
  }

  .product_thumbnails {
    margin: 15px -30px;
  }

  .header_search .header_search_submit .search_icon {
    height: 16.5px;
    width: 16.5px;
  }
}

@media (max-width: 850px) {
  .footer_wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
  }

  .footer_mobile_only {
    display: block;
  }

  .footer_mobile_hide {
    display: none;
  }

  .footer_contact_info {
    grid-column: 1/3;
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_heading.__margin {
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .red_block_wrap {
    margin: 0;
  }

  .footer_red_block {
    grid-column: 1/3;
    max-width: 100%;
    width: 100%;
    box-shadow: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: initial;
    margin-top: 18px;
  }

  .footer_red_wrap {
    /* max-width: 220px; */
    height: fit-content;
  }

  .footer_arrow {
    display: none;
  }

  .footer_red_heading span {
    font-size: 18px;
    font-weight: 600;
  }

  .footer_red_heading {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    /* max-width: 210px; */
  }

  .checkbox_wrap {
    margin-bottom: 0;
  }

  footer {
    padding-bottom: 0;
    margin-top: 0px;
  }

  .main_news {
    margin-bottom: 20px;
  }

  .catalog-products-viewed {
    margin-bottom: 20px;
  }

  .footer_get_here {
    grid-column: 1;
    margin-top: 10px;
  }

  .footer_contact {
    grid-column: 2;
  }

  .footer_address {
    grid-column: 1;
    grid-row: 1;
  }

  .product_top {
    flex-direction: column;
  }

  .product_green_arrow {
    /* display: none; */
    left: 50%;
    transform: translateX(130px);
  }

  .product_left {
    max-width: 100%;
  }

  .product_images {
    margin-left: auto;
    margin-right: auto;
  }

  .product_bottom {
    font-size: 10px;
  }

  .product_about_wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .product_mobile_only {
    display: flex;
  }

  .product_about_heading {
    font-size: 18px;
  }

  .product_bottom {
    margin-top: 20px;
    padding: 10px 6px;
    line-height: 10px;
  }

  .product_bottom_link {
    font-size: 10px;
    line-height: 10px;
  }

  .product_bottom_link::before {
    content: "\a";
    white-space: pre;
  }

  .product_img {
    width: 100%;
    height: auto;
  }

  .product-video-card {
    width: 100%;
    height: auto;
    max-height: 400px;
  }

  .product_images {
    width: 100%;
    height: auto;
  }

  .product_bottom_logo {
    height: 38px;
    margin-top: 11px;
  }

  .product_page_header,
  .page_header {
    font-size: 18px;
    line-height: 18px; /* 100% */
  }

  .news_wrap {
    grid-template-columns: 1fr;
  }

  .category_red_block > .content-wrap {
    flex-direction: column;
    margin: 0;
  }

  .category_red_list {
    margin: 0 23px;
  }

  .category_red_img {
    max-width: 100%;
  }

  .product_thumbnails {
    width: calc(100% + 50px);
  }

  .product_bottom_right {
    gap: 9px;
  }

  .red_block_wrap.__mobile {
    display: block;
  }

  .footer_red_block.__desktop {
    display: none;
  }
}

@media (max-width: 980px) {
  .main_grey_1 p {
    max-width: unset;
  }

  .main_grey_2 > .main_grey_text {
    max-width: unset;
  }

  .main_grey_1 {
    flex-direction: column-reverse;
    margin: 0;
  }

  .main_grey_2 {
    flex-direction: column;
    margin: 0;
  }

  .main_grey_book1,
  .main_grey_book2 {
    margin-left: -60px;
    width: calc(100% + 120px);
    height: 100%;
  }

  .main_grey_text {
    margin: 0;
  }

  .main_grey_2 > .main_grey_text {
    margin-left: 0;
  }

  .book_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main_grey {
    padding-bottom: 3px;
  }
}

@media (max-width: 760px) {
  .main_red_book1 {
    height: 172px;
  }

  .page_banner.__hide_mobile {
    display: none;
  }

  .page_banner.__mobile {
    display: block;
  }

  .page_banner.__desktop {
    display: none;
  }

  .product_thumb {
    height: 80px;
  }

  .product_thumbnails {
    height: 80px;
  }

  .authors_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .pagination_btn,
  .pagination_page {
    font-size: 10px;
  }

  .pagination_page {
    height: 17.6px;
    width: 17.6px;
    padding: 0;
  }

  .category_pagination {
    gap: 5px;
  }

  .request_box_wrap {
    display: flex;
    flex-direction: column;
  }

  .request_box_heading {
    font-size: 18px;
    line-height: 18px;
  }

  .request_box_left {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .request_box_input {
    max-width: none;
  }

  .img_full_popup {
    margin: 40px;
  }
  /*.img_popup_controls {
  display: none;
}*/

  .product_img_full {
    max-width: 100%;
  }

  .book_slider.content-wrap:last-child {
    margin-bottom: 15px;
  }

  .header_search .header_search_field {
    font-size: 12px;
    line-height: 14.709px;
  }
}

@media (max-width: 520px) {
  .main_red_book1 {
    right: -52px;
    height: 172px;
  }

  .product_delivery_options {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .product_bottom_right {
    margin: 0;
  }

  .product_price {
    font-size: 28px;
  }

  .product_old_price {
    font-size: 20px;
  }

  .add_to_cart {
    font-size: 10px;
  }

  .contact_bottom {
    display: flex;
    flex-direction: column;
  }

  .contact_top_img {
    width: 100%;
    height: auto;
  }

  .mobile_no_margin {
    /*    margin: 0 -23px;*/
    margin-left: -23px;
    margin-right: -23px;
    width: calc(100% + 46px);
  }

  .author_letter {
    font-size: 18px;
    height: 22px;
    width: 22px;
  }

  .news_wrap {
    gap: 20px;
  }

  .news_heading {
    font-size: 18px;
  }

  .news_card_text {
    font-size: 14px;
  }

  .news_more_info {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
  }

  .book_grid > .book_item_box {
    width: auto;
  }

  .category_pagination {
    justify-content: space-evenly;
  }

  .category_bottom_heading {
    font-size: 16px;
  }

  .order_price {
    font-size: 14px;
  }

  .order_card {
    padding: 6px 11px;
    grid-template-columns: 51px 1fr 35px 75px;
  }

  .book_item_title {
    font-size: 16px;
    word-break: break-word;
  }

  .book_item_about {
    font-size: 14px;
    word-break: break-word;
  }

  .main_grey_heading {
    font-size: 18px;
    line-height: 18px;
  }

  .main_grey_heading.__1 {
    margin-top: 30px;
  }

  .main_news_title {
    font-size: 16px;
    line-height: 18px;
    margin: 5px 0;
  }

  .main_news_text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .header_search {
    width: 90%;
  }

  .searchbox_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 320px;
  }

  .contact_middle {
    padding-bottom: 30px;
  }

  .author_mobile_view {
    margin: 0 -23px;
    margin-left: -10px;
    width: calc(100% + 46px);
  }

  .main_grey_list li {
    line-height: 18px;
  }

  .main_block_text,
  .main_action_block {
    font-size: 14px;
    line-height: 16px;
  }

  .searchbox_thumb {
    height: 40px;
  }

  .searchbox_result {
    display: grid;
    grid-template-columns: 40px 1fr;
  }
}

@media (max-width: 460px) {
  .book_catogory_box {
    height: 100%;
    margin-left: 23px;
    margin-right: 23px;
  }

  .category_book_img {
    height: 100%;
    width: 100%;
  }

  .category_sorting {
    flex-direction: column;
    gap: 10px;
  }
}

.text_18 {
  font-size: 18px;
}

.text_16 {
  font-size: 16px;
}

.text_14 {
  font-size: 14px;
}

.text_12 {
  font-size: 12px;
}

.text_10 {
  font-size: 10px;
}

.text_300 {
  font-weight: 300;
}

.text_400 {
  font-weight: 400;
}

.text_500 {
  font-weight: 500;
}

.text_600 {
  font-weight: 600;
}

.text_700 {
  font-weight: 700;
}

.text_caps {
  text-transform: uppercase;
}

.text_white {
  color: #fff;
}

.delivery_options_col a {
  color: 000;
}
.delivery_options_col a:hover {
  color: #db3e41;
  text-decoration: none;
}
#orderDescription {
  margin-top: 12px;
}

/* Вход / Регистрация */

header .user_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

header a.user_block:hover .btn {
  color: var(--red);
}

header .user_block .user_icon,
.cart_img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  margin-bottom: 2px;
}

header .user_block,
header .user_block .btn {
  padding: 0;
  border: none;
  background: none;
  font-family: Manrope;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  color: #574B3B;
  cursor: pointer;
}

header .user_block .btn:hover {
  color: var(--red);
}

.auth_popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.auth_popup.__shown {
  opacity: 1;
  pointer-events: all;
}

.auth_popup .background {
  position: absolute;
  z-index: -1;
  background-color: rgba(196, 196, 196, 0.8);
  height: 100%;
  width: 100%;
}

.auth_popup .content {
  background: #fff;
  box-shadow: -4px 4px 10px 0px #00000040;
  height: fit-content;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 50px;
  padding-bottom: 32px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.auth_popup .content form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.auth_popup .content .forgot {
  font-family: Manrope;
  font-size: 8px;
  font-weight: 400;
  line-height: 8px;
  text-align: left;
  width: 100%;
  text-decoration: underline;
  color: #000;
  margin-bottom: 12px;
}

.auth_popup .heading {
  font-family: Manrope;
  font-size: 24px;
  font-weight: 700;
  line-height: 32.78px;
  text-align: center;
}

.auth_popup .auth_input {
  padding: 19px 24px;
  border-radius: 30px;
  border: 2px solid #D9D9D9;
  font-family: Manrope;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  width: 100%;
  outline: none;
  transition: border 0.1s;
}

.auth_popup .auth_input:focus {
  border: 2px solid var(--red-light);
}

.auth_popup .content .fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 10px;
}

.auth_popup .content .orange_button {
  padding: 4px 9px;
  border: none;
  margin-top: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}

.auth_popup .checkbox_wrapper {
  width: 100%;
}

.auth_popup .link_btn {
  font-family: Manrope;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: center;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  border: none;
  background: none;
  color: #000;
}

.checkbox_wrapper {
  display: flex;
  gap: 7px;
}

.auth_popup .close {
  position: absolute;
  right: 0;
  top: -35px;
  background: none;
  border: none;
  cursor: pointer;
}

.checkbox_wrapper .input {
  display: none;
}

.checkbox_wrapper .label {
  font-family: Manrope;
  font-size: 12px;
  font-weight: 400;
  line-height: 10px;
}

.checkbox_wrapper .box {
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  border: 1px solid #574B3B;
  margin-top: 1px;
}

.checkbox_wrapper .box .check {
  display: none;
  position: relative;
  bottom: 3px;
  left: 1px;
}

.checkbox_wrapper .input:checked ~ .box .check {
  display: block;
}


header .user_block {padding-right: 20px;}


.lk_basket{display: flex;flex-direction: row;}


@media screen and (max-width: 700px) {
  .auth_popup .content {
    height: 100%;
    width: 100%;
  }

  .auth_popup .content .close {
    top: 20px;
    right: 20px;
  }

  .auth_popup .content .close .icon g {
    fill: #000;
  }

  .auth_popup .content {
    padding: 20px;
    overflow-y: auto;
  }

  .auth_popup .auth_input {
    padding: 14px 20px;
  }

  .auth_popup .content .orange_button {
    padding: 6px 20px;
    margin-bottom: 12px;
  }

  .auth_popup .link_btn {
    font-size: 12px;
  }

  header .user_block {
    padding-right: 5px;
  }
}

/* Личный кабинет */

.lk_wrap {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.lk_wrap .menu {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.lk_wrap .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.lk_wrap .separator_hr {
  margin: 0;
  border: none;
  border-top: 1px solid #c4c4c4;
}

.lk_wrap .menu .lk_menu_item {
  text-decoration: none;
  color: #000;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color 0.2s;
}

.lk_wrap .menu .lk_menu_item:hover {
  color: #DA3E41;

}

.lk_wrap .menu .lk_menu_item.__exit {
  font-weight: 400;
}

.lk_wrap .product_page_header {
  margin: 0;
}

.lk_wrap .lk_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin-top: 33px;
  margin-bottom: 7px;
}

.lk_wrap .lk_input {
  border: 2px solid #D9D9D9;
  border-radius: 30px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  color: #000000;
  padding: 14px 24px;
  outline: none;
  transition: border 0.1s;
}

.lk_wrap .lk_input:focus {
  border: 2px solid #DA3E41;
}

.lk_wrap .orange_button {
  border: none;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  cursor: pointer;
}

.lk_item {
  /* display: grid; */
  /* grid-template-columns: 50px 1fr 50px 110px; */
  display: flex;
  align-items: center;
  padding: 25px;
  padding-right: 37.5px;
  border: 1.5px solid #D9D9D9;
  box-shadow: 0px 3px 3px 0px #00000033;
  text-decoration: none;
  color: #000;
  gap: 10px;
}

.lk_item .item_info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.lk_item .item_info .price_info {
  display: grid;
  grid-template-columns: 50px 110px;
  gap: 10px;
  align-items: center;
}

.lk_item .lk_thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.lk_item .item_name {
  font-family: Manrope;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  flex: 1;
}
.lk_item:hover{color:#da3e41;text-decoration: none;}
.bx_my_order_cancel a{color:#da3e41 !important;}
.lk_item .count {
  font-family: Manrope;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-align: right;
}

.lk_item .price {
  font-family: Manrope;
  font-size: 17.93px;
  font-weight: 600;
  line-height: 100%;
  text-align: right;
}

.lk_history_wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 24px;
  margin-bottom: 60px;
}

.product_page_header.__red {
  color: #DA3E41;
}

.order_inner .topper {
  line-height: 24.59px;
  font-family: Manrope;
  font-size: 18px;
  font-weight: 400;
  background-color: #FAF8F5;
  padding: 3px 15px;
  padding-bottom: 2px;
}

.order_inner .topper .bold {
  font-weight: 600;
}

.order_inner .order_contents {
  border: 2px solid #D9D9D9;
  box-shadow: 0px 4px 4px 0px #00000040;
  display: flex;
  flex-direction: column;
}

.order_inner .order_contents .top_text {
  font-family: Manrope;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.12px;
  margin-top: 12px;
  margin-left: 15px;
  margin-right: 15px;
}

.order_inner .order_contents .items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 6px 15px;
}

.order_inner .order_contents .totals {
  background-color: #FAF8F5;
  display: flex;
  justify-content: space-between;
  font-family: Manrope;
  font-size: 32px;
  font-weight: 600;
  line-height: 43.71px;
  padding: 18px 16px;
  padding-right: 55px;
  margin-top: 17px;
}

.order_inner .order_contents .bottom_actions {
  display: flex;
  margin: 15px 56px 15px auto;
  gap: 18px;
}

.order_inner .order_contents .bottom_actions .action_btn {
  border: none;
  background: none;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.12px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  color: inherit;
}

.order_inner .order_contents .bottom_actions .action_btn:hover {
  color: #DA3E41;
}

.order_outer .status {
  font-family: Manrope;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.59px;
}

.order_inner {
  margin-top: 15px;
}

.lk_orders_wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 23px;
}

.lk_wrap .empty_wrap {
  margin-top: 35px;
}

.lk_wrap .empty_wrap .txt {
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.12px;
}

.lk_wrap .empty_wrap .txt .inline_link {
  color: inherit;
  text-decoration: none;
}

.lk_wrap .empty_wrap .txt .inline_link:hover {
  color: #FFF;
  text-decoration: underline;
}

.lk_wrap .empty_wrap .btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.lk_wrap .empty_wrap .btns .btn {
  padding: 6px 15px;border-radius: 30px;
}

.lk_wrap .product_page_header {
  font-size: 32px;
  line-height: 43.71px;
}

.lk_wrap .product_page_header.__slider {
  margin-top: 60px;
}

@media screen and (max-width: 900px) {
  .lk_wrap {
    flex-direction: column;
  }

  .lk_wrap .lk_block {
    max-width: unset;
    width: 100%;
  }

  .lk_wrap .menu {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 700px) {
  .order_inner .order_contents .totals {
    flex-direction: column;
  }

  .order_inner .order_contents .totals {
    font-size: 23px;
    line-height: 120%;
  }

  .order_inner .order_contents .totals .total_label {
    font-size: 18px;
    line-height: 120%;
  }

  .order_inner .order_contents .bottom_actions {
    margin: 10px 16px
  }

  .lk_item .item_info {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk_item {
    align-items: flex-start;
  }

  .lk_item .item_info .price_info {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  }

  .lk_item {
    padding: 12px;
  }

  .order_outer .status {
    font-size: 14px;
  }

  .order_inner .topper {
    font-size: 16px;
  }

  .order_inner {
    margin-top: 10px;
  }

  .lk_orders_wrap {
    gap: 30px;
  }

  .lk_wrap .product_page_header {
    font-size: 23px;
    line-height: 120%;
  }

  .lk_wrap .product_page_header.__slider {
    margin-top: 40px;
  }
}

@media screen and (max-width: 370px) {
  .lk_item .item_info .price_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}
