.alert {
  position: relative;
}

.smart-filter-input-group-checkbox-list {
  max-height: 200px;
  overflow: auto;
}

.smart-filter-input-group-checkbox-list::-webkit-scrollbar {
  width: 12px;
  height: 0;
}

.smart-filter-input-group-checkbox-list::-webkit-scrollbar-track {
  background: #e7e7e7;
  border-radius: 10px;
}

.smart-filter-input-group-checkbox-list::-webkit-scrollbar-thumb {
  background: #b1b1b1;
  border-radius: 10px;
  height: 35%;
}

.shop_products-item .meta p {
  gap: 10px;
}

.shop_products-item .meta p span:last-child {
  text-align: right;
  font-size: 12px;
}

.shop_products-item>a {
  display: flex;
  padding-bottom: 100%;
  position: relative;
}

.shop_products-item>a img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.popup-window.popup-window-with-titlebar {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  padding: 25px !important;
  max-width: 600px;
}

.popup-window.popup-window-with-titlebar .popup-window-titlebar {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ccc;
}

.popup-window.popup-window-with-titlebar .popup-window-titlebar span.popup-window-titlebar-text {
  font-size: 20px;
  font-weight: 500;
  color: #292929;
  line-height: normal;
  padding: unset;
}

.popup-window.popup-window-with-titlebar .popup-window-content {
  padding: 20px 0 0 0;
  display: block;
  background: none;
}

.popup-window.popup-window-with-titlebar .popup-window-content>div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.popup-window.popup-window-with-titlebar .popup-window-content img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  object-position: center;
}

.popup-window.popup-window-with-titlebar .popup-window-content p {
  font-size: 22px;
  font-weight: 500;
  color: #292929;
  text-align: left;
}

.popup-window.popup-window-with-titlebar span.popup-window-close-icon.popup-window-titlebar-close-icon {
  top: 5px;
  right: 5px;
}

.popup-window.popup-window-with-titlebar .popup-window-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.popup-window.popup-window-with-titlebar .popup-window-buttons span.btn.btn-default.btn-buy.btn-sm {
  background: #4eaeb9;
  color: #fff;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.5s all;
  padding: 0 20px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}


#one-click-form {
  flex-wrap: wrap;
}

#one-click-form h3 {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
}

#one-click-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

#one-click-form form input {
  margin: 0;
  width: calc(50% - 5px);
}

#one-click-form form button {}

.shop_content-product {
  width: 100%;
}

/*
.shop_content-product {
  width: 100%;
  align-items: center;
}
*/
.shop_content-product_image {
  position: relative;
  padding-bottom: 50%;
  display: flex;
  width: 50%;
}

.shop_content-product_image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.shop_content-product.no_image {}

.shop_content-product.no_image .shop_content-product_info {
  width: 100%;
}

.shop_content-product.no_image .product_buttons {
  width: 50%;
}

.product_price-wrap {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product_price-wrap .old-price {
  color: #a5a5a5;
  text-decoration: line-through;
  font-size: 22px;
  font-weight: 500;
}

.product_price-wrap .new-price {
  color: #E22D2D;
}

.product_price-wrap .current-price {}

.product_atts p {
  width: unset;
}

.smart-filter-parameters-box .smart-filter-block {
  display: none;
}

.smart-filter-parameters-box.bx-active .smart-filter-block {
  display: block;
}

.smart-filter-parameters-box-title {
  cursor: pointer;
}

.smart-filter-parameters-box-title-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smart-filter-parameters-box-title-text i {
  width: 16px;
  height: 16px;
  background: url(../images/filter.svg) no-repeat;
  background-position: center;
  transition: 0.5s all;
}

.smart-filter-parameters-box-title-text i.fa-angle-down {}

.smart-filter-parameters-box-title-text i.fa-angle-up {
  transform: rotate(180deg);
  transition: 0.5s all;
}

.bx-filter-container-modef {
  position: absolute;
  z-index: 100;
  left: 94%;
  top: 50px;
}

.bx-filter-popup-result {
  box-shadow: 0 6px 32px 0 rgba(49, 49, 51, 0.16), 0 0 6px 0 rgba(49, 49, 51, 0.04);
  padding: 10px 20px;
  width: max-content;
  background: #fff;
  color: #E22D2D;
  font-size: 14px;
  font-weight: 400;
}

.bx-filter-popup-result:before {
  display: block;
  content: "";
  position: absolute;
  left: -12px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  background: #fff;
}

.bx-filter-popup-result a {
  padding-top: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}

table.title-search-result {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.title-search-result,
.title-search-result tbody,
.title-search-result tr,
.title-search-result td,
.title-search-result th {
  display: block;
}

.title-search-fader,
#bx-soa-total-mobile {
  display: none !important;
}

.title-search-result tbody {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-direction: column;
}

table tr:nth-child(odd) {
  background: unset;
}

.title-search-result tr:first-child {}

.title-search-result tr {
  border-bottom: 1px dashed #e6e5e4;
  padding-bottom: 5px;
}

.title-search-result td {
  padding: 0;
}

.title-search-result tr[id]:last-child {
  padding: 0;
  border: none;
}

.title-search-result tr th {
  display: none;
}

tr[id]:nth-last-child(1),
tr[id]:nth-last-child(2) {}

.title-search-result tr:not([id]),
.title-search-result tr[id=""] {
  display: none;
}

.title-search-result tr .title-search-item {
  padding: 0;
}

.title-search-result tr .title-search-item a {}

.title-search-result tr .title-search-item img {
  display: none;
}

.search-page,
#bx-soa-order-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.search-page form {
  position: relative;
  height: 42px;
  width: 100%;
  overflow: hidden;
}

