/* Изменение placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #aaa !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #aaa !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #aaa !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #aaa !important;
}
/* -- Изменение placeholder -- */


/* Панель контактов в шапке сайте */
.header-info-panel {
  position: relative;
  z-index: 10;
}
.header-contacts-item {
  text-align: center;
}
.header-contacts-item > div {
  display: inline-block;
  vertical-align: middle;
}
.header-contacts-item-info {
  margin-left: 10px;
}
.header-contacts-item-info a:hover {
  color: #fff;
}
.header-contacts-item-icon {
  font-size: 14px;
  color: #2a2a2a;
}
.header-contacts-item-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s ease-in-out;
}
.header-social-links {
  text-align: center
}
.header-social-links a {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  padding: 5px;
  text-decoration: none;
  outline: 0;
}
.header-social-links a:hover svg {
  transform: scale(1.2);
}
.header-social-links a svg {
  transition: all .2s ease-in-out;
}

@media all and (max-width: 991px) {
  .header-contacts-item-icon {
    border:1px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    display: block;
  }
  .header-social-links a {
    border: none !important;
  }
  .header-contacts-item-info {
    display: none !important;
  }
  .tooltip-inner {
    font-size: 17px;
  }
}
/* -- Панель контактов в шапке сайта -- */


/* Всплывающий поиск */
.global-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -2000;
  opacity: 0;
  transition: opacity .4s;
}

.global-overlay.active {
  z-index: 2000;
  opacity: 1;
}

.popup-search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:-150px;
  height: 150px;
  width: 100%;
  padding: 0 63px 0 63px;
  margin: 0 auto;
  z-index: 4000;
  background: #fff;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;

  color: #888;
  font-size: 26px;
}

.popup-search-container.open {
  top: 0px;
}
.popup-search-close {
  cursor: pointer;
}
.popup-search-close:hover {
  color: #1d1d1d;
}
.popup-search-form {
  flex-grow: 1;
  margin: 0 40px 0 40px;
}

.popup-search-form-input {
  background: transparent;
  border: none;
  width: 100%;
  color: #1d1d1d;
  font-size: 26px;
  line-height: 40px;
  height: 40px;
  outline: none;
}
.popup-search-open {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #2a2a2a !important;
}
.popup-search-open:hover .header-contacts-item-text {
  text-decoration: underline;
}

@media all and (max-width: 991px) {
  .popup-search-open {
    height: 100%;
    color: #fff !important;
  }
}

/* -- Всплывающий поиск -- */


/* Логотип */
#standart-page-menu .header_logo .img-responsive {
  width: auto;
  height: 64px;
}
#menu-main-page .header_logo .img-responsive {
  width: auto;
  height: 100px;
}
#menu-main-page .header_logo.scroll .img-responsive {
  width: auto;
  height: 80px;
}

@media all and (max-width:992px) {
  #menu-main-page .header_logo .img-responsive {
    width: auto !important;
    height: 80px !important;
  }
}
/* -- Логотип -- */


/* Страница поиска */
.search-form-input {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: .375rem;
  height: 39px;
  outline: none !important;
  margin-right: 15px;
  padding: 0 20px;
}
.search-form button {
  height: 35px;
}
/* -- Страница поиска -- */


/* Отзывы на главной */
#messages-section {
  padding-top: 0;
  padding-bottom: 0;
}
/* -- Отзывы на главной -- */


/* Подвал */
#contacts-footer {
  padding: 15px !important;
}
.footer__contacts .logo {
  max-width: 150px;
}
/* -- Подвал -- */


/* Карта */
.contact_map,
.contact_map iframe {
  height: 400px;
}
/* -- Карта -- */


/* Карточки категорий на главной */
#products-section .card-body {
  padding: 15px;
}
#products-section .wrapper-image {
  height: 190px;
}
#products-section .description {
  padding: 0 15px;
}
/* -- Карточки категорий на главной -- */


