@charset "UTF-8";
@font-face {
  font-family: "IdealHouseIcons";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/icons-Regular.woff2") format("woff2"), url("/assets/fonts/icons-Regular.ttf") format("truetype");
}
.ih-icon {
  font-family: "IdealHouseIcons";
  position: relative;
  font-size: 14px;
  line-height: 14px;
  font-style: normal;
  display: inline-block;
  user-select: none;
}
.ih-icon.ih-icon-placeholder {
  position: absolute;
  left: -1.3rem;
  top: 0.5rem;
}

button.btn-icon {
  padding: 3px;
  aspect-ratio: 1/1;
  width: 40px;
}
button.btn-icon .ih-icon {
  font-size: 24px;
  line-height: 24px;
}

.ih-facebook {
  color: #0866FF;
}

.ih-instagram {
  color: #E23F60;
}

.ih-tiktok {
  color: #000000;
}

.ih-telegram {
  color: #2CAAE7;
}

:root {
  --primary-color: #1A243B;
  --secondary-color: #e5e5e5;
  --gradiend-color-1: #6BC4C8;
  --gradiend-color-2: #3D4B8C;
  --text-h1: #1A243B;
  --text-h1-invert: #ffffff;
  --text: #000000;
  --text-invert: #ffffff;
  --budget-param: #cccccc;
}

/* align the logout "link" (button in form) of the navbar */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    background-color: var(--primary-color);
    flex-direction: row;
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    flex: 1 1 auto;
    text-align: center;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--text-invert);
  }
  .navbar-expand-lg .navbar-nav .nav-link.show, .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--text-invert);
    text-decoration: underline;
  }
}
.nav li > form > button.logout {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .nav li > form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 0;
  }
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
  outline: none;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*=======================================================*/