.search-page form input[type="text"] {
  padding: 0 10px;
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
  padding-right: 50px;
}

.search-page form input[type="submit"] {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 42px;
  border: none;
  width: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #4eaeb9;
  border-radius: 0 5px 5px 0;
  color: #fff;
}

.search-page br {
  display: none;
}

.search-page a {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.search-page p {
  margin-bottom: 10px;
}

.search-page p b {}

.search-page small {
  display: block;
}

.search-page small a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.search-page hr {
  border: none;
  border-bottom: 1px dashed #ccc;
  margin: 20px 0;
}

.search-page hr:first-child {
  display: none;
}

.search-page .navigation {}

.search-page .navigation .navigation-arrows,
.search-page .navigation .navigation-title {
  display: none;
}

.search-page .navigation .navigation-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 !important;
  margin: 0 !important;
}

.search-page .navigation .navigation-pages .nav-current-page {
  height: 32px;
  min-width: 32px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  background: #4eaeb9;
  color: #fff;
  cursor: default;
  transition: 0.5s all;
}

.search-page .navigation .navigation-pages a {
  height: 32px;
  min-width: 32px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  background: #e6e5e4;
  color: #555;
  transition: 0.5s all;
  margin: 0;
}

.search-page .navigation .navigation-pages a:hover {
  background: #4eaeb9;
  color: #fff;
  transition: 0.5s all;
}

.search-page p:last-child {
  display: none;
}

#basket-root .basket-coupon-section,
.basket-items-list-header,
.basket-items-list-item-remove,
.basket-item-amount-field-description {
  display: none;
}

#basket-root {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

#basket-root .row:nth-child(1) {
  order: 2;
  width: 300px;
  background: #f3f3f3;
}

#basket-root .row:nth-child(1)>.col {
  height: 100%;
  display: flex;
  align-items: center;
}

#basket-root .row:nth-child(1) .basket-checkout-container {
  display: block;
  margin: 0 auto;
  padding: 0;
  background: none;
  width: 80% !important;
  position: unset !important;
}

#basket-root .row:nth-child(1) .basket-checkout-section-inner {
  justify-content: unset;
  -webkit-box-pack: unset;
  width: 100%;
  flex-wrap: wrap;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total {
  padding: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total .basket-checkout-block-total-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-title {}

#basket-root .row:nth-child(1) .basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-description {
  display: none;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total-price {
  padding: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total-price .basket-checkout-block-total-price-inner {
  padding: 0;
  text-align: center;
}

#basket-root .row:nth-child(1) .basket-checkout-block-total-price .basket-coupon-block-total-price-current {
  margin: 0;
}

#basket-root .row:nth-child(1) .basket-checkout-block-btn {
  width: 100%;
  padding: 20px 0;
}

#basket-root .row:nth-child(1) .basket-checkout-block-btn .btn {
  width: 100%;
}

#basket-root .row:nth-child(2) {
  position: absolute;
  min-height: 80px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

