@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

#content {
  flex: 1;
}

.svg {
  position: relative;
  top: 2px;
  outline: none;
}

.container {
  width: 100% !important;
  padding: 0 !important;
  position: relative;
}

.flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.breadcrumb_list {
  list-style: none;
}

.breadcrumb {
  font-size: 15px;
  opacity: 0.8;
  display: inline;
}

.delimiter {
  margin: 0 5px;
  opacity: 0.8;
}

.col-4 {
  width: 33.3333333333%;
}

.col-3 {
  width: 25%;
}

img {
  vertical-align: middle;
}

h1 {
  font-weight: 600;
}

a {
  text-decoration: none;
  line-height: 1.5;
  color: black;
}

h3 {
  color: white;
}

.max_width {
  margin: 0 auto;
  max-width: 1408px;
  padding: 0 20px;
}

.header_content {
  position: relative;
  border-bottom: 1px solid;
}

.header_main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 20px;
  align-items: center;
}

.text-url {
  color: #198CCF;
}
.text-url:hover {
  color: #09529a;
  text-decoration: underline;
}

.hamburger {
  width: 28px;
  background-color: white;
  border: none;
}

.header_search_area {
  width: 49%;
}

.header_search {
  width: 100%;
  height: 100%;
}
.header_search form {
  height: 60%;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.header_search form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  background: #ede6f0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  color: black;
}
.header_search form input {
  font-size: 14px;
  width: 94.5%;
  height: 42px;
  padding-left: 10px;
  border: 2px solid #ede6f0;
  border-radius: 5px;
  outline: none;
  background: #ede6f0;
  color: black;
}

.header_logo img {
  height: 80px;
  width: 200px;
  object-fit: cover;
}

.hidden {
  display: none;
}

.mobile_search {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 81px;
  width: 100%;
  background-color: white; /* or another color that fits your design */
  padding: 25px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile_search input {
  width: 96.5% !important;
}
.mobile_search .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: white;
  width: 25px;
  height: 25px;
}
.mobile_search .close-btn svg {
  background-color: white;
}
.mobile_search form {
  padding-top: 5px;
  width: 95%;
}
.mobile_search form button {
  top: 5px;
}

.header_number a {
  font-size: 18px;
}
.header_number a:hover {
  color: #bc46bc;
}
.header_number a .phone_icon {
  display: none;
}

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

.header_controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.header_controls a {
  text-align: center;
  height: 30px;
  width: 30px;
  margin-left: 25px;
  font-size: 20px;
}
.header_controls .search {
  display: none;
}

.header_bottom {
  height: 50px;
}
.header_bottom .header_bottom_inner {
  border-top: 1px black solid;
  height: 100%;
  display: flex;
  align-items: center;
}
.header_bottom .header_bottom_inner .nav_item {
  margin: 0 auto;
}
.header_bottom .header_bottom_inner .nav_item a.nav_item_name {
  padding: 16.5px;
}
.header_bottom .header_bottom_inner .nav_item a.catalog {
  padding: 16.5px 0;
  position: relative;
}
.header_bottom .header_bottom_inner .nav_item .nav_catalog {
  display: inline;
}

.dropdown_content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.dropp {
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.76);
  position: relative;
  overflow-y: auto;
  list-style: none;
  display: none;
  z-index: 9999;
  background-color: white;
}

.item_header .item_name {
  display: block;
  padding: 8px;
}
.item_header .item_name:hover {
  color: white;
  background-color: #91187e;
}

.dimmed {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.item_submenu .subcategory {
  transition: all 0.2s ease;
  transform-origin: left;
  list-style: none;
}
.item_submenu .subcategory_name {
  display: inline-block;
  font-size: 1em;
}
.item_submenu .subcategory:hover {
  transform: scale(1.05);
}

footer {
  background-color: #e7e1e8;
}
footer .footer_header {
  padding: 40px 0;
}
footer .footer_header .row {
  display: flex;
  flex-wrap: wrap;
}
footer .footer_header .row .col-12 {
  flex: 0 0 100%;
}
footer .footer_header .row .col-12 .col-6 {
  flex: 0 0 25%;
}
footer .footer_header .row .col-12 .col-6 .footer_info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer_header .row .col-12 .col-6 .footer_menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer_header .row .col-12 .col-6 .footer_menu a {
  color: #f2f5f0;
  transition: all 0.3s ease;
}
footer .footer_header .row .col-12 .col-6 .footer_menu a:hover {
  color: white; /* Яркий цвет */
  transform: scale(1.15); /* Чуть больше размер */
}

.page_top #breadcrumbs {
  margin-top: 35px;
}

.topic {
  padding: 15px 0;
}

.page_content {
  padding-bottom: 35px;
}

.catalog_item {
  border: 1px solid #ececec;
  margin: 0 0 -1px -1px;
  transition: box-shadow 0.6s ease;
}
.catalog_item .item_section {
  padding: 30px;
}
.catalog_item .item_section .cat_image {
  width: 80px;
}
.catalog_item .item_section .cat_image img {
  height: 60px;
  width: 60px;
  border-radius: 30%;
}
.catalog_item .item_section .cat_names {
  padding-left: 20px;
}
.catalog_item .item_section .cat_names .parent_category {
  font-size: 16px;
  font-weight: 500;
}
.catalog_item .item_section .cat_names .parent_category a:hover {
  color: #91187e;
}
.catalog_item .item_section .cat_names li {
  font-size: 14px;
  font-weight: 400;
}
.catalog_item .item_section .cat_names li a:hover {
  color: #91187e;
}