.item-recommended-product {
  padding: 6px;
  height: 300px;
}
.item-recommended-product .item-recommended-product-image {
  border-radius: 15px;
  background-color: #f4f5f6;
  padding: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-recommended-product .product-img {
  border-radius: 10px;
  max-height: 280px;
}

.products-carusel {
  background: #6BC4C8;
  background: linear-gradient(90deg, var(--gradiend-color-1) 0%, var(--gradiend-color-2) 100%);
  padding: 0.5rem 2.5rem 1rem;
}
.products-carusel .item-top-product-panel-label {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}
.products-carusel .item-top-product-image {
  aspect-ratio: 4/5;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-carusel .item-top-product-image img {
  width: 100%;
  border-radius: 7px;
}

.producers-carusel {
  background: #6BC4C8;
  background: linear-gradient(90deg, var(--gradiend-color-2) 0%, var(--gradiend-color-1) 100%);
  padding: 0.5rem 4rem 0;
}
.producers-carusel .item-producer {
  padding: 6px;
}
.producers-carusel .item-producer .producer-link {
  text-decoration: none;
  cursor: pointer;
}
.producers-carusel .item-producer .producer-icon {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 6px;
}
.producers-carusel .item-producer .producer-name {
  color: var(--primary-color);
  text-align: center;
  display: block;
  font-weight: 500;
}
.producers-carusel .owl-nav button.owl-prev,
.producers-carusel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 26px;
  background-color: var(--primary-color);
  color: var(--text-invert);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  line-height: 1rem;
}
.producers-carusel .owl-nav button.owl-prev {
  left: -42px;
}
.producers-carusel .owl-nav button.owl-next {
  right: -42px;
}
.producers-carusel .owl-dots {
  display: none;
}

.footer {
  font-size: 0.9em;
}
.footer .footer-logo {
  background-color: var(--primary-color);
}
.footer .information-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .information-list .information-link-item {
  text-decoration: none;
  color: var(--text);
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.product-details .text-formated {
  white-space: break-spaces;
}

.characteristics-param {
  display: inline-block;
  background-color: var(--budget-param);
  padding: 1px 5px;
  border-radius: 4px;
  margin-right: 3px;
  font-size: 0.9rem;
}

.producer-item-icon {
  aspect-ratio: 1/1;
  display: inline-block;
}

.producer-icon {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
}

.producer-spray_market {
  background-image: url(/assets/images/producers/spray_market.png);
}

.producer-alexpainting {
  background-image: url(/assets/images/producers/alexpainting.png);
}

.producer-com_plex {
  background-image: url(/assets/images/producers/com_plex.png);
}

.producer-bihui {
  background-image: url(/assets/images/producers/bihui.png);
}

.producer-festool {
  background-image: url(/assets/images/producers/festool.png);
}

.producer-olejnik {
  background-image: url(/assets/images/producers/olejnik.png);
}

.producer-3М {
  background-image: url(/assets/images/producers/3M_wordmark.png);
}

.producer-blue_dolphin {
  background-image: url(/assets/images/producers/blue_dolphin.png);
}

.producer-graco {
  background-image: url(/assets/images/producers/graco.png);
}

.producer-mirka {
  background-image: url(/assets/images/producers/mirka.png);
}

.producer-kubala {
  background-image: url(/assets/images/producers/kubala.png);
}

.producer-starmix {
  background-image: url(/assets/images/producers/starmix.png);
}

.producer-gabra {
  background-image: url(/assets/images/producers/gabra.png);
}

.producer-tajima {
  background-image: url(/assets/images/producers/tajima.png);
}

.producer-wooster {
  background-image: url(/assets/images/producers/wooster.png);
}

.producer-rollingdog {
  background-image: url(/assets/images/producers/rollingdog.png);
}

.producer-maxxt {
  background-image: url(/assets/images/producers/maxxt.png);
}

.producer-mustang {
  background-image: url(/assets/images/producers/mustang.png);
}

.producer-gipsokarton_in_ua {
  background-image: url(/assets/images/producers/gipsokarton_in_ua.png);
}

.producer-wizman {
  background-image: url(/assets/images/producers/wizman.png);
}

.producer-knauf {
  background-image: url(/assets/images/producers/knauf.png);
}

.producer-china {
  background-image: url(/assets/images/producers/china.png);
}

.producer-poland {
  background-image: url(/assets/images/producers/poland.png);
}

.producer-bosch {
  background-image: url(/assets/images/producers/bosch.png);
}

.products-list-group {
  list-style: none;
  margin: 0;
  padding: 0;
}
.products-list-group .products-item-image {
  width: 100%;
}

.card.products-list-group-item {
  min-height: 300px;
  height: 100%;
}
.card.products-list-group-item .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-item-link {
  color: var(--bs-body-color);
  text-decoration: none;
  height: 100%;
}

.products-item-name {
  display: block;
  text-align: center;
}

.sub-categories-list {
  list-style: none;
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.sub-categories-list .sub-category-item {
  flex: 0 0 auto;
  background-color: #eeeeee;
  padding: 5px 15px;
  border-radius: 6px;
}
.sub-categories-list .sub-category-item a {
  color: var(--bs-body-color);
  text-decoration: none;
}
.sub-categories-list .sub-category-item:hover {
  background-color: #b5c3d1;
}
.sub-categories-list .sub-category-item:hover a {
  text-decoration: underline;
}

.modal-basket .modal-header {
  display: flex;
  justify-content: space-between;
}
.modal-basket .modal-body {
  max-height: calc(100vh - 160px);
  overflow: auto;
}

.basket-products-list {
  --basket-image-size: 80px;
}

.basket-product-item {
  border-bottom-width: 7px;
  border-color: transparent;
}

.product-item-image-wrapper {
  flex: 0 0 auto;
  width: var(--basket-image-size);
  height: var(--basket-image-size);
  border-radius: 6px;
  background-color: #f4f5f6;
  padding: 3px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
}

.product-item-image {
  width: 100%;
  min-width: calc(var(--basket-image-size) - 6px);
  max-height: var(--basket-image-size);
}

.product-item-total-price {
  white-space: nowrap;
}

.product-item-remove {
  flex: 0 0 auto;
}

.checkout-index .checkout-products-list {
  width: 100%;
}
.checkout-index .checkout-product-image {
  width: 100px;
  height: 100px;
}
.checkout-index .checkout-product-name {
  padding-right: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Specify the desired number of lines */
  text-overflow: ellipsis; /* Optional: adds ellipsis for browsers that might not fully support -webkit-line-clamp */
  white-space: normal; /* Ensures text wraps naturally */
}
.checkout-index .checkout-product-count {
  max-width: 82px;
  min-width: 64px;
}
.checkout-index .delivery-address,
.checkout-index .delivery-newpost {
  display: none;
}
.checkout-index .delivery-group:has(input#deliveryTypeSelf:checked) .delivery-address,
.checkout-index .delivery-group:has(input#deliveryTypeNP:checked) .delivery-newpost {
  display: block;
}

.alert.alert-info-policy {
  position: fixed;
  z-index: 9999;
  bottom: 0px;
  background-color: #e9e9e9;
  box-shadow: 0px 0px 5px 1px #ccc;
  right: 0px;
  left: 0px;
  width: auto;
  bottom: 0px;
  margin: 0;
}

.btn-following {
  box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.3), 0 0 2px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(203, 203, 203, 0.9);
  border: none;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: scale 0.2s ease, rotate 0.2s ease, background-color 0.2s ease;
}
.btn-following.btn-is-following {
  background-color: #ff6f61;
  rotate: 360deg;
}
.btn-following.btn-size-small {
  font-size: 12px;
}
.btn-following.btn-size-large {
  font-size: 24px;
}
.btn-following.btn-position-top-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.btn-following:hover {
  background-color: #ff3b2e;
}
.btn-following:active {
  background-color: #e63946;
  scale: 0.9;
}

.searching-form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.searching-form .searching-form-inner {
  min-width: min(300px, 100vw - 30px);
  width: 50vw;
}

main > .container {
  padding: 10px 15px 20px;
}

.list-numbers {
  counter-reset: item;
  padding-left: 1rem;
}
.list-numbers li {
  display: block;
}
.list-numbers li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
  content: "";
  left: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  margin: 4px 4px 2px 4px;
  background: transparent;
}

a.asc:after {
  border-bottom: solid 7px #212529;
  border-top-width: 0;
}

a.desc:after {
  border-top: solid 7px #212529;
  border-bottom-width: 0;
}

.grid-view th {
  white-space: nowrap;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

.form-group {
  margin-bottom: 1rem;
}

.navbar-brand {
  --bs-navbar-brand-padding-y: 0px;
}

.logo {
  height: 40px;
}

.producers-list-group,
.categories-list-group {
  list-style: none;
  margin: 0;
  padding: 0;
}

.producers-list-group-item,
.categories-list-group-item {
  border-radius: 25px;
  background-color: #f4f5f6;
  padding: 16px;
  height: 100%;
}

.producers-list-group-item:hover,
.categories-list-group-item:hover {
  background-color: #e9ecef;
}

.producers-item-link,
.categories-item-link {
  color: var(--bs-body-color);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.categories-item-name {
  display: block;
  text-align: center;
}

.categories-item-image {
  aspect-ratio: 1/1;
  width: 100%;
}

.contact-info,
.social-networks-links {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.contact-info .ih-icon,
.social-networks-links .ih-icon {
  font-size: 18px;
}

/*# sourceMappingURL=site.css.map */
