@charset "UTF-8";

/*  ---------------------------------------------------------------------------
    Template for connecting fonts
    ---------------------------------------------------------------------------
    100 - Thin
    200 - Extra Light (Ultra Light)
    300 - Light
    400 - Regular (Normal)
    500 - Medium
    600 - Semi Bold (Demi Bold)
    700 - Bold
    800 - Extra Bold (Ultra Bold)
    900 - Black (Heavy)  */


    @media (min-width: 780px) and (max-width: 1080px) {
   .b-search {
      position: relative;
      width: fit-content;
      left: 75%;
    }
}

@media (min-width: 600px) and (max-width: 780px) {

.newcats {
  
  display: flex !important;
  flex-direction: column;
}

   .b-search {
     
    }
}



a:active {
  color: unset;
}

a:visited {
  color: unset;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  width: 100%;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 900;
}

textarea {
  resize: vertical;
}

[data-fancybox] {
  cursor: zoom-in;
}

/* ------ colors ------ */

[class*="_c-primary"] {
  color: #41b3f4;
}

[class*="_c-primary"] * {
  stroke: #41b3f4;
}

[class*="_c-secondary"] {
  color: #cfedff;
}

[class*="_c-secondary"] * {
  stroke: #cfedff;
}

[class*="_c-light"] {
  color: #ffffff;
}

[class*="_c-light"] * {
  stroke: #ffffff;
}

[class*="_c-dark"] {
  color: #002233;
}

[class*="_c-dark"] * {
  stroke: #002233;
}

[class*="_c-gray"] {
  color: #767E7E;
}

[class*="_c-gray"] * {
  stroke: #767E7E;
}

[class*="_c-muted"] {
  color: rgba(0, 0, 0, 0.2);
}

[class*="_c-muted"] * {
  stroke: rgba(0, 0, 0, 0.2);
}

[class*="_bgc-primary"] {
  background-color: #41b3f4;
}

[class*="_bgc-secondary"] {
  background-color: #cfedff;
}

[class*="_bgc-light"] {
  background-color: #ffffff;
}

[class*="_bgc-dark"] {
  background-color: #002233;
}

[class*="_bgc-gray"] {
  background-color: #767E7E;
}

[class*="_bgc-muted"] {
  background-color: rgba(0, 0, 0, 0.2);
}

[class*="_bc-primary"] {
  border-color: #41b3f4;
}

[class*="_bc-secondary"] {
  border-color: #cfedff;
}

[class*="_bc-light"] {
  border-color: #ffffff;
}

[class*="_bc-dark"] {
  border-color: #002233;
}

[class*="_bc-gray"] {
  border-color: #767E7E;
}

[class*="_bc-muted"] {
  border-color: rgba(0, 0, 0, 0.2);
}

/* ------ colors end ------ */

/* ------ grid ------ */

[class*="__container"] {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

[class*="__row"] {
  margin: -20px;
  width: calc(100% + 40px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.b-col_12,
[class*="__col_12"] {
  width: 100%;
  max-width: 100%;
  padding: 20px;
}

.b-col_11,
[class*="__col_11"] {
  width: 100%;
  max-width: 91.66667%;
  padding: 20px;
}

.b-col_10,
[class*="__col_10"] {
  width: 100%;
  max-width: 83.33333%;
  padding: 20px;
}

.b-col_9,
[class*="__col_9"] {
  width: 100%;
  max-width: 75%;
  padding: 20px;
}

.b-col_8,
[class*="__col_8"] {
  width: 100%;
  max-width: 66.66667%;
  padding: 20px;
}

.b-col_7,
[class*="__col_7"] {
  width: 100%;
  max-width: 58.33333%;
  padding: 20px;
}

.b-col_6,
[class*="__col_6"] {
  width: 100%;
  max-width: 50%;
  padding: 20px;
}

.b-col_5,
[class*="__col_5"] {
  width: 100%;
  max-width: 41.66667%;
  padding: 20px;
}

.b-col_4,
[class*="__col_4"] {
  width: 100%;
  max-width: 33.33333%;
  padding: 20px;
}

.b-col_3,
[class*="__col_3"] {
  width: 100%;
  max-width: 25%;
  padding: 20px;
}

.b-col_2,
[class*="__col_2"] {
  width: 100%;
  max-width: 16.66667%;
  padding: 20px;
}

.b-col_1,
[class*="__col_1"] {
  width: 100%;
  max-width: 8.33333%;
  padding: 20px;
}

/* ------ grid end ------ */

[class*="_w-100"] {
  width: 100%;
}

[class*="_ai-center"] {
  align-items: center;
}

[class*="_ai-end"] {
  align-items: flex-end;
}

[class*="_ai-start"] {
  align-items: flex-start;
}

[class*="_ai-baseline"] {
  align-items: baseline;
}

[class*="_jc-center"] {
  justify-content: center;
}

[class*="_jc-end"] {
  justify-content: flex-end;
}

[class*="_jc-start"] {
  justify-content: flex-start;
}

[class*="_jc-between"] {
  justify-content: space-between;
}

[class*="_jc-around"] {
  justify-content: space-around;
}

[class*="_jc-evenly"] {
  justify-content: space-around;
  justify-content: space-evenly;
}

[class*="_d-flex"] {
  display: flex;
}

[class*="_d-block"] {
  display: block;
}

[class*="_d-inline-flex"] {
  display: inline-flex;
}

[class*="_d-inline"] {
  display: inline;
}

[class*="_d-inline-block"] {
  display: inline-block;
}

[class*="_d-none"] {
  display: none;
}

[class*="_o-hidden"] {
  overflow: hidden;
}

.gm_fw-400 {
  font-weight: 400 !important;
}

.gm_fw-500 {
  font-weight: 500 !important;
}

.gm_fw-600 {
  font-weight: 600 !important;
}

.gm_fw-700 {
  font-weight: 700 !important;
}

.gm_mb-10 {
  margin-bottom: 10px !important;
}

.gm_mb-20 {
  margin-bottom: 20px;
}

.gm_mb-30 {
  margin-bottom: 30px;
}

.gm_mb-40 {
  margin-bottom: 40px;
}

.gm_mb-50 {
  margin-bottom: 50px;
}

.gm_mb-60 {
  margin-bottom: 60px;
}

.gm_mb-70 {
  margin-bottom: 70px;
}

.gm_mb-80 {
  margin-bottom: 80px;
}

.gm_mb-120 {
  margin-bottom: 120px;
}

.gm_mb-160 {
  margin-bottom: 160px;
}

.gm_mb-200 {
  margin-bottom: 200px;
}

.gm_mb-240 {
  margin-bottom: 240px;
}

.gm_pb-10 {
  padding-bottom: 10px;
}

.gm_pb-20 {
  padding-bottom: 20px;
}

.gm_pb-30 {
  padding-bottom: 30px;
}

.gm_pb-40 {
  padding-bottom: 40px;
}

.gm_pb-80 {
  padding-bottom: 80px;
}

.gm_pb-160 {
  padding-bottom: 160px !important;
}

.gm_pb-200 {
  padding-bottom: 200px;
}

.pb-240 {
  padding-bottom: 240px;
}

.gm_color-primary {
  color: #41b3f4;
}

.gm_color-secondary {
  color: #cfedff;
}

.gm_color-light {
  color: #ffffff;
}

.gm_color-dark {
  color: #002233 !important;
}

.gm_bg-primary {
  background-color: #41b3f4;
}

.gm_bg-secondary {
  background-color: #cfedff;
}

.gm_bg-light {
  background-color: #ffffff !important;
}

.gm_bg-bg {
  background-color: #EBEEF0 !important;
}

.gфm_mw-100 {
  max-width: 100% !important;
}

.gm_d-block {
  display: block !important;
}

.gm_d-none {
  display: none !important;
}

.b-footer {
  text-align: center;
}

.b-footer__inner {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
}

.b-header-secondary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  background: linear-gradient(115deg, rgb(0, 0, 0), rgb(68, 68, 68));
  background-color: rgba(0, 0, 0, 0);
  --contrast-color: #bcbcbc;
  border-radius: 6px;
}

.b-header-secondary__category-and-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.b-header-secondary__category {
  position: relative;
}

.b-header-secondary__category-list {
  display: none;
  gap: 16px;
  flex-direction: column;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  position: absolute;
  top: 75px;
}

.b-header-secondary__category-item {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  transition: 300ms;
  text-align: left;
  display: block;
  min-width: 280px;
}

.b-header-secondary__category-item:any-link {
  color: #002233;
}

.b-header-secondary__category-item:visited {
  color: #002233;
}

.b-header-secondary__category-item:hover {
  opacity: 0.8;
}

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

.b-header__logo-and-location {
  display: flex;
  position: relative;
  z-index: 3;
  gap: 48px;
  align-items: center;
}

.b-wrapper-for-burger-menu__rates .b-button-rates {
  background-color: #EBEEF0;
}

.b-header__location {
  position: relative;
  z-index: 3;
}

.b-button-location__text {
  white-space: normal;
  word-wrap: break-word;
  max-height: 28px;
  overflow: hidden;
}

.b-header__rates {
  position: relative;
  z-index: 3;
  display: none;
}

.b-header__location_md-block {
  display: none;
}

.b-header__search-and-profile-and-chat-and-burger-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.b-header__search-button {
  width: 580px;
  display: flex;
  position: relative;
  z-index: 3;
  align-items: center;
  height: min-content;
  position: relative;
  z-index: 3;
}

.b-header__search-button_md {
  display: none;
}

.b-header__search-profile {
  position: relative;
}

.b-header__message {
  position: relative;
  z-index: 3;
}

.b-header__burger-menu {
  display: none;
}

.b-wrapper-for-burger-menu__close {
  margin-right: 6px;
  margin-top: 1px;
}

/* Базовое скрытие модального окна профиля */
#modal-profile.modal[aria-hidden='true'],
#modal-profile.modal.hidden {
  display: none !important;
}

/* Мобильная адаптация модального окна профиля */
@media (max-width: 768px) {
  #modal-profile.modal {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
  }
  
  #modal-profile.modal[aria-hidden='true'],
  #modal-profile.modal.hidden {
    transform: translateY(100%) !important;
    transition: transform 0.3s ease-in-out;
  }
}

#header-dropdown {
  display: none;
  animation: fade 0.4s ease;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.b-main {
  position: relative;
  z-index: 1;
}