.catalog_item:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.top_block {
  margin-bottom: 15px;
}
.top_block .item_section {
  display: flex;
  align-items: center;
}
.top_block .item_section .cat_image {
  flex: 0 0 22%;
  width: 50px !important;
  height: 50px;
}
.top_block .item_section .cat_image img {
  width: 50px !important;
  height: 50px !important;
}
.top_block .item_section .cat_name {
  flex: 0 0 75%;
  padding-left: 20px;
}
.top_block .item_section .cat_name a:hover {
  color: #91187e;
}

.new-year .right_block {
  width: auto !important;
}

.product_catalog .left_block {
  width: 20%;
}
.product_catalog .right_block {
  width: 75%;
  margin-left: auto;
}
.product_catalog .right_block .product_item {
  width: calc(33.33333% - 20px);
  margin: 10px;
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: 0.6s;
}
.product_catalog .right_block .product_item .product_image_container {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.product_catalog .right_block .product_item .product_image_container .product_image {
  transition: transform 0.6s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_catalog .right_block .product_item .product_bottom {
  border-top: 1px solid #f9f9f9;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  line-height: 18px;
}
.product_catalog .right_block .product_item .product_bottom .product_title {
  height: 80px;
  font-size: 14px;
  color: #91187e;
}
.product_catalog .right_block .product_item .product_bottom .product_to_cart_container {
  margin-top: 10px;
}
.product_catalog .right_block .product_item .product_bottom .product_to_cart_container .product_to_cart {
  padding: 9px;
  color: black;
  border: 1px solid black;
  font-size: 13px;
  border-radius: 10px;
  text-align: center;
  background-color: white;
  font-weight: 500;
  display: block;
  width: 100px;
}
.product_catalog .right_block .product_item .product_bottom .product_to_cart_container .product_to_cart:hover {
  cursor: pointer;
  background-color: rgba(169, 46, 135, 0.431372549);
}

.product-price {
  font-weight: 500;
}
.product-price .without_disc {
  opacity: 0.7;
  float: left;
  text-decoration: line-through;
  margin-right: 0.5em;
}

.product_item:hover .product_image {
  transform: scale(1.1);
}

.product_item:hover {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.36) !important;
}

.mobile_menu {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 2;
  background: white;
  top: 81px;
  transition: 0.6s;
}
.mobile_menu .mobile_container li {
  border-bottom: 1px solid #ececec;
}
.mobile_menu .mobile_container li a {
  padding: 20px;
  display: block;
  width: 100%;
}
.mobile_menu .mobile_container li .mobile-bottom__item svg {
  margin-right: 10px;
}

#mobile-close {
  display: none;
}

.category_menu {
  background-color: #f8f8f9;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.category_menu .cat_container, .category_menu .sub_cat_container {
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.category_menu .cat_container::before, .category_menu .sub_cat_container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #991680;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.category_menu .cat_container:hover, .category_menu .sub_cat_container:hover {
  background-color: white; /* Задайте цвет фона при наведении */
  color: #991680; /* Цвет текста при наведении */
}
.category_menu .cat_container:hover::before, .category_menu .sub_cat_container:hover::before {
  transform: scaleY(1); /* Показываем элемент при наведении */
}
.category_menu .active {
  background-color: #991680 !important;
  color: white !important;
}
.category_menu .parent_category {
  border-bottom: 1px solid #f2f2f2;
}
.category_menu .cat_container {
  padding: 10px;
}
.category_menu .subcategory .sub_cat_container {
  padding: 10px 10px 10px 20px;
  font-size: 14px;
}

.filter-form {
  margin: 20px auto;
  padding: 20px;
  background-color: #f8f8f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-form input[type=number], .filter-form input[type=range] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.filter-form .range-slider {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

.filter-form input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  pointer-events: none;
  position: absolute;
}

.filter-form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #991680;
  border-radius: 50%;
  cursor: grab;
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.filter-form input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgba(169, 46, 135, 0.431372549);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.filter-form button {
  padding: 10px 20px;
  color: black;
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 auto;
}

.filter-form button:hover {
  background-color: rgba(169, 46, 135, 0.431372549);
  color: white;
}

.filter-input-container {
  width: 100%;
  margin-top: 10px;
}
.filter-input-container .filter-input {
  width: 50%;
}
.filter-input-container .filter-input:first-child {
  margin-right: 5px;
}
.filter-input-container .filter-input input {
  width: 100%;
  padding: 10px;
}

.product-sku {
  font-size: 14px;
  color: #4f4d4d;
  text-align: right;
}

.slider-container:hover .prev, .slider-container:hover .next {
  display: block; /* Show buttons on hover */
  background-color: #ffa9ff;
  opacity: 1;
}