#basket-root .row:nth-child(3) {
  order: 0;
  width: calc(100% - 310px);
  padding: 25px;
  border: 1px solid #ccc;
}

#basket-root .basket-items-list {
  padding: 0;
}

#basket-root .basket-items-list .basket-item-block-image {
  height: 100px;
  width: 100px;
  max-width: 100px;
  max-height: 100px;
  min-width: 100px;
  min-height: 100px;
}

#basket-root .basket-items-list .basket-item-block-image a {
  display: flex;
  height: 100%;
  width: 100%;
}

#basket-root .basket-items-list .basket-item-block-image a img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

#basket-root .basket-checkout-container,
.basket-items-list-wrapper,
.basket-items-list-wrapper-compact {
  border: none;
}

.map-columns.row,
.col-sm-offset-2,
.col-sm-offset-1,
.bx-404-container br {
  display: none;
}

.bx-404-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.bx-404-container div {
  text-align: center;
}

.bx-404-container .bx-404-block {
  text-align: center;

}

.bx-404-container a {}

.bx-404-container .bx-404-text-block {
  margin: 20px 0;
}

.bx_catalog_tile {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.bx_catalog_tile .bx_catalog_tile_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bx_catalog_tile .bx_catalog_tile_ul li {
  float: unset;
  margin: unset;
  width: unset;
  position: relative;
  border: 1px solid #e6e5e4;
  padding: 20px;
  transition: 0.5s all;
}

.bx_catalog_tile .bx_catalog_tile_ul li>a {
  height: 220px;
  width: 100%;
  border: none;
  border-radius: 0;
  background-size: cover;
}

.bx_catalog_tile .bx_catalog_tile_ul li h2 {
  margin: 20px 0 0 0;
  font-size: 18px;
}

.bx_catalog_tile .bx_catalog_tile_ul li h2 a {
  font-size: 18px;
  color: #4eaeb9;
  font-weight: 600;
}

.bx-soa-coupon,
.bx-soa-editstep {
  display: none;
}

.bx-soa-section-title-container,
.bx-soa-section.bx-selected .bx-soa-section-title-container {
  background: #4eaeb9;
  color: #fff;
  padding: 15px;
  cursor: pointer;
}

.bx-soa-section-title-count,
.bx-soa-section .bx-soa-section-title-count:after {
  color: #fff;
  border-color: #fff;
}

.bx-soa-section-title,
.bx-soa-section.bx-selected .bx-soa-section-title {
  font-size: 16px;
  font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
  font-weight: var(--ui-font-weight-regular, 400);
  line-height: 18px;
  color: #fff;
  padding: 0;
}

.bx-soa-section-content {}

.bx-soa-item-table {
  margin: 0;
}

.bx-soa-item-tr {}

.bx-soa-item-imgcontainer {
  border: none;
  border-radius: 0;
}

.bx-soa-item-title {
  font: 16px / 26px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
  font-weight: var(--ui-font-weight-regular, 400);
}

.bx-soa-more {
  margin: 0;
}

.bx-soa-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bx-soa-more .btn {
  padding: 0 35px;
}

.bx-step-completed .bx-soa-section-content {
  display: none;
}

.bx_soa_location {}

.bx_soa_location .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.bx_soa_location .form-check-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.bx_soa_location .form-check-group .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bx_soa_location .form-check-group .form-check input {
  height: unset;
  border-radius: 0;
  border: 0;
}

.bx-soa-location-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bx-soa-location-input-container .bx-soa-custom-label {
  width: 200px;
}

.bx-soa-location-input-container .bx-sls {
  width: calc(100% - 220px);
}

.bx-soa-reference {}

.bx-soa-pp {}

.bx-soa-pp-item-container {
  padding: 10px 0 20px 0;
}

.bx-soa-pp-item-container .row {
  display: flex;
  gap: 10px;
}

.bx-soa-pp .bx-soa-pp-company {
  border: none;
  cursor: pointer;
}

.bx-soa-pp .bx-soa-pp-company-graf-container {
  padding-bottom: 60%;
  width: 120px;
  padding-top: 0;
}

.bx-soa-pp .bx-soa-pp-company-checkbox {
  display: none;
}

.bx-soa-pp .bx-soa-pp-company-image {}

.bx-soa-pp .bx-soa-pp-delivery-cost {
  display: none;
}

.bx-soa-pp .bx-soa-pp-company-smalltitle {}

.bx-soa-pp-desc-container {
  background: #f3f3f3;
  padding: 15px;
}

.bx-soa-pp-desc-container .bx-soa-pp-company {
  padding: 0;
  background: 0;
}

.bx-soa-pp-desc-container .bx-soa-pp-company-subTitle {
  font-size: 16px;
  font-weight: 500;
}

.bx-soa-pp-desc-container .bx-soa-pp-company-logo {
  display: none;
}

.bx-soa-pp-desc-container .bx-soa-pp-company-block {}

.bx-soa-pp-desc-container .bx-soa-pp-company-desc {
  padding: 0;
  font-size: 14px;
  line-height: 14px;
}

.bx-soa-pp-desc-container .bx-soa-pp-list {
  margin: 10px 0 0 0;
  font-size: 20px;
}

.bx-soa-pp-desc-container .bx-soa-pp-list li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bx-soa-pp-desc-container .bx-soa-pp-list li .bx-soa-pp-list-termin {}

.bx-soa-pp-desc-container .bx-soa-pp-list li .bx-soa-pp-list-description {}

#bx-soa-properties {}

#bx-soa-properties .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 10px 0 20px 0;
}