/* Стили маленькой корзины */
#top-cart {
  padding: 0 20px;
}
.top-cart-icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-cart-icon svg{
	margin-right: 10px;
  color: #212529;
}
.cart-items{
	margin-left: 15px;
	display: flex;
}

@media (max-width: 1200px) {
	#top-cart {
    padding: 0;
		position: absolute;
		right: 90px;
		top: 0; bottom: 0;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
	}

	.top-cart-icon {
		justify-content: flex-end;
	}
}
.cart-customlocation {
  position: relative;
  transition: all .2s ease-in-out;
}
.cart-customlocation svg {
  font-size: 25px;
}
.cart-customlocation .cart-count {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 28px;
  box-sizing: border-box;
  border: 2px solid #fff;
  color: #fff;
  padding: 0;
  border-radius: 50%;
  font-size: 13px;
}
.cart-customlocation:hover {
  transform: scale(1.05);
}
/* -- Стили маленькой корзины -- */


/* Панель с сортировкой */
.custom-ordering-panel {
  background: #e9ecef;
  margin-bottom: 15px;
}
.custom-ordering-panel .filters-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  float: initial;
}
.custom-ordering-panel .woocommerce-ordering {
  float: none !important;
}
.custom-ordering-panel .input-group-text {
  padding: 0 .75rem;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 36px;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #ced4da;
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.custom-ordering-panel .custom-select {
  color: #495057;
  font-size: 14px;
  border-radius: 0 4px 4px 0 !important;
  border: 1px solid #ced4da;
}
/* -- Панель с сортировкой -- */


/* Стили обертки */
.products-container {
  display: flex;
}
.products-container .cards-wrapper {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
}
.sidebar-left {
  width: 270px;
  flex-shrink: 0;
}

@media all and (max-width: 992px) {
  .products-container {
    flex-direction: column;
  }
  .products-container .cards-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sidebar-left {
    width: 100%;
  }
}
/* -- Стили обертки -- */


/* Левый сайдбар (с фильтрами) */
.sidebar-left-wrapper {
  background: white;
  border: 1px solid #ececec;
  padding: 20px;
  margin-bottom: 30px;
}
.sidebar-left .berocket_aapf_widget-title_div {
  padding-right: 0 !important;
}
.sidebar-left .berocket_aapf_widget {
  padding-left: 0 !important;
  margin-right: 0 !important;
}
.sidebar-left .berocket_aapf_widget-title {
  font-weight: bold;
  color: #212529;
}
.sidebar-left .berocket_filter_slider.ui-widget-content .ui-slider-range,
.sidebar-left .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
  background: none repeat scroll 0 0 #cc3e3f !important;
}
.sidebar-left .slide .ui-widget-content {
  border: 1px solid #cc3e3f !important;
}
.sidebar-left .slide .ui-state-default,
.sidebar-left .slide .ui-widget-content .ui-state-default,
.sidebar-left .slide .ui-widget-header .ui-state-default {
  background: #000 !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}
.sidebar-left .berocket_label_widgets {
  padding-left: 2px !important;
}
.sidebar-left .berocket_aapf_widget li.slider span.left input,
.sidebar-left .berocket_aapf_widget li.slider span.right input {
  width: 90%;
  border-radius: 3px;
  font-style: normal;
}

.show-filters-button {
  display: none;
  width: 100%;
  margin-bottom: 15px;
  font-size: 13px;
}
.sidebar-left-top {
  display: none;
  margin: -20px -20px 20px -20px;
}
.sidebar-left-header {
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.sidebar-left-close {
  padding: 15px 20px;
  margin-left: auto;
  font-size: 16px;
}

@media all and (max-width: 992px) {
  .show-filters-button {
    display: block;
  }
  .sidebar-left-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    overflow: scroll;
    background: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .sidebar-left-top {
    display: flex;
  }
}
/* -- Левый сайдбар (с фильтрами) -- */


/* Стили вывода сетки товаров */
.product-cards-item {
  display: flex !important;
  flex-direction: column;
  padding: 15px;
  background: #fff;
  border: 1px solid #ececec;
  margin: 0 -1px -1px 0;
  transition: box-shadow .3s ease-in-out;
  outline: none;
}
.product-cards-item:hover {
  z-index: 1;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,.15);
}
.product-cards-item-top {
  align-items: flex-start;
  margin-bottom: 10px;
}
.product-cards-item-stock-status {
  font-size: 14px;
  font-weight: 500;
}
/* .tooltip-inner {
  max-width: 300px;
  width: 300px;
  opacity: 1;
}
.tooltip.show {
  opacity: 1;
} */
.product-cards-item-sku {
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  color: #b3b3b3;
}
.product-cards-item-image {
  display: block;
  position: relative;
  text-decoration: none !important;
  outline: none !important;
}
.product-cards-item-image img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.product-cards-item-title {
  display: block;
  width: 100%;
  margin-top: 10px;
  height: 60px;
  overflow: hidden;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #212529;
  text-decoration: none !important;
  outline: none !important;
  transition: all .2s ease-in-out;
}
.product-cards-item-title:hover,
.product-cards-item-title:focus {
  color: #cc3e3f;
}
.product-cards-item-properties-wrapper {
  margin: 10px 0;
}
.product-cards-item-properties {
  width: 100%;
  font-size: 12px;
}
.product-cards-item-properties tr {
  border-bottom: 1px solid #ececec;
}
.product-cards-item-properties .property-value {
  text-align: right;
}
.product-cards-item-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.product-cards-item-price {
  font-weight: bold;
  font-size: 20px;
  color: #212529;
}
.product-cards-item-price del {
  display: block;
  font-size: 14px;
  color: #a0a0a0;
}
.product-cards-item-price ins {
  display: block;
  text-decoration: none;
}
.button.product-cards-item-cart-button {
  font-size: 13px !important;
  color: #fff !important;
  background: #cc3e3f !important;
  outline: none !important;
  transition: all .2s ease-in-out;
}
.button.product-cards-item-cart-button:hover {
  background: #d56161 !important;
}
.product-cards-item-cart-button.added {
  display: none !important;
}
.product-cards-item a.added_to_cart.wc-forward {
  font-size: 13px !important;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: .618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  border: 0;
  display: inline-block;
  box-shadow: none;
  text-shadow: none;
  color: #fff !important;
  background: #cc3e3f !important;
  transition: all .2s ease-in-out;
}
.product-cards-item a.added_to_cart.wc-forward:hover {
  background: #d56161 !important;
}

.discount-label {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDQ0IDI0Ij4NCiAgICA8cGF0aCBmaWxsPSIjRjczRDM0IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zOC4zMTEgNC4yNzZjMS4yNjctLjE3NSAyLjUzMy0uMzY2IDMuNzk4LS41NzIuNTItLjA4NSAxLjAwNi4zIDEuMDg1Ljg2LjAwNC4wMzQuMDA4LjA2Ny4wMS4xbC43OTUgMTYuMzQzYy4wMjYuNTQyLS4zNDQgMS4wMTItLjg0NCAxLjA3M2EyNjIuNzgxIDI2Mi43ODEgMCAwIDEtMTcuMTU3IDEuNTU2Yy01LjQ5LjMxLTEwLjkxLjQyMi0xNi4yNjQuMzM2LS41LS4wMDgtLjkxLS40MzMtLjkzNy0uOTcybC0uMTMyLTIuNzFjLTIuMjczLjAyNy00LjUzNS4wMjMtNi43ODYtLjAxYTEuMDMgMS4wMyAwIDAgMS0xLjAxNi0uOTcyTC4wMDEgMi45NTlBMS4wMjggMS4wMjggMCAwIDEgMS4wOCAxLjg4MWExODMuMTQgMTgzLjE0IDAgMCAwIDE3Ljk0NS0uMDU2QzI1LjAxNSAxLjUxMyAzMC45OTEuOTEgMzYuOTUyLjAxMmExLjAzMSAxLjAzMSAwIDAgMSAxLjE4NS45NmwuMTc0IDMuMzA0eiIvPg0KPC9zdmc+");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

.product-cards-item-discount {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 25px;
  font-size: 16px;
}
/* -- Стили вывода сетки товаров -- */


/* Карточка товара */
.single-product-top .col-lg-6 {
  margin-bottom: 30px;
}
.single-product-gallery-wrapper,
.single-product-characteristics-wrapper,
.single-product-description-wrapper {
  padding: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
}
.single-product-characteristics-wrapper {
  padding: 15px 20px;
  font-size: 15px;
}
.single-product-description-wrapper {
  font-size: 14px;
  padding: 15px;
  margin-bottom: 30px;
}
.single-product-discount {
  position: absolute;
  top: 10px;
  left: 25px;
  width: 64px;
  height: 35px;
  font-size: 22px;
}
.single-product-gallery-wrapper li {
  list-style: none !important;
  border-radius: 0 !important;
  height: auto !important;
}
.single-product-gallery-wrapper .lSPager li img {
  width: 100% !important;
  height: 100px !important;
  object-fit: cover;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.single-product-gallery-wrapper .lSPager li.active img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.single-product-gallery-wrapper .lightSlider img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  cursor: zoom-in !important;
}
@media all and (max-width: 991px) {
  .single-product-gallery-wrapper .lSPager {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .single-product-gallery-wrapper .lightSlider img {
    height: 300px;
  }
}

.single-product-characteristics-top {
  align-items: flex-start;
  margin-bottom: 15px;
}
.single-product-sku {
  font-size: 14px;
  font-weight: 500;
  color: #b3b3b3;
}

.single-product-price {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.single-product-price del {
  display: block;
  font-size: 18px;
  color: #a0a0a0;
}
.single-product-price ins {
  display: block;
  text-decoration: none;
}

.single-product-cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-message {
  border-top-color: #cc3e3f;
}
.woocommerce-message::before {
  color: #cc3e3f;
}

.single-add-to-cart-button-wrapper {
  width: 100%;
}
.single-add-to-cart-button {
  width: 100%;
  padding: 1em !important;
  background: #cc3e3f !important;
  outline: none !important;
  transition: all .2s ease-in-out;
}
.single-add-to-cart-button:hover {
  background: #d56161 !important;
}

.single-product-properties-wrapper {
  margin-top: 40px;
}
.single-product-properties {
  width: 100%;
  font-size: 13px;
}
.single-product-properties tr {
  border-bottom: 1px solid #ececec;
}
.single-product-properties td {
  padding: 5px 0;
}
.single-product-properties .property-value {
  text-align: right;
}

.lSPrev,
.lSNext {
  background: #fff !important;
  border-radius: 50%;
}
.lSPrev svg {
  font-size: 32px;
  margin-left: 6px;
}
.lSNext svg {
  font-size: 32px;
  margin-left: 10px;
}
/* -- Карточка товара -- */


/* Стили оформления заказа */
#billing_address_1_field .required {
  display: none !important;
}
/* -- Стили оформления заказа -- */








.breadcrumb-item {
  padding: 0;
}

#menu-main-page {
  background-image: url(../images/cosicka.jpg);
}

#standart-page-menu {
  background-image: url(../images/cosicka.jpg);
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  font-weight: bold;
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: bold;
  color: #fff;
}

.header-contacts-item-text {
  color: #2a2a2a;
}

.card-body .btn {
  color: #2a2a2a;
}

.description {
  color: #2a2a2a;
}

.text-white {
  color: #2a2a2a !important;
}

.advantages__element__description p {
  color: #2a2a2a;
}

.btn-primary {
  color: #2a2a2a;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(250, 250, 250, .7);
}

.dropdown .dropdown-menu {
  background-color: #eeee22 !important;
}


#products-list {
  display: flex;
  flex-wrap: wrap;
}

.product-title {
  font-size: 2rem;
}