.product-container {
  border: 1px solid #ececec;
  padding: 4em 4em 1em 4em;
  /* Position the "next button" to the right */
  /* Number text (1/3 etc) */
  /* Container for image text */
  /* Six columns side by side */
  /* Add a transparency effect for thumnbail images */
}
.product-container .left-block {
  width: 50%;
}
.product-container .left-block .product-photos .sliders-container {
  margin-bottom: 20px;
  width: 80%;
}
.product-container .left-block .product-photos .sliders-container .slider-container {
  position: relative;
}
.product-container .right-block {
  width: 50%;
}
.product-container .right-block .product-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ececec;
  justify-content: space-between;
}
.product-container .right-block .product-header .product-name {
  font-weight: 600;
  font-size: 16px;
  color: #4f4d4d;
}
.product-container .right-block .product-bottom .product-price {
  font-size: 26px;
}
.product-container .right-block .product-bottom .product-availability {
  margin: 15px 0;
}
.product-container .right-block .product-bottom .product-cart {
  align-items: center;
}
.product-container .right-block .product-bottom .product-cart input {
  padding: 10px;
  width: 60px;
  margin-right: 5px;
  outline: none;
}
.product-container .right-block .product-bottom .product-cart .add-to-cart {
  padding: 10px;
  background-color: white;
  border: 1px solid;
  border-radius: 10px;
  font-weight: 500;
  white-space: nowrap;
  font-size: 13px;
}
.product-container .right-block .product-bottom .product-cart .add-to-cart:hover {
  background-color: rgba(169, 46, 135, 0.431372549);
  cursor: pointer;
}
.product-container .right-block .product-bottom .product-description {
  margin: 20px 0;
}
.product-container .right-block .product-bottom .product-description .description-title {
  margin: 40px 0;
  font-weight: 500;
  font-size: 18px;
}
.product-container .mySlides {
  display: none;
}
.product-container .mySlides img:hover {
  cursor: pointer;
}
.product-container .cursor {
  cursor: pointer;
}
.product-container .prev,
.product-container .next {
  transition: opacity 0.7s ease;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 100%;
  user-select: none;
  -webkit-user-select: none;
}
.product-container .next {
  right: 0;
}
.product-container .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.product-container .caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}
.product-container .miniatures {
  margin-top: 10px;
}
.product-container .miniatures:after {
  content: "";
  display: table;
  clear: both;
}
.product-container .column {
  float: left;
  width: 16.66%;
}
.product-container .demo {
  opacity: 0.6;
}
.product-container .active,
.product-container .demo:hover {
  opacity: 1;
}

/* Стиль модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.user_cart {
  position: relative;
}
.user_cart span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-width: 18px;
  height: 18px;
  background-color: #ed41c8;
  align-content: center;
  border-radius: 50px;
  top: -8px;
  right: -14px;
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.product-more {
  margin-top: 20px;
}
.product-more #description img {
  width: 100%;
  height: 100%;
}

.clear-story {
  font-weight: 500;
  font-size: 18px;
}

.tab-link {
  background-color: #fafafa;
  border: 1px solid #ececec;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: background-color 0.3s;
  margin-right: 10px;
}

.tab-link:hover {
  background-color: white;
}

.tab-link.active {
  background-color: white;
  border-top: 2px solid rgba(169, 46, 135, 0.431372549);
}

.tab-content {
  padding-top: 20px;
  display: none;
}

.catalog-description {
  margin-bottom: 10px;
}
.catalog-description span {
  font-weight: 600;
}

.tab-content .description-title,
.tab-content .details-title {
  margin-bottom: 10px;
}

.pagination {
  justify-content: center;
}
.pagination .page-item a {
  display: block;
  border: 1px solid #ececec;
  margin-left: -1px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
}
.pagination .active {
  background-color: #91187e;
}
.pagination .active a {
  color: white;
}

.image-container {
  position: relative;
  width: 100%;
}
.image-container img {
  width: 100%;
}

.new-year__subcategory {
  margin-bottom: 30px;
}

.red {
  color: red;
}

.login-urls {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.login-urls a {
  font-size: 14px;
}

.text-overlay {
  position: absolute;
  top: 45%; /* Adjust this value to move the text lower */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #bc46bc;
  font-size: 70px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #bc46bc;
}
.text-overlay span {
  font-family: YesevaOne;
}

.row-line {
  text-align: center;
}
.row-line .line {
  display: inline-block;
  background-color: #bc46bc;
  height: 2px;
  width: 150px;
}

.wow-text {
  margin-bottom: 0.5em; /* Adds some space between the two lines */
}

.categories-main {
  margin-top: 30px;
}
.categories-main .catalog-head {
  display: block;
  text-align: center;
  font-size: 34px;
  color: #bc46bc;
}
.categories-main .catalog-head span {
  font-family: YesevaOne;
}
.categories-main .categories-list {
  margin: 30px;
}
.categories-main .categories-list .category {
  margin: 10px;
  width: calc(33.33333% - 20px);
  align-items: center;
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: 0.6s;
}
.categories-main .categories-list .category .category-desc {
  width: 100%;
  text-align: center;
  border-top: 1px solid #ececec;
  font-size: 18px;
}
.categories-main .categories-list .category .category-desc a {
  display: block;
  padding: 20px;
}
.categories-main .categories-list .category .category-desc a:hover {
  color: rgba(169, 46, 135, 0.431372549);
}
.categories-main .categories-list .category:hover {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.36) !important;
}
.categories-main .categories-list .category:hover img {
  scale: 1.1;
}
.categories-main .categories-list .category-image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.categories-main .categories-list .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.block-head__mobile {
  display: none;
}