.b-main__section {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.b-main__section_bg-logo-xxl {
  content: '';
  background-image: url("../img/logo-xxl.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 700px;
  background-size: 74%;
  min-height: 100vh;
  overflow-y: hidden;
}

.b-main__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: 1440px;
  margin-bottom: 120px;
}

.b-main__inner_width-sm {
  width: 946px;
}

.b-main__inner_bg-logo-xxl {
  height: 100%;
  width: 100%;
}

body {
  background-color: #EBEEF0;
  font-feature-settings: "lnum" 1;
}

.b-page {
  min-width: 370px;
  color: #002233;
  font-family: Unbounded, sans-serif;
}

.b-page__header {
  width: 100%;
  max-width: 100%;
  position: relative;
  /* z-index: 4; */
  margin-bottom: 120px;
}

.b-page__header-inner {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.b-page__header-inner_primary-header {
  margin-bottom: 32px;
  margin-top: 32px;
  background-color: #ffffff;
  border-radius: 60px;
  padding: 16px 24px 16px 24px;
}

.b-page__footer {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.b-page__footer-inner {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 60px;
  max-width: 1440px;
}

.b-about-company {
  padding: 16px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  position: relative;
  justify-content: space-between;
}

.b-about-company__logo-and-menu {
  display: flex;
  gap: 20px;
}

.b-about-company__menu {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.b-about-company__logo {
  margin-top: -146px;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EBEEF0;
  border-radius: 50%;
  margin-left: 10px;
  border: 4px solid #FFFFFF;
}

.b-about-company__logo-img {
  
}

.b-about-company__buttons {
  display: flex;
  gap: 16px;
}

.b-accordion__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.b-accordion__head {
  position: relative;
}

.b-accordion__head::before {
  content: '';
  position: absolute;
  background-image: url("../img/arrow-xs-bottom.svg");
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 10px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 300ms;
}

.b-accordion__item.active-accordion .b-accordion__head::before {
  transform: rotate(180deg) translateY(50%);
}

.b-accordion__item_icon.active-accordion .b-accordion__head_item::before {
  content: "";
}

.b-accordion__body {
  max-height: 0px;
  transition: all .4s ease;
  overflow: hidden;
  position: relative;
}

.b-breadcrumb {
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(0, 34, 51, 0.6);
}

.b-breadcrumb__text {
  transition: 300ms;
  white-space: nowrap;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: rgba(0, 34, 51, 0.6);
}

.b-breadcrumb__text:any-link,
.b-breadcrumb__text:visited,
.b-breadcrumb__text:active,
.b-breadcrumb__text:focus {
  text-decoration: none;
}

.b-breadcrumb__text:hover {
  opacity: 0.8;
}

.b-burger-menu {
  display: flex;
  align-items: center;
  transition-duration: 300ms;
}

.b-burger-menu:hover {
  color: #41b3f4;
  text-decoration: none;
}

.b-burger-menu:any-link {
  color: #41b3f4;
  text-decoration: none;
}

.b-burger-menu_transparent .b-burger-menu__item {
  background: #ffffff;
}

.b-burger-menu__items {
  height: 34px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 34px;
}

.b-burger-menu__item {
  height: 2px;
  margin-bottom: 3px;
  background: #002233;
  width: 16px;
}

.b-burger-menu__item:last-child {
  margin-bottom: 0px;
}

.b-burger-menu__button-close-mobile-menu {
  display: none;
  margin-right: -3px;
  width: 37px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.b-burger-menu__button-close-mobile-menu svg path {
  fill: red;
}

.b-active-mobile-menu .b-burger-menu__button-close-mobile-menu {
  display: flex !important;
}

.b-active-mobile-menu .b-burger-menu__items {
  display: none;
}

.b-button-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.b-card {
  z-index:0 !important;
}

.b-button-card__left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.b-button-card__right {
  display: flex;
  gap: 2px;
  align-items: center;
}

.b-button-card__title {
  font-family: Unbounded;
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-button-card__grade {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-product__description {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: 0.8;
}

.b-button-contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  padding: 16px 24px;
  background-color: #EBEEF0;
  transition: 300ms;
}

.b-button-contact:any-link,
.b-button-contact:visited,
.b-button-contact:active,
.b-button-contact:focus {
  text-decoration: none;
  color: #002233;
}

.b-button-contact:hover {
  opacity: 0.8;
}

.b-button-contact__text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-contact__img {
  max-width: 20px;
  max-height: 20px;
}

.b-button-file {
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: 300ms;
}

.b-button-file:hover {
  opacity: 0.8;
}

.b-button-file__img {
  width: 18px;
  height: 18px;
}

.b-button-file__text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-file__warning {
  margin-left: 11px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: default;
}

.b-file-input__warning {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-button-file__item {
  border: none;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-file-input input[type="file"] {
  display: none;
}

.b-file-input {
  display: flex;
  position: relative;
  gap: 22px;
}

.b-file-input__label {
  display: flex;
  gap: 12px;
  align-items: center;
  border: none;
  /* Убрали границы */
  cursor: pointer;
}

.b-button-lg {
  padding: 12px 16px;
  background-color: #EBEEF0;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.b-button-lg__left {
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  overflow: hidden;
  max-width: 100%;
}

.b-button-lg__right {
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: 300ms;
  align-items: center;
}

.b-button-lg__right:hover {
  opacity: 0.8;
}

.b-button-lg__right-text {
  font-family: Unbounded;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: -0.04em;
  text-align: left;
}

.b-button-location {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: 300ms;
}

.b-button-location:hover {
  opacity: 0.8;
}

.b-button-location__icon {
  display: flex;
  align-items: center;
}

.b-button-location__text {
  font-family: Unbounded;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-location__arrow {
  display: flex;
  align-items: center;
}

.b-button-md-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 2px solid rgba(0, 34, 51, 0.1);
}

.b-button-md-primary:any-link,
.b-button-md-primary:visited,
.b-button-md-primary:active,
.b-button-md-primary:focus {
  text-decoration: none;
  color: #002233;
}

.b-button-md-primary_pd24 {
  padding: 16px 24px;
}

.b-button-md-primary_text {
  align-items: initial;
}

.b-button-md-primary_text .b-button-md-primary__text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-button-md-primary__img {
  width: 23px;
  height: 23px;
}

.b-button-md-primary__img_sm {
  width: 17px;
  height: 17px;
}

.b-button-md-primary__text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-md-primary_space-between {
  display: flex;
  justify-content: space-between;
}

.b-button-md-primary_bg {
  background-color: #EBEEF0;
  border: none;
  padding: 17px 25px;
}

.b-button-md-primary_hover {
  transition: 300ms;
}

.b-button-md-primary_hover:hover {
  opacity: 0.8 !important;
}

.b-button-md {
  display: flex;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 12px;
  width: fit-content;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  transition: 300ms opacity;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  background-color: #EBEEF0;
  box-sizing: border-box !important;
  align-items: center;
}

.b-button-md:hover {
  opacity: 0.8;
}

.b-button-md:any-link,
.b-button-md:visited,
.b-button-md:active,
.b-button-md:focus {
  text-decoration: none;
  color: #002233;
}

.b-button-md .b-button-md__img {
  filter: brightness(0%);
}

.b-button-md.b-tab-active-nav-item {
  padding: 18px 24px;
  color: #FFFFFF;
  background-color: #002233;
  border: none;
  cursor: default;
  display: flex;
}

.b-button-md.b-tab-active-nav-item:hover {
  opacity: initial;
}

.b-button-md.b-tab-active-nav-item .b-button-md__img {
  filter: brightness(0) invert(1);
}

.b-button-rates {
  display: flex;
  gap: 24px;
  cursor: pointer;
  transition: 300ms;
  padding: 12px 32px;
  border: 4px solid #FFFFFF;
  border-radius: 60px;
}

.b-button-rates:hover {
  opacity: 0.8;
}

.b-button-rates__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b-button-rates__icon {
  width: 20px;
  height: 20px;
}

.b-button-rates__exchange {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-rates__right {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 2px;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-sm-primary {
  display: flex;
  gap: 12px;
  padding: 11px;
  border-radius: 12px;
  background-color: #EBEEF0;
  width: fit-content;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  transition: 300ms;
}

.b-button-sm-primary:hover {
  opacity: 0.8;
}

.b-button-sm-primary-img {
  width: 24px;
  height: 24px;
}

.b-button-sm-primary-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-sm {
  display: flex;
  gap: 12px;
}

.b-button-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 16px;
  cursor: pointer;
}

.b-button-tab:hover {
  background-color: rgba(237, 245, 255, 0.5);
}

.b-button-tab__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.b-button-tab__img-active {
  display: none;
}

.b-button-tab__text {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-tab__tag {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: 0.6;
}

.b-button-tab__right-item-coin {
  display: flex;
  gap: 8px;
}

.b-button-tab__right-item-coin-img {
  max-height: 17px;
  max-width: 17px;
}

.b-button-tab__right-item-order {
  padding: 12px;
  border-radius: 8px;
  background-color: #EDF5FF;
  color: #0F62FE;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
}

.b-button-tab__right-item-order_active {
  color: #0F62FE;
  background: #FFFFFF;
}

.b-button {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 32px;
  border-radius: 60px;
  background-color: #FFFFFF;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
  justify-content: center;
  cursor: pointer;
}

.b-button:any-link,
.b-button:visited,
.b-button:active,
.b-button:focus {
  text-decoration: none;
  color: #002233;
}

.b-button:hover {
  opacity: 0.8;
}

.b-button_dark {
  background-color: #002233 !important;
  color: #FFFFFF;
}

.b-button_bg {
  background-color: #EBEEF0;
  gap: 18px;
}

.b-button_bg-and-border-radius {
  background-color: #EBEEF0;
  border-radius: 12px;
  padding: 16px 24px;
  cursor: pointer;
  transition: 300ms;
}

.b-button_bg-and-border-radius:hover {
  opacity: 0.8;
}

.b-button_xs {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
}

.b-card-field {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.b-card-field__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b-card-field__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b-card-field__item {
  display: flex;
  gap: 4px;
}

.b-card-field__item-left {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-field__item-right {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-field__item-right_underline {
  text-decoration: underline !important;
  color: #002233;
  transition: 300ms;
}

.b-card-field__item-right_underline:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

.b-card-field__right-button {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
  text-decoration: underline !important;
  color: #009980;
  transition: 300ms;
  cursor: pointer;
}

.b-card-field__right-button:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

.b-card-field__right-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.b-card-field__right-title {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-field__right-items {
  display: flex;
}

.b-card-field__right-item {
  width: 32px;
  height: 32px;
  border: 1.6px solid #EBEEF0;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18.4px;
  letter-spacing: -0.02em;
  text-align: left;
  background-color: #009980;
  color: #FFFFFF;
}

.b-card-field__right-item_blue {
  background: #0F62FE;
}

.b-card-field__right-arrow {
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-card-field__right-arrow:hover {
  opacity: 0.8;
}

.b-card-lg-primary {
  padding: 24px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.b-card-lg-primary__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b-card-lg-secondary {
  padding: 24px;
  width: 47.5%;
  background-color: #FFFFFF;
  border-radius: 20px;
}

.b-card-lg-secondary__title {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-lg-secondary__img {
  max-height: 300px;
}

.b-card-lg-secondary__text-sm {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-lg-secondary__field {
  margin-bottom: 16px;
  position: relative;
}

.b-card-lg-secondary__field_error-input .b-field__input {
  border: 2px solid #FF6565;
  opacity: 1;
}

.b-card-lg-secondary__field_error-input .b-field__input::placeholder {
  color: #FF6565;
}

.b-card-lg-secondary__field_error-input .b-field__message::placeholder {
  color: #FF6565;
}

.b-card-lg-secondary__field_error-input .b-field__error {
  display: flex;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #FF6565;
}

.b-card-lg {
  background-color: #FFFFFF;
  border-radius: 20px;
}

.b-card-lg__main {
  display: flex;
  min-height: 630px;
}

.b-card-lg__main-left {
  width: 100%;
  max-width: 31.7%;
  padding: 8px;
}

.b-card-lg__main-left-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 4%;
}

.b-card-lg__main-right {
  width: 100%;
  max-width: 68.2%;
  margin-bottom: 2px;
}

.b-card-lg__inner {
  
  height: 100%;
  padding: 32px;
}

.b-card-lg__main-right.b-content-tab_active {
  display: block;
  box-shadow: 0.086px 1.803px 8.92px 3.08px rgb(0 0 0 / 1%)
}

.b-card-lg__main-right.b-content-tab_active.b-tab_disactive-lg {
  display: block;
  width: 100%;
}

.b-card-lg__bottom {
  padding: 24px;
  background-color: #EBEEF0;
  border-radius: 20px;
  border: 2px solid #FFFFFF;
  display: flex;
  justify-content: space-between;
}

.b-card-lg__left {
  width: 100%;
  max-width: 64%;
}

.b-card-lg__title {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 15px;
}

.b-card-lg__left-card-sm_right {
  display: flex;
  justify-content: right;
}

.b-card-lg__right {
  max-width: 35%;
  width: 100%;
}

.b-card-md-secondary {
  padding: 24px;
  border-radius: 20px;
  background-color: #FFFFFF;
  gap: 20px;
  display: flex;
  justify-content: space-between;
}

.b-card-md-secondary__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30%;
}

.b-card-md-secondary__left-img {
  width: 64px;
  height: 64px;
}

.b-card-md-secondary__left-balance {
  font-family: Unbounded;
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-md-secondary__info {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-md-secondary__right {
  width: 100%;
  max-width: 68%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-card-md {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.b-card-md_primary {
  padding: 16px 24px;
  gap: 32px;
  justify-content: space-between;
}

.b-card-md__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
}

.b-card-md__left-icon {
  width: 80px;
  height: 80px;
  border-radius: 6px;
}

.b-card-md__left-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-md__center {
  min-width: 72%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}

.b-card-md__center-top {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-md__center-bottom {
  display: flex;
  gap: 16px;
}

.b-card-md__center-bottom-item-xl {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-md__center-bottom-item-sm {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  display: block ruby;
}

.b-card-md__right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.b-card-md__right-icon {
  width: 35px;
  height: 35px;
  padding: 9px;
}

.b-card-md__right-icon-xl {
  width: 35px;
  height: 35px;
  padding: 7px;
}

.b-card-md__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
  min-width: 150px;
}

.b-card-md__item_width-200 {
  min-width: 200px;
}

.b-card-md__item-top {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-md__item-top-img {
  width: 24px;
  height: 24px;
}

.b-card-md__item-bottom {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-md__item-bottom_minus {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #FF6565;
}

.b-card-md__item-bottom_plus {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #1F9947;
}

.b-card-message {
  max-width: 75%;
}

.b-messages__item_error .b-card-message__right {
  box-sizing: content-box;
  border: 2px solid #FF6565;
  border-radius: 16px 16px 16px 0px;
  padding: 22px;
}

.b-messages__item_error .b-card-message__right-text {
  color: #FF6565;
}

.b-card-message__top {
  display: flex;
  gap: 16px;
  align-items: end;
}

.b-card-message__bottom {
  display: flex;
  gap: 10px;
  margin-left: calc(58px + 16px);
  margin-top: 8px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: .4;
}

.b-card-message__left {
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  background-color: #0F62FE;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  min-width: 58px;
}

.b-card-message__left-img {
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.b-card-message__right {
  background-color: #FFFFFF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px 16px 16px 0px;
}

.b-card-message__right-top {
  display: flex;
  gap: 8px;
  align-items: center;
}

.b-card-message__title-and-data {
  display: none;
}

.b-card-message__right-title {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}

.b-card-message__right-tag {
  padding: 4px 8px;
  background-color: #0F62FE;
  border-radius: 2px;
  color: #FFFFFF;
  font-family: Unbounded;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.4px;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
}

.b-card-message__right-text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: -0.04em;
  text-align: left;
}

.b-card-message__data {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.b-card-primary__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b-card-primary__left-img-and-text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.b-card-primary__img {
  max-width: 41px;
  max-height: 41px;
}

.b-card-primary__img_width-21 {
  width: 21px;
  height: 21px;
}

.b-card-xl-primary {
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
}

.b-card-xl-primary_pd-0 {
  padding: 10px 0;
}

.b-card-xl-primary_sm {
  display: flex;
  gap: 2px;
  width: fit-content;
}

.b-card-xl-primary__icon-and-title {
  display: flex;
  gap: 24px;
}.b-card-primary {
  flex-direction: column;
}

.b-card-xl-primary__icon-and-title_width {
  width: 70%;
  display: flex;
  align-items: center;
}

.b-card-xl-primary__icon {
  width: 64px;
  height: 48px;
  border: 4px solid #EBEEF0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-card-xl-primary__icon_width {
  width: 88px;
  height: 66px;
  min-width: 87px;
  min-height: 66px;
}

.b-card-xl-primary__items {
  display: flex;
  gap: 32px;
}

.b-card-xl-primary__items_max-width {
  width: 30%;
}

.b-card-xl-primary__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-card-xl-primary__item_lg {
  width: 170px;
  text-align: right;
}

.b-card-xl-primary__item_lg .b-card-xl-primary__item-top {
  text-align: right;
}

.b-card-xl-primary__item_lg .b-card-xl-primary__item-bottom {
  text-align: right;
}

.b-card-xl-primary__item-top {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card-xl-primary__item-bottom {
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-xl-primary__item-bottom_flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.b-card-xl-primary__item-bottom_width {
  max-width: 530px;
}

.b-card-xl-primary__img {
  max-width: 100%;
  max-height: 100%;
}

.b-card-xl-primary__text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-right: 24px;
}

.b-card-xl-primary__prise {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card-xl {
  display: grid;
  grid-template-columns: 2fr 2fr 0.7fr 2.3fr auto;
  grid-gap: 16px;
  align-items: center;
  padding: 15px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  min-height: 60px;
}

.b-card-xl__left {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
}

.b-card-xl__left:first-child {
  grid-column: 1;
}

.b-card-xl__left:nth-child(2) {
  grid-column: 2;
}

.b-card-xl__right {
  grid-column: 3 / 5;
  display: flex;
  align-items: center;
  gap: 24px;
}

.b-card-xl__amount-and-prise {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.b-card-xl__amount {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.b-card-xl__text-sm {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  white-space: nowrap;
}

.b-card-xl__text-sm-opacity {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  opacity: .4;
  white-space: nowrap;
}

.b-card-xl__text-lg {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.b-card-xl__prise {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.b-card-xl__button {
  grid-column: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.b-card-xl .price-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.b-card-xl .original-price {
  font-size: 12px;
  text-decoration: line-through;
  opacity: 0.6;
  white-space: nowrap;
}

.b-card-xl .discounted-price {
  font-size: 12px;
  color: #28a745;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.b-card-xl .discount-badge {
  background-color: #dc3545;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.b-card-xxl-primary {
  background-color: #EBEEF0;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.b-card-xxl-primary__top {
  margin-bottom: 16px;
  width: 100%;
}

.b-card-xxl-primary__center {
  padding-left: 16px;
  padding-right: 16px;
  overflow-y: auto;
  height: 100%;
  scrollbar-width: thin;
}

.b-card-xxl-primary__center::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.b-card-xxl-primary__center::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}

.b-card-xxl-primary__bottom {
  margin-top: 10px;
}

.b-card-xxl {
  background-color: #EBEEF0;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  width: 100%;
}

.b-card-xxl__inner {
  display: flex;
  justify-content: space-between;
}

.b-card-xxl__title {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 11px;
}

.b-card-xxl__buttons {
  display: flex;
  gap: 12px;
}

.b-card-xxl__history {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-card {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px;
  justify-content: space-between;
  background-color: #ffffff;
  transition: 300ms;
  text-decoration: none;
  z-index: 0;
  border-radius: 20px;
}

.b-card:any-link {
  text-decoration: none;
  color: #002233;
}

.b-card:visited {
  text-decoration: none;
  color: #002233;
}

.b-card:hover {
  opacity: 0.8;
  color: #002233;
}

.b-card__top {
  height: fit-content;
}

.b-card__top:any-link {
  text-decoration: none;
  color: initial;
}

.b-card__top:visited {
  text-decoration: none;
  color: initial;
}

.b-card__picture {
  margin-bottom: 8px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EBEEF0;
  border-radius: 16px;
}

.b-card__picture_height {
  height: 300px;
}

.b-card__picture_light {
  background: #FFFFFF;
}

.b-card__picture_light .b-card__img {
  max-width: 100%;
  max-height: 100%;
}

.b-card__img {
  border-radius: 16px;
  object-fit: cover;
  max-width: 90%;
  max-height: 90%;
}

.b-card__img_width-100 {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.b-card__main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  text-decoration: none;
  z-index: 0;
}

.b-card__main:any-link {
  text-decoration: none;
  color: initial;
}

.b-card__main:visited {
  text-decoration: none;
  color: initial;
}

.b-card__main_cat {
  padding: 15px;
}

.b-card__main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
}

.b-card-message__left-main {
  display: flex;
}

.b-card__text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}

.b-card__name {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card__main-bottom {
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.b-card__main-bottom-left {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  text-align: left;
  display: flex;
  gap: 8px;
  align-items: center;
}

.b-card__main-bottom-right {
  display: flex;
  gap: 6px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  align-items: center;
}

.b-card__main-title-secondary {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 12px;
}

.b-card__main-description {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 24px;
}

.b-card__date-and-button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.b-card__title {
  font-family: Unbounded;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-card__locations {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: .6;
  position: relative;
  /* Элемент позиционируется относительно своего исходного места */
}



.b-card__locations-short {
  width: 28ch;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  width: calc(100% - 55px);
}

.b-card__locations-short_sm {
  width: calc(100% - 55px);
}

.b-cards__button-prise {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.b-card__prise-left {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-card__prise-weight {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  opacity: .6;
}

.b-cards {
  width: 100%;
}

.b-cards__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.b-cards__title {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}

.b-cards__button_jc-center {
  display: flex;
  justify-content: center;
}

.b-cards__button_md {
  display: none;
}

.b-cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.5%;
  width: 100%;
}

.b-cards_mini {
  gap: 20px 2.4%;
}

.b-cards__item {
  max-width: 23.87%;
  position: relative;
  width: 100%;
}

.b-cards__item_width-50 {
  max-width: 48.7%;
}

.b-cards__item_width-32 {
  max-width: 32.3%;
}

.b-cards__pagination {
  display: flex;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.b-categories-sm {
  display: flex;
  flex-direction: column;
}

.b-categories-sm__title {
  margin-bottom: 32px;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
}

.b-categories-sm__tag {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: .4;
  margin-bottom: 16px;
}

.b-categories-sm__item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: initial;
}

.b-categories-sm__item:last-child {
  margin-bottom: 0;
}

.b-categories-sm__item:any-link,
.b-categories-sm__item:visited,
.b-categories-sm__item:active,
.b-categories-sm__item:focus {
  color: #002233;
}

.b-categories-sm__item:hover {
  opacity: 0.8;
  text-decoration: none;
}

.b-category-button {
  display: flex;
  gap: 24px;
  padding: 24px 36px;
  background-color: #002233;
  width: fit-content;
  border-radius: 60px;
  color: #FFFFFF;
  cursor: pointer;
  align-items: center;
  transition: 300ms;
}

.b-category-button:hover {
  opacity: 0.8;
}

.b-category-button__text {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.b-contacts-form_light-color {
  color: #ffffff;
  font-size: 16px;
  line-height: 25.6px;
}

.b-contacts-form_light-color .b-contacts-form__text-bold {
  color: #ffffff;
  font-size: 16px;
  line-height: 25.6px;
}

.b-contacts-form_light-color .b-contacts-form__text-thin {
  color: #ffffff;
  font-size: 16px;
  line-height: 25.6px;
}

.b-contacts-form_light-color .b-contacts-form__text-thin-underline {
  color: #ffffff;
  font-size: 16px;
  line-height: 25.6px;
}

.b-contacts-form_light-color .b-contacts-form__text-thin-underline:any-link {
  text-decoration: none !important;
  color: #ffffff;
}

.b-contacts-form_light-color .b-contacts-form__text-thin-underline:visited {
  text-decoration: none !important;
  color: #ffffff;
}

.b-contacts-form_light-color .b-contacts-form__text-thin-underline:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.b-contacts-form__text-bold {
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}

.b-contacts-form__text-thin {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}

.b-contacts-form__text-thin:any-link {
  text-decoration: none;
  color: #cfedff;
}

.b-contacts-form__text-thin:visited {
  text-decoration: none;
  color: #cfedff;
}

.b-contacts-form__text-thin-underline {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: underline;
  transition: 300ms;
}

.b-contacts-form__text-thin-underline:any-link {
  text-decoration: underline !important;
  color: #cfedff;
}

.b-contacts-form__text-thin-underline:visited {
  text-decoration: underline !important;
  color: #cfedff;
}

.b-contacts-form__text-thin-underline:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.b-content {
  width: 100%;
}

.b-content h1 {
  font-family: Unbounded;
  font-size: 28px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 40px;
}

.b-content h2 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 36px;
}

.b-content h3 {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 36px;
}

.b-content h4 {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

.b-content h5 {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

.b-content h6 {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

.b-content p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 26px;
}

.b-content img {
  border-radius: 8px;
  margin-bottom: 40px;
}

.b-content ul,
.b-content ol {
  margin-left: 20px;
  padding-bottom: 20px;
}

.b-content ul li,
.b-content ol li {
  font-size: 16px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 15px;
}

.b-content aside {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 45px;
}

.b-gallery {
  height: 500px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 20px;
}

.b-gallery__image-small {
  width: 100%;
  object-fit: cover;
  height: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.b-gallery__image-big {
  object-fit: contain;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  max-width: 720px;
  max-height: 520px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover,
.slick-prev:active,
.slick-next:active,
.slick-prev:visited,
.slick-next:visited,
.slick-prev:focus,
.slick-next:focus {
  background-size: 5px;
  width: 50px;
  height: 50px;
  right: -0px;
  z-index: 2;
  transition: background 0.3s ease;
  background-color: #FFFFFF;
  border-radius: 50%;
  content: "" !important;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  cursor: pointer;
  border: 2px solid #EBEEF0;
}

.slick-prev,
.slick-prev:hover,
.slick-prev:active,
.slick-prev:visited,
.slick-prev:focus {
  background-image: url("../img/slick-arrow-left.svg");
  right: initial;
  left: 20px;
  top: 48%;
  transform: translate(0, -50%);
}

.slick-next,
.slick-next:hover,
.slick-next:active,
.slick-next:visited,
.slick-next:focus {
  background-image: url("../img/slick-arrow-right.svg");
  right: 20px;
  top: 48%;
  transform: translate(0, -50%);
}

.slick-track {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #FFFFFF;
}

.b-field-message {
  position: relative;
}

.b-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.b-field::selection {
  background-color: #aa0719 !important;
}

.b-field_width-100 {
  width: 100%;
}

.b-field_width-48 {
  width: 48%;
}

.b-field_row {
  flex-direction: row;
}

.b-field__select {
  color: #002233;
  background-color: #EBEEF0;
  border: none;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  padding: 0px 12px;
  transition: 300ms;
  cursor: pointer;
}

.b-field__select:hover {
  opacity: 0.8;
}

.b-field__select:checked {
  background-color: #FFFFFF;
}

.b-field__select-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 2px solid rgba(0, 34, 51, 0.1);
  color: #002233;
  text-align: left;
  padding-left: 16px;
  transition: 300ms;
  cursor: pointer;
}

.b-field__select-item:hover {
  opacity: 0.8;
}

.b-field__select-item:checked {
  background-color: #FFFFFF;
}

.b-field__select-item_pl {
  padding-left: 40px;
}

.b-field__select-el:checked {
  color: rgba(0, 34, 51, 0.4);
}

.b-field__select-el {
  background-color: #FFFFFF !important;
  position: relative;
}

.b-field__select-el_pl {
  padding-left: 100px;
}

.b-field__label {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  opacity: .4;
}

.b-field__label_lg {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: .6;
}

.b-field__label_md {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: 1;
  margin-bottom: 8px;
}

.b-field__submit {
  padding: 16px;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  border-radius: 8px;
  background-color: #002233;
  color: #FFFFFF;
  text-align: center;
  transition: 300ms;
  cursor: pointer;
}

.b-field__submit:hover {
  opacity: 0.8;
}

.b-field__input {
  border-radius: 12px;
  transition: 300ms;
  padding: 16px 24px;
  border: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  background-color: #EBEEF0;
}

.b-field__input::placeholder {
  font-style: normal;
  color: rgba(25, 43, 43, 0.41);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-field__input:hover {
  color: #192B2B;
  background-color: rgba(235, 238, 240, 0.8);
}

.b-field__input:hover::placeholder {
  border: none;
  background-color: rgba(235, 238, 240, 0.8);
}

.b-field__input:focus {
  color: #192B2B;
  background-color: rgba(235, 238, 240, 0.8);
}

.b-field__input_border {
  border: 1px solid #EBEDF0;
}

.b-field__input_pl62 {
  padding-left: 62px;
}

.b-field__error {
  display: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #E0312B;
  padding-top: 6px;
}

.b-field__eye:after {
  content: "";
  right: 22px;
  position: absolute;
  top: 50px;
  background-image: url("./../img/eye.svg");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 300ms;
  cursor: pointer;
}

.b-field__icon:after {
  content: "";
  left: 24px;
  position: absolute;
  background-image: url("./../img/mail.svg");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 300ms;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.b-field__icon_password:after {
  background-image: url("./../img/key.svg");
}

.b-field__icon_user:after {
  background-image: url("./../img/user.svg");
}

.b-field__eye.active:after {
  background-image: url("./../img/eye-off.svg");
}

.b-field__eye:not(.active):after {
  background-image: url("./../img//eye.svg");
}

.b-field__eye_location-without-label:after {
  top: 50%;
  transform: translateY(-50%);
}

.b-field__message {
  padding: 24px;
  border-radius: 12px;
  border: none;
  padding-right: 45px;
}

.b-field__logo {
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 16px;
  left: 15px;
}

.b-field__custom-checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  flex-wrap: wrap;
}

.b-field__custom-checkbox:hover {
  opacity: 0.8;
}

.b-field__checkbox-input {
  position: absolute;
  opacity: 0;
}

.b-field__checkbox-text {
  display: inline-flex;
  align-items: center;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
}

.b-field__checkbox-text:before {
  content: "";
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-right: 24px;
  background-color: #FFFFFF;
  border: 2px solid #EBEEF0;
  border-radius: 4px;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.b-field__checkbox-input:checked + .b-field__checkbox-text:before {
  background-image: url("./../img/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

/* Стили для заполненных автоматически полей */

.b-footer-menu {
  display: flex;
}

.b-footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-footer-menu ul li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 20px;
}

.b-footer-menu ul li:last-child {
  margin-right: 0;
}

.b-footer-menu ul li a {
  text-decoration: none;
  white-space: nowrap;
  transition: 300ms;
  padding: 10px 4px;
}

.b-footer-menu ul li a:any-link {
  color: #767E7E;
}

.b-footer-menu ul li a:visited {
  color: #767E7E;
}

.b-footer-menu ul li a:hover {
  opacity: 0.8;
  text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.3);
}

.b-footer-menu ul .active a {
  opacity: 0.8;
  color: #ffffff !important;
  text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.3);
}

.b-form {
  padding: 48px;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-width: 540px;
  overflow-y: auto;
  border-radius: 20px;
}

.b-form__title {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 600;
  line-height: 38.4px;
  text-align: center;
}

.b-form__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b-label {
  padding: 12px;
  background-color: #FFFFFF;
  border-radius: 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 11111111111;
  cursor: default;
  display: flex;
  gap: 12px;
}

.b-label_active-mark .b-label__img-active {
  display: block;
}

.b-label_active-mark .b-label__img-mark {
  display: none;
}

.b-label_rel {
  position: relative;
  top: 0px;
  right: 0px;
  background-color: #EBEEF0;
  padding: 20px;
  border-radius: 50%;
}

.b-label__img-active {
  display: none;
  transition: 300ms;
  cursor: pointer;
}

.b-label__img-active:hover {
  opacity: 0.8;
}

.b-label__img {
  transition: 300ms;
  cursor: pointer;
}

.b-label__img:hover {
  opacity: 0.8;
}

.b-label__img-mark {
  transition: 300ms;
  cursor: pointer;
}

.b-label__img-mark:hover {
  opacity: 0.8;
}

.b-label__img-blue data-changeable-element {
  transition: 300ms;
  cursor: pointer;
}

.b-label__img-blue data-changeable-element:hover {
  opacity: 0.8;
}

.b_none {
  display: none !important;
}

.b-label__img-mark {
  transition: 300ms;
  cursor: pointer;
}

.b-label__img-mark:hover {
  opacity: 0.8;
}

.b-label__grade {
  font-family: "Roboto Condensed", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  position: relative;
  top: 1px;
}

.b-logo {
  transition: 300ms;
}

.b-logo:hover {
  opacity: 0.8;
}

.b-menu-secondary {
  display: flex;
}

.b-menu-secondary ul {
  display: flex;
}

.b-menu-secondary ul li {
  position: relative;
  display: inline-block;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: #002233;
  white-space: nowrap;
  margin-right: 20px;
  opacity: .6;
  transition: 300ms;
}

.b-menu-secondary ul li:hover {
  opacity: 1;
}

.b-menu-secondary ul li:last-child {
  margin-right: 0;
}

.b-menu-secondary ul li a {
  text-decoration: none;
  white-space: nowrap;
  transition: 300ms;
  padding: 5px 3px;
}

.b-menu-secondary ul li a:hover{
  background: black !important;
  padding: 13px 15px;
  border-radius: 5px;
  color: white !important;
}

.b-menu-secondary ul li a:any-link {
 color: #000;
  opacity: 1 !important;
  font-weight: 300;
  background: none;
}

.b-menu-secondary ul li a:visited {
  color: #002233;
}

.b-menu-secondary ul li a:hover {
  opacity: 1;
}

.b-menu-secondary ul .active {
  opacity: 1;
  background: black;
  padding: 13px 15px;
  border-radius: 5px;
}

.b-menu-secondary ul .active a {
  cursor: default;
  color: white !important;
}

.b-menu-secondary ul .active a:hover {
  opacity: 1;
}

.b-menu-secondary ul .active:hover {
  opacity: 1;
}

.b-menu {
  display: flex;
}

.b-menu ul {
  display: flex;
}

.b-menu ul li {
  position: relative;
  display: inline-block;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: #002233;
  white-space: nowrap;
  margin-right: 20px;
}

.b-menu ul li:last-child {
  margin-right: 0;
}

.b-menu ul li a {
  text-decoration: none;
  white-space: nowrap;
  transition: 300ms;
  padding: 0px 5px;
}

.b-menu ul li a:hover{
  color: #e0943e;
}


.b-menu ul li a:any-link {
  color: #002233;
}

.b-menu ul li a:visited {
  color: #002233;
}

.b-menu ul li a:focus {
  color: #e0943e;
}

.b-menu ul li a:hover {
  opacity: 1;
  color: #e0943e;

}

.b-menu ul .active a {
  color: #002233;
  opacity: 0.8;
}

.b-message-button {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background-color: #EBEEF0;
  border-radius: 60px;
  cursor: pointer;
}

.b-message-button:hover {
  opacity: 0.8;
}

.b-message-button__text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
}

.b-message {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.b-message__top {
  display: flex;
  gap: 16px;
  width: 100%;
}

.b-message__icon-img {
  width: 48px;
  height: 48px;
}

.b-message__content {
  width: 100%;
}

.b-message__content-top {
  display: flex;
  justify-content: space-between;
}

.b-message__content-name {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-message__content-bottom {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  opacity: 80%;
}

.b-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 600px;
  height: 600px;
}

.b-messages__item_color-green .b-card-message__right-tag {
  background-color: #009980;
}

.b-messages__item_color-green .b-card-message__left {
  background-color: #009980;
}

.b-messages__item_right {
  display: flex;
  justify-content: end;
}

.b-messages__item_right .b-card-message__left-main {
  align-items: end;
  flex-direction: row-reverse;
}

.b-messages__item_right .b-card-message__top {
  flex-direction: row-reverse;
}

.b-messages__item_right .b-card-message__bottom {
  margin-left: 0;
  justify-content: end;
  margin-right: calc(58px + 16px);
}

.b-messages__item_right .b-card-message__right {
  background-color: #002233;
  border-radius: 16px 16px 0px 16px;
}

.b-messages__item_right .b-card-message__right-top {
  display: none;
}

.b-messages__item_right .b-card-message__right-text {
  padding: 10px 20px;
  color: #000;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  box-sizing: content-box;
  padding: 12px 24px;
  border: 1px solid #f0e8e8;
  border-radius: 12px;
}

.b-mobile-menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

.b-mobile-menu ul li {
  position: relative;
  display: inline-block;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
  text-decoration: none;
  text-align: center;
  color: #002233;
  white-space: nowrap;
  margin-bottom: 14px;
}

.b-mobile-menu ul li a {
  text-decoration: none;
  white-space: nowrap;
  transition: 300ms;
  padding: 5px;
}

.b-mobile-menu ul li a:any-link {
  color: #002233;
}

.b-mobile-menu ul li a:visited {
  color: #002233;
}

.b-mobile-menu ul li::marker {
  list-style-type: none;
}

.b-active-mobile-menu {
  position: relative;
  z-index: 1000000;
}

.b-open-mobile-menu {
  display: block !important;
}

.b-hidden-mobile-menu {
  overflow: hidden !important;
}

.b-modal-location {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(47, 79, 79, 0.6);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease, max-height 0s ease;
  /* анимация opacity и max-height */
  max-height: 0;
}

.b-modal-location.b-is-open {
  opacity: 1;
  max-height: initial;
}

.b-modal-location__inner {
  flex-direction: column;
  width: 840px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
  position: relative;
  z-index: 5333;
  padding: 8px;
  max-height: 80vh;
}

.b-modal-close-for-bg {
  position: absolute;
  left: 0px;
  top: -0px;
  background-color: black;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0;
}

.b-modal-location__top {
  padding: 33px 24px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.b-modal-location__title {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-modal-location__button_block-md {
  display: none;
}

.b-modal-location__bottom {
  padding: 24px;
  border-radius: 12px;
  background-color: #EBEEF0;
  display: flex;
  justify-content: space-between;
  overflow-y: auto;
}

.b-modal-location__form {
  overflow: hidden;
  max-height: 0px;
}

.b-modal-location__countries {
  width: 48%;
  margin-top: 10px;
  margin-left: 10px;
}

.b-modal-location__country-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-modal-location__country {
  list-style-type: none;
  /* Убираем маркировку */
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22.4px;
  text-align: left;
  padding: 16px 24px;
  transition: 300ms;
  border-radius: 8px;
  cursor: pointer;
}

.b-modal-location__country:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.b-modal-location__country.b-tab-active-nav-item {
  background-color: #FFFFFF;
  margin-bottom: 10px;
}

.b-modal-location__cities {
  margin-top: 11px;
  margin-right: 10px;
  width: 48%;
}

.b-modal-location__cities-inner {
  display: none;
}

.b-modal-location__cities-list {
  width: 93% !important;
  margin: 0 auto;
  padding-bottom: 10px;
}

.b-modal-location__city {
  list-style-type: none;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22.4px;
  text-align: left;
  padding: 16px 24px;
  cursor: pointer;
  transition: 300ms;
  border-radius: 8px;
}

.b-modal-location__city:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.b-modal-location__city_active {
  background-color: #FFFFFF;
}

.b-modal-profile {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 9999999;
}

.b-modal-profile__inner {
  border: 1px solid #EBEEF0;
  min-width: 190px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
 padding: 11px 11px;
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 12px;
}

.b-modal-profile__item {
  display: flex;
  gap: 6px;
  align-items: center;
  transition: 300ms;
  padding-left: 12px;
  padding-right: 12px;
}

.b-modal-profile__item:hover {
  opacity: 0.8;
}

.b-modal-profile__item:any-link {
  color: #002233;
}

.b-modal-profile__item:visited {
  color: #002233;
}

.b-modal-profile__item:hover {
  color: #002233;
}

.b-modal-profile__item_border {
  padding-bottom: 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid #EBEEF0;
}

.b-modal-profile__item-img {
  width: 16px;
  height: 16px;
}

.b-modal-profile__item-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}

.b-modal-store {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  background-color: #EBEEF0;
  border-radius: 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0s ease;
  /* анимация opacity и max-height */
  max-height: 0;
}

.b-modal-store.b-is-open {
  opacity: 1;
  max-height: initial;
}

.b-modal-store__inner {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  border-radius: 20px;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.b-modal-store__left {
  width: 32%;
  display: flex;
  align-items: center;
}

.b-modal-store__left-img {
  width: 100%;
}

.b-modal-store__right {
  padding: 38px;
  width: 68%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b-modal-store__title-and-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b-modal-store__title {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 600;
  line-height: 38.4px;
  text-align: left;
}

.b-modal-store__button-1 {
  display: block;
}

.b-modal-store__button-2 {
  display: block;
}

.b-modal-store__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-modal-store__rating-main {
  display: flex;
  gap: 6px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  align-items: center;
}

.b-modal-store__text {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000000;
}

.b-modal-store__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b-modal-store__cards-title {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: left;
}

.b-modal-store__buttons-bottom {
  display: flex;
  gap: 12px;
  justify-content: right;
}

.b-modal-warning {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(47, 79, 79, 0.6);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease, max-height 0s ease;
  max-height: 0;
}

.b-modal-warning.b-is-open {
  opacity: 1;
  max-height: initial;
}

.b-modal-warning__inner {
  flex-direction: column;
  width: 450px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
  position: relative;
  z-index: 5333;
  padding: 4px;
  max-height: 80vh;
}

.b-modal-warning__close-field {
  position: absolute;
  left: 0px;
  top: -0px;
  background-color: black;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0;
}

.b-modal-warning__top {
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.b-modal-warning__title {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: center;
}

.b-modal-warning__button_block-md {
  display: none;
}

.b-modal-warning__bottom {
  padding: 48px 24px;
  border-radius: 12px;
  background-color: #EBEEF0;
  display: flex;
  justify-content: space-between;
  overflow-y: auto;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.b-modal-warning__cities-inner {
  display: none;
}

.b-modal-warning__cities-list {
  width: 100%;
}

.b-pagination {
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 32px;
  background-color: #FFFFFF;
  border-radius: 60px;
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination .page-item {
  position: relative;
  display: inline-block;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 16px;
  color: #002233;
}

.pagination .page-item .page-link {
  padding: 3px 3px;
  white-space: nowrap;
  display: flex;
  align-items: center;

}

.pagination .page-item .page-link:any-link {
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif !important;
  border-radius: 5px;
  border: none;
  color: black;
  padding: 2px 10px;
}

.pagination .page-item .page-link:visited {
  color: #002233;
}

.pagination .page-item .page-link:hover {
  color: rgba(31, 41, 51, 0.8) !important;
  text-decoration: none;
}

.pagination .page-item .page-item-img {
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.pagination .page-item .page-item-img-reverse {
  transform: rotate(180deg);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.pagination .disabled .page-link:hover {
  text-decoration: none;
  color: rgba(0, 34, 51, 0.4) !important;
}

.pagination .disabled .page-item-img {
  text-decoration: none;
}

.pagination .active .page-link {
  text-decoration: none;
  cursor: default;
  color: rgba(0, 34, 51, 0.4) !important;
}

.pagination .active .page-link:any-link {
  background: black;
  border: none;
  color: white !important;
  padding: 2px 10px;
}

.pagination .active .page-link:visited {
  color: #fff !important;
}

.pagination .active .page-link:hover {
  color: #939292 !important;
}

.pagination .dots {
  cursor: default;
  color: rgba(0, 34, 51, 0.4) !important;
}

@media (max-width: 768px) {
  .b-pagination {
    padding: 15px 20px;
  }
  
  .pagination .page-item {
    margin-right: 8px !important;
    font-size: 14px;
  }
  
  .pagination .page-item .page-item-img {
    width: 20px !important;
    height: 20px !important;
    padding: 4px !important;
    min-width: 20px !important;
    min-height: 20px !important;
  }
  
  .pagination .page-item .page-item-img-reverse {
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
    padding: 4px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    transform: rotate(180deg) !important;
  }
  
  .pagination .page-item .page-link {
    padding: 2px 8px !important;
  }
}

.b-profile-button {
  display: flex;
  gap: 16px;
  cursor: pointer;
  transition: 300ms;
  align-items: center;
  width: 100%;
  z-index: 9999;
}

.b-profile-button:hover {
  opacity: 0.8;
}

.b-profile-button__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b-profile-button__name {
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}

.b-profile-button__name-arrow {
  display: none;
}

.b-profile-button__text-bottom {
  display: flex;
  gap: 8px;
}

.b-profile-button__text-bottom-icon {
  width: 16px;
  height: 16px;
}

.b-profile-button__text-bottom-sum {
  font-family: Unbounded;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.b-profile-button__button-img {
  padding: 16px 14px;
  background-color: #EBEEF0;
  border-radius: 8px;
}

.b-profile-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  scrollbar-width: thin !important;
  scrollbar-color: #ccc transparent !important;
  overflow-y: auto;
  max-height: 700px;
}

.b-card-lg__main-left .b-profile-tabs .b-profile-tabs__item {
  display: block;
}

.b-button-tab__right-img {
  display: none;
}

.b-profile-tabs__item.b-tab-active-nav-item {
  background-color: #EDF5FF;
  border-radius: 16px;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__right-item-order {
  background-color: #FFFFFF;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__img {
  display: none;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__img-active {
  display: block;
}

.b-profile-tabs__item.b-tab-active-nav-item {
  background-color: #EDF5FF;
  border-radius: 16px;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__right-item-order {
  background-color: #FFFFFF;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__img {
  display: none;
  max-height: 30px;
  max-width: 30px;
}

.b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__img-active {
  display: block;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat {
  background-color: #EDF5FF;
  border-radius: 16px;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__right-item-order {
  background-color: #FFFFFF;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__img {
  max-height: 60px;
  max-width: 60px;
  display: block;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__text {
  color: #0F62FE;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__tag {
  color: initial;
}

.b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__img-active {
  display: none;
}

.b-button-tab__img-wrapper {
  width: 60px;
  height: 60px;
  max-height: 60px;
  max-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.b-review-about {
  padding: 24px 32px;
  background-color: #ffffff;
  border-radius: 20px;
}

.b-review-about__title {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 24px;
}

.b-review-about__item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.b-review-about__item:last-child {
  margin-bottom: 0px;
}

.b-review-about__item-left {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #00223399;
}

.b-review-about__item-right {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-review-about__item-img {
  margin-right: 2px;
}

.b-review {
  display: flex;
  gap: 80px;
  padding: 24px 64px;
  background-color: #FFFFFF;
  border-radius: 20px;
  position: relative;
}

.b-review__left {
  display: flex;
  flex-direction: column;
}

.b-review__icon {
  height: fit-content;
  width: fit-content;
  margin-bottom: 8px;
}

.b-review__center {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.b-review__store-icon {
  margin-bottom: 20px;
}

.b-review__store-icon:last-child {
  margin-bottom: 0px;
}

.b-review__right-grade {
  display: flex;
  gap: 11px;
  padding: 8px;
  background-color: #EBEEF0;
  align-items: center;
  border-radius: 8px;
}

.b-review__right-grade-img {
  min-width: 24px;
  min-height: 24px;
}

.b-review__right-grade-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-review__name {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-review__date {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-search {
  border: none;
  display: flex;
  align-items: center;
  position: relative;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
  border: none;
  height: min-content;
  border-radius: 60px;
  background-color: #EBEEF0;
}

.b-search:any-link {
  text-decoration: none;
  color: #002233;
  outline: none;
}

.b-search:visited {
  text-decoration: none;
  color: #002233;
  outline: none;
}

.b-search:hover {
  text-decoration: none !important;
  opacity: 0.8;
  outline: none;
}

.b-search:focus {
  outline: none;
  border: none;
}

.b-search__text {
  width: 100%;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  padding: 16px 32px 16px 32px;
  background-color: #EBEEF0;
  border: none;
  border-radius: 60px;
  transition: 300ms;
}

.b-search__text:any-link {
  text-decoration: none;
  color: #ffffff;
  outline: none;
}

.b-search__text:visited {
  text-decoration: none;
  color: #ffffff;
  outline: none;
}

.b-search__text:hover {
  text-decoration: none !important;
  outline: none;
  opacity: 0.8;
}

.b-search__text:focus {
  outline: none;
  border: none;
}

.b-search__text::placeholder {
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-search__text::placeholder:any-link {
  text-decoration: none;
  color: #ffffff;
  outline: none;
}

.b-search__text::placeholder:visited {
  text-decoration: none;
  color: #ffffff;
  outline: none;
}

.b-search__text::placeholder:hover {
  text-decoration: none !important;
  outline: none;
}

.b-search__text::placeholder:focus {
  outline: none;
  border: none;
}

.b-search__icon {
  content: "";
  border: none;
  cursor: pointer;
  background-image: url("./../img/search-magnifying-glass.svg");
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 300ms;
  background-color: #f3f3f3 !important;
}

.b-search__icon:hover {
  opacity: 0.8;
}

.b-submit-input input[type="submit"] {
  display: none;
}

.b-submit-input {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  transition: 300ms;
}

.b-submit-input:hover {
  opacity: 0.8;
}

.b-submit-input__button {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.02em;
  opacity: .6;
}

.b-submit-input__button:hover {
  opacity: .5;
}

.b-submit-input_sm {
  width: min-content;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translate(-50%, -50%);
  transition: 300ms;
}

.b-submit-input_sm .b-submit-input__label {
  padding: 0;
  background-color: initial;
  border-radius: 0px;
}

.b-submit-input__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  width: 100%;
  background-color: #EDF5FF;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.b-submit-input__label_form {
  background-color: #004DE5;
  color: #FFFFFF;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
}

.b-submit-input__icon {
  margin-left: 20px;
}

.b-table {
  width: 100%;
  border-collapse: collapse;
}

.b-table tr:first-child {
  border-bottom: 0px solid #EEEEEE;
}

.b-table tr {
  border-bottom: 1px solid rgba(0, 34, 51, 0.2);
}

.b-table tr th {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 34, 51, 0.2);
}

.b-table tr th:first-of-type {
  font-style: normal;
  margin-right: 20px;
  padding-right: 10px;
}

.b-table tr th:last-of-type {
  font-style: normal;
  padding-left: 10px;
}

.b-table tr td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  min-width: 100px;
  padding-right: 10px;
}

.b-table tr td:last-child {
  padding-left: 10px;
}

.b-content-tab {
  display: none !important;
}

.b-tab-active-nav-item {
  display: flex;
}

.b-content-tab_active {
  display: flex !important;
}

.b-video {
  width: 100%;
  position: relative;
  height: 100%;
}

.video-overlay {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.b-video__elem {
  width: 100%;
}

.b-video__elem-post {
  height: 400px;
  width: 100%;
}

.b-wrapper-for-burger-menu {
  background-color: #EBEEF0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 0px);
  z-index: 999;
  display: none;
}

#mobile-menu.b-is-open {
  display: block;
}

.b-wrapper-for-burger-menu__inner {
  overflow: scroll;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  position: relative;
}

.b-wrapper-for-burger-menu__inner::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: #ffffff;
}

.b-wrapper-for-burger-menu__button-close {
  width: 100%;
  justify-content: right;
}

.b-wrapper-for-burger-menu__button-close {
  display: flex;
  justify-content: right;
  width: 100%;
}

.b-wrapper-for-burger-menu__main {
  padding-top: 60px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.b-wrapper-for-burger-menu__profile {
  width: calc(100% - 40px);
  max-width: 100%;
  justify-content: space-between;
  flex-direction: row;
  background-color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: fixed;
  top: 94%;
  transform: translateY(-50%);
}

.b-wrapper-for-burger-menu__button {
  margin-top: 70px;
  margin-bottom: 60px;
  justify-content: center;
  display: none;
}

.b-catalog {
  display: flex;
  justify-content: space-between;
}

.b-catalog__left {
  width: 22.8%;
}

.b-catalog__right {
  width: 74%;
}

.b-company {
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  background-color: #FFFFFF;
}

.b-company__top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EBEEF0;
  padding-top: 90px;
  padding-bottom: 90px;
  border-radius: 20px;
}

.b-company__top-img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  max-width: 650px;
}

.b-company__bottom {
  max-height: 91px;
}

.b-order-type__top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.b-order-type__top-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-right: 12px;
}

.b-order-type__bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.b-order-type__item {
  width: 100%;
}

.b-post {
  overflow-x: hidden;
}

.b-post_img-wrap {
  display: flex;
  justify-content: center;
}

.b-post_img {
  border-radius: 12px;
}

.b-post_img_mb-40 {
  margin-bottom: 40px;
}

.b-post__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.b-post__video {
  margin-top: 25px;
  margin-bottom: 25px;
}

.b-post__table {
  overflow-x: auto;
  margin-bottom: 40px;
  width: 100%;
  margin-top: 40px;
}

.b-product__breadcrumb {
  overflow: hidden;
}

.b-product__inner {
  display: flex;
  justify-content: space-between;
}

.b-product__img {
  width: 47.7%;
}

.b-product__text {
  width: 47.7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  padding-right: 35px;
}

.b-product__title {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}

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

@media (max-width: 768px) {
  .b-product__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.b-product__logo-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.b-product__logo-left-img {
  min-width: 36px;
  min-height: 36px;
  max-height: 36px;
  max-width: 36px;
  background: #FFFFFF;
  border-radius: 4px;
}

.b-product__logo-left-text {
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-product__logo-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.b-product__logo-right-text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.b-product__prise-and-grade {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.b-product__prise {
  font-family: Unbounded;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}

.b-product__grade {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.b-reviews {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.b-reviews__left {
  width: 31.4%;
}

.b-reviews__right {
  width: 65.9%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.b-reviews__right_bg-light {
  padding-top: 40px;
  padding-bottom: 25px;
  background-color: #ffffff;
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.b-reviews__right-button {
  margin-top: 40px;
}

.b-reviews__pagination {
  display: flex;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.b-sign-in {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 30px;
}

.b-sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 50px;
}

::selection {
  background-color: #cfedff;
  color: #ffffff;
}

a {
  text-decoration: none;
}

a:any-link,
a:visited,
a:active,
a:focus {
  text-decoration: none;
}

@media screen and (max-width: 1600px) {
  .gm_mb-60 {
    margin-bottom: 50px;
  }

  .b-header-secondary__category-and-menu {
    gap: 32px;
  }

  .b-header__logo-and-location {
    gap: 36px;
  }

  .b-header__search-and-profile-and-chat-and-burger-menu {
    gap: 36px;
  }

  .b-header__search-button {
    width: 310px;
  }

  .b-main__section_bg-logo-xxl {
    background-size: 90%;
    height: initial;
  }

  .b-main__inner {
    width: 1110px;
  }

  .b-main__inner_width-sm {
    width: 946px;
  }

  .b-page__header {
    margin-bottom: 80px;
  }

  .b-page__header-inner {
    width: 1110px;
  }

  .b-page__footer-inner {
    width: 1110px;
  }

  .b-about-company__logo {
    width: 200px;
    height: 200px;
    margin-top: -106px;
  }

  .b-file-input_column {
    display: flex;
    flex-direction: column;
  }

  .b-button-lg {
    padding: 12px 12px;
  }

  .b-button_bg {
    gap: 12px;
  }

  .b-button__text-left {
    display: none;
  }

  .b-card-field {
    flex-direction: column;
    gap: 10px;
    align-items: initial;
  }

  .b-card-field__left {
    gap: 15px;
  }

  .b-card-field__right {
    justify-content: space-between;
  }

  .b-card-lg__main {
    min-height: 530px;
  }

  .b-card-lg__inner {
    padding: 24px;
  }

  .b-card-lg__left-card-sm_right {
    width: 100%;
  }

  .b-card-md-secondary {
    padding: 12px;
  }

  .b-card-md-secondary__left {
    width: 27%;
  }

  .b-card-md-secondary__left-balance {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
  }

  .b-card-md-secondary__right {
    max-width: 70%;
  }

  .b-card-md {
    padding: 16px;
    gap: 26px;
  }

  .b-card-md_primary {
    padding: 16px;
    gap: 16px;
  }

  .b-card-md__center {
    min-width: 40%;
  }

  .b-card-md__item_width-200 {
    min-width: 150px;
  }

  .b-card-message {
    max-width: 100%;
  }

  .b-card-xl-primary {
    flex-direction: column;
    align-items: flex-start;
  }

  .b-card-xl-primary_sm {
    flex-direction: initial;
    align-items: flex-start;
  }

  .b-card-xl-primary__items {
    width: 100%;
    justify-content: space-between;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 540px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 540px;
  }

  .b-card-xl__left {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    gap: 10px;
  }

  .b-card-xl__right {
    gap: 40px;
  }

  .b-card-xl__right {
    justify-content: space-between;
  }

  .b-card-xl__amount-and-prise {
    gap: 45px;
  }

  .b-card-xl__amount {
    gap: 10px;
  }

  .b-card-xl__prise {
    gap: 10px;
  }

  .b-card-xxl {
    padding: 24px;
  }

  .b-card__picture {
    height: 250px;
  }

  .b-card__picture_height {
    height: 310px;
  }

  .b-card__main {
    padding: 16px;
  }

  .b-card__locations::after {
    right: 2px;
  }

  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 29ch;
  }

  .b-cards_mini {
    gap: 12px 3%;
  }

   /*.b-cards__item {
    max-width: 32.33%;
  }*/

  .b-cards__item_width-50 {
    max-width: 48.3%;
  }

  .b-cards__item_width-32 {
    max-width: 49.2%;
  }

  .b-category-button__text {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-gallery__image-big {
    max-height: 400px;
  }

  .b-messages {
    max-height: 450px;
    height: 450px;
  }

  .b-modal-location__inner {
    width: 840px;
  }

  .b-modal-store__inner {
    width: 1110px;
  }

  .b-modal-warning__inner {
    width: 450px;
  }

  .b-review {
    gap: 45px;
    padding: 24px 40px;
  }

  .b-company__top-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .b-company__top-img {
    max-height: 370px;
    max-width: 550px;
  }

  .b-product__prise {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
  }
}

@media screen and (max-width: 1260px) {
  [class*="__container"] {
    max-width: 1080px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .b-col_xl-12,
  [class*="__col_xl-12"] {
    max-width: 100%;
  }

  .b-col_xl-11,
  [class*="__col_xl-11"] {
    max-width: 91.66667%;
  }

  .b-col_xl-10,
  [class*="__col_xl-10"] {
    max-width: 83.33333%;
  }

  .b-col_xl-9,
  [class*="__col_xl-9"] {
    max-width: 75%;
  }

  .b-col_xl-8,
  [class*="__col_xl-8"] {
    max-width: 66.66667%;
  }

  .b-col_xl-7,
  [class*="__col_xl-7"] {
    max-width: 58.33333%;
  }

  .b-col_xl-6,
  [class*="__col_xl-6"] {
    max-width: 50%;
  }

  .b-col_xl-5,
  [class*="__col_xl-5"] {
    max-width: 41.66667%;
  }

  .b-col_xl-4,
  [class*="__col_xl-4"] {
    max-width: 33.33333%;
  }

  .b-col_xl-3,
  [class*="__col_xl-3"] {
    max-width: 25%;
  }

  .b-col_xl-2,
  [class*="__col_xl-2"] {
    max-width: 16.66667%;
  }

  .b-col_xl-1,
  [class*="__col_xl-1"] {
    max-width: 8.33333%;
  }

  [class*="_d-xl-flex"] {
    display: flex;
  }

  [class*="_d-xl-block"] {
    display: block;
  }

  [class*="_d-xl-inline-flex"] {
    display: inline-flex;
  }

  [class*="_d-xl-inline"] {
    display: inline;
  }

  [class*="_d-xl-inline-block"] {
    display: inline-block;
  }

  [class*="_d-xl-none"] {
    display: none;
  }

  .gm_mb-20 {
    margin-bottom: 15px;
  }

  .gm_mb-40 {
    margin-bottom: 36px;
  }

  .gm_mb-50 {
    margin-bottom: 42px;
  }

  .gm_mb-60 {
    margin-bottom: 40px;
  }

  .gm_mb-70 {
    margin-bottom: 50px;
  }

  .gm_mb-80 {
    margin-bottom: 54px;
  }

  .gm_mb-120 {
    margin-bottom: 100px;
  }

  .gm_mb-160 {
    margin-bottom: 140px;
  }

  .gm_mb-200 {
    margin-bottom: 180px;
  }

  .gm_mb-240 {
    margin-bottom: 220px;
  }

  .gm_pb-40 {
    padding-bottom: 36px;
  }

  .gm_pb-80 {
    padding-bottom: 65px;
  }

  .gm_pb-160 {
    padding-bottom: 150px !important;
  }

  .gm_pb-200 {
    padding-bottom: 180px;
  }

  .pb-240 {
    padding-bottom: 220px;
  }

  .b-header__search-and-profile-and-chat-and-burger-menu {
    flex-direction: row-reverse;
  }

  .b-header__search-button {
    width: min-content;
  }

  .b-header__message {
    display: none;
  }

  .b-main__inner {
    margin-bottom: 80px;
    width: 920px;
  }

  .b-page__header-inner {
    width: 920px;
  }

  .b-page__footer-inner {
    width: 920px;
    margin-bottom: 40px;
  }

  .b-about-company {
    padding: 8px;
    flex-direction: column-reverse;
  }

  .b-about-company__logo {
    width: 165px;
    height: 165px;
    margin-top: -128px;
  }

  .b-about-company__logo-img {
    max-height: 100px;
    max-width: 100px;
  }

  .b-about-company__buttons {
    margin-left: 197px;
    margin-bottom: 22px;
    margin-top: 10px;
  }

  .b-product__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  .b-button-md-primary_pd24 {
    padding: 14px 10px;
  }

  .b-button-md-primary_bg {
    padding: 15px 11px;
  }

  .b-button-md {
    padding: 12px 17px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }

  .b-button-md.b-tab-active-nav-item {
    padding: 14px 19px;
  }

  .b-button-rates {
    border: none;

  }

  .b-button-rates__icon {
    width: 16px;
    height: 16px;
  }

  .b-button-rates__exchange {
    line-height: 16px;
  }

  .b-button-rates__right {
    line-height: 16px;
  }

  .b-button-tab {
    padding: 16px 18px;
  }

  .b-button {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-card-md-secondary {
    flex-direction: column;
  }

  .b-card-md-secondary__left {
    width: 100%;
  }

  .b-card-md-secondary__right {
    max-width: 100%;
  }

  .b-card-md_primary {
    gap: 8px;
    padding: 12px;
    flex-direction: column;
    position: relative;
  }

  .b-card-md__item {
    justify-content: left;
    gap: 12px;
    flex-direction: row;
  }

  .b-card-message__right {
    border-radius: 12px 12px 12px 0px;
    padding: 16px;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 420px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 410px;
  }

  .b-card-xl-primary__text {
    margin-right: 20px;
  }

  .b-card-xl {
    padding: 12px 20px;
    flex-direction: column;
  }

  .b-card {
    padding: 4px;
    border-radius: 12px;
  }

  .b-card__picture {
    height: 240px;
    border-radius: 12px;
  }

  .b-card__picture_height {
    height: 240px;
    border-radius: 12px;
  }

  .b-card__img {
    border-radius: 12px;
  }

  .b-card__name {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 23ch;
  }

/*
  .b-cards__item {
    max-width: 32.33%;
  }
*/
  .b-cards__item_width-32 {
    max-width: 49.2%;
  }

  .b-categories-sm__title {
    margin-bottom: 0px;
  }

  .b-categories-sm__tag {
    padding-top: 30px;
  }

  .b-category-button {
    padding: 20px 24px;
    border-radius: 12px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-bold {
    font-size: 16px;
    line-height: 25.6px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin {
    font-size: 16px;
    line-height: 25.6px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin-underline {
    font-size: 16px;
    line-height: 25.6px;
  }

  .b-contacts-form__text-bold {
    font-size: 22px;
    line-height: 35px;
  }

  .b-contacts-form__text-thin {
    font-size: 22px;
    line-height: 35px;
  }

  .b-contacts-form__text-thin-underline {
    font-size: 22px;
    line-height: 35px;
  }

  .b-content h1 {
    margin-bottom: 32.5px;
    font-size: 24px;
    line-height: 34px;
  }

  .b-content h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .b-content h3 {
    margin-bottom: 22.5px;
  }

  .b-content img {
    margin-bottom: 36px;
  }

  .b-gallery {
    height: 400px;
  }

  .b-field_width-48 {
    width: 100%;
  }

  .b-field__select-item {
    font-size: 14px;
    line-height: 22px;
  }

  .b-field__label {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-field__input {
    padding: 12px 16px;
  }

  .b-field__input_pl62 {
    padding-left: 58px;
  }

  .b-footer-menu ul {
    gap: 16px;
  }

  .b-footer-menu ul li {
    margin-right: 15px;
    font-size: 15px;
  }

  .b-logo {
    max-width: 180px;
  }

  .b-menu-secondary ul li {
    font-family: Unbounded;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-messages__item_right .b-card-message__right {
    border-radius: 12px 12px 0px 12px;
    padding: 16px;
  }

  .b-modal-location__inner {
    margin-bottom: 80px;
    width: 840px;
  }

  .b-modal-store__inner {
    margin-bottom: 80px;
    width: 920px;
  }

  .b-modal-store__title {
    font-size: 21px;
    font-weight: 600;
    line-height: 32.4px;
  }

  .b-modal-warning__inner {
    margin-bottom: 80px;
    width: 450px;
  }

  .b-search {
    width: min-content;
  }

  /* .b-search__text {
    display: none;
  } */

  .b-search__icon {
    position: relative;
    margin: 12px;
    width: 14px;
    height: 14px;
    right: 0;
    background-color: #EBEEF0;
  }

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

  .b-catalog__left {
    width: 100%;
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
  }

  .b-catalog__right {
    width: 100%;
  }

  .b-company__top-img {
    max-height: 270px;
    max-width: 450px;
  }

  .b-company__bottom {
    max-height: 150px;
  }

  .b-post__table {
    margin-bottom: 30px;
  }

  .b-product__text {
    padding: 0;
  }

  .b-product__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }

  .b-product__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }

  .b-reviews {
    gap: 40px;
  }

  .b-reviews__left {
    width: 100%;
  }

  .b-reviews__right {
    width: 100%;
  }

  .b-reviews__right-button {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1080px) {

  .b-header__search-button {
    position: relative;

    width: 145px !important;
  }

  .b-header__location {
  position: relative;
  z-index: 3;
  left: -15px;
}

.b-button-location__text {
  width: 118px;
  line-height: 14px !important;
  margin-right: -28px;
  margin-left: -9px;
  white-space: normal;
  word-wrap: break-word;
  max-height: 28px;
  overflow: hidden;
}

  [class*="__container"] {
    max-width: 780px;
  }


.b-category-button
{box-shadow:none !important;}

  .b-col_lg-12,
  [class*="__col_lg-12"] {
    max-width: 100%;
  }

  .b-col_lg-11,
  [class*="__col_lg-11"] {
    max-width: 91.66667%;
  }

  .b-col_lg-10,
  [class*="__col_lg-10"] {
    max-width: 83.33333%;
  }

  .b-col_lg-9,
  [class*="__col_lg-9"] {
    max-width: 75%;
  }

  .b-col_lg-8,
  [class*="__col_lg-8"] {
    max-width: 66.66667%;
  }

  .b-col_lg-7,
  [class*="__col_lg-7"] {
    max-width: 58.33333%;
  }

  .b-col_lg-6,
  [class*="__col_lg-6"] {
    max-width: 50%;
  }

  .b-col_lg-5,
  [class*="__col_lg-5"] {
    max-width: 41.66667%;
  }

  .b-col_lg-4,
  [class*="__col_lg-4"] {
    max-width: 33.33333%;
  }

  .b-col_lg-3,
  [class*="__col_lg-3"] {
    max-width: 25%;
  }

  .b-col_lg-2,
  [class*="__col_lg-2"] {
    max-width: 16.66667%;
  }

  .b-col_lg-1,
  [class*="__col_lg-1"] {
    max-width: 8.33333%;
  }

  [class*="_d-lg-flex"] {
    display: flex;
  }

  [class*="_d-lg-block"] {
    display: block;
  }

  [class*="_d-lg-inline-flex"] {
    display: inline-flex;
  }

  [class*="_d-lg-inline"] {
    display: inline;
  }

  [class*="_d-lg-inline-block"] {
    display: inline-block;
  }

  [class*="_d-lg-none"] {
    display: none;
  }

  .gm_mb-10 {
    margin-bottom: 5px !important;
  }

  .gm_mb-30 {
    margin-bottom: 20px;
  }

  .gm_pb-10 {
    padding-bottom: 10px;
  }

  .b-header__logo-and-location {
    gap: 32px;
  }

  .b-header__search-and-profile-and-chat-and-burger-menu {

  }

  .b-main__section_bg-logo-xxl {
    background-size: 110%;
  }

  .b-main__inner {
    width: 710px;
  }

  .b-page__header-inner {
    width: 710px;
  }

  .b-page__header-inner_primary-header {
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 12px 20px 12px 20px;
  }

  .b-page__footer-inner {
    width: 710px;
  }

  .b-card-lg-primary {
    padding: 12px;
  }

  .b-card-lg__main {
    flex-direction: column;
    min-height: initial;
  }

  .b-card-lg__main-left {
    max-width: 100%;
  }

  .b-card-lg__main-right {
    max-width: 100%;
    padding: 2px;
  }

  .b-card-lg__bottom {
    padding: 12px;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 300px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 280px;
  }

  .b-card {
    border-radius: 8px;
  }

  .b-card__picture {
    border-radius: 8px;
  }

  .b-card__img {
    border-radius: 8px;
  }

  .b-card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
  }

  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 29ch;
  }

  .b-cards__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .b-cards__item {
    max-width: 48.99%;
  }

  .b-cards__item_width-50 {
    max-width: 49%;
  }

  .b-cards__item_width-32 {
    max-width: 48.2%;
  }

  .b-gallery {
    height: 500px;
  }

  .b-gallery__image-big {
    max-width: 700px;
    max-height: 500px;
  }

  .b-form__title {
    font-size: 18px;
    line-height: 30px;
  }

  .b-logo__img {
    width: 132px;
  }

  .b-modal-location__inner {
    width: 710px;
  }

  .b-modal-location__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
  }

  .b-modal-store__inner {
    width: 710px;
  }

  .b-modal-store__cards-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24.8px;
  }

  .b-modal-warning__inner {
    width: 450px;
  }

  .b-pagination {
    padding: 18px 25px;
    border-radius: 8px;
  }

  .pagination .page-item {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    margin-right: 10px;
  }

  .b-review-about__title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
  }

  .b-review__center {
    gap: 24px;
  }

  .b-review__store-icon {
    margin-bottom: 12px;
  }

  .b-review__store-icon:last-child {
    margin-bottom: 0px;
  }

  .b-search__text {
    padding: 5px 12px 5px 35px;
  }

  .b-search__icon {
    width: 15px;
    height: 15px;
  }

  .b-video__elem-post {
    height: 300px;
  }

  .b-wrapper-for-burger-menu__inner {
    position: relative;
    margin: 0 auto;
  }

  .b-company__top-inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .b-company__top-img {
    max-height: 270px;
    max-width: 390px;
  }

  .b-post_img_mb-40 {
    margin-bottom: 20px;
  }

  .b-post__table {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .b-product__inner {
    flex-direction: column;
    gap: 50px;
  }

  .b-product__img {
    width: 100%;
  }

  .b-product__text {
    width: 100%;
  }
}

@media screen and (max-width: 780px) {

  .b-card-md__left-text {
    margin-top:10px;
  }

.b-header__location {
  position: relative;
  z-index: 3;
  left: 0px;
}

.b-button-location__text {
  width: auto;
  line-height: 14px !important;
 }

 .b-header__search-button {
  position: relative;
  left: 0px !important;
  width: auto !important;
}


  [class*="__container"] {
    max-width: 600px;
  }

.b-cards__item {
      max-width: 245px !important;
    }

    .b-card__img {
  border-radius: 10px;
  object-fit: fill !important;
  /*width: auto !important;
  height: auto !important;*/
  width: 200px !important;
    height: 200px !important;
}


   .myshopcards {
justify-content: center;
}


    .myshopcard {
    max-width:none;
}

  .b-col_md-12,
  [class*="__col_md-12"] {
    max-width: 100%;
  }

  .b-col_md-11,
  [class*="__col_md-11"] {
    max-width: 91.66667%;
  }

  .b-col_md-10,
  [class*="__col_md-10"] {
    max-width: 83.33333%;
  }

  .b-col_md-9,
  [class*="__col_md-9"] {
    max-width: 75%;
  }

  .b-col_md-8,
  [class*="__col_md-8"] {
    max-width: 66.66667%;
  }

  .b-col_md-7,
  [class*="__col_md-7"] {
    max-width: 58.33333%;
  }

  .b-col_md-6,
  [class*="__col_md-6"] {
    max-width: 50%;
  }

  .b-col_md-5,
  [class*="__col_md-5"] {
    max-width: 41.66667%;
  }

  .b-col_md-4,
  [class*="__col_md-4"] {
    max-width: 33.33333%;
  }

  .b-col_md-3,
  [class*="__col_md-3"] {
    max-width: 25%;
  }

  .b-col_md-2,
  [class*="__col_md-2"] {
    max-width: 16.66667%;
  }

  .b-col_md-1,
  [class*="__col_md-1"] {
    max-width: 8.33333%;
  }

  [class*="_d-md-flex"] {
    display: flex;
  }

  [class*="_d-md-block"] {
    display: block;
  }

  [class*="_d-md-inline-flex"] {
    display: inline-flex;
  }

  [class*="_d-md-inline"] {
    display: inline;
  }

  [class*="_d-md-inline-block"] {
    display: inline-block;
  }

  [class*="_d-md-none"] {
    display: none;
  }

  .gm_mb-120 {
    margin-bottom: 82px;
  }

  .gm_mb-160 {
    margin-bottom: 120px;
  }

  .gm_mb-200 {
    margin-bottom: 160px;
  }

  .gm_mb-240 {
    margin-bottom: 180px;
  }

  .gm_pb-20 {
    padding-bottom: 16px;
  }

  .gm_pb-160 {
    padding-bottom: 130px !important;
  }

  .gm_pb-200 {
    padding-bottom: 160px;
  }

  .pb-240 {
    padding-bottom: 190px;
  }

  .b-header {
    flex-direction: column;
    align-items: initial;
  }

  .b-header__logo-and-location {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 16px 15px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .b-header__location {
    display: none;
  }

  .b-header__rates {
    display: block;
  }

  .b-header__location_md-block {
    display: flex;
    justify-content: left;
    margin-bottom: 20px;
  }

  .b-header__search-and-profile-and-chat-and-burger-menu {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    background-color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .b-header__search-button {
    display: none;
  }

  .b-header__search-button_md {
    display: flex;
    width: 100%;
  }

  .b-header__search-profile {
    width: 100%;
  }

  .b-header__burger-menu {
    display: block;
  }

  .b-main__inner {
    width: 500px;
  }

  .b-page__header-inner {
    width: 500px;
  }

  .b-page__header-inner_secondary .b-header-secondary,
  .b-page__header-inner_secondary .b-header-secondary__category-and-menu,
  .b-page__header-inner_secondary .b-header-secondary__coin {
    display: none;
  }

  .b-page__header-inner_primary-header {
    background-color: #EBEEF0;
    padding: 0;
  }

  .b-page__footer-inner {
    width: 500px;
  }

  .b-about-company {
    flex-direction: column;
  }

  .b-about-company__logo-and-menu {
    flex-direction: column;
  }

  .b-about-company__menu {
    margin-left: 10px;
  }

  .b-about-company__logo {
    min-width: 100px;
    height: 100px;
    width: 100px;
    margin-top: -18px;
  }

  .b-about-company__logo-img {
    max-height: 40px;
    max-width: 40px;
  }

  .b-about-company__buttons {
    margin-left: 0px;
    width: 100%;
    justify-content: space-between;
  }

  .b-about-company__button {
    width: 100%;
  }

  .b-button-lg {
    flex-direction: column;
  }

  .b-button-lg__right {
    margin-right: 10px;
  }

  .b-button-md {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .b-button-md__text {
    display: none;
  }

  .b-button-rates {
    padding: 16px 20px 16px 20px;
    border-radius: 8px;
    margin-bottom: 4px;
    justify-content: space-between;
  }

  .b-button-rates__left {
    flex-direction: row;
    gap: 7px;
  }

  .b-button-rates__right {
    flex-direction: row;
    gap: 13px;
  }

  .b-button-tab {
    border-radius: 8px;
    padding: 8px 8px;
  }

  .b-button-tab__left {
    gap: 15px;
  }

  .b-button-tab__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }

  .b-button-tab__right-item-order {
    padding: 8px 10px;
  }

  .b-button_bg {
    width: 100%;
    padding: 12px;
  }

  .b-card-field__left {
    flex-direction: column;
    align-items: initial;
  }

  .b-card-field__right {
    flex-direction: column;
    align-items: initial;
  }

  .b-card-lg-secondary {
    width: 100%;
  }

  .b-card-lg {
    border-radius: 8px;
  }

  .b-card-lg__inner {
    padding: 16px;
  }

  .b-card-lg__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .b-card-lg__left {
    max-width: 100%;
  }

  .b-card-lg__right {
    max-width: 100%;
  }

  .b-card-md-secondary__left-balance {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }

  .b-card-md {
    padding: 12px;
    flex-direction: column;
    position: relative;
  }

  .b-card-md__left-text {
    max-width: 75%;
  }

  .b-card-md__right {
    position: absolute;
    right: 12px;
  }

  .b-card-message__top {
    flex-direction: column !important;
    align-items: initial;
  }

  .b-card-message__left {
    width: 41px;
    height: 41px;
    min-width: 41px;
    border-radius: 8px;
  }

  .b-card-message__left-img {
    width: 41px;
    height: 41px;
    min-width: 41px;
    border-radius: 8px;
  }

  .b-card-message__right {
    border-radius: 8px 8px 8px 0px;
    padding: 12px;
  }

  .b-card-message__right-top_none-md {
    display: none;
  }

  .b-card-message__title-and-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .b-card-message__right-title {
    font-family: Unbounded;
    font-size: 13px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .b-card-message__right-tag {
    font-family: Inter;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .b-card-message__data {
    font-size: 13px;
  }

  .b-card-primary {
    flex-direction: column;
    gap: 12px;
  }

  .b-card-primary_chat {
    padding: 12px 18px;
    flex-direction: row-reverse;
  }

  .b-card-primary_chat .b-card-primary__left {
    width: 100%;
    justify-content: space-between;
  }

  .b-card-primary__left-img-and-text {
    gap: 10px;
  }

  .b-card-xl-primary__icon-and-title_width {
    align-items: flex-start;
  }

  .b-card-xl-primary__item-top {
    white-space: nowrap;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 340px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 340px;
  }

  .b-card-xl {
    padding: 8px 14px;
  }

  .b-card-xl__right {
    flex-direction: column;
    align-items: initial;
    gap: 20px;
  }

  .b-card-xxl-primary {
    border-right: 8px;
  }

  .b-card-xxl {
    border-right: 8px;
    padding: 12px;
  }

  .b-card-xxl__inner {
    flex-direction: column;
    gap: 20px;
  }

  .b-card-xxl__title {
    margin-top: 15px;
  }

  .b-card__main_cat {
    padding: 10px;
  }

  .b-card-message__left-main {
    gap: 8px;
  }

  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 84%;
  }

  .b-cards__top {
    gap: 12px;
    flex-direction: column;
    align-items: initial;
  }

  .b-cards__button {
    display: none;
  }

  .b-cards__button_block {
    display: block !important;
  }

  .b-cards__button_md {
    margin-top: 40px;
    display: block;
  }

  .b-cards__item {
    max-width: 100%;
  }

  .b-categories-sm__title {
    margin-bottom: 0px;
    font-family: Unbounded;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-categories-sm__tag {
    margin-bottom: 12px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .b-categories-sm__item {
    margin-bottom: 12px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: -0.02em;
    text-align: left;
    transition: 300ms;
  }

  .b-content ul,
  .b-content ol {
    padding-bottom: 10px;
  }

  .b-content aside {
    margin-bottom: 25px;
  }

  .b-gallery {
    height: 350px;
    border-radius: 8px;
  }

  .b-gallery__image-big {
    max-width: 500px;
    max-height: 400px;
    border-radius: 8px;
  }

  .b-field__select {
    font-family: Unbounded;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-field__submit {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }

  .b-form {
    min-width: 100%;
    padding: 18px;
    border-radius: 12px;
  }

  .b-label_rel {
    padding: 16px;
  }

  .b-label_rel .b-label__img {
    min-width: 15px;
  }

  .b-label_rel .b-label__img-blue data-changeable-element {
    min-width: 15px;
  }

  .b-label_rel .b-label__img-mark {
    min-width: 15px;
  }

  .b-menu-secondary ul {
    flex-direction: column;
    gap: 7px;
  }

  .b-messages {
    gap: 20px;
  }

  .b-messages__item_right .b-card-message__top {
    align-items: end;
  }

  .b-messages__item_right .b-card-message__right {
    border-radius: 8px 8px 0px 8px;
    padding: 12px;
  }

  .b-modal-location__inner {
    width: 500px;
    flex-direction: column;
  }

  .b-modal-location__button_block-md {
    margin-top: 20px;
    display: block;
  }

  .b-modal-location__button_none-md {
    display: none;
  }

  .b-modal-location__bottom {
    background-color: #FFFFFF;
  }

  .b-modal-location__countries {
    width: 100%;
  }

  .b-modal-location__country.b-tab-active-nav-item {
    background-color: #EBEEF0;
  }

  .b-modal-location__cities {
    width: 100%;
  }

  .b-modal-location__city_active {
    background-color: #EBEEF0 !important;
  }

  .b-modal-location__countries_display-none {
    display: none;
  }

  .b-modal-location__countries_display-block {
    display: block;
  }

  .b-modal-profile {
    position: relative;
    top: initial;
    right: initial;
  }

  .b-modal-profile__inner {
    border-radius: initial;
    padding: 12px 0;
    min-width: initial;
    border: initial;
    width: 100%;
  }

  .b-modal-profile__item {
    padding-left: 0;
    width: 100%;
  }

  .b-modal-store__inner {
    width: 500px;
    flex-direction: column;
  }

  .b-modal-store__left {
    width: 100%;
  }

  .b-modal-store__right {
    width: 100%;
    padding: 18px;
  }

  .b-modal-store__title-and-button {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .b-modal-store__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28.4px;
  }

  .b-modal-store__buttons-bottom {
    flex-direction: column;
  }

  .b-modal-warning__inner {
    width: 500px;
    flex-direction: column;
  }

  .b-modal-warning__button_block-md {
    margin-top: 20px;
    display: block;
  }

  .b-modal-warning__button_none-md {
    display: none;
  }

  .b-modal-warning__bottom {
    padding: 22px 14px;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
  }

  .b-modal-warning__bottom {
    background-color: #FFFFFF;
  }

  .pagination .page-item .page-item-img {
    margin-left: 16px;
  }

  .pagination .page-item .page-item-img-reverse {
    margin-right: 18px;
  }

  .b-profile-button {
    /* justify-content: center; */
    gap: 12px;
  }

  .b-profile-button__icon {
    width: 24px;
    height: 24px;
  }

  .b-profile-button__text {
    gap: 12px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .b-profile-button__name {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .b-profile-button__name-arrow {
    display: block;
  }

  .b-profile-button__button {
    display: none;
  }

  .b-profile-tabs__item.b-tab-active-nav-item {
    border-radius: 8px;
  }

  .b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__right-img {
    display: block;
  }

  .b-profile-tabs__item.b-tab-active-nav-item .b-button-tab__text {
    color: white !important;
  }

  .b-profile-tabs__item.b-tab-active-nav-item {
    border-radius: 8px;
  }

  .b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__img {
    border-radius: 8px;
    max-height: 42px;
    max-width: 42px;
  }

  .b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat {
    border-radius: 8px;
  }

  .b-profile-tabs__item.b-tab-active-nav-item.b-profile-tabs__item_chat .b-button-tab__right-item-order {
    display: none;
  }

  .b-button-tab__img-wrapper {
    width: 42px;
    height: 42px;
    max-height: 42px;
    max-width: 42px;
  }

  .b-review-about {
    padding: 16px 15px;
    border-radius: 8px;
  }

  .b-review {
    flex-direction: column;
    padding: 24px 24px;
    padding-bottom: 0px;
    gap: 28px;
  }

  .b-review__right-grade {
    position: absolute;
    top: 24px;
    right: 27px;
  }

  .b-search {
    width: 100%;
    
    border-radius: 8px;
  }

  .b-search__text {
    display: block;
    padding: 16px 20px;
    background-color: #FFFFFF;
  }

  .b-search__icon {
    margin-top: 7px !important;
  }

  .b-table tr td {
    font-size: 15px;
  }

  .b-wrapper-for-burger-menu__inner {
    width: 500px;
  }

  .b-wrapper-for-burger-menu__profile {
    max-width: 500px;
  }

  .b-company {
    border-radius: 8px;
  }

  .b-company__top-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .b-company__top-inner {
    border-radius: 8px;
  }

  .b-company__top-img {
    max-height: 130px;
    max-width: 180px;
  }

  .b-company__bottom {
    max-height: 100%;
  }

  .b-order-type__top {
    flex-direction: column;
    align-items: initial;
  }

  .b-order-type__top-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .b-post__video {
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .b-product__prise {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
  }

  .b-reviews__right_bg-light {
    padding-left: 15px;
    border-radius: 8px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 600px) {

  .b-card-md__center-bottom {
  display: block;
  gap: 16px;
  margin-top: 10px;
}

.b-card-md__center-top {
margin-top: -8px;
}

.b-card-md__left-text {
  margin-top: 10px;
}

.dropshopmenu .header_btn2 {
  justify-content: center;
}


.header_btn2 {
  justify-content: center;
}

  .b-header__search-button {
  position: relative;
  left: 0px !important;
  width: auto !important;
  margin-left: 45px;
    margin-right: -45px;
}

  [class*="__container"] {
    max-width: 400px;
    padding-left: 20px;
    padding-right: 20px;
  }

  [class*="__row"] {
    margin: -10px;
    width: calc(100% + 20px);
  }

  .b-col_12,
  [class*="__col_12"] {
    padding: 10px;
  }

  .b-col_11,
  [class*="__col_11"] {
    padding: 10px;
  }

  .b-col_10,
  [class*="__col_10"] {
    padding: 10px;
  }

  .b-col_9,
  [class*="__col_9"] {
    padding: 10px;
  }

  .b-col_8,
  [class*="__col_8"] {
    padding: 10px;
  }

  .b-col_7,
  [class*="__col_7"] {
    padding: 10px;
  }

  .b-col_6,
  [class*="__col_6"] {
    padding: 10px;
  }

  .b-col_5,
  [class*="__col_5"] {
    padding: 10px;
  }

  .b-col_4,
  [class*="__col_4"] {
    padding: 10px;
  }

  .b-col_3,
  [class*="__col_3"] {
    padding: 10px;
  }

  .b-col_2,
  [class*="__col_2"] {
    padding: 10px;
  }

  .b-col_1,
  [class*="__col_1"] {
    padding: 10px;
  }

  .b-col_sm-12,
  [class*="__col_sm-12"] {
    max-width: 100%;
  }

  .b-col_sm-11,
  [class*="__col_sm-11"] {
    max-width: 91.66667%;
  }

  .b-col_sm-10,
  [class*="__col_sm-10"] {
    max-width: 83.33333%;
  }

  .b-col_sm-9,
  [class*="__col_sm-9"] {
    max-width: 75%;
  }

  .b-col_sm-8,
  [class*="__col_sm-8"] {
    max-width: 66.66667%;
  }

  .b-col_sm-7,
  [class*="__col_sm-7"] {
    max-width: 58.33333%;
  }

  .b-col_sm-6,
  [class*="__col_sm-6"] {
    max-width: 50%;
  }

  .b-col_sm-5,
  [class*="__col_sm-5"] {
    max-width: 41.66667%;
  }

  .b-col_sm-4,
  [class*="__col_sm-4"] {
    max-width: 33.33333%;
  }

  .b-col_sm-3,
  [class*="__col_sm-3"] {
    max-width: 25%;
  }

  .b-col_sm-2,
  [class*="__col_sm-2"] {
    max-width: 16.66667%;
  }

  .b-col_sm-1,
  [class*="__col_sm-1"] {
    max-width: 8.33333%;
  }

  [class*="_d-sm-flex"] {
    display: flex;
  }

  [class*="_d-sm-block"] {
    display: block;
  }

  [class*="_d-sm-inline-flex"] {
    display: inline-flex;
  }

  [class*="_d-sm-inline"] {
    display: inline;
  }

  [class*="_d-sm-inline-block"] {
    display: inline-block;
  }

  [class*="_d-sm-none"] {
    display: none;
  }

  .gm_mb-20 {
    margin-bottom: 10px;
  }

  .gm_mb-40 {
    margin-bottom: 25px;
  }

  .gm_mb-50 {
    margin-bottom: 30px;
  }

  .gm_mb-60 {
    margin-bottom: 30px;
  }

  .gm_pb-40 {
    padding-bottom: 30px;
  }

  .gm_pb-80 {
    padding-bottom: 60px;
  }

  .b-main__section_bg-logo-xxl {
    background-size: 200%;
    background-position: center 0;
  }

  .b-main__inner {
    width: 90%;
  }

  .b-page__header-inner {
    width: 90%;
  }

  .b-page__footer-inner {
    width: 90%;
    margin-bottom: 20px;
  }

  .b-card-xl-primary__icon-and-title {
    flex-direction: column;
    width: 100%;
  }

  .b-card-xl-primary__icon {
    width: 100%;
    height: 100%;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 310px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 340px;
  }

  .b-card-xl__amount-and-prise {
    flex-direction: column;
    gap: 10px;
  }

  .b-cards__title {
    font-family: Unbounded;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
  }

  .b-contacts-form_light-color .b-contacts-form__text-bold {
    font-size: 15px;
    line-height: 23.6px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin {
    font-size: 15px;
    line-height: 23.6px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin-underline {
    font-size: 15px;
    line-height: 23.6px;
  }

  .b-contacts-form__text-bold {
    font-size: 20px;
    line-height: 31px;
  }

  .b-contacts-form__text-thin {
    font-size: 20px;
    line-height: 32px;
  }

  .b-contacts-form__text-thin-underline {
    font-size: 20px;
    line-height: 32px;
  }

  .b-content h1 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .b-content h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .b-content h3 {
    margin-bottom: 24px;
  }

  .b-content h4 {
    margin-bottom: 15px;
  }

  .b-content h5 {
    margin-bottom: 15px;
  }

  .b-content h6 {
    margin-bottom: 15px;
  }

  .b-content img {
    margin-bottom: 24px;
  }

  .b-content ul li,
  .b-content ol li {
    margin-bottom: 10px;
  }

  .slick-prev,
  .slick-next,
  .slick-prev:hover,
  .slick-next:hover,
  .slick-prev:active,
  .slick-next:active,
  .slick-prev:visited,
  .slick-next:visited,
  .slick-prev:focus,
  .slick-next:focus {
    width: 35px;
    height: 35px;
  }

  .slick-prev,
  .slick-prev:hover,
  .slick-prev:active,
  .slick-prev:visited,
  .slick-prev:focus {
    left: 10px;
  }

  .slick-next,
  .slick-next:hover,
  .slick-next:active,
  .slick-next:visited,
  .slick-next:focus {
    right: 10px;
  }

  .b-field__input_pl62 {
    padding-left: 48px;
  }

  .b-field__icon:after {
    width: 16px;
    height: 16px;
    left: 18px;
  }

  .b-field__checkbox-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 22.6px;
  }

  .b-field__checkbox-text:before {
    width: 26px;
    height: 26px;
    margin-right: 14px;
  }

  .b-logo {
    max-width: 96px;
  }

  .b-modal-location__inner {
    width: 90%;
  }

  .b-modal-store__inner {
    width: 90%;
  }

  .b-modal-warning__inner {
    width: 90%;
  }

  .b-video__elem-post {
    height: 200px;
  }

  .b-wrapper-for-burger-menu__inner {
    width: 90%;
  }

  .b-wrapper-for-burger-menu__button {
    display: flex;
  }

  .b-reviews__right-button {
    margin-top: 20px;
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  [class*="__container"] {
    max-width: 420px;
  }

  .b-col_xs-12,
  [class*="__col_xs-12"] {
    max-width: 100%;
  }

  .b-col_xs-11,
  [class*="__col_xs-11"] {
    max-width: 91.66667%;
  }

  .b-col_xs-10,
  [class*="__col_xs-10"] {
    max-width: 83.33333%;
  }

  .b-col_xs-9,
  [class*="__col_xs-9"] {
    max-width: 75%;
  }

  .b-col_xs-8,
  [class*="__col_xs-8"] {
    max-width: 66.66667%;
  }

  .b-col_xs-7,
  [class*="__col_xs-7"] {
    max-width: 58.33333%;
  }

  .b-col_xs-6,
  [class*="__col_xs-6"] {
    max-width: 50%;
  }

  .b-col_xs-5,
  [class*="__col_xs-5"] {
    max-width: 41.66667%;
  }

  .b-col_xs-4,
  [class*="__col_xs-4"] {
    max-width: 33.33333%;
  }

  .b-col_xs-3,
  [class*="__col_xs-3"] {
    max-width: 25%;
  }

  .b-col_xs-2,
  [class*="__col_xs-2"] {
    max-width: 16.66667%;
  }

  .b-col_xs-1,
  [class*="__col_xs-1"] {
    max-width: 8.33333%;
  }

  [class*="_d-xs-flex"] {
    display: flex;
  }

  [class*="_d-xs-block"] {
    display: block;
  }

  [class*="_d-xs-inline-flex"] {
    display: inline-flex;
  }

  [class*="_d-xs-inline"] {
    display: inline;
  }

  [class*="_d-xs-inline-block"] {
    display: inline-block;
  }

  [class*="_d-xs-none"] {
    display: none;
  }

  .gm_mb-70 {
    margin-bottom: 35px;
  }

  .gm_mb-80 {
    margin-bottom: 40px;
  }

  .gm_mb-120 {
    margin-bottom: 75px;
  }

  .gm_mb-160 {
    margin-bottom: 100px;
  }

  .gm_mb-200 {
    margin-bottom: 120px;
  }

  .gm_mb-240 {
    margin-bottom: 140px;
  }

  .gm_pb-30 {
    padding-bottom: 20px;
  }

  .gm_pb-160 {
    padding-bottom: 100px !important;
  }

  .gm_pb-200 {
    padding-bottom: 120px;
  }

  .pb-240 {
    padding-bottom: 120px;
  }

  .b-main__inner {
    width: 90%;
  }

  .b-page__header-inner {
    width: 90%;
  }

  .b-page__footer-inner {
    width: 90%;
  }

  .b-button {
    border-radius: 8px;
  }

  .b-card-xl-primary__item-bottom {
    max-width: 260px;
  }

  .b-card-xl-primary__item-bottom_width {
    max-width: 296px;
  }

  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 29ch;
  }

  .b-contacts-form_light-color .b-contacts-form__text-bold {
    font-size: 14.5px;
    line-height: 23px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin {
    font-size: 14.5px;
    line-height: 23px;
  }

  .b-contacts-form_light-color .b-contacts-form__text-thin-underline {
    font-size: 14.5px;
    line-height: 23px;
  }

  .b-contacts-form__text-bold {
    font-size: 19px;
    line-height: 30px;
  }

  .b-contacts-form__text-thin {
    font-size: 19px;
    line-height: 30px;
  }

  .b-contacts-form__text-thin-underline {
    font-size: 19px;
    line-height: 30px;
  }

  .b-gallery {
    max-height: 240px;
    max-width: 350px;
  }

  .b-gallery__image-big {
    max-width: 350px;
    max-height: 240px;
    height: 100%;
    padding: 0;
  }

  .b-field__select {
    max-width: 200px;
  }

  .b-field__custom-checkbox {
    font-size: 4.37vw;
  }

  .b-footer-menu ul {
    gap: 12px;
  }

  .b-footer-menu ul li {
    font-size: 14px;
  }

  .b-modal-location__inner {
    width: 90%;
  }

  .b-modal-store__inner {
    width: 90%;
  }

  .b-modal-warning__inner {
    margin-left: 4px;
  margin-right: 40px;
    width: 90%;
  }

  .b-wrapper-for-burger-menu__inner {
    width: 90%;
  }

  .b-company__top-img {
    max-height: 100px;
    max-width: 140px;
  }

  .b-post__table {
    margin-bottom: 25px;
    margin-top: 25px;
  }
}

@media (max-width: 376px) {
  .b-card__locations-short {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_sm {
    width: calc(100% - 55px);
  }

  .b-card__locations-short_xl {
    width: 28ch;
  }
}

@media (max-width: 360px) {
  .b-modal-location {
    height: 100%;
  }

  .b-modal-store {
    height: 100%;
  }

  .b-modal-warning {
    height: 100%;
  }

  .b-wrapper-for-burger-menu {
    height: 222vh;
    min-height: 103vh;
  }
}

@media screen and (max-width: 1000px) {
  .b-card-xl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    align-items: stretch;
  }

  .b-card-xl__left {
    font-size: 14px;
    line-height: 20px;
    gap: 8px;
  }

  .b-card-xl__left span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }

  .b-card-xl__amount,
  .b-card-xl__prise {
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .b-card-xl__amount:last-of-type,
  .b-card-xl__prise:last-of-type {
    border-bottom: none;
  }

  .b-card-xl__text-sm {
    font-size: 12px;
    line-height: 18px;
  }

  .b-card-xl__text-lg {
    font-size: 13px;
    line-height: 18px;
  }

  .b-card-xl__text-sm-opacity {
    font-size: 12px;
    line-height: 18px;
  }

  .b-card-xl__button {
    margin-top: 8px;
    align-self: stretch;
  }

  .b-card-xl__button .b-button-md-2 {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  .b-card-xl .price-container {
    text-align: right;
  }

  .b-card-xl .original-price,
  .b-card-xl .discounted-price {
    font-size: 11px;
    line-height: 14px;
  }

  .fasovka-scroll-container {
    max-height: 500px !important;
  }
}

@media screen and (max-width: 780px) {
  .onecat {
    pointer-events: none;
  }
}

@media screen and (max-width: 480px) {
  .b-card-xl {
    padding: 8px 12px;
    gap: 8px;
  }

  .b-card-xl__left {
    font-size: 13px;
    line-height: 18px;
    gap: 6px;
  }

  .b-card-xl__text-sm {
    font-size: 11px;
    line-height: 16px;
  }

  .b-card-xl__text-lg {
    font-size: 12px;
    line-height: 16px;
  }

  .b-card-xl__button .b-button-md-2 {
    padding: 10px 12px;
    font-size: 13px;
  }

  .fasovka-scroll-container {
    max-height: 400px !important;
  }

  .b-card-message__right-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  }
}

.b-profile-tabs2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  scrollbar-width: thin !important;
  scrollbar-color: #ccc transparent !important;
  overflow-y: auto;
  max-height: 700px;
}

@media (max-width: 850px) {
  .b-profile-tabs2 {
    max-height: 260px !important;
  }
}

#id_body {
  scrollbar-width: thin !important;
  scrollbar-color: #ccc transparent !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

footer { min-width: 375px; }
/*# sourceMappingURL=main.css.map */
