@font-face {
  font-family: CeraProRegular;
  src: url(../fonts/CeraPro-Regular.woff);
}
@font-face {
  font-family: CeraProBold;
  src: url(../fonts/CeraPro-Bold.woff);
}
* {
  padding: 0;
  margin: 0;
  font-family: 'CeraProRegular';
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.hideScroll {
  overflow: hidden;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body .page {
  flex: 1;
}
.chat-block {
  position: fixed;
  bottom: 100px;
  right: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.chat-block img {
  display: block;
}
.chat-block ul {
  list-style-type: none;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.chat-block:hover ul {
  display: flex;
}
[data-confidential],
[data-cookie] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'CeraProBold';
}
a {
  text-decoration: none;
}
.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}
span[data-error] {
  color: #ff3333;
  display: none;
  margin-top: 5px;
  font-size: 12px;
}
span[data-error].success {
  display: block;
  color: #4BB543;
}
span[data-error].active {
  display: block;
  color: #ff3333;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
}
.fake-select {
  position: relative;
}
.fake-select .select-value {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.fake-select .select-value input {
  padding: 0;
  border: none;
  height: 34px;
  pointer-events: none;
}
.fake-select:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
  bottom: -5px;
}
.fake-select:hover ul {
  display: block;
}
.fake-select ul {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  list-style-type: none;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin-top: 5px;
  background-color: white;
}
.fake-select ul li {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 15px;
  overflow: hidden;
  cursor: pointer;
}
.fake-select ul li:hover {
  background-color: #F3F3F3;
}
.count {
  column-gap: 10px;
  display: flex;
  align-items: center;
}
.count span {
  display: block;
  margin-left: 15px;
}
.count div {
  height: 30px;
  width: 30px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px) grayscale(1);
  overflow: auto;
  padding: 50px;
  animation: showModalBd 0.6s ease forwards;
  height: calc(100vh - 100px);
  width: calc(100vw - 100px);
}
@keyframes showModalBd {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-bg .modal-wrap {
  min-height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.modal-bg .modal-wrap.showScroll {
  overflow: auto;
}
.modal-bg .modal {
  align-self: center;
  max-width: 400px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: showModal 0.2s ease-out forwards;
}
@keyframes showModal {
  0% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0);
  }
}
.modal-bg .modal.hide {
  animation: hideModal 0.3s ease-in-out;
}
@keyframes hideModal {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(30%);
    opacity: 0;
  }
}
.modal-bg h1,
.modal-bg h2,
.modal-bg p {
  margin-bottom: 15px;
}
.modal-bg h1 {
  font-size: 28px;
}
.modal-bg h2 {
  font-size: 22px;
}
.modal-bg .one-click,
.modal-bg .feedback,
.modal-bg .review {
  padding: 50px 30px;
  width: 100%;
}
.modal-bg .one-click h1,
.modal-bg .feedback h1,
.modal-bg .review h1 {
  text-align: center;
}
.modal-bg .one-click .form-group,
.modal-bg .feedback .form-group,
.modal-bg .review .form-group {
  margin-bottom: 15px;
}
.modal-bg .one-click .form-group label,
.modal-bg .feedback .form-group label,
.modal-bg .review .form-group label {
  margin-bottom: 5px;
}
.modal-bg .one-click .form-group:last-child,
.modal-bg .feedback .form-group:last-child,
.modal-bg .review .form-group:last-child {
  margin: 0;
}
.modal-bg .review .stars i {
  font-size: 30px;
  margin-right: 10px;
  color: #FFE600;
  cursor: pointer;
}
.modal-bg .success {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-bg .success h1,
.modal-bg .success i {
  color: #4BB543;
}
.modal-bg .success i {
  font-size: 40px;
  margin-bottom: 15px;
}
.modal-bg .product-full-slider {
  padding: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  right: 10%;
  max-width: none;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.modal-bg .product-full-slider h1 {
  margin: 0;
}
.modal-bg .product-full-slider > div:nth-child(2) {
  flex: 1;
  display: flex;
  column-gap: 30px;
  height: 100px;
}
.modal-bg .product-full-slider > div:nth-child(2) .previews div {
  height: 78px;
  width: 78px;
}
.modal-bg .product-full-slider > div:nth-child(2) .main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal-bg .product-full-slider > div:nth-child(2) .main div {
  height: 100%;
  width: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-bg .product-full-slider > div:nth-child(2) .main div img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-bg .product-full-slider > div:nth-child(2) .main div.show {
  animation: showSlide 0.3s ease;
}
@keyframes showSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-bg .product-full-slider > div:nth-child(2) .main button {
  position: absolute;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffe600;
  transition: border 0.3s;
}
.modal-bg .product-full-slider > div:nth-child(2) .main button svg {
  pointer-events: none;
}
.modal-bg .product-full-slider > div:nth-child(2) .main button:hover {
  background-color: #ffe600;
}
.modal-bg .product-full-slider > div:nth-child(2) .main button.left {
  left: 30px;
}
.modal-bg .product-full-slider > div:nth-child(2) .main button.right {
  right: 30px;
}
.modal-bg .product-full-slider > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal-bg .product-full-slider > div:nth-child(3) .prices {
  margin-right: 30px;
}
.modal-bg .product-full-slider > div:nth-child(3) .prices span {
  margin-right: 15px;
}
.modal-bg .shopcart-modal {
  min-width: 650px;
}
.modal-bg .shopcart-modal .header,
.modal-bg .shopcart-modal .cart-products,
.modal-bg .shopcart-modal .panel,
.modal-bg .shopcart-modal .total {
  padding: 30px;
}
.modal-bg .shopcart-modal .header,
.modal-bg .shopcart-modal .cart-products,
.modal-bg .shopcart-modal .total {
  border-bottom: 1px solid #dbdbdb;
}
.modal-bg .shopcart-modal .header,
.modal-bg .shopcart-modal .header2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-bg .shopcart-modal .header {
  background-color: #F9FBFF;
  font-family: 'CeraProBold';
  font-size: 18px;
}
.modal-bg .shopcart-modal .header2 {
  margin-bottom: 30px;
}
.modal-bg .shopcart-modal .panel,
.modal-bg .shopcart-modal .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-bg .shopcart-modal .total span {
  font-family: 'CeraProBold';
  font-size: 18px;
}
.modal-bg .shopcart-modal .panel button:not(.btn) {
  background: none;
  border: none;
}
.modal-bg .shopcart-modal .panel button:not(.btn) svg {
  margin-right: 10px;
}
.modal-bg .shopcart-modal .cart-products .container,
.modal-bg .shopcart-modal ._cart-products {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.modal-bg .shopcart-modal .cart-products .cart-item {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.modal-bg .shopcart-modal .cart-products .cart-item a {
  font-family: 'CeraProBold';
  display: block;
  margin-bottom: 5px;
}
.modal-bg .shopcart-modal .cart-products .cart-item .count,
.modal-bg .shopcart-modal .cart-products .cart-item .count div {
  display: flex;
  align-items: center;
}
.modal-bg .shopcart-modal .cart-products .cart-item img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  display: block;
}
.modal-bg .shopcart-modal .cart-products .cart-item > div:nth-child(2) {
  flex: 1;
}
.modal-bg .shopcart-modal .rec-products {
  background-color: #F9FBFF;
  padding: 30px;
  margin-top: 30px;
  display: none;
}
.modal-bg .shopcart-modal .rec-products.active {
  display: block;
}
.modal-bg .close-btn.abs {
  position: absolute;
  top: 15px;
  right: 15px;
}
.modal-bg .modal.text {
  padding: 50px 30px;
  min-width: 900px;
  position: relative;
}
.modal-bg .modal.text ul {
  margin-bottom: 15px;
  margin-left: 20px;
}
.modal-bg .modal.explanation {
  min-width: 500px;
}
.modal-bg.hide {
  animation: hideModalBg 0.3s ease;
}
@keyframes hideModalBg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
input,
textarea {
  height: 34px;
  border: 1px solid #dbdbdb;
  outline: none;
  padding: 0 15px;
  border-radius: 5px;
}
textarea {
  padding: 15px;
  height: auto;
  resize: vertical;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
.btn {
  white-space: nowrap;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.btn i,
.btn svg {
  pointer-events: none;
}
.btn i {
  color: white;
  margin-right: 5px;
}
.btn svg {
  margin-right: 10px;
}
/* Прибираємо стрілочки для input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}
.btn.v1 {
  background-color: #4791FF;
  color: white;
  padding: 0 30px;
  border: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn.v1:hover {
  background-color: #3d87f5;
}
.btn.order i {
  display: none;
}
.btn.order.pending {
  background-color: #b9b9b9;
  pointer-events: none;
}
.btn.order.pending i {
  display: block;
}
.btn.v2 {
  background: none;
  padding: 0 30px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
}
.btn.v3 {
  background-color: #1D1D1D;
}
.btn.v3:hover {
  background-color: #3b3b3b;
}
.btn.v4 {
  height: 60px;
}
button.close-btn {
  background-color: #F3F3F3;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.close-btn svg {
  display: block;
}
.cats-btn {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 34px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.cats-btn svg {
  margin-right: 10px;
}
header {
  position: sticky;
  top: 0;
  z-index: 3;
}
header .top-header {
  background-color: #1D1D1D;
}
header .top-header .wrapper {
  height: 48px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .top-header ul {
  list-style-type: none;
  display: flex;
}
header .top-header ul li {
  margin-right: 30px;
}
header .top-header ul li a {
  color: white;
  font-size: 12px;
  display: block;
}
header .top-header .lang-changer {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
header .top-header .lang-changer i {
  color: white;
  margin-left: 5px;
  font-size: 12px;
}
header .top-header .lang-changer div {
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
}
header .top-header .lang-changer a {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  transform: translateY(100%);
  color: white;
  font-size: 12px;
  background-color: #1D1D1D;
  display: none;
  z-index: 1;
}
header .top-header .lang-changer:hover a {
  display: block;
}
header .bottom-header {
  border-bottom: 0.3px solid #dbdbdb;
  background-color: #ffffff;
}
header .bottom-header .menu-btn {
  display: none;
}
header .bottom-header .menu-btn svg:nth-child(1) {
  display: block;
}
header .bottom-header .menu-btn svg:nth-child(2) {
  display: none;
}
header .bottom-header .main-mobile-menu {
  display: none;
  background-color: white;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 5;
  display: none;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu .header {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F9FBFF;
  font-family: 'CeraProBold';
  font-size: 18px;
  border-bottom: 1px solid #dbdbdb;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu .header > div {
  flex: 1;
  display: flex;
  align-items: center;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu .header > div span {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'CeraProBold';
  font-size: 18px;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu .header button[data-back-category] {
  margin-right: 15px;
}
header .bottom-header .main-mobile-menu .mobile-cat-menu .header button[data-back-category] svg {
  transform: rotate(180deg);
}
header .bottom-header .main-mobile-menu .mobile-cat-menu section.menu .list ul {
  padding: 15px;
  border: none;
}
header .bottom-header .main-mobile-menu > div {
  padding: 15px;
}
header .bottom-header .main-mobile-menu > div:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}
header .bottom-header .main-mobile-menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
header .bottom-header .main-mobile-menu .contacts {
  align-items: flex-start;
}
header .bottom-header .main-mobile-menu .contacts a {
  margin-bottom: 15px;
}
header .bottom-header .main-mobile-menu .lang-changer {
  display: flex;
  column-gap: 15px;
}
header .bottom-header .main-mobile-menu .lang-changer div {
  font-family: 'CeraProBold';
}
header .bottom-header .main-mobile-menu .lang-changer i {
  display: none;
}
header .bottom-header .he1 {
  display: flex;
  align-items: center;
}
header .bottom-header .he1 .cart-btn {
  margin-left: 50px;
}
header .bottom-header .wrapper {
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
  position: relative;
}
header .bottom-header .wrapper > section.menu {
  position: absolute;
  left: 15px;
  bottom: -15px;
  right: 15px;
  transform: translateY(100%);
  z-index: 1;
  display: none;
}
header .bottom-header .wrapper > section.menu.active {
  display: flex;
}
header .bottom-header .logo {
  display: flex;
  align-items: center;
}
header .bottom-header .contacts {
  display: flex;
  flex-direction: column;
}
header .bottom-header .contacts a {
  font-size: 16px;
  font-family: 'CeraProBold';
}
header .bottom-header .contacts button {
  font-size: 11px;
  position: relative;
}
header .bottom-header .contacts button:before {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -3px;
  height: 1px;
  border-bottom: 1px dotted #000000;
}
header .bottom-header .cart-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .bottom-header .cart-btn span {
  flex: 1;
}
header .bottom-header .cart-btn > div {
  position: relative;
  margin-right: 10px;
}
header .bottom-header .cart-btn > div span[data-count-products] {
  content: attr(data-count-products);
  position: absolute;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  font-size: 10px;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #FFE600;
}
header .bottom-header .cart-btn > div span[data-count-products].active {
  display: flex;
}
header .bottom-header .cart-btn svg {
  display: block;
  margin-right: 10px;
}
header .bottom-header .search {
  height: 34px;
  border: 1px solid #dbdbdb;
  display: flex;
  border-radius: 5px;
  flex: 1;
}
header .bottom-header .search form {
  width: 100%;
  display: flex;
}
header .bottom-header .search input {
  border: none;
  outline: none;
  padding: 0 0 0 15px;
  background: none;
  flex: 1;
}
header .bottom-header .search button {
  width: 36px;
}
.price-range {
  margin-top: 30px;
  display: flex;
  position: relative;
}
.price-range > span {
  position: absolute;
  height: 16px;
  width: 16px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  background-color: #EAEAEA;
  display: block;
  transform: translateY(calc(-50% + 1px));
  cursor: pointer;
  z-index: 1;
}
.price-range span.left {
  left: 0;
}
.price-range span.right {
  right: 0;
}
.price-range .range {
  position: relative;
  height: 2px;
  background-color: white;
  width: 100%;
  pointer-events: none;
}
.price-range .range div {
  position: absolute;
  background-color: #4791FF;
  left: 0%;
  right: 0%;
  height: 100%;
}
.items-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 25px;
}
button.slide-arrow {
  height: 40px;
  width: 40px;
  border: 2px solid #ffe600;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.slide-arrow svg {
  height: 50%;
}
button.left {
  left: -15px;
}
button.right {
  right: -15px;
}
.items-container.slides {
  display: grid;
  grid-template-columns: 218px;
  grid-auto-flow: column;
  grid-gap: 25px;
  position: relative;
  padding: 5px;
  margin-left: -5px;
  margin-right: -5px;
}
.items-container.slides button.slide-arrow.active {
  opacity: 1;
  pointer-events: auto;
  background-color: #ffe600;
}
.items-container.slides:after,
.items-container.slides:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
  position: absolute;
}
.items-container.slides:before {
  transform: translateX(-100%);
  left: -1px;
}
.items-container.slides:after {
  transform: translateX(100%);
  right: 0;
}
.items-container.slides .container {
  position: relative;
  transition: transform 0.8s ease-out;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 25px;
}
.items-container.slides .item {
  width: 218px;
}
.items-container.slides.v2:before {
  left: -25px;
}
.rating {
  margin-right: 10px;
}
.rating i {
  color: #FFE600;
  margin-right: 2px;
}
.product-sings {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  align-items: flex-start;
}
.product-sings span {
  border-radius: 9.5px;
  padding: 2px 10px;
  color: white;
  font-size: 12px;
}
.product-sings span.discount {
  background-color: red;
}
.product-sings span.hit {
  background-color: #00aa3a;
}
.product-sings span.new {
  background-color: #4791ff;
}
.item {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
}
.item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.item:before {
  content: '';
  box-shadow: 0px 0px 10px #D4E5FF;
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
}
.item .image {
  aspect-ratio: 1 / 1;
}
.item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 5px;
}
.item .info {
  flex: 1;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ebebeb;
}
.item .info .hidden-block {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  left: -1px;
  right: -1px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 3px 15px 15px 15px;
  display: none;
  border: 1px solid #dbdbdb;
  border-top: none;
  box-shadow: 0px 0px 10px #D4E5FF;
  background-color: white;
  z-index: 1;
}
.item .info .hidden-block .btn.v1 {
  width: 100%;
}
.item .info .hidden-block:before {
  content: '';
  display: block;
  background-color: white;
  position: absolute;
  top: -15px;
  left: 0;
  height: 15px;
  width: 100%;
}
.item .info .hidden-block ul {
  list-style-type: none;
  margin-top: 15px;
}
.item .info .hidden-block ul li,
.item .info .hidden-block ul span {
  font-size: 13px;
}
.item .info .hidden-block ul li {
  color: #6B6B6B;
}
.item .info .hidden-block ul li:not(:last-child) {
  margin-bottom: 5px;
}
.item .info .p-title {
  flex: 1;
}
.item .info .p-title > span {
  font-size: 13px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item .info > div:nth-child(2) {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.item .info > div:nth-child(2) i,
.item .info > div:nth-child(2) span {
  font-size: 12px;
}
.item .info > div:nth-child(2) .item-reviews {
  padding: 2px 5px;
  background-color: #F3F3F3;
  border-radius: 3px;
}
.item .info > div:nth-child(2) .item-reviews a {
  text-decoration: underline;
}
.item:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.item:hover .info .p-title span {
  color: #4791FF;
}
.item:hover:before {
  display: block;
}
.item:hover .info .hidden-block {
  display: block;
}
.item-doctor {
  display: flex;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  column-gap: 30px;
}
.item-doctor a {
  font-family: 'CeraProBold';
  font-size: 22px;
}
.item-doctor p {
  margin-top: 15px;
}
.item-doctor > div:nth-child(2) {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.item-doctor > div:nth-child(3) {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #dbdbdb;
}
.item-doctor > div:nth-child(3) .prices {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  list-style-type: none;
}
.item-doctor > div:nth-child(3) .prices span {
  font-size: 22px;
  font-family: 'CeraProBold';
}
.prices .current-price {
  font-size: 21px;
  font-family: 'CeraProBold';
  margin-right: 10px;
}
.prices .current-price.discount {
  color: red;
}
.prices .old-price {
  font-size: 16px;
  text-decoration: line-through;
}
footer {
  background-color: #1D1D1D;
}
footer .wrapper {
  padding: 50px 15px 30px 15px;
}
footer .b1 {
  display: flex;
  justify-content: space-between;
}
footer .b1 span,
footer .b1 li,
footer .b1 a {
  color: white;
}
footer .b1 span {
  display: block;
  margin-bottom: 20px;
  font-family: 'CeraProBold';
}
footer .b1 li,
footer .b1 a {
  font-size: 13px;
}
footer .b1 ul {
  list-style-type: none;
}
footer .b1 ul li {
  margin-bottom: 5px;
}
footer .text {
  padding: 30px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  background-color: #262626;
  margin-top: 30px;
}
footer .b2 {
  border-top: 1px solid #373737;
}
footer .b2 .logo {
  display: flex;
}
footer .b2 .copy {
  color: white;
  font-size: 13px;
}
footer .b2 .wrapper {
  padding: 30px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.s-title h2,
.s-title h1 {
  font-size: 28px;
  font-family: 'CeraProBold';
}
.s-title h2 {
  text-transform: uppercase;
}
.s-title [data-show-filter] {
  display: none;
}
.s-title .slide-btns {
  display: flex;
  column-gap: 10px;
}
.s-title .slide-btns button.slide-arrow {
  height: 40px;
  width: 40px;
  border: 2px solid #ffe600;
  border-radius: 50%;
  position: static;
  background-color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-title .slide-btns button.slide-arrow svg {
  height: 50%;
}
.s-title .slide-btns button.left {
  left: -15px;
}
.s-title .slide-btns button.right {
  right: -15px;
}
.breadcrumbs {
  margin-bottom: 20px;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.breadcrumbs ul li,
.breadcrumbs ul a {
  font-size: 15px;
  white-space: nowrap;
}
.breadcrumbs ul li {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.breadcrumbs ul li a {
  margin-right: 10px;
  display: block;
}
.breadcrumbs ul li:last-child {
  color: #6B6B6B;
}
.pagination {
  margin-top: 50px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  column-gap: 5px;
}
.pagination ul li {
  height: 40px;
  width: 40px;
}
.pagination ul li:not(.cut) {
  border: 1px solid #dbdbdb;
}
.pagination ul li:not(.cut) a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pagination ul li.active a {
  background-color: #6A90C9;
  color: white;
}
.pagination ul li.cut {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.review {
  background-color: white;
  border-radius: 5px;
}
.review h3 {
  font-size: 16px;
  font-family: 'CeraProBold';
}
.review .top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.review .top div:nth-child(1) {
  height: 80px;
  width: 80px;
  background: linear-gradient(180deg, #FFEB81 0%, #FFC49A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review .top div:nth-child(1) span {
  font-family: 'CeraProBold';
  font-size: 18px;
}
.review .top > div:nth-child(2) {
  flex: 1;
  margin-left: 20px;
}
.review .top > div:nth-child(2) .rating {
  margin-top: 10px;
}
.review .image-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  column-gap: 5px;
}
.review .image-block .image {
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  height: 60px;
  width: 60px;
}
.review .image-block .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review .answer,
.review .question {
  margin-top: 30px;
  background-color: #F9FBFF;
  padding: 30px;
}
.review .answer .top2,
.review .question .top2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.review .question {
  background-color: #fdfdfd;
}
.shadow {
  content: '';
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  backdrop-filter: blur(5px);
}
.shadow.active {
  display: block;
}
section.menu {
  display: flex;
  height: 500px;
}
section.menu .categories {
  flex: 1;
  border: 1px solid #dbdbdb;
  overflow-y: auto;
  background-color: white;
}
section.menu ul {
  list-style-type: none;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
section.menu ul li {
  cursor: pointer;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  break-inside: avoid;
}
section.menu ul li:hover {
  background-color: #F4F8FF;
}
section.menu ul a,
section.menu ul span {
  padding: 10px;
}
section.menu ul li span {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  pointer-events: none;
}
section.menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
section.menu ul li i {
  pointer-events: none;
}
section.menu .right-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 2;
  background-color: white;
}
section.menu .right-block .b1 {
  margin-left: 25px;
  display: flex;
  column-gap: 30px;
}
section.menu .right-block .b1 > a {
  flex: 1;
  padding: 30px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(65.83% 65.83% at 50% 50%, #FFF8B7 19.57%, #FFD850 100%);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #001b44;
}
section.menu .right-block .cont {
  flex: 1;
}
section.menu .right-block .cont .main-slider {
  flex: 3;
  margin-left: 25px;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.03);
  position: relative;
}
section.menu .right-block .cont .main-slider > a {
  display: block;
}
section.menu .right-block .cont .main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
section.menu .right-block .cont .main-slider img.active {
  opacity: 1;
  z-index: 1;
}
section.menu .right-block .cont .main-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #ffe600;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
section.menu .right-block .cont .main-slider .arrow svg {
  height: 35%;
}
section.menu .right-block .cont .main-slider .arrow.left {
  left: 30px;
}
section.menu .right-block .cont .main-slider .arrow.right {
  right: 30px;
}
section.menu .right-block .cont .main-slider .arrow.active {
  background-color: #ffe600;
}
section.menu .right-block .cont .main-slider .changer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  display: flex;
  column-gap: 15px;
  z-index: 1;
}
section.menu .right-block .cont .main-slider .changer div {
  border-radius: 2.5px;
  height: 5px;
  width: 20px;
  background-color: #6B6B6B;
  cursor: pointer;
  transition: width 0.5s;
}
section.menu .right-block .cont .main-slider .changer div.active {
  background-color: #FFE600;
  width: 40px;
}
section.menu .right-block .subcategories {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  z-index: 2;
  border: 1px solid #dbdbdb;
  background-color: white;
  border-left: none;
  display: none;
  overflow-y: auto;
}
section.menu .right-block .subcategories ul {
  display: none;
}
section.menu .right-block .subcategories ul.active {
  display: block;
  height: calc(100% - 60px);
  column-count: 2;
}
section.menu .right-block .subcategories.active {
  display: block;
}
section.menu .right-block .slider {
  flex: 1;
  background-color: #f5f5f5;
}
section.menu {
  display: flex;
  height: 500px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section.menu ::-webkit-scrollbar {
  width: 5px;
  display: none;
}
section.menu ::-webkit-scrollbar-track {
  background: white;
}
section.menu ::-webkit-scrollbar-thumb {
  background: #C6DDFF;
}
section.menu ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
section.menu .close-btn svg {
  transform: rotate(180deg);
}
section.menu .list {
  flex: 1;
  background-color: white;
  position: relative;
  z-index: 2;
}
section.menu .list ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 30px;
  border: 1px solid #dbdbdb;
  height: calc(100% - 62px);
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
}
section.menu .list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 5px;
}
section.menu .list li a span {
  flex: 1;
}
section.menu .list li a svg {
  margin-right: 10px;
}
section.menu .list li a:before {
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
}
section.menu .list li > .sub-list {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100%);
  transform: translateX(100%);
  height: calc(100%);
  display: none;
  animation: showMenu 0.2s ease-in-out forwards;
  z-index: -2;
  background-color: white;
}
section.menu .list li > .sub-list ul {
  overflow-y: auto;
  overflow-x: hidden;
  border-left: none;
}
section.menu .list li > .sub-list:before,
section.menu .list li > .sub-list:after {
  content: '';
  display: block;
  height: 30px;
  position: absolute;
  left: 0;
  right: 5px;
  z-index: 1;
}
section.menu .list li > .sub-list:before {
  top: 1px;
  background: linear-gradient(to bottom, white, white, rgba(255, 255, 255, 0));
}
section.menu .list li > .sub-list:after {
  bottom: 1px;
  background: linear-gradient(to top, white, white, rgba(255, 255, 255, 0));
}
@keyframes showMenu {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
section.menu .list li:hover {
  background-color: #F4F8FF;
}
section.menu .list li:hover a:before {
  right: -32px;
}
section.menu .list li:hover > .sub-list {
  display: block;
}
section.menu .cont-wrap {
  flex: 2;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
section.menu .b1 {
  margin-left: 25px;
  display: flex;
  column-gap: 30px;
}
section.menu .b1 > a {
  flex: 1;
  padding: 30px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(65.83% 65.83% at 50% 50%, #FFF8B7 19.57%, #FFD850 100%);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #001b44;
}
section.menu .cont {
  flex: 1;
}
section.menu .cont .main-slider {
  flex: 3;
  margin-left: 25px;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.03);
  position: relative;
}
section.menu .cont .main-slider > a {
  display: block;
}
section.menu .cont .main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
section.menu .cont .main-slider img.active {
  opacity: 1;
  z-index: 1;
}
section.menu .cont .main-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #ffe600;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
section.menu .cont .main-slider .arrow svg {
  height: 35%;
}
section.menu .cont .main-slider .arrow.left {
  left: 30px;
}
section.menu .cont .main-slider .arrow.right {
  right: 30px;
}
section.menu .cont .main-slider .arrow.active {
  background-color: #ffe600;
}
section.menu .cont .main-slider .changer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  display: flex;
  column-gap: 15px;
  z-index: 1;
}
section.menu .cont .main-slider .changer div {
  border-radius: 2.5px;
  height: 5px;
  width: 20px;
  background-color: #6B6B6B;
  cursor: pointer;
  transition: width 0.5s;
}
section.menu .cont .main-slider .changer div.active {
  background-color: #FFE600;
  width: 40px;
}
.brands-block .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 25px;
}
.brands-block .container > div,
.brands-block .container > a {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-transform: uppercase;
}
.brands-block .container > div > a:not(.brand-logo) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.brands-block .container .brand-logo {
  flex: 1;
  background: rgba(221, 221, 221, 0.2);
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.brands-block .container .brand-logo img {
  display: block;
  height: 90px;
  width: 90px;
}
.brands-block .container a.brand-logo {
  background-color: #fff2d9;
}
.brands-block .container span {
  flex-basis: 36px;
  display: block;
  text-align: center;
}
.tags-container {
  max-height: 130px;
  height: auto;
  overflow: hidden;
}
.tags-container .container {
  display: flex;
  row-gap: 5px;
  column-gap: 5px;
  flex-wrap: wrap;
}
.tags-container .more-block {
  position: sticky;
  bottom: 0;
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, transparent, white);
}
.tags-container .more-block button {
  display: none;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: #4791FF;
  font-weight: bold;
  text-transform: uppercase;
}
.tags-container .more-block button:after {
  content: "Більше";
  display: block;
}
.tags-container .more-block button svg {
  height: 24px;
  width: 24px;
}
.tags-container .more-block button.active {
  display: flex;
}
.tags-container a {
  display: inline-flex;
  white-space: nowrap;
  height: 30px;
  padding: 0 20px;
  border: 1px solid #e1e1e1;
  align-items: center;
  border-radius: 15px;
}
.tags-container.active {
  max-height: none;
}
.tags-container.active button:after {
  content: "Сховати";
}
.tags-container.active button svg {
  transform: rotate(180deg);
}
.page.main section {
  margin-bottom: 80px;
}
.page.main section.s4 {
  background-color: #f1f6ff;
  padding: 50px 30px;
}
.page.main section.s4 .s-title {
  display: block;
}
.page.main section.s4 .s-title h2 {
  text-align: center;
}
.page.main section.s4 .review-slider {
  position: relative;
  transition: transform 0.3s;
  padding: 5px;
  margin-left: -5px;
}
.page.main section.s4 .review-slider .container {
  transition: transform 0.8s ease-out;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 25px;
}
.page.main section.s4 .review-slider .review {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: calc(1130px / 2 - 25px / 2 - 57.5px);
}
section.s3 {
  background-color: #f1f6ff;
  padding: 50px 30px;
}
section.s3 .slide-btns button {
  transform: none;
}
section.s3 .items-container.slides {
  margin-right: -30px;
}
section.s5 {
  background-color: #f1f6ff;
  padding: 50px 30px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 80px;
}
section.s5 div {
  display: flex;
  align-items: center;
  flex-basis: 180px;
}
section.s5 div svg {
  margin-right: 30px;
}
.fake-checkbox label,
.fake-checkbox div {
  cursor: pointer;
}
.fake-checkbox input {
  display: none;
}
.fake-checkbox label {
  display: inline-flex;
  align-items: center;
}
.fake-checkbox label div {
  height: 14px;
  width: 14px;
  min-width: 14px;
  border-radius: 3px;
  border: 1px solid #dbdbdb;
  background-color: white;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fake-checkbox label div i {
  display: block;
  visibility: hidden;
  font-size: 10px;
  color: white;
}
.fake-checkbox input:checked + label div {
  background-color: #00D448;
}
.fake-checkbox input:checked + label div i {
  visibility: visible;
}
.page.catalog .b1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
}
.page.catalog .b1 .filter {
  flex-basis: 218px;
  margin-right: 25px;
  border: 1px solid #dbdbdb;
  background-color: #F9FBFF;
  border-radius: 5px;
  display: block;
}
.page.catalog .b1 .filter .filter-header {
  background-color: #F9FBFF;
  padding: 15px;
  font-family: 'CeraProBold';
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
}
.page.catalog .b1 .filter .filter-panel {
  padding: 15px;
  border-top: 1px solid #dbdbdb;
  position: sticky;
  bottom: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.page.catalog .b1 .filter .filter-panel span {
  display: block;
  align-self: center;
  margin-bottom: 15px;
  font-size: 12px;
}
.page.catalog .b1 .filter .filter-panel > div {
  display: flex;
  flex-direction: column;
  column-gap: 15px;
}
.page.catalog .b1 .filter .filter-panel > div button:first-child {
  order: 2;
  margin-top: 15px;
}
.page.catalog .b1 .filter .filter-wrapper {
  padding: 20px;
}
.page.catalog .b1 .filter .filter-wrapper > div {
  margin-bottom: 30px;
  background-color: #F9FBFF;
}
.page.catalog .b1 .filter .filter-wrapper > div .inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page.catalog .b1 .filter .filter-wrapper > div .inputs input,
.page.catalog .b1 .filter .filter-wrapper > div .inputs button {
  padding: 0 10px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}
.page.catalog .b1 .filter .filter-wrapper > div .inputs input {
  width: 35px;
  font-size: 12px;
  text-align: center;
}
.page.catalog .b1 .filter .filter-wrapper > div > div ul {
  list-style-type: none;
  display: none;
}
.page.catalog .b1 .filter .filter-wrapper > div > div ul li {
  margin-bottom: 15px;
}
.page.catalog .b1 .filter .filter-wrapper > div > div > label {
  font-family: 'CeraProBold';
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  margin-bottom: 15px;
}
.page.catalog .b1 .filter .filter-wrapper > div > div input[type="checkbox"] {
  display: none;
}
.page.catalog .b1 .filter .filter-wrapper > div > div input:checked ~ ul {
  display: block;
}
.page.catalog .b1 .filter .filter-wrapper > div > div input:checked ~ label > i {
  transform: rotate(180deg);
}
.page.catalog .b1 .container {
  flex: 1;
}
.page.catalog .b1 .container .catalog-info {
  margin-top: 50px;
  background-color: #F9FBFF;
  padding: 50px 40px;
}
.page.catalog .b1 .container .catalog-info h1,
.page.catalog .b1 .container .catalog-info h2,
.page.catalog .b1 .container .catalog-info h3 {
  font-family: 'CeraProBold';
  margin-bottom: 15px;
}
.page.catalog .b1 .container .catalog-info h1 {
  font-size: 24px;
}
.page.catalog .b1 .container .catalog-info h2 {
  font-size: 21px;
}
.page.catalog .b1 .container .catalog-info h3 {
  font-size: 18px;
}
.page.catalog .b1 .container .catalog-info p {
  margin-bottom: 10px;
  color: #262626;
  line-height: 24px;
}
.page.categories .b1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
  margin-bottom: 80px;
}
.page.categories .b1 > a {
  padding: 30px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  display: flex;
}
.page.categories .b1 > a img {
  display: block;
  object-fit: contain;
  height: 75px;
  width: 75px;
}
.page.categories .b1 > a div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page.categories .b1 > a div h2 {
  font-family: 'CeraProBold';
  font-size: 16px;
}
.page.categories .b1 > a div p {
  color: #6B6B6B;
}
.page.category .b1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 80px;
}
.page.category .b1 img {
  width: 100%;
}
.page.category .b1 > a h2 {
  font-family: 'CeraProBold';
}
.page.contacts .wrapper {
  margin-bottom: 80px;
}
.page.contacts .b1 {
  display: flex;
  column-gap: 30px;
  margin-bottom: 30px;
}
.page.contacts .b1 > div {
  flex: 1;
  padding: 40px 30px;
  box-shadow: 0px 0px 10px #D7E7FF;
  border-radius: 10px;
}
.page.contacts .b1 > div h2 {
  font-size: 18px;
  font-family: 'CeraProBold';
  margin-bottom: 20px;
}
.page.contacts .b1 > div ul {
  list-style-type: none;
}
.page.contacts .b1 > div ul .g {
  display: flex;
  column-gap: 30px;
}
.page.contacts .b1 > div ul li:not(:last-child) {
  margin-bottom: 20px;
}
.page.contacts .b1 > div ul li span {
  font-size: 13px;
  color: #6B6B6B;
  display: block;
  margin-bottom: 10px;
}
.page.contacts .b2 {
  border-radius: 10px;
  background-color: #F9FBFF;
  padding: 60px 100px;
  box-shadow: 0px 0px 10px #D7E7FF;
  margin: auto;
  max-width: 500px;
}
.page.contacts .b2 h3,
.page.contacts .b2 h4 {
  text-align: center;
}
.page.contacts .b2 h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: 'CeraProBold';
}
.page.contacts .b2 h4 {
  margin-bottom: 30px;
  font-size: 18px;
  font-family: inherit;
}
.page.contacts .b2 form .form-group:not(:last-child) {
  margin-bottom: 15px;
}
.page.contacts .b2 form .form-group:last-child {
  align-items: center;
}
.page.pd .warpper {
  margin-bottom: 80px;
}
.page.pd h2 {
  font-family: 'CeraProBold';
  font-size: 22px;
  position: relative;
  padding-left: 35px;
  margin-bottom: 30px;
}
.page.pd h2:before {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  display: block;
  height: 5px;
  width: 22px;
  background-color: #4791FF;
}
.page.pd .b1 {
  display: flex;
  column-gap: 30px;
  margin-bottom: 30px;
}
.page.pd .b1 div {
  padding: 0 30px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}
.page.pd .b1 div h3 {
  margin-bottom: 15px;
  font-family: 'CeraProBold';
  font-size: 18px;
}
.page.pd .b1 div p {
  font-size: 14px;
}
.page.pd .b1 div ul {
  list-style-type: none;
}
.page.pd .b1 div ul li {
  padding: 30px 0;
}
.page.pd .b1 div ul li:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}
.page.pd .b1 div:first-child {
  flex: 5;
}
.page.pd .b1 div:last-child {
  flex: 2;
  background-color: #F9FBFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page.certificates .wrapper {
  margin-bottom: 80px;
}
.page.certificates .b1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px;
}
.page.certificates .b1 div img {
  width: 100%;
}
.page.certificates .b1 div span {
  margin-top: 15px;
  display: block;
  text-align: center;
}
.page.about .s-title h2 {
  font-size: 22px;
}
.page.about .wrapper {
  margin-bottom: 80px;
}
.page.about .b1 .b11 {
  display: flex;
  margin-bottom: 30px;
}
.page.about .b1 .b11 div:first-child {
  margin-right: 30px;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page.about .b1 .b11 div:first-child span {
  position: absolute;
  font-size: 20px;
  color: white;
  font-family: 'CeraProBold';
}
.page.about .b1 .b11 div:first-child img {
  display: block;
  width: 100%;
}
.page.about .b1 .b11 div:last-child {
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page.about .b1 .b11 div:last-child p:not(:last-child) {
  margin-bottom: 15px;
}
.page.about .b1 .b11 div:last-child ul {
  list-style-type: none;
}
.page.about .b1 .b11 div:last-child ul li:not(:last-child) {
  margin-bottom: 40px;
}
.page.about .b1 .b11 div:last-child ul li {
  position: relative;
  padding-left: 50px;
}
.page.about .b1 .b11 div:last-child ul li:before {
  content: attr(data-count);
  position: absolute;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #FFE600;
}
.page.about .b2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 30px;
}
.page.about .b2 div img {
  display: block;
  width: 100%;
}
.page.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page.thanks h1 {
  margin-bottom: 20px;
  font-family: 'CeraProBold';
  font-size: 28px;
}
.page.thanks p {
  margin-bottom: 50px;
}
.page.signin {
  display: flex;
}
.page.signin .wrapper {
  flex: 1;
}
.page.signin .signin-form {
  max-width: 300px;
  margin: auto;
}
.page.signin h1 {
  margin-bottom: 30px;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'CeraProBold';
  font-size: 28px;
}
.page.signin h2 {
  margin-bottom: 15px;
}
.page.signin form {
  padding: 50px 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.page.signin .form-group:not(:last-child) {
  margin-bottom: 15px;
}
.previews {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.previews div {
  text-align: center;
  cursor: pointer;
  padding: 5px;
  height: 58px;
  width: 58px;
  border: 1px solid #ededed;
  border-radius: 5px;
}
.previews div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.previews div.active {
  border-color: #4791FF;
}
.previews span {
  display: block;
  text-align: center;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.previews div.video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.complects {
  background-color: #F9FBFF;
  width: 100%;
  max-width: calc(700px - 60px);
  padding: 30px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.complects hr {
  border: none;
  height: 1px;
  background-color: #e1e1e1;
}
@media screen and (max-width: 460px) {
  .complects {
    width: auto;
  }
}
.complects .top-block {
  position: relative;
}
.complects [data-prev-complect],
.complects [data-next-complect] {
  position: absolute;
  z-index: 1;
  top: 80px;
  border: 2px solid #ffe600;
  background-color: white;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2;
  cursor: pointer;
}
.complects [data-prev-complect] svg,
.complects [data-next-complect] svg {
  height: 10px;
}
.complects [data-prev-complect] {
  left: -40px;
}
.complects [data-next-complect] {
  right: -40px;
}
.complects .text-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.complects .text-block p {
  flex: 2;
}
.complects .text-block .price {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 460px) {
  .complects .text-block .price {
    align-self: center;
  }
}
.complects .text-block .price span.actual {
  color: red;
  font-size: 20px;
  font-weight: bold;
}
.complects .text-block .price span.old {
  text-decoration: line-through;
  color: #000;
  font-size: 14px;
}
.complects .text-block .price button {
  margin-top: 15px;
  padding: 0 30px;
  background-color: #4791FF;
  border-radius: 20px;
  height: 36px;
  color: white;
  border: none;
  outline: none;
}
.complects .slides-container {
  overflow: hidden;
}
.complects .slider {
  display: grid;
  grid-auto-columns: calc(100% / 1);
  grid-auto-flow: column;
  grid-gap: 30px;
  transform: translateX(0px);
  transition: transform 0.3s;
}
.complects .slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.complects .slide > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .complects .slide > div {
    grid-template-columns: 1fr;
  }
}
.complects .slide > div .plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}
.complects .slide strong {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.complects .slide img {
  min-width: 70px;
  width: 70px;
  aspect-ratio: 1 / 1;
  height: 70px;
}
.complects .slide .product {
  display: flex;
  column-gap: 15px;
}
.complects .slide .product {
  display: flex;
  column-gap: 15px;
}
.complects .slide .product .price span {
  font-size: 18px;
  font-weight: bold;
}
.complects .slide .product .price span.old {
  font-size: 12px;
  font-weight: normal;
  text-decoration: line-through;
}
.complects span.actual {
  color: red;
}
.complects .slide a {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}
.complects .slide .product > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.complects .changer {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.complects .changer div {
  height: 7px;
  width: 7px;
  background-color: #a5a5a5;
  border-radius: 50%;
}
.complects .changer div.active {
  background-color: #FFE600;
}
.page.product section {
  margin-bottom: 80px;
}
.page.product .b1.b5 {
  margin: 0;
}
.page.product section,
.page.product div {
  position: relative;
}
.page.product section a[name],
.page.product div a[name] {
  position: absolute;
  top: -175px;
}
.page.product .product-menu {
  background-color: #F9FBFF;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page.product .product-menu ul {
  list-style-type: none;
  display: flex;
  column-gap: 20px;
}
.page.product .product-menu ul li a {
  font-size: 15px;
}
.page.product .product-menu div {
  display: flex;
  column-gap: 20px;
}
.page.product .product-menu div span {
  display: inline-block;
  padding: 10px 20px;
  background-color: white;
  border: 1px solid #dbdbdb;
  font-size: 13px;
  border-radius: 18px;
}
.page.product .b1,
.page.product .b2,
.page.product .b3 {
  display: flex;
  column-gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
  border-radius: 5px;
}
.page.product .b1 > div,
.page.product .b2 > div,
.page.product .b3 > div {
  border-radius: 5px;
}
.page.product .b2 > div,
.page.product .b3 > div,
.page.product .b4 > div,
.page.product .b5 > div {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.page.product .b2 > div .container,
.page.product .b3 > div .container,
.page.product .b4 > div .container,
.page.product .b5 > div .container {
  padding: 30px;
}
.page.product .b1 {
  margin-top: 30px;
}
.page.product .b1 .b11 {
  flex: 3;
  display: flex;
  flex-direction: column;
}
.page.product .b1 .b11 .media-wrap {
  display: flex;
  column-gap: 5px;
}
.page.product .b1 .b11 .descr * {
  margin: 0 15px 15px 0;
}
.page.product .b1 .b11 .descr p {
  text-align: justify;
}
.page.product .b1 .b11 .descr h1 {
  font-size: 24px;
}
.page.product .b1 .b11 .descr h2 {
  font-size: 21px;
}
.page.product .b1 .b11 .descr h3 {
  font-size: 18px;
}
.page.product .b1 .b12 {
  flex: 2;
  position: sticky;
  top: 175px;
}
.page.product .b1 .b12 .r {
  display: flex;
  align-items: center;
}
.page.product .b1 .m-wrapper {
  gap: 30px;
  flex: 3;
  display: flex;
  flex-direction: column;
  max-width: 702px;
}
.page.product .b1 .media div[data-images] {
  cursor: zoom-in;
}
.page.product .b1 .media .product-slider {
  flex: 1;
  height: 465px;
}
.page.product .b1 .media .product-slider img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.page.product .b1 .media .product-slider img.show {
  animation: showSlide 0.3s ease;
}
@keyframes showSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page.product .b1 .mobile-media {
  width: 100%;
  margin-bottom: 30px;
  display: none;
  overflow: hidden;
}
.page.product .b1 .mobile-media .media-container {
  display: flex;
  /* Гнучкий контейнер для слайдів */
}
.page.product .b1 .mobile-media .media-container > img {
  width: 100%;
}
.page.product .b1 .mobile-media .media-container div {
  min-width: 100%;
  position: relative;
}
.page.product .b1 .mobile-media .media-container div:before {
  content: "";
  /* Додаємо пустий контент для псевдоелемента */
  padding-top: 100%;
  /* Забираємо пропорцію сторін, щоб висота була рівною ширині */
  display: block;
  /* Дозволяємо псевдоелементу займати місце в блоці */
}
.page.product .b1 .mobile-media .media-container div img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.page.product .b1 .mobile-media .media-container.active {
  transition: left 0.3s;
}
.page.product .b1 .mobile-media .changer {
  display: flex;
  column-gap: 7px;
  justify-content: center;
  margin-top: 15px;
}
.page.product .b1 .mobile-media .changer div {
  background-color: #FFE600;
  height: 7px;
  width: 7px;
  border-radius: 3.5px;
  transition: width 0.5s;
}
.page.product .b1 .mobile-media .changer div.active {
  width: 15px;
}
.page.product .b1 .info {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page.product .b1 .info .tags-container {
  padding: 0;
}
.page.product .b1 .info .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.page.product .b1 .info > div {
  padding: 30px 30px 0 30px;
}
.page.product .b1 .info div,
.page.product .b1 .info li {
  font-size: 14px;
}
.page.product .b1 .info .i0 {
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: -30px -30px 0;
}
.page.product .b1 .info .i0 .action-block {
  background: linear-gradient(to bottom, #FDDE55, white);
  padding: 15px 15px 20px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  z-index: 2;
  border-radius: 5px;
}
.page.product .b1 .info .i0 .action-block > div:not(:first-child) {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555555;
}
.page.product .b1 .info .i0 .action-block:before {
  position: absolute;
  content: attr(data-name);
  display: flex;
  background-color: #ff0000;
  padding: 3px 20px;
  transform: rotate(-45deg);
  top: 8px;
  left: -20px;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .i0 .action-block:before {
    font-size: 12px;
  }
}
.page.product .b1 .info .i0 .action-block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  height: 50%;
  z-index: -1;
}
.page.product .b1 .info .i0 .action-block > div:first-child {
  font-weight: bold;
  margin-right: 15px;
}
.page.product .b1 .info .i0 .action-block > div:first-child span {
  font-size: 40px;
  color: #ff0000;
  font-weight: 400;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .i0 .action-block > div:first-child span {
    font-size: 22px;
  }
}
.page.product .b1 .info .i0 .action-block > div:first-child p {
  font-size: 16px;
  text-align: center;
  color: #ff0000;
  font-weight: 400;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .i0 .action-block > div:first-child p {
    font-size: 12px;
  }
}
.page.product .b1 .info .i0 .action-block span {
  display: block;
  font-size: 34px;
  font-weight: bold;
  color: #323232;
  font-weight: 400;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .i0 .action-block span {
    font-size: 20px;
  }
}
.page.product .b1 .info .i0 .action-block p {
  font-size: 10px;
  font-weight: bold;
  color: #323232;
  font-weight: 400;
}
.page.product .b1 .info .i1 {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.page.product .b1 .info .i1 span {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.page.product .b1 .info .i1 .var-container {
  display: flex;
  row-gap: 5px;
  column-gap: 5px;
  flex-wrap: wrap;
}
.page.product .b1 .info .i1 a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #dbdbdb;
  font-size: 13px;
  border-radius: 13px;
  white-space: nowrap;
}
.page.product .b1 .info .i1 a.active {
  border-color: #a0c6ff;
  background-color: #a0c6ff;
}
.page.product .b1 .info .i1 a.no-available {
  opacity: 0.6;
}
.page.product .b1 .info .quantity-block {
  display: flex;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
.page.product .b1 .info .quantity-block button {
  width: 20px;
}
.page.product .b1 .info .quantity-block input {
  border: none;
  width: 36px;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .quantity-block input,
  .page.product .b1 .info .quantity-block button {
    flex: 1;
  }
  .page.product .b1 .info .quantity-block button {
    background-color: #f5f5f5;
  }
}
.page.product .b1 .info .i2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page.product .b1 .info .i2 .available {
  display: flex;
}
.page.product .b1 .info .i2 .available svg {
  margin-right: 5px;
}
.page.product .b1 .info .i2 .available span {
  font-size: 13px;
  display: block;
}
.page.product .b1 .info .i3 {
  display: flex;
  column-gap: 15px;
}
.page.product .b1 .info .i3 .btn {
  flex: 1;
  white-space: nowrap;
}
@media screen and (max-width: 460px) {
  .page.product .b1 .info .i3 {
    flex-direction: column;
    row-gap: 15px;
  }
}
.page.product .b1 .info .i4 {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 30px;
}
.page.product .b1 .info .i4 span {
  font-size: 14px;
  font-family: 'CeraProBold';
  display: block;
  margin-bottom: 15px;
}
.page.product .b1 .info .i4 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page.product .b1 .info .i4 ul li div {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.page.product .b1 .info .i4 ul li svg {
  display: block;
  margin-right: 10px;
  object-fit: contain;
  width: 20px;
  height: 15px;
}
.page.product .b1 .info .i4 ul li:not(:last-child) {
  margin-bottom: 15px;
}
.page.product .b1 .info .i5 .pay-methods {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.page.product .b1 .info .i5 .pay-methods img {
  height: 24px;
}
.page.product .b1 .info .i5 .pay-methods img[alt="Mastercard"] {
  height: 20px;
}
.page.product .b1 .info .i6 {
  border: none;
  margin: 0;
}
.page.product .b-header {
  background-color: #F9FBFF;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-family: 'CeraProBold';
  border-bottom: 1px solid #dbdbdb;
}
.page.product .b-header svg {
  margin-right: 10px;
}
.page.product .b2 .b21 table {
  border-collapse: collapse;
  width: 100%;
}
.page.product .b2 .b21 table tr {
  border: 1px solid #dbdbdb;
}
.page.product .b2 .b21 table tr:nth-child(2n) {
  background-color: #F9FBFF;
}
.page.product .b2 .b21 table tr td {
  width: 50%;
  padding: 15px;
  font-size: 14px;
}
.page.product .b2 .b22 ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page.product .b2 .b22 ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.page.product .b2 .b22 ul li img {
  height: 34px;
  width: 34px;
  display: block;
  object-fit: contain;
  margin-top: -8px;
}
.page.product .b2 .b22 ul li span {
  display: block;
  font-family: 'CeraProBold';
}
.page.product .b2 .b22 ul li button {
  font-size: 12px;
  text-decoration: underline;
}
.page.product .b2 .b22 ul li .sign {
  position: relative;
  margin-right: 15px;
}
.page.product .b2 .b22 ul li .sign img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  display: block;
}
.page.product .b2 .b22 ul li .sign div {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 14px;
  width: 14px;
}
.page.product .b2 .b22 ul li .sign div i {
  display: block;
  font-size: 8px;
  color: white;
}
.page.product .b2 .b22 ul li .sign div.success {
  background-color: #00D448;
}
.page.product .b2 .b22 ul li .sign div.attention {
  background-color: #FF8A00;
}
.page.product .b2 .b22 ul li .sign div.stop {
  background-color: #FF0000;
}
.page.product .b3 .instr h1,
.page.product .b3 .instr h2,
.page.product .b3 .instr h3,
.page.product .b3 .instr h4,
.page.product .b3 .instr h5,
.page.product .b3 .instr h6 {
  margin-bottom: 15px;
  position: relative;
}
.page.product .b3 .instr img {
  margin-bottom: 15px;
}
.page.product .b3 .instr p {
  margin-bottom: 15px;
}
.page.product .b3 .instr ul,
.page.product .b3 .instr ol {
  margin-bottom: 15px;
  margin-left: 19px;
}
.page.product .b3 .instr table {
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
}
.page.product .b3 .instr table td {
  border: 1px solid #dbdbdb;
  padding: 15px;
}
.page.product .b3 .b12 ul {
  list-style-type: none;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.page.product .b3 .b12 ul:before {
  position: absolute;
  content: '';
  display: block;
  width: 3px;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: #F0F0F0;
}
.page.product .b3 .b12 ul li {
  padding-left: 20px;
  font-size: 14px;
  color: #494949;
  position: relative;
  cursor: pointer;
}
.page.product .b3 .b12 ul li.active {
  color: #4791FF;
  font-family: 'CeraProBold';
}
.page.product .b3 .b12 ul li.active:before {
  position: absolute;
  content: '';
  display: block;
  width: 3px;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: #4791FF;
}
.page.product .b4 .b12 .container {
  align-items: center;
}
.page.product .b4 .b12 .container img {
  width: 100%;
}
.page.product .b4 .b12 span {
  margin: 15px 0;
  font-family: 'CeraProBold';
}
.page.product .b4 .container {
  display: flex;
  flex-direction: column;
}
.page.product .b4 .container .btn {
  margin-top: 30px;
  align-self: center;
}
.page.product .b4 .reviews {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.page.product .b4 .review:not(.answer) {
  padding: 0;
  box-shadow: none;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 30px;
}
.page.product .b5 {
  margin-bottom: 80px;
}
.page.product .b5 h4 {
  margin-bottom: 15px;
}
.page.product .b5 .container > div {
  margin: auto;
  max-width: 900px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  column-gap: 30px;
}
.page.product .b5 .container > div div {
  flex: 1;
}
.page.product.doctor .media {
  position: inherit;
}
.page.product.doctor .b12 {
  position: inherit;
}
.page.product.doctor .b11 {
  position: sticky;
  top: 123px;
}
.page.product.doctor .media {
  position: static;
}
.page.product.doctor .info .i2 {
  align-items: center;
}
.page.product.doctor .b1 > div {
  overflow: visible;
}
.page.product.doctor .descr {
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 30px;
}
.page.product.doctor .descr h1 {
  margin-bottom: 15px;
  font-size: 22px;
  font-family: 'CeraProBold';
}
.page.product.doctor .descr p {
  margin-bottom: 15px;
}
.page.product.doctor .prices {
  display: flex;
  align-items: center;
}
.page.product.doctor .prices .count {
  margin-left: 30px;
}
.page.product.doctor .prices2 {
  background-color: #F9FBFF;
  padding: 30px;
  border: 1px solid #dbdbdb;
  width: 100%;
  border-radius: 5px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.page.product.doctor .prices2 li {
  display: flex;
  justify-content: space-between;
}
.page.product.doctor .prices2 li span {
  font-family: 'CeraProBold';
}
.page.order .wrapper {
  margin-bottom: 80px;
}
.page.order [data-settlements],
.page.order [data-warehouses],
.page.order [data-selector] {
  cursor: pointer;
}
.page.order [data-delivery="nova_poshta"] [name="city"],
.page.order [data-delivery="nova_poshta"] [name="post"],
.page.order [data-delivery="nova_poshta"] [name="delivery_method"] {
  pointer-events: none;
}
.page.order .form-group {
  margin-bottom: 15px;
}
.page.order [data-delivery="ukrposhta"],
.page.order [data-delivery="nova_poshta"] {
  display: none;
}
.page.order [data-delivery].active {
  display: block;
}
.page.order .form-group-wrapper {
  position: relative;
}
.page.order .form-group-wrapper .city-list {
  box-shadow: 0 7.5px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 1px;
  left: -1px;
  right: -1px;
  transform: translateY(100%);
  z-index: 1;
  background-color: white;
  border: 1px solid #dbdbdb;
  padding: 15px;
  display: none;
  flex-direction: column;
}
.page.order .form-group-wrapper .city-list img {
  height: 50px;
  width: 50px;
  display: none;
  margin-bottom: 15px;
}
.page.order .form-group-wrapper .city-list img.active {
  display: block;
}
.page.order .form-group-wrapper .city-list input {
  border: 1px solid #dbdbdb;
  border-radius: 0;
  margin-bottom: 15px;
}
.page.order .form-group-wrapper .city-list ul {
  list-style-type: none;
  overflow-y: auto;
  max-height: 350px;
}
.page.order .form-group-wrapper .city-list ul li {
  padding: 10px 5px;
  cursor: pointer;
}
.page.order .form-group-wrapper .city-list ul li:hover {
  background-color: #fafafa;
}
.page.order .form-group-wrapper .city-list ul li:not(:last-child) {
  border-bottom: 1px dotted #cdcdcd;
}
.page.order .form-group-wrapper .city-list.active {
  display: flex;
}
.page.order .promo-field {
  display: none;
}
.page.order .promo-field > div {
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  margin-top: 15px;
  display: flex;
  padding: 2px;
  align-items: center;
}
.page.order .promo-field > div > input {
  flex: 1;
  margin-right: 2px;
  border: none;
}
.page.order .promo-field > div .btn {
  background-color: #4e4e4e;
}
.page.order .promo-field.active {
  display: block;
}
.page.order .info,
.page.order .q {
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.page.order .info {
  flex: 2;
  position: sticky;
  top: 110px;
}
.page.order .info p b {
  text-decoration: underline;
}
.page.order .info button:not(.btn) {
  background: none;
  border: none;
  text-decoration: underline;
}
.page.order .info > .btn {
  height: 60px;
}
.page.order .info .q-header {
  display: flex;
  justify-content: space-between;
}
.page.order .info .q-header div {
  display: flex;
  align-items: center;
}
.page.order .info .q-header div svg {
  margin-right: 10px;
}
.page.order .info ul {
  list-style-type: none;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.page.order .info ul li {
  display: flex;
  justify-content: space-between;
}
.page.order .info .total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 15px 0;
}
.page.order .info .total div,
.page.order .info .total span {
  font-size: 24px;
  font-family: 'CeraProBold';
}
.page.order .b1 {
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
}
.page.order .b1 .c1 > .t,
.page.order .b1 .c2 > .t {
  display: block;
  margin-bottom: 15px;
  font-family: 'CeraProBold';
  font-size: 16px;
}
.page.order .b1 .c2.recipient {
  display: none;
}
.page.order .b1 .c2.recipient.active {
  display: block;
}
.page.order .b1 .q-header {
  padding: 15px 30px;
  font-family: 'CeraProBold';
  border-bottom: 1px solid #dbdbdb;
  font-size: 18px;
}
.page.order .b1 .order-form {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  flex: 3;
}
.page.order .b1 .c1 {
  display: flex;
  column-gap: 30px;
}
.page.order .b1 .c1 .checkbox {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page.order .b1 .c1 .checkbox label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid #dbdbdb;
}
.page.order .b1 .c1 .checkbox input {
  display: none;
}
.page.order .b1 .c1 .checkbox > input:checked + label {
  border-color: #00D448;
  background-color: #F9FBFF;
}
.page.order .b1 .c1 .checkbox > input:checked + label div {
  background-color: #00D448;
}
.page.order .b1 .c1 .checkbox > input:checked + label i {
  display: block;
}
.page.order .b1 .c1 .checkbox div {
  border: 1px solid #dbdbdb;
  height: 15px;
  width: 15px;
  border-radius: 3px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page.order .b1 .c1 .checkbox div i {
  font-size: 10px;
  color: white;
  display: none;
}
.page.order .b1 .c1 .checkbox img {
  margin-right: 10px;
  display: block;
}
.page.order .b1 .input {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #dbdbdb;
  height: 42px;
  position: relative;
}
.page.order .b1 .input label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  opacity: 0.6;
  background-color: white;
  padding: 0 5px;
  pointer-events: none;
}
.page.order .b1 .input > input {
  border: none;
  padding: 0 15px;
  height: 100%;
}
.page.order .b1 .input.focused label {
  top: -2px;
  left: 10px;
  font-size: 12px;
  opacity: 1;
}
.page.order .b1 .mess {
  display: none;
  text-align: center;
  color: white;
  padding: 15px;
  background-color: #6A90C9;
}
.page.order .b1 .mess i {
  color: inherit;
}
.page.order .b1 .mess.active {
  display: block;
}
.page.order .b1 .container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.page.reviews .wrapper {
  margin-bottom: 80px;
}
.page.reviews .b1,
.page.reviews .b21,
.page.reviews .b22 {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 30px;
}
.page.reviews .b1 {
  margin-bottom: 30px;
  padding: 50px 30px;
  font-family: 'CeraProBold';
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page.reviews .b1 .btn {
  margin-top: 30px;
}
.page.reviews .b2 {
  display: flex;
  column-gap: 30px;
  align-items: flex-start;
}
.page.reviews .b2 .b21 {
  flex: 2;
  display: flex;
  flex-direction: column;
}
.page.reviews .b2 .b21 .btn {
  align-self: center;
}
.page.reviews .b2 .b21 .reviews .review:not(.answer) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dbdbdb;
}
.page.reviews .b2 .b22 {
  flex: 1;
  position: sticky;
  top: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding: 50px 30px;
}
.page.reviews .b2 .b22 span {
  font-family: 'CeraProBold';
  font-size: 50px;
}
.page.catalog-doctor .wrapper {
  margin-bottom: 30px;
}
.page.catalog-doctor .b1 {
  margin-bottom: 50px;
}
.page.catalog-doctor .items-container {
  grid-template-columns: 1fr;
}
.page.confidential h1,
.page.cookie h1 {
  font-size: 28px;
}
.page.confidential h2,
.page.cookie h2 {
  font-size: 22px;
}
.page.confidential p,
.page.cookie p,
.page.confidential h1,
.page.cookie h1,
.page.confidential h2,
.page.cookie h2,
.page.confidential ul,
.page.cookie ul {
  margin-bottom: 15px;
}
.page.confidential ul,
.page.cookie ul {
  margin-bottom: 15px;
  margin-left: 20px;
}