.about_company .background {
  width: 100%;
  background-color: #fdf6ff;
}
.about_company .company_info {
  padding: 20px 0;
}
.about_company .company-left .company-image {
  margin-right: 30px;
}
.about_company .company-left .company-image img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
}
.about_company .company-right .company-description {
  font-size: 18px;
}
.about_company .company-right a {
  margin-top: 15px;
  display: inline-block;
  background-color: #915291;
  padding: 10px;
  color: white;
}
.about_company .company_title_wrapper {
  font-size: 32px;
  padding-bottom: 20px;
  color: #bc46bc;
}
.about_company .company_title_wrapper span {
  font-family: YesevaOne;
}

.login-wrapper {
  max-width: 350px;
  margin: 0 auto;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.login-wrapper .login-body {
  padding: 30px;
}
.login-wrapper .login-body .login-header {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}
.login-wrapper .login-body .login-form-container {
  margin-top: 20px;
  font-size: 18px;
}
.login-wrapper .login-body .login-form-container .login-input-wrapper {
  margin-top: 10px;
}
.login-wrapper .login-body .login-form-container .login-input-wrapper input {
  margin-top: 5px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
}
.login-wrapper .login-body .login-form-container button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ececec;
  border-radius: 5px;
  background: #7dbf26;
  color: white;
  font-size: 16px;
  margin-top: 20px;
}
.login-wrapper .login-body .login-form-container button:hover {
  background-color: #6aa220;
  cursor: pointer;
}

.alert {
  font-size: 15px;
  color: red;
}

.post-wrapper {
  width: calc(25% - 20px);
  margin: 10px;
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.post-wrapper .image-container {
  aspect-ratio: 4/3;
}
.post-wrapper .image-container img {
  height: 100%;
  object-fit: contain;
}
.post-wrapper .post-bottom {
  border-top: 1px solid #ececec;
  text-align: center;
}

.left_block {
  width: 20%;
}

.right_block {
  width: 75%;
  margin-left: auto;
}

.profile-menu {
  background-color: #f8f8f9;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile-menu .left-menu .active {
  color: white;
  background-color: #991680 !important;
}
.profile-menu .left-menu .menu-item {
  border-bottom: 1px solid #f2f2f2;
}
.profile-menu .left-menu .menu-item a {
  display: block;
  padding: 10px;
}
.profile-menu .left-menu .menu-item a:hover {
  color: white;
  background-color: #991680 !important;
}

.profile-wrapper {
  border: 1px solid #f2f2f2;
  padding: 20px;
}
.profile-wrapper .profile-form {
  margin: 0;
}
.profile-wrapper .profile-row {
  width: calc(50% - 20px);
  margin: 10px;
  font-size: 18px;
}
.profile-wrapper .profile-row input {
  margin-top: 5px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
}
.profile-wrapper button {
  font-size: 15px;
  margin: 10px;
  padding: 20px;
  border-radius: 25px;
  background-color: white;
  border: 1px solid #ececec;
  transition: 0.3s;
}
.profile-wrapper button:hover {
  background-color: rgba(169, 46, 135, 0.431372549);
  cursor: pointer;
  color: white;
}

#jq-notification {
  display: none;
  position: fixed;
  left: 50%;
  top: 0;
  width: 200px;
  background-color: #28a745;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 1000;
  transform: translateX(-50%);
}