#bx-soa-properties .row .col-sm-12 {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

#bx-soa-properties .bx-soa-customer {}

#bx-soa-properties .bx-soa-customer-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#bx-soa-properties .bx-soa-customer-field .bx-soa-tooltip {
  display: none !important;
}

#bx-soa-properties .bx-soa-customer-field .bx-soa-custom-label {
  padding: 0;
  width: 150px;
}

#bx-soa-properties .bx-soa-customer-field .soa-property-container {
  width: calc(100% - 160px);
  display: flex;
}

#bx-soa-properties .bx-soa-customer-field .soa-property-container input,
#bx-soa-properties .bx-soa-customer-field .soa-property-container textarea {
  width: 100%;
  resize: none;
  line-height: 42px;
  overflow: hidden;
}

#bx-soa-properties .bx-soa-customer-field label {
  padding: 0;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
}

#bx-soa-properties .bx-soa-customer-field #orderDescription {
  width: 100%;
  height: 146px;
  resize: none;
  padding: 10px;
}

#bx-soa-orderSave {
  padding: 20px 0;
}

#bx-soa-orderSave input {
  height: unset;
}

#bx-soa-orderSave .btn {
  margin: 20px 0 0 0 !important;
  width: 200px;
}

.mobile_menu_close,
.shop_sidebar_close {
  display: none;
}

@media(max-width:1200px) {

  .search-page,
  .bx-404-container,
  .bx_catalog_tile,
  #bx-soa-order-form {
    padding: 50px 25px;
  }
}

@media(max-width:980px) {
  .bx_soa_location .col {
    width: 100%;
  }

  .bx-soa-pp-desc-container .bx-soa-pp-list li .bx-soa-pp-list-termin {
    width: unset;
  }

  .bx-soa-pp-item-container .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .bx-soa-pp .bx-soa-pp-company-graf-container {
    width: unset;
  }

  .bx-soa-pp-company.col-6 {}

  .smart-filter-parameters-box:first-child .smart-filter-parameters-box-title {
    pointer-events: none;
    cursor: default;
  }

  .smart-filter-parameters-box:first-child .smart-filter-parameters-box-title-text i {
    display: none;
  }

  #bx-soa-properties .row,
  .mobile_menu_close,
  .shop_sidebar_close {
    display: block;
  }
}

@media(max-width:480px) {
  .bx-soa-location-input-container {
    flex-direction: column;
    align-items: unset;
  }

  .bx-soa-location-input-container .bx-sls {
    width: 100%;
  }
}

.not-found {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.not-found span {
  width: 100%;
  text-align: center;
  font-size: 10rem;
  line-height: 9rem;
  color: #4eaeb9;
  font-weight: 600;
}

.not-found p {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1rem;
}

.not-found .main_bar-search {
  width: 100%;
}

.contacts_form {
  width: 100%;
}

.shop_products .bx_catalog_tile{
  padding: initial;
}

.shop_products .bx_catalog_tile h1{
  margin-top: 0 !important;
}
