@import "general.css";

:root {
  --after-select-transform: translateY(-25%) rotate(45deg);
  --after-select-transform-on: translateY(-25%) rotate(225deg);
}

/*begin my css */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.error-404 {
  padding-bottom: 200px;
}
body.overflow {
  overflow: hidden;
}
.fixed_tel__wrapper {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 4px 4px 22px -4px rgba(34, 60, 80, 0.2);
  border-radius: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.fixed_tel__wrapper.active {
  border-radius: 10px;
}
.fixed_tel__social {
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.fixed_tel__close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}
.fixed_tel__open {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fixed_tel__open img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
/*		Alert styles		*/
.alert {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.alert.alert--active {
  display: block;
}
.message {
  position: absolute;
  max-width: 90%;
  z-index: 1;
  left: 50%;
  top: 45%;
  width: 480px;
  padding: 80px 30px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.alert_img {
  width: 150px;
  margin: 0 auto 20px;
}
.alert_img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.alert_text {
  text-align: center;
  font-size: 36px;
  color: #C53364;
}
.my-alert__close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 20px;
  cursor: pointer;
  background: url('../img/close_black.svg') center / 80% no-repeat;
}
/*		Alert styles END		*/
.container {
  width: 1640px;
  margin: 0 auto;
}
.header_top {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 5;
  padding: 12px 0;
  background-color: #fff;
  box-shadow: 0px 0px 9px rgba(148, 148, 148, 0.25);
}
.header_top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 105px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 10px;
  background: url('../img/logo.svg') center / contain no-repeat;
}
.menu_block {
  display: flex;
}
.city_sel {
  margin-right: 40px;
  cursor: pointer;
  text-transform: uppercase;
  color: #C53364;
  font-size: 18px;
  padding-right: 20px;
  background: url('../img/sel_arrow_pink.svg') top 55% right / 12px no-repeat;
}
.menu {
  display: flex;
}
.menu li:not(:last-child) {
  margin-right: 30px;
}
.menu_link {
  color: #333;
  font-size: 18px;
  transition: 0.3s;
  text-transform: uppercase;
}
.menu_link.active,
.menu_link:hover {
  color: #C53364;
  text-decoration: underline;
}
.head_right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.search_block {
  position: relative;
  z-index: 1;
  width: 280px;
}
.search_block.absolute {
  position: absolute;
  left: 20px;
  right: 20px;
  width: auto;
  top: 100%;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.search_block.absolute .search_input {
  border-radius: 5px;
  box-shadow: none;
}
.search_input {
  display: block;
  width: 100%;
  border-radius: 50px;
  padding: 10px 20px;
  padding-right: 45px;
  background-color: #fff;
  outline: none;
  border: 1px solid transparent;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.search_input:focus {
  border-color: #C53364;
}
.search_btn {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  right: 15px;
  top: 50%;
  cursor: pointer;
  border: none;
  transform: translateY(-50%);
  background: url('../img/search_icon.svg') center / contain no-repeat;
}
.search_show_btn {
  display: none;
  width: 25px;
  height: 25px;
  background: url('../img/search_icon.svg') center / 85% no-repeat;
}
.basket_btn,
.user_btn {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-left: 20px;
  filter: grayscale(100%);
  background: center / contain no-repeat;
}
.basket_btn:hover,
.user_btn:hover {
  filter: grayscale(0);
}
.basket_btn {
  position: relative;
  z-index: 1;
  background-image: url('../img/basket_icon.svg');
}
.user_btn {
  background-image: url('../img/user_icon.svg');
}
.user_btn_block {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.user_btn_block.active {
  filter: grayscale(0);
}
.user_menu {
  position: absolute;
  display: none;
  right: 0;
  width: 180px;
  top: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.user_link {
  display: block;
  padding: 10px;
  color: #C53364;
  background-color: #fff;
}
.user_link:hover {
  color: #fff;
  background-color: #C53364;
}
.basket_len {
  position: absolute;
  right: -35%;
  top: 35%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #333;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #C53364;
}
.mob_menu {
  display: none;
  width: 30px;
  margin-left: 20px;
  position: relative;
  flex-shrink: 0;
}
.menu_btn {
  display: block;
  cursor: pointer;
}
.menu_btn span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #333;
  transform: rotate(0deg);
  transition: 0.4s;
}
.menu_btn:hover span,
.mob_menu.active .menu_btn span {
  background-color: #C53364;
}
.menu_btn .menu2,
.menu_btn .menu3 {
  margin-top: 7px;
}
.under_nav {
  position: absolute;
  display: none;
  width: 220px;
  right: 0;
  top: 100%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.under_nav .menu {
  flex-direction: column;
}
.under_nav .menu li:not(:last-child) {
  margin-right: 0;
  margin-bottom: 15px;
}
.under_nav .city_sel {
  margin-top: 20px;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}
.head_contact {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.soc_list {
  display: flex;
}
.soc_list li:not(:last-child) {
  margin-right: 20px;
}
.soc_btn {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 5px;
  transition: 0.3s;
  filter: brightness(1);
  background: center / contain no-repeat;
}
.soc_btn:hover {
  filter: brightness(1.1);
}
.whatsapp {
  background-image: url('../img/whatsapp.svg');
}
.vkontakte {
  background-image: url('../img/vkontakte.svg');
}
.facebook {
  background-image: url('../img/facebook.svg');
}
.instagram {
  background-image: url('../img/instagram.svg');
}
.head_tel {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}
.head_tel:hover {
  text-decoration: underline;
}
.fixed_tel {
  z-index: 1000;
  display: block;
  width: 40px !important;
  height: 40px !important;
}
.fixed_tel svg{
  pointer-events: none;
}
.fixed_tel_icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url('../img/tel_white.svg') center / 45% no-repeat, linear-gradient(227.41deg, #52E7E1 7.44%, rgba(101, 193, 214, 0) 84.82%), #C53364;
}
.fixed_tel_icon:after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fixed_tel_pulse {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.5s linear infinite;
  background: linear-gradient(227.41deg, #52E7E1 7.44%, rgba(101, 193, 214, 0) 84.82%), #C53364;
}
@keyframes pulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.city_popup,
.popup_block {
  display: none;
  position: fixed;
  z-index: 7;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(12, 62, 82, 0.53);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.city_form {
  position: absolute;
  z-index: 1;
  width: 750px;
  max-width: 95%;
  left: 50%;
  top: 50%;
  overflow: hidden;
  padding: 40px 70px;
  transform: translate(-50%, -50%);
}
.city_form:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: blur(5px);
  background: linear-gradient(130.66deg, rgba(174, 65, 104, 0.8) 16.78%, rgba(124, 220, 219, 0.8) 98.7%), url('../img/city_bg.jpg') center / cover no-repeat;
}
.city_form .title {
  font-size: 36px;
}
.city_form .form_btn {
  display: table;
  margin: 20px auto 0;
  padding: 11px 50px;
}
.city_list_block {
  margin-top: 30px;
  border-radius: 5px;
  padding: 30px;
  background-color: rgba(52, 52, 52, 0.53);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.city_list {
  max-height: 300px;
  overflow: auto;
}
.city_list .city_item:not(:last-child) {
  margin-bottom: 30px;
}
.city_list::-webkit-scrollbar {
  width: 6px;
}
.city_list::-webkit-scrollbar-track {
  background-color: transparent;
}
.city_list::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 20px;
}
.city_item {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  padding: 5px 0;
}
.city_item:hover,
.city_item.active {
  color: #C53364;
}
.popup_block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  overflow: hidden;
}
.popup_block.section.page {
  padding-top: 180px;
}
.popup_block:after,
.popup_block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  filter: blur(20px);
  z-index: -2;
  background: url('../img/bg_img.jpg') center / cover no-repeat;
}
.popup_block:before {
  z-index: -1;
  filter: blur(0);
  background-image: none;
  background-color: rgba(12, 62, 82, 0.53);
}
.login_form {
  max-width: 100%;
  padding: 40px;
  margin: 40px auto 0;
  background-color: #fff;
  border-radius: 10px;
}
.login_form .input_block {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.login_form .input_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.login_form .form_input {
  display: block;
  width: 100%;
  border-radius: 4px;
  padding: 12px 15px;
  border: 1px solid #C53364;
}
.login_form .form_input.pass_input {
  padding-right: 55px;
}
.login_form .form_btn {
  display: table;
  margin: 0 auto;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 25px;
}
.pass_eye {
  position: absolute;
  right: 5px;
  top: 30px;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.pass_eye:after,
.pass_eye:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.2s;
  background: center / 60% no-repeat;
}
.pass_eye:after {
  opacity: 1;
  background-image: url('../img/view.svg');
}
.pass_eye:before {
  opacity: 0;
  background-image: url('../img/no-view.svg');
}
.pass_eye.active:after {
  opacity: 0;
}
.pass_eye.active:before {
  opacity: 1;
}
.pass_error {
  display: none;
  margin-top: 5px;
  font-size: 14px;
  color: red;
}
.gray_btn {
  color: #fff;
  border-radius: 5px;
  background-color: #999;
  text-align: center;
}
.gray_btn:hover {
  background-color: #C53364;
}
.reg_block {
  width: 900px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reg_block .input_block {
  width: 45%;
}
.reg_accept {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.reg_accept input {
  display: none;
}
.reg_accept_img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 15px;
  transition: 0.1s;
  border: 1px solid #999;
  background: url('../img/check.svg') center / 60% no-repeat;
}
.reg_accept_img.active {
  background-color: #C53364;
}
.reg_accept_text {
  cursor: pointer;
  color: #999;
  font-size: 18px;
}
.auth_block,
.cabinet_block,
.password_form {
  width: 450px;
}
.login_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login_button .login_link {
  flex-shrink: 0;
  margin-left: 20px;
}
.login_button .form_btn {
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}
.login_forget_pwd {
  margin-top: 30px;
  text-align: center;
}
.login_forget_pwd a {
  white-space: nowrap;
}
.login_link {
  color: #00ABED;
  font-weight: 500;
}
.login_link:hover {
  text-decoration: underline;
}
.cabinet_block{
  margin-bottom: 70px;
}
/*.cabinet_block .pass_eye {
  display: none;
}*/
/*.cabinet_block .form_input {
  pointer-events: none;
  color: #8F8F8F;
}*/
.cabinet_block .input_block.active .form_input {
  color: #333;
  pointer-events: auto;
}
.cabinet_block .input_block.active .pass_eye {
  display: block;
}
.edit_icon {
  position: absolute;
  right: 5px;
  top: 30px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: 0.1s;
  background: url('../img/edit_icon.svg') center / 50% no-repeat;
}
.edit_icon:hover {
  opacity: 0.5;
}
.section {
  padding: 100px 0;
}
.section.page {
  padding-top: 105px;
}
.section_block {
  margin-top: 100px;
}
.main_section {
  overflow: hidden;
}
.main_cat_list {
  display: flex;
  flex-wrap: wrap;
}
.main_cat_item {
  width: 19%;
  margin-right: 1%;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.main_cat_item:hover {
  border-color: #C53364;
}
.main_cat_item.way{
  opacity: 0;
  transform: translateY(50px);
}
.main_cat_item.way.way--active{
  animation: fade 1s forwards 1;
}
.main_cat_list .main_cat_item:nth-child(1){animation-delay: 0.1s;}
.main_cat_list .main_cat_item:nth-child(2){animation-delay: 0.3s;}
.main_cat_list .main_cat_item:nth-child(3){animation-delay: 0.6s;}
.main_cat_list .main_cat_item:nth-child(4){animation-delay: 0.9s;}
.main_cat_list .main_cat_item:nth-child(5){animation-delay: 1.2s;}

@keyframes fade{
  form{
    opacity: 0;
    transform: translateY(50px);
  }
  to{
    opacity: 1;
    transform: none;
  }
}

.main_cat_img {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}
.main_cat_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main_cat_name {
  text-align: center;
  font-size: 20px;
  color: #C53364;
}
.slider {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slick-slide {
  outline: none;
}
.slider_text {
  width: 50%;
}
.slide_title {
  font-family: 'Roboto';
  font-size: 110px;
  font-weight: 500;
}
.slide_desc {
  font-size: 44px;
  font-weight: 500;
}
.slide_title,
.slide_desc {
  background: linear-gradient(#C53364, #65C1D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide_btn {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 50px;
  font-size: 18px;
  color: #fff;
  outline: none;
  transition: 0.4s;
  margin-top: 40px;
  background: linear-gradient(90deg, #00abed, rgba(0, 171, 237, 0)), #d03f70;
}
.slide_btn:hover {
  background: linear-gradient(90deg, #00abed, rgba(0, 171, 237, 0)), #00abed;
}
.slider_img {
  width: 570px;
  height: 570px;
  position: relative;
  z-index: 1;
}
.main_img_slider {
  position: relative;
  z-index: 1;
  /*width: 570px;
	height: 570px;*/
  width: 100%;
  height: 100%;
  margin-left: auto;
}
.main_img_slider .slick-track{
  display: flex;
}
.main_img_slider .slick-slide{
  height: auto;
}
.main_img_slider:after {
  content: "";
  position: absolute;
  left: -12px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(145.11deg, #52E7E1 13.24%, #C53364 92.82%), #C4C4C4;
}
.main_img {
  width: 100%;
  height: 79%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
}
.main_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_img_slider .slick-slide {
  transition: all 0.5s ease-out !important;
}
.main_img_slider .slick-slide.slick-current {
  transform: none;
}
.main_img_slider .slick-slide.prev {
  transform: rotateZ(-25deg);
}
.main_img_slider .slick-slide.next {
  transform: rotateZ(25deg);
}
.slider-second {
  display: flex;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}
.slider_text-second {
  width: 40%
}
.slider_img-second {
  width: 60%
}
.main_text_slider-second {
  padding-bottom: 30px;
}
.main_text_slider-second .slick-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.slide_btn-second {
  display: inline-block;
    padding: 17px 40px;
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    outline: none;
    transition: 0.4s;
    margin-top: 40px;
    background: linear-gradient(90deg, #00abed, rgba(0, 171, 237, 0)), #d03f70;
}
.main_text_slider-second ul .slick-active button {
  background: #10A3E4;
  width: 14px; 
  height: 14px;
}
.main_text_slider-second ul li button {
  transition: all 0.3s;
  display: block;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: rgba(16, 163, 228, 0.50);
  font-size: 0;
}
.slide_title-second {
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  background: linear-gradient(90deg, #DB3D7A 0%, #0FA3E4 67.44%);
  background-clip: text;
  color: transparent;
  max-width: 500px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide_desc-second {
  color: #333;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-top: 24px;
}
.main_img-second img { 
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 400px;
}
.main_img_slider-second .slick-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}
.main_img_slider-second .slick-prev-second {
    left: 42px;
}
.main_img_slider-second .slick-next-second {
    right: 42px;
}

.main_img_dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  /*width: 700px;
	height: 700px;*/
  width: 125%;
  height: 125%;
  border-radius: 50%;
  /*border: 2px solid red;*/
  transform: translate(-50%, -50%);
}
.main_dots button {
  font-size: 0;
  width: 0;
  height: 0;
  padding: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: 0.4s;
  border-radius: 50%;
  background-color: #C53364;
}
.main_dots li {
  position: absolute;
  line-height: 0;
  transform: translate(-50%, -50%);
}
.main_dots li:hover button {
  box-shadow: 0 0 0 8px rgba(175, 156, 206, 0.68);
}
.main_dots li:hover .main_dot_num {
  opacity: 1;
}
.main_dots .dot_1 {
  top: 67%;
  left: 3%;
}
.main_dots .dot_2 {
  top: 33%;
  left: 3%;
}
.main_dots .dot_3 {
  top: 6.5%;
  left: 25%;
}
.main_dots .dot_4 {
  top: 1%;
  left: 59%;
  opacity: 0.4;
}
.main_dots .dot_5 {
  top: 14%;
  left: 85%;
  opacity: 0;
}
.main_dots .slick-active button,
.main_dots .slick-active:hover button {
  box-shadow: 0 0 0 11px rgba(175, 156, 206, 0.68);
}
.circle_svg {
  width: 111%;
  height: 111%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-70deg);
}
.circle_gradient {
  stroke-width: 0.4px;
}
.title {
  text-align: center;
  font-size: 48px;
  color: #C53364;
  font-weight: normal;
}
.title.title_white {
  color: #fff;
}
.title.title_left {
  text-align: left;
}
.title.small_title {
  font-size: 32px;
}
.about {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.about_img {
  position: relative;
  z-index: 1;
  width: 330px;
  height: 330px;
  flex-shrink: 0;
  margin-left: 100px;
}
.about_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_img:after,
.about_img:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
  /*transform: translate(-50%, -50%);*/
}
.about_img:after {
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  border-width: 6px;
  border-color: #00ABED;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotateZ(180deg);
  animation: rotate_reverse 12s linear infinite;
}
.about_img:before {
  left: -17px;
  top: -17px;
  right: -17px;
  bottom: -17px;
  border-width: 2px;
  border-color: #C53364;
  border-bottom-color: transparent;
  border-right-color: transparent;
  animation: rotate 8s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate_reverse {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
.about_img_item {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.about_text {
  width: 100%;
  font-size: 18px;
  text-indent: 20px;
  line-height: 160%;
}
.share_block{
  text-indent: 0;
  margin-top: 30px;
}
.share_heading{
  margin-bottom: 5px;
}
.white_btn {
  padding: 10px;
  color: #333;
  text-align: center;
  transition: 0.3s;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #C53364;
}
.white_btn:hover {
  color: #fff;
  background-color: #C53364;
}
.about_btn {
  display: table;
  margin: 30px auto 0;
  font-size: 18px;
  min-width: 230px;
  padding: 17px;
}
.img_section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_section:after,
.img_section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(270.35deg, rgba(0, 171, 237, 0.68) -20.07%, rgba(197, 51, 100, 0) 98.4%), rgba(197, 51, 100, 0.66);
}
.img_section:before {
  filter: blur(6px);
  background: center / cover no-repeat;
}
.advan_section:before {
  background-image: url('../img/advan_bg.jpg');
}
.advan_list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.advan_list .advan_item:nth-child(5n) {
  margin-right: 0;
}
.advan_item {
  width: 19%;
  margin-right: 1.2%;
  margin-top: 30px;
}
.advan_item.way{
  opacity: 0;
  transform: translateY(50px);
}
.advan_item.way.way--active{
  animation: fade 1s forwards 1;
}
.advan_list .advan_item:nth-child(1){
  animation-delay: 0.2s;
}
.advan_list .advan_item:nth-child(2){
  animation-delay: 0.4s;
}
.advan_list .advan_item:nth-child(3){
  animation-delay: 0.6s;
}
.advan_list .advan_item:nth-child(4){
  animation-delay: 0.8s;
}
.advan_list .advan_item:nth-child(5){
  animation-delay: 1s;
}

.advan_img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.advan_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.advan_name {
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.request_section:before {
  background-image: url('../img/request_bg.jpg');
}
.request_section:after {
  background: linear-gradient(270.25deg, rgba(197, 51, 100, 0) 1.4%, rgba(0, 171, 237, 0.58) 99.78%), rgba(197, 51, 100, 0.58);
}
.shares_slider {
  margin-top: 40px;
}
.shares_slider .share_item {
  height: 95%;
  margin: 5px 10px 20px;
}
.shares_slider .slick-track {
  display: flex;
}
.shares_slider .slick-slide {
  height: auto;
}
.share_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 85px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.share_item.disabled .product_amount,
.share_item.disabled .product_btn{
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(100%);
}
.share_img {
  display: block;
  width: 100%;
  height: 180px;
  margin: 20px auto 10px;
}
.share_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.share_type {
  position: absolute;
  left: 20px;
  top: 20px;
}
.share_cat {
  color: #846F75;
  font-size: 16px;
  margin-bottom: 10px;
}
.share_cat:hover {
  text-decoration: underline;
}
.share_name_block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-weight: 500;
}
.share_name {
  font-size: 16px;
  color: #C53364;
  margin-right: 20px;
}
.share_name:hover {
  text-decoration: underline;
}
.share_price {
  flex-shrink: 0;
  max-width: 100%;
  font-size: 21px;
}
.share_price_old {
  color: red;
  text-decoration: line-through;
}
.share_desc {
  font-size: 18px;
  line-height: 140%;
}
.share_btn {
  position: absolute;
  width: 230px;
  max-width: 90%;
  left: 50%;
  font-size: 18px;
  padding: 12px;
  bottom: 25px;
  transform: translateX(-50%);
}
.share_img,
.share_cat,
.share_name,
.share_btn {
  outline: none;
}
.slick_arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  border: none;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  filter: grayscale(100%);
  transform: translateY(-50%);
  background: url('../img/left_pink.svg') center / 40% no-repeat;
}
.slick_arrow:hover {
  filter: grayscale(0);
}
.slick_prev {
  left: -50px;
}
.slick_next {
  right: -50px;
  transform: translateY(-50%) rotateZ(180deg);
}
.request_form {
  width: 600px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  margin: 40px auto 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(256.7deg, rgba(255, 255, 255, 0.33) -20.97%, rgba(255, 255, 255, 0) 59.56%), rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.request_form .input_block {
  width: 48%;
}
.request_form .input_name {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.request_form .form_input {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C53364;
}
.burgundy_btn {
  color: #fff;
  border-radius: 50px;
  text-align: center;
  background-color: #C53364;
}
.form_btn {
  border: none;
  outline: none;
  cursor: pointer;
}
.request_btn {
  margin: 20px auto 0;
  padding: 20px 70px;
  font-size: 18px;
  transition: 0.4s;
  background: linear-gradient(90deg, #C53364, rgba(0, 171, 237, 0)), #C53364;
}
.request_btn:hover{
  background: linear-gradient(90deg, #C53364, rgba(0, 171, 237, 0)), #00abed;
}
.partners {
  margin-top: 40px;
}
.partner_img {
  width: 500px;
  flex-shrink: 0;
  margin-left: 40px;
}
.partner_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.soc_buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.soc_item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-right: 15px;
  border-radius: 5px;
  color: #fff;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  filter: brightness(1);
}
.soc_item:hover {
  filter: brightness(1.1);
}
.soc_item_icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-right: 10px;
  background: center / contain no-repeat;
}
.tg_btn,
.vk_btn,
.fb_btn {
  background-color: #00ABED;
}
.wp_btn {
  background-color: #22E388;
}
.insta_btn {
  background: linear-gradient(90deg, #E1E023 0%, #FF4449 34.37%, #EE5274 69.79%, #BD7BEF 100%);
}
.telegram_icon {
  background-image: url('../img/telegram_icon.svg');
}
.whatsapp_icon {
  background-image: url('../img/whatsapp_icon.svg');
}
.vkontakte_icon {
  background-image: url('../img/vk_icon.svg');
}
.instagram_icon {
  background-image: url('../img/instagram_icon.svg');
}
.facebook_icon {
  background-image: url('../img/facebook_icon.svg');
}
footer {
  margin-top: auto;
  background-color: #BDAFB3;
}
.footer_top {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}
.footer_left .logo {
  margin-right: 70px;
}
.foot_btn {
  padding: 17px 40px;
  font-size: 18px;
}
.foot_tel {
  display: inline-block;
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}
.foot_tel:hover {
  text-decoration: underline;
}
.foot_menu {
  display: flex;
  flex-wrap: wrap;
}
.foot_menu li:not(:last-child) {
  margin-right: 20px;
}
.foot_link {
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  text-transform: uppercase;
}
.foot_link:hover,
.foot_link.active {
  text-decoration: underline;
  color: #C53364;
}
.footer_bottom {
  padding: 30px 0;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.created a {
  color: #fff;
}
.created a:hover {
  text-decoration: underline;
}
.discount_popup{
  position: fixed;
  left: 0;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.8);
}
.discount_popup_body{
  width: 757px;
  height: 452px;
  border-radius: 10px;
  padding: 70px 40px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 45%;
  text-align: center;
  transform: translate(-50%, -50%);

}
.discount_popup_body::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 178px;
  left: 0;
  top: 0;
  background-image: url('../img/discount-bg.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.discount_popup_btn{
  font-weight: 700;
  margin-top: 30px;
  font-family: "Rubik";
  font-weight: 600;
  font-size: 20px;
}
.discount_popup_title{
  color: #353535;
  margin-top: 20px;
  text-align: center;
  font-family: Rubik;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px; /* 100% */
  letter-spacing: 3px;
}
.discount_popup_descr{
  margin-top: 30px;
  color: #353535;
  text-align: center;
  font-family: Rubik;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 120% */
  text-transform: uppercase;
}
.popup {
  display: none;
}
.popup.fancybox-content {
  max-width: 95%;
}
.request_popup {
  width: 480px;
}
.popup_form {
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.popup_form .input_block {
  margin-top: 20px;
}
.popup_form .input_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.popup_form .form_input {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  border: 1px solid #ADADAD;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.popup_form .form_btn {
  display: block;
  margin-top: 30px;
  padding: 16px;
  font-size: 20px;
  font-weight: 500;
}
/*		About Page styles		*/
.breadcrumbs {
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 50px;
  font-size: 20px;
}
.breadcrumbs a {
  color: #333;
}
.breadcrumbs a[href]:hover {
  cursor: pointer;
  color: #333;
  text-decoration: underline;
}
.main_breads {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin-bottom: -3px;
  opacity: 0.4;
  transition: 0.3s;
  filter: grayscale(100%);
  background: url('../img/home_icon.svg') center / contain no-repeat;
}
.main_breads:hover {
  opacity: 1;
  filter: grayscale(0);
}
.breadcrumbs li {
  display: inline-block;
  margin-bottom: 5px;
  color: #333;
}
.breadcrumbs li:last-child a {
  color: #C53364;
}
.breadcrumbs li:not(:first-child) {
  margin-left: 15px;
}
.breadcrumbs li:not(:first-child):before {
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  margin-right: 10px;
  color: #333;
  border: 7px solid transparent;
  border-left-color: #C6C6C6;
}
.about_inner {
  margin-top: 50px;
}
.about_inner .about_img {
  margin-left: 0;
  float: left;
  margin-right: 50px;
  margin-bottom: 35px;
}
/*		About Page styles END		*/
/*		Printed_Products Page styles	*/
.printed {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.printed_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 170%;
}
.printed_slider {
  width: 50%;
  flex-shrink: 0;
  margin-left: 30px;
}
.printed_slider .slick-dots {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}
.printed_slider .slick-dots li:not(:last-child) {
  margin-right: 12px;
}
.printed_slider .slick-dots li {
  margin-top: 10px;
}
.printed_slider .slick-dots button {
  width: 0;
  height: 0;
  padding: 8px;
  border: none;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.4;
  background-color: #C53364;
}
.printed_slider .slick-dots button:hover {
  opacity: 0.7;
}
.printed_slider .slick-dots .slick-active button,
.printed_slider .slick-dots .slick-active button:hover {
  opacity: 1;
}
.printed_slider .slick-slide {
  position: relative;
  z-index: 1;
}
.printed_slider .slick-current {
  z-index: 2;
}
.printed_slide {
  width: 400px;
  height: 400px;
  margin: 10px -60px 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transform: scale(0.6);
  filter: blur(7px);
  transition: 1s;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.printed_slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.slick-current .printed_slide {
  transform: none;
  filter: blur(0px);
}
/*		Printed_Products Page styles END	*/
/*		Catalog Page styles 	*/

.catalog_note{
  margin-bottom: 20px;
  font-style: italic;
}
.catalog_note b,
.catalog_note strong,
.catalog_note a{
  color: #C53364;
}
.catalog_note a{
  text-decoration: underline;
}
.catalog_note a:hover{
  text-decoration: none;
}


.catalog_top {
  margin-bottom: 100px;
}
.catalog_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.catalog_btn {
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 50px;
  padding-left: 50px;
  background: url('../img/burger_icon.svg') left center / 33px no-repeat;
}
.catalog_search {
  position: relative;
  z-index: 1;
  width: 100%;
}
.sub_catalog {
  position: relative;
  z-index: 3;
  max-height: 0;
  transition: 1s;
  opacity: 0;
  pointer-events: none;
  border: 1px solid transparent;
}
.sub_catalog.active {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}
.catalog_cats {
  padding: 50px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 25px rgba(184, 181, 182, 0.32);
}
.catalog_cats .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}
/*.catalog_cats .container .catalog_cats_list:nth-child(5n) {
  margin-right: 0;
}*/
.catalog_cats .container:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  border: 25px solid transparent;
  border-bottom-color: #fff;
  margin-bottom: 45px;
}
.catalog_cats_list {
  /*width: 19%;
  margin-right: 1.2%;*/
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.catalog_cats_list li:not(:last-child) {
  margin-bottom: 30px;
}
.catalog_cats_list > li {
  position: relative;
  /*z-index: 1;*/
  width: 19%;
  margin-right: 1.2%;
}
.catalog_cats_list > li:nth-child(5n){
  margin-right: 0;
}
.catalog_cats_list li:hover .sub_cat {
  max-height: 300px;
}
.catalog_cats_list .sub_cat_item {
  /*z-index: 2;*/
}
.cat_item {
  display: table;
  height: 50px;
  overflow: hidden;
  font-size: 20px;
  color: #333;
}
.cat_item:hover {
  color: #C53364;
}
.sub_cat {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: 0;
  transition: 1s;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.sub_cat_list {
  padding: 15px;
}
.sub_cat_list .cat_item {
  height: auto;
}
.sub_cat_item > .cat_item {
  color: #C53364;
  padding-right: 20px;
  filter: grayscale(100%);
  background: url('../img/cat_arrow_pink.svg') top 10px right / 13px no-repeat;
}
.sub_cat_item > .cat_item:hover {
  filter: grayscale(0);
}
.catalog_filter {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.catalog_filter_button {
  text-align: right;
  display: none;
  align-items: center;
  justify-content: center;
}
.catalog_head__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 40%;
}
.catalog_filter_button img {
  width: 22px;
  cursor: pointer;
}
.catalog_filter .filter_type:nth-child(5n) {
  margin-right: 0;
}
.filter_type {
  position: relative;
  z-index: 2;
  width: 18%;
  margin-right: 2.5%;
  margin-top: 30px;
  border-radius: 20px;
  background-color: #fff;
  transition: 1s;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.filter_type.active {
  z-index: 3;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.filter_type_name {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: #C53364;
  filter: grayscale(100%);
  padding: 10px 45px 10px 20px;
  background: url('../img/down_pink.svg') right 20px center / 16px no-repeat;
}
.filter_type_name:hover,
.filter_type_name.active {
  filter: grayscale(0);
}
.filter_btn {
  display: block;
  width: 100%;
  padding: 11px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #C53364;
}
.filter_type_body {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  box-shadow: 0px 12px 12px rgba(168, 168, 168, 0.25);
}
.filter_list {
  max-height: 200px;
  overflow: auto;
}
.filter_list .filter_list_item:not(:last-child) {
  margin-bottom: 10px;
}
.filter_list::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}
.filter_list::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 10px;
}
.filter_list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #C53364;
}
.filter_list_item {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.filter_list_item input {
  display: none;
}
.filter_item_img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 3px;
  transition: 0.3s;
  border: 1px solid #bebebe;
  background: url('../img/check.svg') center / 65% no-repeat;
}
.filter_item_img.active {
  background-color: #C53364;
}
.filter_cur_price {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 500;
}
.filter_price_input{
  width: 20px;
  border: none;
  outline: none;
  -webkit-appearance: none;
}
.filter_price_input::-webkit-outer-spin-button,
.filter_price_input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.filter_cur_separator {
  margin: 0 10px;
}
.filter_price {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter_range {
  margin-top: -5px;
}
.hide {
  display: none;
}
.irs--flat .irs-handle {
  top: 23px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #C53364;
  box-shadow: 0 0 0 6px rgba(175, 156, 206, 0.7);
}
.irs--flat .irs-handle i,
.irs--flat .irs-handle i:first-child {
  display: none;
}
.irs--flat .irs-bar {
  background-color: #C53364;
}
.irs--flat .irs-bar,
.irs--flat .irs-line {
  height: 10px;
}
.sorting_block {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.sorting_name {
  font-size: 24px;
  font-weight: 500;
  color: #C53364;
  margin-right: 20px;
  flex-shrink: 0;
}
.sorting_sel {
  padding-right: 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  -webkit-appearance: none;
  background: url('../img/down_black.svg') top 60% right / 13px no-repeat;
}
.products {
  display: flex;
  flex-wrap: wrap;
}
.products .product_item:nth-child(4n) {
  margin-right: 0;
}
.product_item {
  width: 24%;
  margin-right: 1.3%;
  border: 1px solid #ADADAD;
  margin-top: 40px;
}
.product_item .share_desc {
  margin-bottom: 20px;
}
.product_articul {
  position: absolute;
  left: 20px;
  top: 20px;
}
.product_type {
  position: absolute;
  top: 20px;
  right: 20px;
  color: red;
}
.product_name {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  color: #00ABED;
  margin-bottom: 20px;
}
.product_name:hover {
  text-decoration: underline;
}
.product_price_block {
  margin-top: auto;
  /* margin-bottom: 20px; */
  width: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_total_price {
  font-size: 24px;
  margin-right: 10px;
}
.product_btn {
  position: absolute;
  left: 50%;
  width: 60%;
  min-width: 200px;
  font-size: 18px;
  padding: 14px;
  font-weight: 500;
  bottom: 25px;
  transform: translateX(-50%);
}
.product_btn.disabled {
  pointer-events: none;
  background-color: #BABABA;
}
.product_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
}
.product_amount.disabled .amount_block {
  pointer-events: none;
}
.product-select {
  min-width: 80px;
}
.amount_name {
  display: table;
  margin: 0 auto 10px;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  background-color: #BABABA;
}
.amount_name.active {
  background-color: #00ABED;
}
.amount_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(51, 51, 51, 0.05);
  padding: 8px;
  border-radius: 50px;
  gap: 0px;
  height: 40px;
  min-width: 104px;
}
.amount_val {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  width: auto;
}
.amount_val_input {
  width: 30px;
  text-align: center;
  border: none;
  pointer-events: none;
  padding: 5px 10px;
  -moz-appearance: textfield;
  background: inherit;
}
.product-select {
  background: rgba(51, 51, 51, 0.05);
  border-radius: 50px;
  font-size: 18px;
  height: 40px;
  align-items: center;
  padding: 8px 12px;
  display: flex;
  padding-right: 27px;
  font-weight: 500;
  color: #333;
  line-height: normal;
  position: relative;
  cursor: pointer;
  transition: .5s ease all;
}
.product-select.active {
  position: relative;
}
.product-select.active::after {
  transform: var(--after-select-transform-on);
}
.product-select::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #333333;
  border-right: 2px solid #333333;
  right: 10px;
  top: 44%;
  transform: var(--after-select-transform);
  transition: .2s ease all;
  z-index: 3;
}
.product-select__list {
  width: 100%;
  position: absolute;
  top: calc(100%);
  width: 100%;
  left: 0;
  padding: 8px 12px;
  z-index: 100;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: .5s ease all;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #F5F5F5;
}
.product-select__list-active {
  opacity: 1;
}
.product-select__active {
  border-radius: 10px 10px 0 0;
}
.amount_val_input::-webkit-outer-spin-button,
.amount_val_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount_btn {
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: center / 90% no-repeat;
}
.add {
  background-image: url('../img/add_icon.svg');
}
.remove {
  background-image: url('../img/remove_icon.svg');
}
.pagination {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pagination .pag:not(:last-child),
.pagination li:not(:last-child) {
  margin-right: 8px;
}
.pag,
.pagination li a {
  color: #333;
}
.pag:hover,
.pag.active,
.pagination li a:hover,
.pagination .current {
  color: #C53364;
}
.pag.active,
.pagination .current {
  text-decoration: underline;
}
.seo_cat_text a{
  color: #C53364;
  font-weight: 500;
}
.seo_cat_text a:hover{
  text-decoration: underline;
}
.product_alert{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.25);
}
.prod_alert_block{
  width: 500px;
  max-width: 95%;
  border-radius: 10px;
  padding: 40px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 45%;
  text-align: center;
  transform: translate(-50%, -50%);
}
#prod_added .prod_alert_block{
	padding: 30px;
	width: 400px;
}
.prod_alert_buttons{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blue_btn{
	color: #fff;
	border-radius: 50px;
	text-align: center;
	transition: 0.3s;
	background-color: #00ABED;
}
.blue_btn:hover{
	background-color: #0088bc;
}
.prod_alert_btn{
	width: 250px;
	max-width: 100%;
	padding: 12px 20px;
	margin-top: 20px;
}
.prod_alert_title{
  font-size: 20px;
  font-weight: bold;
}
.prod_alert_block .red_btn{
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  font-weight: 500;
}
.close_prod_alert{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: url('../img/close_black.svg') center / 70% no-repeat;
}



/*		Catalog Page styles END 		*/
/*		Catalog_Inner Page styles		*/
.product_inner {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product_img {
  width: 45%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product_slider {
  width: 100%;
  padding-right: 210px;
  margin-left: -10px;
}
.product_slider_item {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: 15px;
  cursor: zoom-in;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.product_slider_item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product_dots {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  width: 200px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
.product_dots .product_dots_item:not(:last-child) {
  margin-bottom: 20px;
}
.product_dots_item {
  display: block;
  width: 115px;
  height: 115px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid transparent;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.product_dots_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_dots_item:hover,
.product_dots_item.active {
  border-color: #C53364;
}
.product_info {
  width: 53%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.prod_info {
  position: relative;
  z-index: 1;
  width: 280px;
  flex-shrink: 0;
  margin-right: 50px;
}
.prod_info.disabled{
  pointer-events: none;
  filter: grayscale(100%);
  cursor: not-allowed;
}
.prod_info .product_amount {
  width: 100%;
  margin-top: 30px;
}
.prod_info .product_btn {
  position: static;
  display: block;
  width: 100%;
  transform: none;
}
.prod_info .amount_name {
  margin-left: 0;
  padding: 0;
  color: #333;
  background-color: transparent;
}
.prod_info .amount_name.active {
  color: #C53364;
}
.prod_info .amount_row {
  padding: 5px 15px;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid transparent;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.prod_info .product_total_price {
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.prod_info .amount_block.active .amount_row {
  border-color: #C53364;
}
.prod_info_row {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.prod_info_row.product_price_block {
  display: block;
  margin-top: 0;
}
.prod_info_type {
  color: red;
}
.prod_chars {
  width: 100%;
}
.prod_chars .prod_chars_row:not(:last-child) {
  margin-bottom: 20px;
}
.prod_chars_row {
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  justify-content: space-between;
  border-bottom: 3px dotted #333;
}
.prod_chars_name {
  font-weight: 500;
  max-width: 60%;
  padding-right: 10px;
}
.prod_chars_value {
  padding-left: 10px;
  max-width: 40%;
}
.prod_chars_name,
.prod_chars_value {
  margin-bottom: -5px;
  background-color: #fff;
}
.prod_inner_text {
  font-size: 18px;
  line-height: 160%;
  margin-top: 30px;
  font-weight: 500;
}

.prod_complect{
  margin-top: 50px;
}
.prod_complect.disabled{
  pointer-events: none;
  filter: grayscale(100%);
  cursor: not-allowed;
}
.prod_complect_head{
  width: 250px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background-color: #00ABED;
}
.complect_head_icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 10px;
  background: url('../img/complect_arr.svg') center / contain no-repeat;
}
.prod_complect_row{
  display: flex;
  border-radius: 5px;
  border: 1px solid #ADADAD;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}

.complect_list{
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.complect_plus{
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin: 0 20px;
  background: url('../img/complect_plus.svg') center / 80% no-repeat;
}
.complect_item{
  width: 50%;
  display: flex;
  align-items: center;
}
.complect_img{
  display: block;
  width: 230px;
  height: 230px;
  flex-shrink: 0;
  margin-right: 10px;
}
.complect_img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.complect_item_name{
  display: inline-block;
  color: #333;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 15px;
  font-size: 18px;
}
.complect_item_name[href]:hover{
  text-decoration: underline;
}
.complect_item_price{
  font-weight: bold;
  color: red;
  font-size: 18px;
}

.complect_info{
  width: 32%;
  flex-shrink: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid #ADADAD;
}
.complect_info .complect_amount_block,
.complect_info .complect_btn{
  width: 48%;
}
.product_amount.complect_amount{
  margin: 0;
  width: 100%;
}
.complect_total{
  text-align: center;
  font-weight: bold;
  color: red;
  font-size: 24px;
}
.product_btn.complect_btn{
  position: static;
  display: block;
  transform: none;
}

/*		Catalog_Inner Page styles END		*/
/*		Shares Page styles 		*/
.shares {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.shares .share_item {
  width: 24%;
  margin-right: 1.3%;
  border: 1px solid #ADADAD;
  margin-top: 40px;
}
.shares .share_item:nth-child(4n) {
  margin-right: 0;
}
.shares .share_type {
  color: red;
}
.shares .share_cat {
  color: #00ABED;
  font-weight: 500;
  font-size: 18px;
}
.share_date {
  position: absolute;
  right: 20px;
  top: 20px;
}
.green_btn {
  color: #fff;
  border-radius: 30px;
  text-align: center;
  transition: 0.3s;
  background: linear-gradient(93deg, #DB3D7A 6.11%, #0FA3E4 91.19%);
  width: 90%;
}
/* .green_btn:hover {
  background-color: #08b060;
} */
/*		Shares Page styles END 		*/
/*		My_Orders Page styles		*/
.orders {
  margin-top: 40px;
  padding-bottom: 20px;
  overflow: auto;
}
.orders_table {
  width: 99%;
  min-width: 800px;
  font-size: 24px;
  font-weight: 500;
  border-collapse: collapse;
}
.orders_table th {
  padding: 40px 10px;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff;
  background-color: #00ABED;
}
.orders_table td {
  width: 250px;
  text-align: center;
  padding: 10px;
  border: 1px solid #333;
}
.orders_table tr {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
}
.orders_table tr td:nth-child(5),
.orders_table tr td:last-child {
  width: auto;
  min-width: 230px;
}
.orders_clear {
  height: 30px;
}
.order_date_block {
  width: 170px;
  text-align: left;
  margin: 0 auto;
}
.order_time,
.order_date {
  padding-left: 35px;
  background: left center / 22px no-repeat;
}
.order_time {
  margin-bottom: 10px;
  background-image: url('../img/time_icon.svg');
}
.order_date {
  background-image: url('../img/calendar_icon.svg');
}
.green_status {
  color: #22E388;
}
.yellow_status {
  color: #E1B400;
}
.red_status {
  color: red;
}
.delivery_list {
  text-align: left;
  padding-left: 10px;
}
.delivery_row {
  margin-top: 7px;
}
.delivery_row span {
  color: #ADADAD;
  font-size: 18px;
}
.order_icons {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order_icon_item {
  display: block;
  width: 25px;
  height: 25px;
  background: center / contain no-repeat;
}
.order_icon_item.active {
  filter: grayscale(100%);
}
.order_view {
  background-image: url('../img/view_icon.svg');
}
.order_repeat {
  background-image: url('../img/repeat_icon.svg');
}
.order_delete {
  background-image: url('../img/delete_icon.svg');
}
.order_info td {
  padding: 0;
  border: none;
}
.order_info_block {
  display: none;
  border: 1px solid #333;
  border-top: none;
  background-color: #FFFAFC;
}
.order_info_block .order_info_row:not(:last-child) {
  border-bottom: 1px solid #333;
}
.order_info_row {
  padding: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.order_img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  margin-right: 20px;
  margin-left: 0;
}
.order_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order_name {
  width: 46%;
  text-align: left;
}
.order_count {
  margin-left: auto;
}
.order_total {
  margin-left: auto;
  font-size: 24px;
  font-weight: 500;
}
.order_total_name {
  color: #C53364;
  margin-right: 10px;
}
/*		My_Orders Page styles END		*/
/*		Basket Page styles 		*/
.basket {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.basket_list {
  width: 100%;
}
.basket_list .basket_item:not(:last-child) {
  margin-bottom: 30px;
}
.basket_item,
.basket_total {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ADADAD;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.basket_item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-right: 70px;
}
.basket_img {
  display: block;
  width: 220px;
  height: 180px;
  padding: 10px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 5px;
  border: 1px solid #ADADAD;
}
.basket_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.basket_del {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  transition: 0.3s;
  filter: grayscale(100%);
  background: url('../img/delete_icon.svg') center / contain no-repeat;
}
.basket_del:hover {
  filter: grayscale(0);
}
.basket_amount {
  width: 280px;
  margin-bottom: -10px;
  margin-top: 0;
}
.basket_amount .amount_name {
  color: #333;
  padding: 0;
  background-color: transparent;
}
.basket_amount .amount_name.active {
  color: #00ABED;
}
.basket_amount .amount_block:not(.active){
  filter: grayscale(1);
  opacity: 0.4;
}
.basket_info {
  max-width: 470px;
  margin-right: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #C53364;
}
.basket_info li:not(:last-child) {
  margin-bottom: 10px;
}
.basket_info .basket_info_text {
  color: #ADADAD;
}
.basket_prod_name {
  color: #333;
  font-weight: normal;
}
.basket_prod_name:hover {
  color: #C53364;
  text-decoration: underline;
}
.basket_total {
  width: 385px;
  flex-shrink: 0;
  margin-left: 40px;
}
.basket_total_heading {
  font-size: 24px;
  font-weight: 500;
}
.basket_total_row {
  margin-top: 20px;
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: space-between;
}
.basket_total_row_second {
  font-weight: 500;
}
.basket_total_row_second .basket_total_value {
  font-size: 24px;
}
.basket_total_name {
  color: #C53364;
}
.red_btn {
  color: #fff;
  text-align: center;
  border-radius: 50px;
  background-color: red;
}
.red_btn:hover {
  background-color: #C53364;
}
.basket_total_btn {
  display: table;
  padding: 12px 50px;
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 500;
}
.form_array {
  display: none;
}
/*		Basket Page styles END 		*/
/*		Buy_Orders Page styles	*/
.buy_form {
  margin-top: 40px;
  display: flex;
}
.buy_form .input_block {
  width: 24%;
  margin-right: 1%;
}
.buy_form .input_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.buy_form .form_input {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #ADADAD;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.buy_form .form_select {
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 45px;
  background: url('../img/down_black.svg') right 20px top 55% / 15px no-repeat, #fff;
}
.address_block {
  margin-top: 50px;
  display: none;
}
.address_block.active {
  display: block;
}
.address_list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.address_item {
  position: relative;
  z-index: 1;
  width: 49%;
  margin-top: 30px;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ADADAD;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.address_name {
  font-size: 20px;
  font-weight: 500;
  padding-right: 80px;
}
.address_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.address_info_row {
  width: 48%;
  margin-top: 15px;
}
.address_info_row {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
}
.address_info_name {
  color: #C53364;
  margin-right: 10px;
}
.address_delete {
  display: block;
  position: absolute;
  right: 65px;
  top: 20px;
  width: 30px;
  height: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  background: url('../img/edit-icon.png') center / contain no-repeat;
}
.address_delete:hover {
  opacity: 1;
  filter: grayscale(0);
}
.address_check {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  background: url('../img/address_check.svg') center / contain no-repeat;
}
.address_check.active {
  filter: grayscale(0);
}
.address_add {
  margin-top: 20px;
  display: none;
}
.address_add_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.address_add_form .input_block {
  width: 49%;
  margin-top: 20px;
}
.address_add_form .input_name {
  font-size: 18px;
  margin-bottom: 15px;
}
.address_add_form .form_input {
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #999;
  outline-color: #C53364;
  padding: 15px 20px;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.address_add_form .form_select {
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 45px;
  background: url('../img/down_black.svg') right 20px top 55% / 15px no-repeat, #fff;
}
.address_add_form .form_btn {
  display: table;
  padding: 11px 50px;
  font-size: 18px;
  font-weight: 500;
  margin: 30px auto 0;
}
.double_input {
  width: 49%;
  display: flex;
  justify-content: space-between;
}
.double_input .input_block {
  width: 48%;
}
.address_btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 150px;
  height: 60px;
  cursor: pointer;
  margin: 30px auto 0;
  transition: 0.4s;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.address_btn:after,
.address_btn:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 50%;
  font-weight: 500;
  text-align: center;
  left: 50%;
  top: 50%;
  transition: 0.4s;
  transform: translate(-50%, -50%);
  background: center / 50% no-repeat;
}
.address_btn:after {
  opacity: 1;
  /*background-image: url('../img/add_red.svg');*/
  content: "Добавить";
}
.address_btn:before {
  opacity: 0;
  /*background-image: url('../img/remove_red.svg');*/
  content: "Отмена";
}
.address_btn.active:after {
  opacity: 0;
}
.address_btn.active:before {
  opacity: 1;
}
.address_btn:hover {
  background-color: #ffcede;
}
.buy_list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.buy_item {
  width: 49%;
  display: flex;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ADADAD;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.buy_item_img {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #ADADAD;
}
.buy_item_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.buy_item_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.buy_item_text p {
  font-size: 20px;
  font-weight: 500;
  color: #C53364;
}
.buy_item_text p:not(:last-child) {
  margin-bottom: 10px;
}
.buy_item_name {
  color: #000;
}
.buy_item_name:hover {
  text-decoration: underline;
}
.total_buy {
  font-size: 24px;
}
.buy_notes {
  width: 100%;
  margin-top: 30px;
  font-size: 18px;
  color: #adadad;
}
.buy_order {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.buy_order_item {
  width: 49%;
  display: flex;
}
.buy_order_item .title {
  margin-bottom: 30px;
}
.buy_order_text {
  flex-direction: column;
}
.buy_order_area {
  height: 100%;
  padding: 15px;
  font-size: 20px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #adadad;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.buy_order_pay {
  justify-content: space-between;
}
.buy_order_pay .buy_order_info:first-child .buy_info {
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.buy_order_pay .buy_order_info:nth-child(2) .buy_info {
  border-radius: 0 5px 5px 0;
}
.buy_order_info {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.buy_info {
  height: 100%;
  padding: 20px;
  border: 1px solid #adadad;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(132, 168, 176, 0.2);
}
.buy_info .buy_info_row:not(:last-child) {
  margin-bottom: 20px;
}
.buy_info .buy_info_row:last-child .buy_info_value {
  font-weight: 500;
}
.buy_info_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 500;
}
.buy_info_name {
  color: #C53364;
  margin-right: 20px;
}
.buy_info_value {
  font-size: 20px;
  font-weight: normal;
}
.pay_type_row {
  cursor: pointer;
}
.pay_type_check {
  width: 25px;
  height: 25px;
  filter: grayscale(100%);
  background: url('../img/address_check.svg') center / contain no-repeat;
}
.pay_type_check input {
  display: none;
}
.pay_type_check.active {
  filter: grayscale(0);
}
.pay_btn {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  padding: 14px 40px;
  cursor: pointer;
  border: none;
}


.pay_errors_alert{
  width: 400px;
  font-size: 18px;
  font-weight: 500;
  color: red;
  line-height: 120%;
}
.pay_errors_alert p:not(:last-child){
  margin-bottom: 15px;
}

.form_loader{
  position: fixed;
  z-index: 30;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.form_loader_block{
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.form_loader_animate{
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.form_loader_animate:after{
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  animation: loader-animate 1.2s linear infinite;
}
.form_loader_text{
  font-size: 20px;
  text-align: center;
}
@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*		Buy_Orders Page styles END	*/
/*		Contacts Page styles 	*/
.contacts {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_text {
  max-width: 35%;
}
.contact_item {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  padding: 7px 0 7px 45px;
  background: left top / 30px 30px no-repeat;
}
.contact_item a {
  color: #333;
  display: inline-block;
  margin-right: 15px;
}
.contact_item a:hover {
  color: #C53364;
  text-decoration: underline;
}
.loc {
  background-image: url('../img/loc.svg');
}
.tel {
  background-image: url('../img/tel.svg');
}
.email {
  background-image: url('../img/email.svg');
}
.contact_soc_list {
  display: flex;
}
.contact_soc_list li:not(:last-child) {
  margin-right: 20px;
}
.contact_soc_list .soc_btn {
  width: 30px;
  height: 30px;
}
.vk_c {
  background-image: url('../img/vk_c.svg');
}
.fb_c {
  background-image: url('../img/fb_c.svg');
}
.tg_c {
  background-image: url('../img/tg_c.svg');
}
.wp_c {
  background-image: url('../img/wp_c.svg');
}
.inst_c {
  background-image: url('../img/inst_c.svg');
}
.contact_map {
  width: 60%;
  height: 450px;
  border: 1px solid rgba(0, 61, 55, 0.27);
}
.contact_map iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/*		Contacts Page styles END	*/

.main_slide-second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kaspi-pay.mobile-btn {
  display: none;
}
.kaspi-pay {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  background: #f14432;
  height: 49px;
  font-size: 16px;
  color: #fff;
  gap: 12px;
  border-radius: 50px;
  margin-top: 20px;
  overflow: hidden;
}

.kaspi-pay img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

@media screen and (max-width: 1800px) {
  .container {
    width: 1500px;
  }
  .soc_btn {
    width: 35px;
    height: 35px;
  }
  .soc_list li:not(:last-child) {
    margin-right: 12px;
  }
  .logo {
    width: 95px;
    height: 75px;
  }
  .basket_btn,
  .user_btn {
    width: 32px;
    height: 32px;
  }
  .head_tel {
    font-size: 16px;
  }
  .search_block {
    width: 220px;
  }
  .menu_link {
    font-size: 17px;
  }
  .menu li:not(:last-child) {
    margin-right: 25px;
  }
  .slider_img {
    width: 530px;
    height: 530px;
  }
  .slide_title {
    font-size: 90px;
  }
  .slide_desc {
    font-size: 38px;
  }
  .main_dots button {
    padding: 8px;
  }
  .main_cat_img {
    width: 120px;
    height: 120px;
  }
  .title {
    font-size: 44px;
  }
  .about_img {
    width: 300px;
    height: 300px;
  }
  .advan_img {
    width: 90px;
    height: 90px;
  }
  .advan_list {
    margin-top: 20px;
  }
  .slick_arrow {
    width: 45px;
    height: 45px;
  }
  .request_btn {
    padding: 18px 60px;
  }
  .partner_img {
    width: 460px;
  }
  .soc_item {
    padding: 13px 27px;
  }
  .fixed_tel {
    width: 60px;
    height: 60px;
  }
  .footer_left .logo {
    margin-right: 60px;
  }
  .foot_btn {
    padding: 15px 35px;
  }
  .alert_text {
    font-size: 30px;
  }
  .alert_img {
    width: 130px;
  }
  .message {
    width: 420px;
    padding: 60px 30px;
  }
  .title.small_title {
    font-size: 32px;
  }
  .request_popup {
    width: 430px;
  }
  .popup_form .form_btn {
    font-size: 18px;
  }
  /*		Login styles	*/
  .reg_block {
    width: 800px;
  }
  /*		Catalog Page styles		*/
  .catalog_cats {
    padding: 40px 0;
  }
  .catalog_cats .container:before {
    margin-bottom: 35px;
    left: -5px;
  }
  .cat_item {
    font-size: 18px;
  }
  .sub_cat_item > .cat_item {
    background-size: 11px;
    background-position: top 9px right;
  }
  .catalog_cats_list li:not(:last-child) {
    margin-bottom: 25px;
  }
  .sorting_name {
    font-size: 22px;
  }
  .sorting_sel {
    font-size: 18px;
    padding-right: 20px;
    background-size: 11px;
  }
  /*		Catalog_Inner Page styles		*/
  .product_slider_item {
    height: 450px;
  }
  .product_dots_item {
    width: 110px;
    height: 110px;
  }
  .prod_info {
    width: 260px;
  }

  .complect_img{
    width: 200px;
    height: 200px;
  }
  .complect_plus{
    width: 30px;
    height: 30px;
    background-size: 90%;
  }
  .complect_total{
    font-size: 20px;
  }

  /*		Printed_Products Page styles		*/
  .printed_slide {
    width: 370px;
    height: 370px;
  }
  .printed_text {
    font-size: 18px;
  }
  /*		My_Orders Page styles 		*/
  .orders_table {
    font-size: 22px;
  }
  .order_img {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 1700px) {
  .container {
    width: 1350px;
  }
  .logo {
    width: 90px;
    height: 70px;
  }
  .city_sel {
    margin-right: 30px;
    font-size: 16px;
  }
  .menu_link {
    font-size: 16px;
  }
  .menu li:not(:last-child) {
    margin-right: 22px;
  }
  .search_input {
    font-size: 14px;
  }
  .search_btn {
    width: 23px;
    height: 23px;
    right: 12px;
  }
  .search_block {
    width: 200px;
  }
  .slider_img {
    width: 470px;
    height: 470px;
  }
  .main_img_dots {
    width: 122%;
    height: 122%;
  }
  .main_img_slider:after {
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
  }
  .slider {
    margin-top: 80px;
  }
  .slide_title {
    font-size: 80px;
  }
  .slide_desc {
    font-size: 34px;
  }
  .slide_btn {
    font-size: 17px;
  }
  .slide_btn {
    padding: 15px 40px;
  }
  .main_cat_img {
    width: 110px;
    height: 110px;
  }
  .main_cat_name {
    font-size: 18px;
  }
  .title {
    font-size: 40px;
  }
  .about_btn {
    padding: 15px;
  }
  .about_text,
  .share_desc {
    font-size: 17px;
  }
  .advan_name {
    font-size: 18px;
  }
  .share_btn {
    width: 200px;
    font-size: 17px;
  }
  .request_btn {
    padding: 17px 50px;
  }
  .request_form .form_input {
    font-size: 17px;
  }
  .partner_img {
    width: 420px;
  }
  .soc_item {
    font-size: 17px;
  }
  .soc_item_icon {
    width: 23px;
    height: 23px;
  }
  .foot_btn {
    font-size: 16px;
  }
  .footer_left .logo {
    margin-right: 50px;
  }
  .foot_link {
    font-size: 17px;
  }
  .share_img {
    height: 160px;
  }
  .city_form .title {
    font-size: 32px;
  }
  .city_form {
    width: 630px;
    padding: 40px 50px;
  }
  .city_list .city_item:not(:last-child) {
    margin-bottom: 22px;
  }
  .city_list {
    max-height: 250px;
  }
  .alert_text {
    font-size: 26px;
  }
  .alert_img {
    width: 100px;
  }
  .message {
    width: 360px;
    padding: 50px 30px;
  }
  .my-alert__close {
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
  }
  .title.small_title {
    font-size: 28px;
  }
  .request_popup {
    width: 380px;
  }
  .popup_form .form_btn,
  .popup_form .input_name {
    font-size: 17px;
  }
  .popup_form .form_input {
    padding: 12px 15px;
    font-size: 16px;
  }
  .popup_form {
    margin-top: 0;
  }
  /*		Login styles	*/
  .popup_block.section.page {
    padding-top: 160px;
    padding-bottom: 80px;
  }
  .reg_block {
    width: 750px;
  }
  .login_form .input_name,
  .reg_accept_text {
    font-size: 16px;
  }
  .reg_accept_img {
    width: 25px;
    height: 25px;
  }
  /*		Catalog Page styles		*/
  .catalog_btn {
    background-size: 30px;
    padding-left: 45px;
  }
  .filter_type_name {
    font-size: 18px;
    background-size: 13px;
  }
  .filter_list_item {
    font-size: 16px;
  }
  .catalog_cats {
    padding: 30px 0;
  }
  .catalog_cats .container:before {
    margin-bottom: 30px;
    border-width: 20px;
  }
  .filter_btn {
    padding: 10px;
  }
  .catalog_top {
    margin-bottom: 70px;
  }
  .sorting_name {
    font-size: 20px;
  }
  .product_name {
    font-size: 17px;
  }
  .product_price_block {
    /* margin-top: 15px; */
  }
  .product_total_price {
    font-size: 22px;
  }
  .amount_name {
    font-size: 14px;
  }
  .product_btn {
    padding: 12px;
    font-size: 17px;
  }
  .product_item.share_item {
    padding-bottom: 75px;
  }
  .amount_btn {
    width: 22px;
    height: 22px;
  }
  .filter_price {
    font-size: 14px;
  }
  .filter_cur_price {
    font-size: 17px;
  }
  .irs--flat .irs-bar,
  .irs--flat .irs-line {
    height: 8px;
  }
  .irs--flat .irs-handle {
    width: 13px;
    height: 13px;
    top: 22px;
  }
  .breadcrumbs {
    margin-top: 30px;
  }
  /*		Catalog_Inner Page styles		*/
  .product_slider_item {
    height: 420px;
  }
  .product_dots_item {
    width: 100px;
    height: 100px;
  }
  .product_dots {
    width: 150px;
  }
  .product_slider {
    padding-right: 150px;
  }
  .prod_chars_row {
    font-size: 16px;
  }
  .prod_info_row {
    font-size: 18px;
  }
  .prod_info {
    width: 240px;
    margin-right: 40px;
  }
  .prod_inner_text {
    font-size: 17px;
  }

  .complect_img{
    width: 180px;
    height: 180px;
  }
  .complect_item_name,
  .complect_item_price{
    font-size: 16px;
  }
  .complect_plus{
    width: 28px;
    height: 28px;
    margin: 0 10px;
  }
  .complect_info{
    width: 35%;
  }

  /*		Printed_Products Page styles		*/
  .printed_slide {
    width: 330px;
    height: 330px;
  }
  .printed_slider .slick-dots button {
    padding: 7px;
  }
  /*		My_Orders Page styles 		*/
  .orders_table {
    font-size: 20px;
  }
  .orders_clear {
    height: 25px;
  }
  .orders_table th {
    padding: 30px 10px;
  }
  .orders {
    margin-top: 30px;
  }
  .order_date_block {
    width: 140px;
  }
  .orders_table td {
    width: 210px;
  }
  .order_img {
    width: 170px;
    height: 170px;
  }
  .order_total {
    font-size: 22px;
  }
  /*		Basket Page styles 		*/
  .basket_info {
    font-size: 16px;
  }
  .basket_img {
    width: 200px;
  }
  .basket_amount {
    width: 250px;
  }
  /*		Buy_Orders Page styles 	*/
  .buy_form .form_input {
    font-size: 16px;
    padding: 13px 15px;
  }
  .buy_form .form_input.form_select {
    padding-right: 45px;
  }
  .address_list {
    margin-top: 0;
  }
  .address_check,
  .address_delete {
    width: 26px;
    height: 26px;
  }
  .address_info_row {
    font-size: 16px;
  }
  .address_item {
    margin-top: 25px;
  }
  .address_btn {
    /*width: 50px;*/
    height: 50px;
  }
  .buy_item_img {
    width: 220px;
    height: 220px;
  }
  .buy_item_text p {
    font-size: 18px;
  }
  .total_buy {
    font-size: 22px;
  }
  .buy_info_row {
    font-size: 20px;
  }
  .pay_btn {
    font-size: 18px;
    padding: 12px 30px;
  }
  .buy_order_area {
    font-size: 18px;
  }
  /*		Contacts Page styles 	*/
  .contact_map {
    height: 400px;
  }
  .contact_item {
    margin-bottom: 25px;
  }
  .contact_item {
    font-size: 17px;
    padding: 7px 0 7px 40px;
    background-size: 27px 27px;
  }
}
@media screen and (max-width: 1500px) {
  .buy_form .form_input {
    font-size: 14px;
  }
  .container {
    width: 1200px;
  }
  .slider_img {
    width: 430px;
    height: 430px;
  }
  .main_dots button {
    padding: 7px;
  }
  .slider {
    margin-top: 70px;
  }
  .slide_title {
    font-size: 70px;
  }
  .slide_desc {
    font-size: 30px;
  }
  .slide_btn {
    font-size: 16px;
  }
  .head_contact {
    display: none;
  }
  .main_cat_img {
    width: 100px;
    height: 100px;
  }
  .main_cat_item {
    padding: 25px;
  }
  .main_cat_name {
    font-size: 17px;
  }
  .title {
    font-size: 36px;
  }
  .about_img {
    width: 270px;
    height: 270px;
  }
  .about_btn {
    min-width: 200px;
    padding: 14px;
    font-size: 16px;
  }
  .about_text {
    font-size: 16px;
  }
  .advan_name {
    font-size: 17px;
  }
  .share_desc,
  .share_btn {
    font-size: 16px;
  }
  .share_btn {
    padding: 11px;
  }
  .share_img {
    height: 150px;
    margin-top: 20px;
  }
  .slick_arrow {
    width: 40px;
    height: 40px;
  }
  .request_btn {
    font-size: 17px;
    padding: 15px 40px;
  }
  .footer_left .logo {
    margin-right: 40px;
  }
  .foot_tel {
    font-size: 16px;
  }
  .foot_btn {
    padding: 13px 30px;
  }
  .city_form .title {
    font-size: 28px;
  }
  .city_list_block {
    padding: 25px;
  }
  .city_item {
    font-size: 18px;
  }
  .city_form {
    width: 550px;
  }
  .alert_text {
    font-size: 22px;
  }
  .alert_img {
    width: 90px;
  }
  /*		Login styles	*/
  .reg_block {
    width: 650px;
  }
  .auth_block,
  .cabinet_block {
    width: 370px;
  }
  .popup_block.section.page {
    padding-top: 140px;
    padding-bottom: 70px;
  }
  .login_form {
    padding: 30px;
    margin-top: 30px;
  }
  .reg_block .input_block {
    width: 48%;
  }
  .pass_eye,
  .edit_icon {
    width: 40px;
    height: 40px;
    top: 31px;
  }
  .login_form .form_btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  .login_forget_pwd,
  .login_button {
    font-size: 14px;
  }
  .login_form .form_input {
    padding: 10px 13px;
  }
  /*		Catalog Page styles		*/
  .breadcrumbs {
    font-size: 18px;
  }
  .main_breads {
    width: 20px;
    height: 20px;
  }
  .breadcrumbs li:not(:first-child):before {
    border-width: 6px;
  }
  .cat_item {
    font-size: 16px;
    height: 45px;
  }
  .sub_cat_item > .cat_item {
    background-size: 9px;
    padding-right: 15px;
  }
  .catalog_cats_list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .filter_type_name,
  .filter_btn {
    font-size: 17px;
  }
  .filter_list::-webkit-scrollbar {
    width: 5px;
  }
  .filter_item_img {
    width: 15px;
    height: 15px;
    border-radius: 2px;
  }
  .filter_type_body {
    padding-top: 10px;
  }
  .filter_cur_price {
    font-size: 16px;
  }
  .filter_price {
    font-size: 12px;
  }
  .sorting_name {
    font-size: 18px;
    margin-right: 15px;
  }
  .sorting_sel,
  .amount_val {
    font-size: 16px;
  }
  .amount_name {
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
  }
  .product_item {
    padding: 15px 15px 85px;
  }
  .product_btn {
    padding: 10px;
    font-size: 16px;
  }
  .product_total_price {
    font-size: 20px;
  }
  .product_name {
    font-size: 16px;
  }
  /*		Catalog_Inner Page styles		*/
  .product_slider_item {
    height: 370px;
  }
  .prod_info_row {
    font-size: 16px;
  }
  .product_dots_item {
    width: 90px;
    height: 90px;
  }
  .product_dots .product_dots_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .prod_info {
    width: 210px;
  }
  .prod_chars .prod_chars_row:not(:last-child) {
    margin-bottom: 15px;
  }
  .prod_chars_row {
    border-width: 2.5px;
  }
  /*		Printed_Products Page styles		*/
  .printed_text {
    font-size: 16px;
  }
  .printed_slide {
    width: 300px;
    height: 300px;
    margin: 10px -50px 15px;
  }
  /*		My_Orders Page styles 		*/
  .orders_table {
    font-size: 18px;
  }
  .orders_table th {
    padding: 25px 10px;
  }
  .order_img {
    width: 150px;
    height: 150px;
  }
  .order_info_row {
    font-size: 16px;
  }
  .delivery_row span {
    font-size: 16px;
  }
  .order_total {
    font-size: 20px;
  }
  .orders_table td {
    width: 170px;
  }
  .order_time,
  .order_date {
    padding-left: 30px;
    background-size: 18px;
  }
  .order_date_block {
    width: 120px;
  }
  .order_icon_item {
    width: 20px;
    height: 20px;
  }
  .orders_table tr td:nth-child(5),
  .orders_table tr td:last-child {
    min-width: 180px;
  }
  /*		Basket Page styles 		*/
  .basket_img {
    width: 180px;
    height: 170px;
  }
  .basket_info {
    font-size: 14px;
  }
  .basket_total_row {
    font-size: 18px;
  }
  .basket_total_heading {
    font-size: 22px;
  }
  .basket_total_btn {
    font-size: 16px;
  }
  .basket_total {
    width: 330px;
    margin-left: 30px;
  }
  .basket_del {
    width: 27px;
    height: 27px;
  }
  .basket_total_row_second .basket_total_value {
    font-size: 22px;
  }
  /*		Buy_Orders Page styles 	*/
  .buy_form .input_name {
    font-size: 16px;
  }
  .buy_form .form_select,
  .address_add_form .form_select {
    background-size: 12px;
    background-position: right 15px top 52%;
  }
  .buy_form .form_input.form_select,
  .address_add_form .form_input.form_select {
    padding-right: 35px;
  }
  .address_name {
    font-size: 18px;
  }
  .address_check,
  .address_delete {
    width: 23px;
    height: 23px;
  }
  .address_delete {
    right: 60px;
  }
  .address_btn {
    /*width: 45px;*/
    height: 45px;
  }
  .buy_item_img {
    width: 190px;
    height: 190px;
  }
  .buy_notes {
    font-size: 16px;
  }
  .buy_order_item .title {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .buy_info_row {
    font-size: 18px;
  }
  .pay_btn {
    font-size: 16px;
  }
  .address_add_form .form_input {
    font-size: 16px;
    padding: 13px 15px;
  }
  .address_add_form .input_name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .address_add_form .form_btn {
    font-size: 16px;
  }
  /*		Contacts Page styles 	*/
  .contact_map {
    width: 55%;
  }
  .contact_text {
    max-width: 40%;
  }
}
@media screen and (max-width: 1350px) {
  .amount_name {
    font-size: 12px;
  }
  .buy_form .form_input.form_select, .address_add_form .form_input.form_select {
    padding-right: 20px;
  }
  .container {
    width: 1100px;
  }
  .logo {
    width: 75px;
    height: 60px;
  }
  .menu_link,
  .city_sel {
    font-size: 14px;
  }
  .city_sel {
    max-width: 120px;
    padding-right: 15px;
    background-size: 10px;
    background-position: right top 50%;
  }
  .logo {
    width: 80px;
    height: 65px;
  }
  .basket_btn,
  .user_btn {
    width: 26px;
    height: 26px;
  }
  .basket_len {
    font-size: 13px;
    width: 22px;
    height: 22px;
  }
  .search_input {
    font-size: 13px;
  }
  .search_btn {
    width: 20px;
    height: 20px;
  }
  .slider_img {
    width: 370px;
    height: 370px;
  }
  .slider {
    margin-top: 50px;
  }
  .slide_title {
    font-size: 64px;
  }
  .slide_desc {
    font-size: 26px;
  }
  .slide_btn {
    font-size: 14px;
    padding: 13px 35px;
    margin-top: 30px;
  }
  .main_dots button {
    padding: 6px;
  }
  .main_dots li:hover button {
    box-shadow: 0 0 0 6px rgba(175, 156, 206, 0.68);
  }
  .main_dots .slick-active button,
  .main_dots .slick-active:hover button {
    box-shadow: 0 0 0 9px rgba(175, 156, 206, 0.68);
  }
  .fixed_tel {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
  .main_cat_img {
    width: 90px;
    height: 90px;
  }
  .main_cat_item {
    padding: 20px;
  }
  .main_cat_name {
    font-size: 15px;
  }
  .title {
    font-size: 32px;
  }
  .about_img {
    width: 240px;
    height: 240px;
    margin-left: 50px;
  }
  .advan_img {
    width: 80px;
    height: 80px;
  }
  .slick_prev {
    left: -40px;
  }
  .slick_next {
    right: -40px;
  }
  .share_desc,
  .share_btn,
  .share_cat,
  .share_name,
  .share_price {
    font-size: 14px;
  }
  .share_img {
    height: 130px;
  }
  .section {
    padding: 80px 0;
  }
  .request_form {
    width: 550px;
  }
  .request_form .form_input {
    font-size: 15px;
  }
  .request_btn {
    font-size: 15px;
    padding: 13px 40px;
  }
  .partner_img {
    width: 350px;
  }
  .about_text {
    font-size: 15px;
  }
  .soc_item {
    font-size: 15px;
  }
  .soc_item_icon {
    width: 20px;
    height: 20px;
  }
  .foot_link {
    font-size: 15px;
  }
  .foot_btn {
    font-size: 14px;
    padding: 12px 30px;
  }
  .footer_left .logo {
    margin-right: 30px;
  }
  .footer_bottom {
    font-size: 16px;
  }
  .city_form .title {
    font-size: 26px;
  }
  .city_list_block {
    margin-top: 20px;
  }
  .city_form {
    width: 500px;
    padding: 30px 40px;
  }
  .city_item {
    font-size: 16px;
  }
  .city_list .city_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .city_list {
    max-height: 200px;
  }
  .city_form .form_btn {
    font-size: 14px;
  }
  /*		Login styles	*/
  .reg_block {
    width: 570px;
  }
  .auth_block,
  .cabinet_block {
    width: 340px;
  }
  .login_form {
    padding: 25px;
  }
  .login_form .input_name,
  .login_form .form_input,
  .reg_accept_text {
    font-size: 14px;
  }
  .login_form .input_block {
    margin-bottom: 20px;
  }
  .pass_eye,
  .edit_icon {
    top: 26px;
  }
  .reg_accept_img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
  .login_forget_pwd {
    margin-top: 20px;
  }
  /*		Catalog Page styles		*/
  .catalog_btn {
    background-size: 25px;
    padding-left: 35px;
  }
  .breadcrumbs {
    margin-top: 20px;
    font-size: 16px;
  }
  .main_breads {
    width: 18px;
    height: 18px;
  }
  .filter_type_name {
    font-size: 15px;
  }
  .filter_list_item,
  .filter_cur_price {
    font-size: 14px;
  }
  .filter_btn {
    font-size: 15px;
  }
  .product_articul,
  .product_type {
    font-size: 14px;
  }
  .product_name {
    font-size: 15px;
  }
  .product_total_price {
    font-size: 18px;
  }
  .product_btn,
  .amount_val {
    font-size: 14px;
  }
  .amount_btn {
    width: 20px;
    height: 20px;
  }
  .product_item.share_item {
    padding-bottom: 65px;
  }
  .product_btn {
    bottom: 20px;
  }
  .pagination {
    font-size: 18px;
  }
  .product_item {
    margin-top: 30px;
  }
  /*		Catalog_Inner Page styles		*/
  .prod_inner_text {
    font-size: 16px;
  }

  .complect_img{
    width: 160px;
    height: 160px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .complect_item{
    flex-direction: column;
  }
  .complect_item_name, 
  .complect_item_price{
    text-align: center;
  }
  .complect_info{
    width: 43%;
  }

  /*		Printed_Products Page styles		*/
  .printed_text {
    font-size: 15px;
    line-height: 160%;
  }
  .printed_slide {
    width: 280px;
    height: 280px;
  }
  /*		My_Orders Page styles 		*/
  .orders_table {
    font-size: 16px;
  }
  .orders_clear {
    height: 20px;
  }
  .orders_table th {
    padding: 20px 10px;
  }
  .delivery_row span {
    font-size: 14px;
  }
  .order_info_row {
    padding: 15px;
  }
  .order_img {
    width: 140px;
    height: 140px;
  }
  .order_info_row {
    font-size: 14px;
  }
  .order_total {
    font-size: 18px;
  }
  /*		Basket Page styles 		*/
  .basket_total_row {
    font-size: 16px;
  }
  .basket_total_heading,
  .basket_total_row_second .basket_total_value {
    font-size: 20px;
  }
  .basket_total_btn {
    font-size: 14px;
  }
  .basket_total {
    width: 300px;
  }
  .basket_img {
    width: 160px;
  }
  .basket_del {
    width: 24px;
    height: 24px;
  }
  .basket_item {
    padding-right: 60px;
  }
  .basket_amount {
    width: 200px;
  }
  /*		Buy_Orders Page styles 	*/
  .buy_form .input_name,
  .address_add_form .input_name {
    font-size: 14px;
  }
  .buy_form .form_input,
  .address_add_form .form_input {
    font-size: 14px;
    padding: 12px 10px;
  }
  .address_info_row {
    font-size: 14px;
  }
  .address_btn {
    /*width: 40px;*/
    height: 40px;
  }
  .address_add_form .form_btn {
    font-size: 15px;
  }
  .buy_item_text p {
    font-size: 16px;
  }
  .total_buy {
    font-size: 20px;
  }
  .buy_item_img {
    width: 170px;
    height: 170px;
  }
  .buy_item {
    padding: 15px;
  }
  .buy_order_item .title {
    font-size: 24px;
  }
  .buy_info_row,
  .buy_info_value,
  .buy_order_area {
    font-size: 16px;
  }
  .pay_btn {
    font-size: 15px;
    padding: 11px 30px;
  }
  /*		Contacts Page styles 	*/
  .contact_item {
    font-size: 15px;
    padding: 5px 0 5px 35px;
    background-size: 23px 23px;
    background-position: top 4px left;
  }
  .contact_soc_list .soc_btn {
    width: 26px;
    height: 26px;
  }
  .contact_map {
    height: 350px;
  }
}
@media screen and (max-width: 1200px) {
  .buy_form .input_block:last-child {
    width: 30%;
  }
  .container {
    width: 1000px;
  }
  .mob_menu {
    display: block;
  }
  .menu_link,
  .city_sel {
    font-size: 16px;
  }
  .menu_link {
    display: block;
  }
  .menu_block {
    margin-left: 30px;
    margin-right: auto;
  }
  .search_block {
    width: 260px;
  }
  .city_sel {
    max-width: 135px;
  }
  .slider_img {
    width: 340px;
    height: 340px;
  }
  .slide_title {
    font-size: 56px;
  }
  .slide_desc {
    font-size: 24px;
  }
  .main_cat_img {
    width: 80px;
    height: 80px;
  }
  .section_block {
    margin-top: 80px;
  }
  .slick_arrow {
    width: 35px;
    height: 35px;
  }
  .request_form {
    width: 500px;
  }
  .partner_img {
    width: 300px;
  }
  .slide_title-second {
    font-size: 38px;
  }
  .slide_desc-second {
    font-size: 16px;
  }
  .slide_btn-second {
    padding: 15px 30px;
  }
  .soc_btn {
    width: 32px;
    height: 32px;
  }
  .foot_btn {
    padding: 12px 25px;
  }
  .footer_left .logo {
    margin-right: 20px;
  }
  /*		Catalog Page styles		*/
  .product_item {
    width: 32%;
    margin-right: 2%;
  }
  .products .product_item:nth-child(4n) {
    margin-right: 2%;
  }
  .products .product_item:nth-child(3n) {
    margin-right: 0;
  }
  .catalog_btn {
    margin-right: 40px;
  }
  .catalog_top {
    margin-bottom: 50px;
  }
  .filter_type {
    width: 32%;
    margin-right: 2%;
  }
  .catalog_filter .filter_type:nth-child(5n) {
    margin-right: 2%;
  }
  .catalog_filter .filter_type:nth-child(3n) {
    margin-right: 0;
  }
  .catalog_cats_list > li {
    width: 24%;
    margin-right: 1.3%;
  }
  .catalog_cats_list > li:nth-child(5n) {
    margin-right: 1.3%;
  }
  .catalog_cats_list > li:nth-child(4n) {
    margin-right: 0;
  }
  /*		Catalog_Inner Page styles		*/
  .product_img {
    flex-direction: column;
  }
  .product_dots {
    position: static;
    width: 100%;
    flex-direction: row;
    padding: 15px;
    margin-top: 15px;
  }
  .product_dots .product_dots_item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .product_dots_item {
    flex-shrink: 0;
  }
  .product_slider {
    padding-right: 0;
  }
  .prod_info {
    width: 190px;
  }
  .prod_chars_row {
    font-size: 14px;
    border-width: 2px;
  }
  .prod_info .product_amount {
    margin-top: 20px;
  }

  .prod_complect_head{
    width: 230px;
    padding: 12px;
    font-size: 17px;
    border-radius: 8px;
  }
  .complect_head_icon{
    width: 18px;
    height: 18px;
  }

  /*		Printed_Products Page styles		*/
  .printed_slide {
    width: 240px;
    height: 240px;
    margin: 10px -40px 15px;
  }
  .printed_slider .slick-dots {
    margin-top: 10px;
  }
  .printed_slider .slick-dots button {
    padding: 6px;
  }
  /*		My_Orders Page styles 		*/
  .orders_table {
    font-size: 14px;
  }
  .order_date_block {
    width: 100px;
  }
  .order_time,
  .order_date {
    background-size: 15px;
    padding-left: 25px;
  }
  .delivery_row span {
    font-size: 13px;
  }
  .orders_table td {
    width: 140px;
  }
  .order_total {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .buy_form {
    flex-wrap: wrap;
    row-gap: 24px;
    justify-content: space-between;
  }
  .buy_form .input_block {
    width: 49%;
    margin-right: 0;
  }
  .buy_form .input_block:last-child {
    width: 49%;
  }
  .container {
    width: 900px;
  }
  .slider_img {
    width: 290px;
    height: 290px;
  }
  .slide_title {
    font-size: 48px;
  }
  .main_img_slider:after {
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px;
  }
  .main_cat_name {
    font-size: 14px;
  }
  .main_cat_img {
    width: 70px;
    height: 70px;
  }
  .title {
    font-size: 30px;
  }
  .about_img {
    width: 220px;
    height: 220px;
  }
  .about_text {
    font-size: 14px;
  }
  .advan_name {
    font-size: 15px;
  }
  .advan_img {
    width: 70px;
    height: 70px;
  }
  .advan_list {
    margin-top: 10px;
  }
  .partner_img {
    width: 270px;
  }
  .foot_menu {
    padding: 0 10px;
    justify-content: center;
  }
  .foot_menu li:not(:last-child) {
    margin-bottom: 10px;
  }
  .foot_right {
    flex-shrink: 0;
  }
  /*		Catalog Page styles		*/
  .catalog_cats_list {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .catalog_cats_list li {
    width: 32%;
    margin-right: 2%;
  }
  .catalog_cats_list > li:nth-child(3n) {
    margin-right: 0;
  }
  .catalog_cats_list > li:nth-child(4n) {
    margin-right: 2%;
  }
  .sub_cat_list li {
    width: 100%;
  }
  .catalog_cats .container .catalog_cats_list:nth-child(5n) {
    margin-right: 0;
  }
  .catalog_cats .container:before {
    border-width: 15px;
    left: 0;
  }

  /*    Catalog_Inner Page styles   */

  .complect_info{
    width: 250px;
    flex-direction: column;
    justify-content: center;
  }
  .complect_info .complect_amount_block, 
  .complect_info .complect_btn{
    width: 100%;
  }
  .product_btn.complect_btn{
    margin-top: 15px;
  }

  /*		Basket Page styles 		*/
  .basket {
    flex-direction: column;
  }
  .basket_total {
    width: 350px;
    max-width: 100%;
    margin: 40px auto 0;
  }

  /*    Buy_Orders Page styles  */

  .form_loader_text{
    font-size: 18px;
  }
  .form_loader_block{
    padding: 30px;
    width: 300px;
  }
  .form_loader_animate{
    width: 70px;
    height: 70px;
  }

}
@media screen and (max-width: 1000px) {
  .container {
    width: 800px;
  }
  .slider_img {
    width: 260px;
    height: 260px;
  }
  .slide_title {
    font-size: 42px;
  }
  .slide_desc {
    font-size: 22px;
  }
  .main_cat_item {
    padding: 15px;
  }
  .menu_link,
  .city_sel {
    font-size: 15px;
  }
  /*		Catalog Page styles		*/
  .pagination {
    font-size: 16px;
    margin-top: 30px;
  }
  /*		Catalog_Inner Page styles		*/
  .product_slider_item {
    height: 280px;
    padding: 20px;
  }
  .product_img {
    width: 40%;
  }
  .product_info {
    width: 58%;
  }
  /*		Shares Page styles		*/
  .shares .share_item {
    width: 32%;
    margin-right: 2%;
    margin-top: 30px;
  }
  .shares .share_item:nth-child(4n) {
    margin-right: 2%;
  }
  .shares .share_item:nth-child(3n) {
    margin-right: 0;
  }
  /*		My_Orders Page styles 		*/
  .order_img {
    width: 120px;
    height: 120px;
  }
  .order_info_row {
    font-size: 13px;
  }
  .order_total {
    font-size: 15px;
  }
  .order_date_block {
    width: 90px;
  }
  .orders_table tr td:last-child {
    min-width: 140px;
    width: 140px;
  }
  .order_icons {
    margin-left: 5px;
    margin-right: 5px;
  }
  /*		Buy_Orders Page styles 	*/
  .buy_form {
    /* margin-top: 0px; */
    /* flex-wrap: wrap;
    justify-content: space-between; */
  }
  .address_info_row,
  .buy_item {
    width: 100%;
  }
  .buy_order {
    margin-top: 10px;
    flex-direction: column;
  }
  .buy_order_item {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .kaspi-pay.mobile-btn {
    display: inline-flex;
  }
  .kaspi-pay.desktop-btn {
    display: none;
  }
  .main_text_slider-second .slick-dots {
    bottom: 25px;
    left: 30px;
  } 
  .slider-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .slider_text-second {
    width: 100%;
  } 
  .slider_img-second {
    width: 100%;
  }
  .main_text_slider-second {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 880px) {
  .container {
    width: 700px;
  }
  .slider {
    margin-top: 30px;
  }
  .slider_img {
    width: 240px;
    height: 240px;
  }
  .main_dots .slick-active button,
  .main_dots .slick-active:hover button {
    box-shadow: 0 0 0 6px rgba(175, 156, 206, 0.68);
  }
  .slide_title {
    font-size: 36px;
  }
  .slide_btn {
    margin-top: 20px;
  }
  .section_block {
    margin-top: 60px;
  }
  .main_cat_list,
  .advan_list {
    justify-content: center;
  }
  .main_cat_list .main_cat_item:nth-child(3n),
  .advan_list .advan_item:nth-child(3n) {
    margin-right: 0;
  }

  .main_cat_list .main_cat_item:nth-child(3n),
  .advan_list .advan_item:nth-child(3n){
    animation-delay: 0.6s;
  }
  .main_cat_list .main_cat_item:nth-child(3n - 1),
  .advan_list .advan_item:nth-child(3n - 1){
    animation-delay: 0.4s;
  }
  .main_cat_list .main_cat_item:nth-child(3n - 2),
  .advan_list .advan_item:nth-child(3n - 2){
    animation-delay: 0.2s;
  }

  .main_cat_item {
    width: 32%;
    margin-right: 2%;
    margin-top: 20px;
  }
  .advan_item {
    width: 32%;
    margin-right: 2%;
  }
  .advan_list .advan_item:nth-child(5n) {
    margin-right: 2%;
  }
  .partners {
    flex-direction: column-reverse;
  }
  .partner_img {
    width: 300px;
    margin-left: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .request_form {
    width: 450px;
  }
  /*		Catalog Page styles		*/
  .product_item {
    width: 49%;
  }
  .products {
    justify-content: space-between;
  }
  .products .product_item:nth-child(odd),
  .products .product_item:nth-child(even) {
    margin-right: 0;
  }
  /*		Catalog_Inner Page styles		*/
  .product_inner {
    flex-direction: column;
  }
  .product_img {
    width: 100%;
  }
  .product_dots {
    justify-content: center;
  }
  .product_info {
    width: 100%;
    margin-top: 20px;
  }
  .prod_info {
    width: 40%;
    min-width: 200px;
  }
  /*		Printed_Products Page styles		*/
  .printed {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
  .printed_slider {
    width: 400px;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .printed_slide {
    width: 220px;
    height: 220px;
  }
  /*		Buy_Orders Page styles 	*/
  .double_input {
    width: 100%;
  }
  .discount_popup_body{
    width: 95%;
    height: auto;
  }
  .discount_popup_title{
    font-size: 32px;
    margin-top: 0;
  }
  .discount_popup_descr{
    font-size: 18px;
    line-height: 24px;
  }
  .discount_popup_img svg{
    width: 150px;
  }
  .discount_popup_body::before{
    height: 40%;
  }
}
@media screen and (max-width: 780px) {
  .container {
    width: 600px;
  }
  .search_block {
    width: 190px;
  }
  .menu_block {
    margin-left: 10px;
  }
  .slide_desc {
    font-size: 20px;
  }
  .slide_title {
    font-size: 32px;
  }
  .about {
    flex-direction: column-reverse;
  }
  .about_img {
    width: 200px;
    height: 200px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .about_btn {
    margin-top: 20px;
  }
  .footer_top {
    flex-direction: column;
    padding-bottom: 0;
  }
  .footer_left {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer_left .logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .foot_menu {
    padding: 0;
    margin-bottom: 15px;
  }
  /*		Catalog Page styles		*/
  .filter_type {
    width: 48%;
    margin-right: 0;
  }
  .catalog_filter {
    justify-content: space-between;
  }
  .catalog_filter .filter_type:nth-child(5n) {
    margin-right: 0;
  }
  .filter_type.filter_type_btn {
    width: 100%;
  }

  /*    Catalog_Inner Page styles   */

  .prod_complect_row{
    flex-direction: column;
  }
  .complect_info{
    width: 100%;
    flex-direction: row;
    border-top: 1px solid #ADADAD;
    border-left: none;
    justify-content: space-between;
  }
  .complect_info .complect_amount_block, 
  .complect_info .complect_btn{
    width: 48%;
  }

  /*		Shares Page styles		*/
  .shares .share_item {
    width: 49%;
    margin-right: 0;
  }
  .shares {
    justify-content: space-between;
  }
  .shares .share_item:nth-child(4n) {
    margin-right: 0;
  }
  /*		Basket Page styles 		*/
  .basket_item {
    align-items: flex-start;
    padding-right: 20px;
    flex-direction: column;
  }
  .basket_img {
    width: 170px;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .basket_del {
    top: 20px;
    transform: none;
  }
  .basket_info {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .basket_amount {
    width: 250px;
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 20px;
  } 
}
@media screen and (max-width: 680px) {
  .slide_title-second {
    font-size: 28px;
  } 
  .slide_desc-second {
    margin-top: 7px;
    font-size: 14px;
  }
  .slide_btn-second { 
    width: 197px;
    height: 49px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  } 
  .main_img-second img {
    height: 160px;
  }
  .main_img_slider-second .slick-next-second {
    right: 14px;
  }
  .main_img_slider-second .slick-prev-second {
    left: 14px;
  }
  .main_img_slider-second .slick-arrow {
    width: 32px;
    height: 32px;
  }
  .main_img_slider-second .slick-arrow svg {
    width: 14px;
  }
  .buy_form .input_block {
    width: 100%;
  }
  .buy_form .input_block:last-child {
    width: 100%;
  }
  .buy_form {
    row-gap: 16px;
  }
  .buy_form .form_input, .address_add_form .form_input {
    font-size: 16px;
  }
  .container {
    width: 500px;
  }
  .slider {
    flex-direction: column-reverse;
  }
  .slider_text {
    width: 100%;
    margin-top: 30px;
  }
  .slider_img {
    width: 220px;
    height: 220px;
  }
  .main_slide {
    text-align: center;
  }
  .main_img_dots {
    width: 125%;
    height: 125%;
  }
  .shares_slider {
    padding: 0 30px;
  }
  .slick_prev {
    left: -10px;
  }
  .slick_next {
    right: -10px;
  }
  .footer_bottom {
    flex-direction: column;
    text-align: center;
  }
  .created {
    margin-top: 10px;
  }
  /*		Catalog Page styles		*/
  .catalog_cats_list {
    justify-content: space-between;
  }
  .catalog_cats_list > li {
    width: 48%;
    margin-right: 0;
  }
  .catalog_cats_list > li:nth-child(even),
  .catalog_cats_list > li:nth-child(odd){
    margin-right: 0;
  }
  .sub_catalog.active {
    max-height: 600px;
  }
  .catalog_cats_list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .catalog_cats .container {
    justify-content: space-between;
  }
  .pagination {
    justify-content: center;
  }

  .product-select {
    font-size: 16px;
    width: 40%;
    min-width: auto;
  }
  .product-select__list {
    font-size: 16px;
  }
  .product_amount {
    gap: 15px;
    /* flex-direction: column; */
  }
  .amount_val .amount_val_type {
    display: none;
  }
  .amount_block {
    /* min-width: 60%; */
    width: 100%;
  }
  .amount_btn {
    width: 12px;
    height: 12px;
  }
  .amount_row {
    min-width: unset;
    height: 30px;
  }
  /*    Catalog_Inner Page styles   */

  .prod_complect_head{
    width: 210px;
    padding: 11px;
  }
 
  /*		Buy_Orders Page styles 	*/
  .address_item {
    width: 100%;
  }
  .pay_type_check {
    width: 22px;
    height: 22px;
  }
  /*		Contacts Page styles 	*/
  .contacts {
    flex-direction: column;
  }
  .contact_text {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
  .contact_map {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 570px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*		About Page styles	*/
  .about_inner .about_img {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .about_inner {
    margin-top: 30px;
  }
  /*		Catalog Page styles		*/
  .product_item {
    width: 100%;
  }
  .product_item .share_img {
    height: 150px;
  }
  .product_name {
    font-size: 16px;
  }
  .product_btn,
  .amount_val {
    font-size: 16px;
  }
  .product_btn {
    min-width: 90%;
  }
  .catalog_cats {
    padding: 20px 0 5px;
  }
  .catalog_cats .container:before {
    left: 17px;
    margin-bottom: 20px;
  }
  .cat_item {
    font-size: 14px;
    height: auto;
  }
  .catalog_cats_list {
    margin-bottom: 15px;
  }
  .sub_cat_list {
    padding: 10px;
  }
  .products {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 5px;
    margin-top: 30px;
  }
  .product_item.share_item {
    padding: 10px 10px 65px 10px;
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .product-select__list {
    font-size: 12px;
  }
  .catalog_filter_button {
    display: flex;
  }
  .catalog_head__wrapper {
    gap: 8px;
  }
  .catalog_search {
    width: 50%;
    height: 40px;
  }
  .catalog_filter_button {
    display: flex;
    width: 50%;
    justify-content: space-between;
    box-shadow: 0px 0px 15px rgba(168, 168, 168, 0.25);
    padding: 10px 20px;
    border-radius: 355px;
    border: 1px solid #C53364;
    height: 40px;
    color: #DB3E7B;
    align-items: center;
  }
  .catalog_filter_button img {
    width: 17px;
  }
  .main_cat_item,
  .advan_item {
    width: 48%;
    margin-right: 0;
  }
  .sorting_block {
    gap: 5px;
    flex-direction: row;
    align-items: end;
    margin-top: 12px;
  }
  .sorting_name {
    display: flex;
    align-items: center;
    margin-right: 0px;
  }
  .sorting_sel {
    display: inline-block;
    width: 40%;
    margin-bottom: 2px;
  }
  
  .main_cat_list,
  .advan_list {
    justify-content: space-between;
  }
  .main_cat_list .main_cat_item:nth-child(odd),
  .advan_list .advan_item:nth-child(odd){
    animation-delay: 0.2s;
  }
  .main_cat_list .main_cat_item:nth-child(even),
  .advan_list .advan_item:nth-child(even){
    animation-delay: 0.4s;
  }
  .city_form {
    padding: 30px 20px;
  }
  .city_form .title {
    font-size: 24px;
  }
  .alert_text {
    font-size: 20px;
  }
  .message {
    padding: 30px;
  }
  .popup_form .form_btn,
  .popup_form .input_name {
    font-size: 15px;
  }
  .popup_form {
    margin-bottom: 10px;
  }
  /*		Login styles	*/
  .reg_block .input_block {
    width: 100%;
  }
  /*		Catalog Page styles		*/
  .catalog_head {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog_btn {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .catalog_filter {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
  }
  .catalog_filter_open {
    max-height: 100%;
    opacity: 1;
  }
  .catalog_head__wrapper {
    width: 100%;
  }
  .sub_catalog {
    position: relative;
    z-index: 3;
    bottom: 60px;
    /*margin-top: -60px;*/
  }
  .sub_catalog.active {
    max-height: 500px;
    margin-bottom: -60px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  /*		Catalog_Inner Page styles		*/
  .prod_inner_text {
    margin-top: 20px;
    font-size: 15px;
  }
  .product_info {
    flex-direction: column;
  }
  .prod_info {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .product_slider_item {
    height: 230px;
  }
  .title.small_title {
    font-size: 22px;
  }
  .product_dots {
    margin-top: 0;
  }
  .prod_info .amount_name {
    margin-left: auto;
    margin-right: auto;
  }

  .complect_list{
    flex-direction: column;
  }
  .complect_item{
    width: 100%;
  }
  .complect_plus{
    margin: 10px auto;
  }
  .complect_info{
    flex-direction: column;
  }
  .complect_info .complect_amount_block, 
  .complect_info .complect_btn{
    width: 250px;
    max-width: 100%;
  }

  /*		Shares Page styles		*/
  .shares .share_item {
    width: 100%;
  }
  /*		Buy_Orders Page styles 	*/
  .buy_order_pay {
    flex-direction: column;
  }
  .buy_order_pay .buy_order_info:not(:last-child) {
    margin-bottom: 20px;
  }
  .buy_order_info {
    width: 100%;
  }
  .buy_info_row,
  .buy_info_value,
  .buy_order_area {
    font-size: 18px;
  }
  .buy_order_item .title {
    font-size: 24px;
  }
  .buy_item {
    flex-direction: column;
  }
  .buy_item_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .buy_order_pay .buy_order_info:first-child .buy_info {
    border-right: 1px solid #adadad;
    border-radius: 5px;
  }
  .buy_order_pay .buy_order_info:nth-child(2) .buy_info {
    border-radius: 5px;
  }
  .buy_item_name {
    margin-bottom: 15px;
  }
  .catalog_top.dn .container form.catalog_filter{
    display: none;
  }
  .catalog_top {
    margin-bottom: 20px;
  }
  .search_input{
    border: 1px solid #C53364;
    height: 40px;
    font-size: 14px;
    color: #DB3E7B;
  }

  .products {
    /* grid-template-rows: 400px; */
    /* grid-template-columns: 1fr; */
  }
  .product_name {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
  }
  .product_total_price, .share_price {
    font-size: 12px;
    font-weight: 600;
  }
  .product_price_block {
    /* margin-top: 12px; */
  }
  .product_price_block {
    margin-bottom: 10px;
  }
  .amount_btn {
    width: 9px !important;
    height: 9px !important;
  }
  .product_item {
    display: block;
  }
  .product_amount {
    gap: 5px;
  }
  .amount_row {
    margin-top: 0;
    height: 30px;
    /* min-width: 60%; */
  }
  .product-select {
    height: 30px;
    width: 40%;
  }
  .product-select__current {
    font-size: 12px;
  }
  .product-select::after {
    width: 4px;
    height: 4px;
    top: 48%;
  }
  .green_btn {
    height: 32px;
    border-radius: 35px;
    background: linear-gradient(93deg, #DB3D7A 6.11%, #0FA3E4 91.19%);
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
  }
  .amount_val {
    font-size: 12px;
  }
  .amount_block {
    width: 60%;
    margin-bottom: 0;
  }
  .product_item .amount_block {
    width: 100%;
  } 
  .amount_name {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .amount_name {
    font-size: 9px;
    padding: 8px 4px;
  }
  .amount_val_input {
    padding: 0;
    width: 20px!important;
  }
}
@media screen and (max-width: 450px) {
  .request_form .input_block {
    width: 100%;
    margin-bottom: 20px;
  }
  .request_btn {
    margin-top: 10px;
  }
  .request_form .input_name {
    font-size: 17px;
  }
  /*		Catalog Page styles		*/
  .filter_type {
    width: 100%;
    margin-top: 20px;
  }
  /* .sorting_block {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  } */
  /* .sorting_name {
    margin-right: 0;
    margin-bottom: 10px;
  } */
  /*		Buy_Orders Page styles 	*/
  .buy_form .input_block {
    width: 100%;
    /* margin-top: 20px; */
  }
  .double_input .input_block,
  .address_add_form .input_block {
    width: 100%;
  }
  .double_input {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 400px) {
  .slider_img {
    width: 200px;
    height: 200px;
  }
  .main_cat_item,
  .advan_item {
    width: 100%;
  }
  .main_cat_list .main_cat_item:nth-child(odd),
  .advan_list .advan_item:nth-child(odd),
  .main_cat_list .main_cat_item:nth-child(even),
  .advan_list .advan_item:nth-child(even){
    animation-delay: 0.2s;
  }
  .foot_menu {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  .foot_link {
    font-size: 16px;
  }
  .footer_left {
    margin-bottom: 30px;
  }
  .foot_menu li:not(:last-child) {
    margin-right: 0;
  }
  .slick_next {
    right: -15px;
  }
  .slick_prev {
    left: -15px;
  }
  .shares_slider {
    padding: 0 20px;
  }
  .city_list_block {
    padding: 20px;
  }
  /*		Login styles	*/
  .login_form {
    padding: 25px 20px;
  }
  .login_button {
    flex-direction: column;
  }
  .login_button .login_link {
    margin-left: 0;
    margin-top: 15px;
  }

  /*      Catalog Page styles    */

  .prod_alert_block{
    padding: 40px 30px;
  }
  .prod_alert_title{
    font-size: 17px;
  }
  .prod_alert_block .red_btn{
    font-size: 14px;
  }

  /*		Printed_Products Page styles		*/
  .printed_slide {
    width: 170px;
    height: 170px;
    margin: 10px -30px 15px;
  }
  .printed_text {
    line-height: 150%;
  }
  .title {
    font-size: 28px;
  }
  /*		Basket Page styles 		*/
  .basket_img {
    width: 150px;
    height: 150px;
  }
  
  /*		Buy_Orders Page styles 	*/
  .buy_info_row,
  .buy_info_value,
  .buy_order_area {
    font-size: 16px;
  }
  .buy_order_item .title {
    font-size: 22px;
  }
  .soc_buttons{
  	margin-top: 10px;
  }
  .soc_item {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    justify-content: center;
    padding: 0;
  }
  .soc_item_icon{
  	margin-right: 0;
  }
  .soc_item_name{
  	display: none;
  }
}
/*end my css*/