.cart-wrapper {
  border: 1px solid #ececec;
}
.cart-wrapper .clear-cart {
  padding: 20px;
  text-align: center;
}
.cart-wrapper .clear-cart .clear-icon svg {
  width: 320px;
}
.cart-wrapper .clear-cart .clear-text {
  margin-top: 20px;
  font-size: 18px;
}
.cart-wrapper .cart-item-wrapper {
  border-bottom: 1px solid #ececec;
}
.cart-wrapper .cart-item-wrapper .item-name {
  display: block;
  width: 40%;
  padding: 20px 0;
  margin: 0 35px;
}
.cart-wrapper .cart-item-wrapper .product-price {
  text-align: center;
  padding: 20px 0;
  margin: 0 10px;
  width: 10%;
  align-items: center;
  line-height: 1.5;
}
.cart-wrapper .cart-item-wrapper .product-price .price-count {
  font-weight: 400;
}
.cart-wrapper .cart-item-wrapper .input-group-wrapper {
  padding: 20px 0;
}
.cart-wrapper .cart-item-wrapper .input-group {
  position: relative;
  height: 30px;
}
.cart-wrapper .cart-item-wrapper .input-group .form-control {
  text-align: center;
  height: 100%;
  border: none;
  border-radius: 10px;
  background: #ffc5ff;
}
.cart-wrapper .cart-item-wrapper .input-group .form-control:focus-visible {
  border: none;
  outline: none;
}
.cart-wrapper .cart-item-wrapper .input-group .input-group-btn-left {
  position: absolute;
  width: 30px;
  height: 100%;
}
.cart-wrapper .cart-item-wrapper .input-group .input-group-btn-right {
  position: absolute;
  right: 0;
  width: 30px;
  height: 100%;
}
.cart-wrapper .cart-item-wrapper .input-group .btn {
  width: 100%;
  height: 100%;
  background: none;
  font-size: 30px;
  font-weight: 100;
  border: none;
  border-radius: 10px;
}
.cart-wrapper .cart-item-wrapper .input-group .btn:hover {
  cursor: pointer;
}
.cart-wrapper .cart-item-wrapper .input-group .btn svg {
  height: 20px;
  width: 20px;
  position: relative;
  top: -4px;
}
.cart-wrapper .cart-item-wrapper .cart-price {
  text-align: center;
  margin: 0 20px;
  padding: 20px 0;
}
.cart-wrapper .cart-item-wrapper .cart-price span {
  font-weight: 500;
}
.cart-wrapper .cart-item-wrapper .cart-item-remove {
  flex: 1;
  padding: 10px;
}
.cart-wrapper .cart-item-wrapper .cart-item-remove .remove {
  float: right;
}
.cart-wrapper .cart-item-wrapper .cart-item-remove .remove svg {
  width: 24px;
}
.cart-wrapper .cart-item-wrapper .cart-item-remove .remove svg:hover {
  color: #bc46bc;
}
.cart-wrapper .cart-item-wrapper .cart-item-remove .remove:hover {
  cursor: pointer;
}
.cart-wrapper .image-container {
  width: 15%;
  padding: 20px 0 20px 20px;
  height: 170px;
}
.cart-wrapper .image-container img {
  height: 100%;
  object-fit: contain;
}

.cart-bottom {
  padding: 30px;
}
.cart-bottom .total-price-wrapper {
  align-content: center;
  width: 70%;
}
.cart-bottom .total-price-wrapper span {
  font-size: 18px;
  font-weight: 500;
}
.cart-bottom .accept-cart {
  text-align: center;
}
.cart-bottom .accept-cart a {
  background: #a443a4;
  color: white;
  border: none;
  border-radius: 10px;
  float: right;
  margin: 0 20px;
  padding: 15px;
}
.cart-bottom .accept-cart a:hover {
  cursor: pointer;
}

.block_head {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.dropdown-toggle {
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: none;
  text-align: left;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  white-space: nowrap;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.filter-choose {
  padding: 10px;
  cursor: pointer;
}

.filter-choose:hover, .filter-choose.selected {
  background-color: rgba(123, 123, 123, 0.3411764706);
}

.filter-choose.disabled {
  background-color: #ddd;
  color: #aaa;
  cursor: not-allowed;
}

.mobile-sku {
  display: none;
}

.profile-information {
  border: 1px solid #ececec;
  padding: 30px;
}
.profile-information .profile-information-header {
  align-items: center;
}
.profile-information .profile-information-header svg {
  margin-right: 15px;
}
.profile-information .profile-information-header span {
  font-size: 20px;
}

.profile-form {
  margin-top: 20px;
  margin-left: 47px;
  color: #373232;
}
.profile-form .profile-input input {
  font-size: 16px;
  margin: 7px 0;
  padding: 12px 7px;
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
  outline: none;
}
.profile-form .profile-input textarea {
  outline: none;
  font-size: 16px;
  margin: 7px 0;
  padding: 12px 7px;
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
}

.order-choose {
  margin-top: 20px;
}
.order-choose .order-delivery-wrapper {
  width: 49%;
  margin-right: 1%;
  border: 1px solid #ececec;
  padding: 30px;
}
.order-choose .order-delivery-wrapper .delivery-header {
  align-items: center;
}
.order-choose .order-delivery-wrapper .delivery-header svg {
  color: purple;
  width: 35px;
  margin-right: 15px;
}
.order-choose .order-delivery-wrapper .delivery-header span {
  font-size: 20px;
}
.order-choose .order-delivery-wrapper .delivery-choose {
  margin-top: 20px;
  margin-left: 50px;
}
.order-choose .order-delivery-wrapper .delivery-choose .delivery-input {
  margin-bottom: 10px;
}
.order-choose .order-delivery-wrapper .delivery-choose .delivery-input label {
  margin-left: 10px;
}
.order-choose .order-payment-wrapper {
  width: 49%;
  margin-left: 1%;
  border: 1px solid #ececec;
  padding: 30px;
}
.order-choose .order-payment-wrapper .payment-header {
  align-items: center;
}
.order-choose .order-payment-wrapper .payment-header svg {
  color: purple;
  width: 35px;
  margin-right: 15px;
}
.order-choose .order-payment-wrapper .payment-header span {
  font-size: 20px;
}
.order-choose .order-payment-wrapper .payment-choose {
  margin-top: 20px;
  margin-left: 50px;
}
.order-choose .order-payment-wrapper .payment-choose .payment-input {
  margin-bottom: 10px;
}
.order-choose .order-payment-wrapper .payment-choose .payment-input label {
  margin-left: 10px;
}

.order-wrapper {
  width: 75%;
  padding-right: 20px;
}

.order-sidebar-wrapper {
  width: 25%;
  padding-left: 20px;
}
.order-sidebar-wrapper .order-sidebar {
  padding: 20px;
  border: 1px solid #ececec;
  line-height: 1.5;
}
.order-sidebar-wrapper .order-sidebar .order-cart-item {
  justify-content: space-between;
  margin-bottom: 7px;
}
.order-sidebar-wrapper .order-sidebar .order-cart-item .cart-item-left {
  max-width: 160px;
}
.order-sidebar-wrapper .order-sidebar .order-cart-item .cart-item-left .cart-header {
  font-weight: 500;
}
.order-sidebar-wrapper .order-sidebar .order-cart-item .cart-item-right a {
  font-size: 14px;
}
.order-sidebar-wrapper .order-full_price {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  justify-content: space-between;
}
.order-sidebar-wrapper .order-full_price .total-label {
  font-weight: 500;
}

.order-button {
  margin-top: 10px;
  text-align: center;
}
.order-button button {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: rgba(169, 46, 135, 0.431372549);
  cursor: pointer;
}
.order-button button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-45deg);
  transition: 0.6s;
}
.order-button button:hover::after {
  left: 100%;
}

.order-item {
  margin-bottom: 10px;
  border: 1px solid #f2f2f2;
  border-radius: 15px;
}
.order-item:last-child {
  margin-bottom: 0;
}
.order-item .order-header {
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
}
.order-item .order-header .order-date {
  font-weight: 500;
  width: 30%;
}
.order-item .order-header .order-status {
  width: 20%;
}

.order-body .order-title {
  font-weight: 500;
}
.order-body .order-detail {
  border: 1px solid #ececec;
  padding: 15px;
}
.order-body .order-detail .order-info {
  justify-content: space-between;
  margin-top: 10px;
}
.order-body .order-detail .order-info .order-user {
  width: 45%;
}
.order-body .order-detail .order-info .order-status {
  width: 40%;
}
.order-body .order-detail .order-info .order-full_price {
  width: 15%;
}
.order-body .order-detail .order-text {
  display: flex;
  flex-direction: column;
}
.order-body .order-detail .order-text .order-value {
  padding-top: 5px;
}
.order-body .order-detail .order-text .order-label {
  padding-top: 5px;
  color: #797878;
  font-size: 15px;
}
.order-body .order-items {
  padding: 10px;
  border: 1px solid #ececec;
  margin-top: 20px;
}
.order-body .order-items .order-main {
  padding-top: 20px;
  font-size: 15px;
}
.order-body .order-items .order-body__header {
  margin-bottom: 10px;
  font-weight: 500;
}
.order-body .order-items .order-main__header {
  padding: 0 10px;
  border-bottom: 1px solid #f2f2f2;
  justify-content: space-between;
}
.order-body .order-items .order-product {
  padding: 10px 10px;
  border-bottom: 1px solid #f2f2f2;
  justify-content: space-between;
}
.order-body .order-items .order-name {
  width: 50%;
}
.order-body .order-items .order-price {
  width: 15%;
  text-align: right;
}
.order-body .order-items .order-quantity {
  width: 15%;
  text-align: right;
}
.order-body .order-items .order-sum {
  width: 15%;
  text-align: right;
}
.order-body .order-items .mobile-name {
  display: none;
}

.post-date {
  font-size: 14px;
  padding-bottom: 30px;
}

.post-content {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 40px;
}

.appeal .appeal-form {
  padding-top: 20px;
}
.appeal .appeal-header {
  text-align: center;
}
.appeal .appeal-header .row-line {
  margin-bottom: 10px;
}
.appeal .appeal-header span {
  font-family: YesevaOne;
  font-size: 20px;
}
.appeal .appeal-header .appeal-title {
  font-size: 36px;
  color: #bc46bc;
}
.appeal .form-wrap {
  padding: 15px 0;
}
.appeal .form-wrap .appeal-input {
  padding-bottom: 20px;
  text-align: center;
}
.appeal .form-wrap .appeal-input input {
  padding: 10px;
  width: 40%;
  border: 1px solid #ececec;
  outline: none;
  margin-top: 5px;
  font-size: 18px;
  border-radius: 5px;
}
.appeal .form-wrap .appeal-button {
  text-align: center;
}
.appeal .form-wrap .appeal-button button {
  padding: 20px 25px;
}

.button-hover {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: rgba(169, 46, 135, 0.431372549);
  cursor: pointer;
}
.button-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-45deg);
  transition: 0.6s;
}
.button-hover:hover::after {
  left: 100%;
}

.header_bottom, .header_search_area {
  display: block;
}

.hamburger_menu {
  display: none;
}

.footer-main {
  padding-top: 20px;
  font-size: 18px;
}
.footer-main a {
  font-weight: 400;
}
.footer-main a:hover {
  color: #bc46bc;
}
.footer-main .menus-container {
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
.footer-main .menus-container .menu-container-main {
  width: 40%;
}
.footer-main .menus-container .menu-container-main .menu-title {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #bc46bc;
  font-family: YesevaOne;
  font-weight: 600;
}
.footer-main .menus-container .menu-container-main .menu-text {
  font-weight: 300;
}
.footer-main .menus-container .menu-container {
  padding-top: 27px;
  width: 20%;
}
.footer-main .footer-bottom {
  padding: 10px 0;
}
.footer-main .footer-bottom .bottom-container {
  justify-content: space-between;
}
.footer-main .footer-bottom .bottom-container .bottom-text {
  font-size: 14px;
}
.footer-main .footer-bottom .bottom-container .icon {
  width: 24px;
  margin: 0 7px;
}

.filter-sidebar {
  display: none;
}

.company_text {
  line-height: 1.5;
  font-size: 18px;
}
.company_text ul {
  padding-left: 20px;
  list-style: circle;
}

.contacts-text {
  line-height: 1.5;
  font-size: 18px;
}
.contacts-text .icons-container {
  margin-top: 10px;
}
.contacts-text .icon {
  width: 30px;
  margin: 0 5px;
}

.working-text {
  line-height: 1.5;
  font-size: 18px;
}
.working-text ul {
  padding-left: 20px;
  list-style: circle;
}
.working-text table {
  border-collapse: collapse;
  width: 50%;
  margin: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.working-text th, .working-text td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.working-text th {
  background-color: #4CAF50;
  color: white;
}
.working-text tr:nth-child(even) {
  background-color: #f2f2f2;
}
.working-text tr:hover {
  background-color: #f1f1f1;
}

.payment-text {
  font-size: 18px;
  line-height: 1.5;
}
.payment-text ul {
  padding-left: 20px;
  list-style: circle;
}

@media (max-width: 991px) {
  .new-year__subcategory {
    margin: 0 0 30px 0;
  }
  .order {
    flex-direction: column-reverse;
  }
  .order .order-sidebar-wrapper {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .order .order-wrapper {
    width: 100%;
    padding: 0;
  }
  .order .order-wrapper .order-choose {
    flex-direction: column;
  }
  .order .order-wrapper .order-delivery-wrapper {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .order .order-wrapper .order-payment-wrapper {
    margin: 0;
    width: 100%;
  }
  .company_info {
    text-align: center;
    flex-direction: column;
  }
  .company_info .company-image {
    margin: 0 !important;
  }
  .cart-item-wrapper .image-container {
    padding: 20px 0;
  }
  .cart-item-wrapper .item-name {
    width: 25% !important;
  }
  .cart-item-wrapper .product-price {
    width: 15%;
  }
  .cart-item-wrapper .cart-price {
    width: 15%;
  }
  .filter-sidebar {
    display: block;
  }
  .header_main {
    padding: 10px;
  }
  .sub {
    width: 50%;
  }
  .search {
    display: block !important;
    width: 30px;
    height: 30px;
  }
  .header_logo_area {
    display: flex;
    align-items: center;
  }
  .header_logo_area img {
    height: 60px;
    width: 150px;
  }
  .header_bottom, .header_search_area {
    display: none;
  }
  .hamburger_menu {
    display: block;
  }
  .main_catalog .catalog_item {
    width: 50%;
  }
  .side-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .side-menu.open {
    display: block;
  }
  .company-description {
    padding: 0 !important;
    text-align: center;
  }
  .appeal-input input {
    width: 60% !important;
  }
  .product_catalog .left_block {
    display: none;
  }
  .product_catalog .right_block {
    width: 100%;
  }
  .product_catalog .right_block .block-head__mobile {
    display: block;
  }
  .product_catalog .right_block .block_head {
    display: none;
  }
  .product_catalog .right_block .dropdown-filter {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
  }
  .product_catalog .right_block .dropdown-filter svg {
    width: 16px;
  }
  .product_catalog .right_block .dropdown-filter span {
    margin-left: 7px;
  }
  .product_catalog .right_block .product_list {
    justify-content: space-between;
  }
  .product_catalog .right_block .product_list .product_item {
    width: calc(50% - 20px);
    margin: 10px 0;
  }
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 100;
  }
  .filter-sidebar.active {
    left: 0;
  }
  .filter-sidebar-content {
    padding: 20px;
  }
  .filter-sidebar .close {
    cursor: pointer;
    display: block;
    text-align: right;
    top: 0;
    right: 15px;
    width: 24px;
    color: #686868;
  }
  #filterSidebarOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
  }
  #filterSidebarOverlay.active {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobile-sku {
    margin-top: 10px;
    display: block;
  }
  .mobile-sku .product-sku {
    font-size: 16px;
  }
  .product-container .right-block .product-bottom .product-cart {
    justify-content: center;
  }
  .order-body .order-detail .order-info {
    flex-direction: column;
    text-align: center;
  }
  .order-body .order-detail .order-info .order-user {
    width: auto;
  }
  .order-body .order-detail .order-info .order-status {
    width: auto;
  }
  .order-body .order-detail .order-info .order-full_price {
    width: auto;
  }
  .order-main__header {
    display: none;
  }
  .order-product {
    flex-direction: column;
  }
  .order-product div {
    width: auto !important;
    text-align: left !important;
  }
  .order-product .mobile-name {
    display: inline-block !important;
    width: 50%;
    text-align: center;
  }
  .text-overlay {
    font-size: 38px;
  }
  .working-text table {
    width: 100%;
  }
  .product-price .without_disc {
    float: none;
  }
  .cart-item-wrapper .cart-item {
    flex-direction: column;
  }
  .cart-item-wrapper .cart-item .cart-item-remove {
    position: absolute;
    right: -1px;
  }
  .cart-item-wrapper .cart-item .image-container {
    width: 100% !important;
    padding: 20px 20%;
  }
  .cart-item-wrapper .cart-item .item-name {
    width: 100% !important;
    margin: 0;
    text-align: center;
  }
  .cart-item-wrapper .cart-item .product-price {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .cart-item-wrapper .cart-item .cart-price {
    width: 100%;
    margin: 0;
  }
  .cart-item-wrapper .cart-item .input-group-wrapper {
    text-align: center;
    padding: 10px 0;
  }
  .cart-item-wrapper .cart-item .input-group-wrapper .input-group {
    display: flex;
    justify-content: center;
  }
  .cart-item-wrapper .cart-item .input-group-wrapper .input-group .input-group-btn-right {
    right: auto;
    padding-left: 80px;
  }
  .cart-item-wrapper .cart-item .input-group-wrapper .input-group .input-group-btn-left {
    padding-right: 115px;
  }
  .cart-wrapper .cart-bottom {
    flex-direction: column;
    align-items: center;
  }
  .cart-wrapper .cart-bottom .total-price-wrapper {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .cart-wrapper .cart-bottom .accept-cart a {
    margin: 0;
  }
  .sliders-container {
    width: 100% !important;
  }
  .product-container {
    flex-direction: column;
  }
  .product-container .column {
    width: 25%;
  }
  .product-container .left-block {
    width: 100%;
  }
  .product-container .left-block .prev {
    display: none;
  }
  .product-container .left-block .next {
    display: none;
  }
  .product-container .right-block {
    width: 100%;
  }
  .product-container .right-block .product-header {
    display: none;
  }
  .product-container .right-block .product-bottom {
    text-align: center;
  }
  .product-container .right-block .product-bottom .product-availability span {
    justify-content: center;
  }
  .sub {
    width: 100%;
  }
  .main_block {
    flex-direction: column;
  }
  .main_block .left_block {
    width: 100%;
    margin-bottom: 10px;
  }
  .main_block .right_block {
    width: 100%;
  }
  .menus-container {
    flex-direction: column;
  }
  .menus-container .menu-container-main, .menus-container .menu-container {
    padding-top: 0 !important;
    width: 100% !important;
    text-align: center;
  }
  .menus-container .menu-container-main {
    padding-bottom: 27px;
  }
  .menus-container .menu-container:last-child {
    padding-top: 27px !important;
  }
  .header_controls a {
    margin-left: 10px;
  }
  .main_catalog .catalog_item .item_section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .main_catalog .catalog_item .item_section .cat_names {
    padding: 0;
  }
  .main_top .image-container {
    overflow: hidden;
  }
  .main_top .image-container img {
    width: 200%;
  }
  .categories-main .categories-list .category {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .product_catalog .right_block .product_list .product_item {
    width: 100%;
  }
  .orders-history .order-item .order-header {
    flex-direction: column;
  }
  .orders-history .order-item .order-header span {
    width: auto;
    padding-bottom: 5px;
    text-align: center;
  }
  #mobile-menu {
    top: 71px;
  }
  .modal-content {
    height: 80%;
  }
  .header_logo_area img {
    height: 50px;
    width: 120px;
  }
  .mobile_search {
    top: 71px;
  }
  .order .profile-information {
    padding: 15px;
  }
  .order .profile-information .profile-form {
    margin-left: 0;
  }
  .order .order-delivery-wrapper {
    padding: 15px;
  }
  .order .order-payment-wrapper {
    padding: 15px;
  }
  .profile-wrapper .profile-form {
    display: block;
  }
  .profile-wrapper .profile-form .profile-row {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .profile-wrapper button {
    width: 100%;
  }
  .product-container {
    padding: 1em;
  }
  .categories-main .categories-list {
    margin: 30px 0;
  }
  .categories-main .categories-list .category {
    width: 100%;
  }
  .main_catalog .catalog_item {
    width: 100%;
  }
  .header_controls_area {
    padding-right: 10px;
  }
  .header_controls_area .header_number span {
    display: none;
  }
  .header_controls_area .header_number .phone_icon {
    display: flex;
    width: 30px;
    height: 24px;
  }
  .main_top .image-container {
    overflow: hidden;
  }
  .main_top .image-container img {
    height: 350px;
    width: 200%;
  }
}
@media (max-width: 320px) {
  .header_number {
    display: none;
  }
}
.leaflet-control-attribution {
  display: none;
}

#map {
  height: 400px;
  width: 100%;
}
.alert-info{
  display: block;
  font-size: 25px;
  color:red;
}
/*# sourceMappingURL=style.css.21c430c1342f.map */
