/* COLORS */
.pnotify .pnotify-container {
  padding: 7px 15px 0;
  border-radius: 4px;
  background-color: #0e294b;
  color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(19, 48, 85, 0.15);
}
.pnotify .pnotify-container .pnotify-closer {
  line-height: 18px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pnotify .pnotify-container .pnotify-closer:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.pnotify .pnotify-container .pnotify-content {
  margin-bottom: -7px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.32px;
  margin: 0;
  background-color: #0d2340;
  margin: 0 -15px;
  margin-top: -7px;
  margin-bottom: 7px;
  padding: 7px 15px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text {
  margin-top: -7px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text::-webkit-scrollbar-thumb {
  background: rgba(148, 148, 148, 0.65);
  border-radius: 7px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text::-webkit-scrollbar-thumb:hover {
  background: #070D20;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text::-webkit-scrollbar-thumb:active {
  background: rgb(2.4230769231, 4.5, 11.0769230769);
}
.pnotify .pnotify-container .pnotify-content .pnotify-text::-webkit-scrollbar-track {
  background: transparent;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text .pnotify-pre-line {
  display: block;
  white-space: initial;
  font-weight: 300;
  padding: 7px 0;
  margin-bottom: 7px;
}
.pnotify .pnotify-container .pnotify-content .pnotify-text .pnotify-pre-line:empty {
  display: none;
}
.pnotify .pnotify-container.bootstrap4-error {
  color: #bd0000;
  background-color: #ffbdbd;
}
.pnotify .pnotify-container.bootstrap4-error .pnotify-closer {
  color: #bd0000;
}
.pnotify .pnotify-container.bootstrap4-error .pnotify-closer:hover {
  color: #8a0000;
}
.pnotify .pnotify-container.bootstrap4-error .pnotify-content .pnotify-title {
  background-color: #ff8a8a;
}
.pnotify .pnotify-container.bootstrap4-notice {
  color: rgb(189, 160.3636363636, 0);
  background-color: #fff5bd;
}
.pnotify .pnotify-container.bootstrap4-notice .pnotify-closer {
  color: rgb(189, 160.3636363636, 0);
}
.pnotify .pnotify-container.bootstrap4-notice .pnotify-closer:hover {
  color: rgb(138, 117.0909090909, 0);
}
.pnotify .pnotify-container.bootstrap4-notice .pnotify-content .pnotify-title {
  background-color: rgb(255, 237.2727272727, 138);
}
.pnotify .pnotify-container.bootstrap4-success {
  color: rgb(14.3181818182, 189, 0);
  background-color: #c2ffbd;
}
.pnotify .pnotify-container.bootstrap4-success .pnotify-closer {
  color: rgb(14.3181818182, 189, 0);
}
.pnotify .pnotify-container.bootstrap4-success .pnotify-closer:hover {
  color: rgb(10.4545454545, 138, 0);
}
.pnotify .pnotify-container.bootstrap4-success .pnotify-content .pnotify-title {
  background-color: rgb(146.8636363636, 255, 138);
}
.pnotify.pnotify-with-icon .pnotify-content {
  margin-left: 0;
}

.btn {
  position: relative;
  text-decoration: none;
  border-radius: 53px;
  border: 1px solid #c5c5c5;
  overflow: hidden;
  background: transparent;
  font-size: 16px;
  color: #133055;
  z-index: 0;
  line-height: 30px;
  padding: 5px 15px;
}
.btn:before {
  position: absolute;
  display: none;
  content: " ";
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.btn.btn-outline-primary {
  color: #109af1;
  border-color: #109af1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-primary:not(.reverse):before {
  display: block;
  opacity: 0;
  background: linear-gradient(-45deg, rgb(11.3992094862, 123.7628458498, 194.6007905138) 0%, #109af1 100%) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-primary:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: transparent;
}
.btn.btn-outline-primary:hover:before {
  opacity: 1;
}
.btn.btn-primary {
  border-color: transparent;
  color: #ffffff;
}
.btn.btn-primary:not(.reverse):before {
  display: block;
  background: linear-gradient(0deg, #070D20 0%, #109af1 50%, #070D20 100%) !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.btn.btn-primary.reverse:before {
  background: linear-gradient(0deg, #109af1 0%, #070D20 50%, #109af1 100%) !important;
}
.btn.btn-primary:hover {
  background: transparent;
  color: #ffffff;
}
.btn.btn-primary:hover:before {
  top: 0;
  bottom: -100%;
}
.btn.btn-outline-secondary {
  color: #00d51c;
  border-color: #00d51c;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-secondary:not(.reverse):before {
  display: block;
  opacity: 0;
  background: linear-gradient(-45deg, rgb(0, 162, 21.2957746479) 0%, #00d51c 100%) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-secondary:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: transparent;
}
.btn.btn-outline-secondary:hover:before {
  opacity: 1;
}
.btn.btn-secondary {
  border-color: transparent;
  color: #ffffff;
}
.btn.btn-secondary:not(.reverse):before {
  display: block;
  background: linear-gradient(0deg, #1b8d00 0%, #00d51c 50%, #1b8d00 100%) !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.btn.btn-secondary.reverse:before {
  background: linear-gradient(0deg, #00d51c 0%, #1b8d00 50%, #00d51c 100%) !important;
}
.btn.btn-secondary:hover {
  background: transparent;
  color: #ffffff;
}
.btn.btn-secondary:hover:before {
  top: 0;
  bottom: -100%;
}
.btn.btn-outline-dark {
  color: #586269;
  border-color: #586269;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-dark:not(.reverse):before {
  display: block;
  opacity: 0;
  background: linear-gradient(-45deg, rgb(64.7461139896, 72.103626943, 77.2538860104) 0%, #586269 100%) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-dark:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: transparent;
}
.btn.btn-outline-dark:hover:before {
  opacity: 1;
}
.btn.btn-dark {
  border-color: transparent;
  color: #ffffff;
}
.btn.btn-dark:not(.reverse):before {
  display: block;
  background: linear-gradient(0deg, #404950 0%, #586269 50%, #404950 100%) !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.btn.btn-dark.reverse:before {
  background: linear-gradient(0deg, #586269 0%, #404950 50%, #586269 100%) !important;
}
.btn.btn-dark:hover {
  background: transparent;
  color: #ffffff;
}
.btn.btn-dark:hover:before {
  top: 0;
  bottom: -100%;
}
.btn.btn-outline-yellow {
  color: #e6b800;
  border-color: #e6b800;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-yellow:not(.reverse):before {
  display: block;
  opacity: 0;
  background: linear-gradient(-45deg, rgb(179, 143.2, 0) 0%, #e6b800 100%) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-yellow:hover {
  color: #133055;
  border-color: transparent;
  background-color: transparent;
}
.btn.btn-outline-yellow:hover:before {
  opacity: 1;
}
.btn.btn-yellow {
  border-color: transparent;
  color: #133055;
}
.btn.btn-yellow:not(.reverse):before {
  display: block;
  background: linear-gradient(0deg, #ecab14 0%, #e6b800 50%, #ecab14 100%) !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.btn.btn-yellow.reverse:before {
  background: linear-gradient(0deg, #e6b800 0%, #ecab14 50%, #e6b800 100%) !important;
}
.btn.btn-yellow:hover {
  background: transparent;
  color: #133055;
}
.btn.btn-yellow:hover:before {
  top: 0;
  bottom: -100%;
}
.btn.btn-outline-red {
  color: #d52828;
  border-color: #d52828;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-red:not(.reverse):before {
  display: block;
  opacity: 0;
  background: linear-gradient(-45deg, rgb(170.0632411067, 31.9367588933, 31.9367588933) 0%, #d52828 100%) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.btn-outline-red:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: transparent;
}
.btn.btn-outline-red:hover:before {
  opacity: 1;
}
.btn.btn-red {
  border-color: transparent;
  color: #ffffff;
}
.btn.btn-red:not(.reverse):before {
  display: block;
  background: linear-gradient(0deg, #B42222 0%, #d52828 50%, #B42222 100%) !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.btn.btn-red.reverse:before {
  background: linear-gradient(0deg, #d52828 0%, #B42222 50%, #d52828 100%) !important;
}
.btn.btn-red:hover {
  background: transparent;
  color: #ffffff;
}
.btn.btn-red:hover:before {
  top: 0;
  bottom: -100%;
}
.btn.text-white {
  color: #ffffff !important;
}
.btn.text-dark {
  color: #133055 !important;
}
.btn.btn-icon {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  padding: 0;
}
.btn.btn-icon.btn-circle {
  border-radius: 50%;
}
.btn.btn-sm {
  zoom: 0.8;
}
.btn:disabled {
  filter: grayscale(0.75);
  pointer-events: none;
}
.btn.btn-uppercase {
  text-transform: uppercase;
}
.btn.btn-low-radius {
  border-radius: 4px;
}
.btn.btn-low-radius::after, .btn.btn-low-radius::after {
  border-radius: 4px;
}
.btn.btn-padding {
  line-height: 14px;
  padding: 10px 16px;
}
.btn.btn-with-icon i {
  margin-right: 0.5rem;
  margin-left: -0.5rem;
}

.standard-btn {
  font: normal normal 500 18px/22px Montserrat;
  color: #000000;
  padding: 12px 20px;
  border: 3px solid;
  border-image-slice: 1;
  cursor: pointer;
}

.standard-btn--white-border {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.standard-btn--white-border.active, .standard-btn--white-border:hover {
  background-color: white;
  color: #091227;
}

.standard-btn--dark-border {
  border: 2px solid #091227;
  color: #091227;
}
.standard-btn--dark-border.active, .standard-btn--dark-border:hover {
  background-color: white;
  color: #091227;
}

.standard-btn--dark-background {
  color: #FFFFFF !important;
  background: #091227 0 0 no-repeat padding-box;
}
.standard-btn--dark-background.active, .standard-btn--dark-background:hover {
  background-color: white;
  color: #091227 !important;
}

.standard-btn--yellow-border-dark-background {
  border-image-source: linear-gradient(115deg, #B37C0D 0%, #F2D974 32%, #CFA538 65%, #B0790A 100%);
}
.standard-btn--yellow-border-dark-background:hover {
  color: #091227 !important;
  background: white;
  text-decoration: none;
  transition: background 0.5s linear;
}

.standard-btn--yellow-border {
  border-image-source: linear-gradient(115deg, #B37C0D 0%, #F2D974 32%, #CFA538 65%, #B0790A 100%);
}
.standard-btn--yellow-border:hover {
  color: white !important;
  background: #091227;
  text-decoration: none;
  transition: background 0.5s linear;
}

@media (max-width: 940px) {
  .standard-btn {
    padding: 9px 8px;
  }
}
@media (max-width: 768px) {
  .standard-btn {
    padding: 6px 10px;
  }
}
@media (max-width: 500px) {
  .standard-btn {
    padding: 0.45rem 1.1rem;
  }
}
@media (max-width: 370px) {
  .standard-btn {
    padding: 0.2rem 0.1rem;
  }
}
.form-content .form-row-holder {
  margin: 10px 0;
}
.form-content .text-box label {
  display: block;
  width: 100%;
  text-align: right;
  padding-top: 7px;
}
.form-content input {
  width: 100%;
}
.form-content textarea {
  width: 100%;
  height: 80px;
}
.form-content h2 {
  margin-top: 15px;
}

.link-next-to-button {
  margin-right: 20px;
}

.error {
  color: #ffffff;
  font-weight: 600;
  background: #e20613;
  padding: 4px 8px;
  font-size: 11px;
  display: none;
}

.error-box {
  color: #ffffff;
  font-weight: 600;
  background: #e20613;
  padding: 5px 10px;
  font-size: 12px;
  margin-top: 10px;
}

.input-error {
  border-color: #e20613 !important;
}
.input-error ~ .error {
  display: block;
}

.delivery {
  display: none;
}

/* Custom checkbox */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font: 600 16px/32px Nunito Sans;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #707070;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  background: #ffffff;
  font: normal normal 400 14px/34px Montserrat;
  color: #000000;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .link-next-to-button {
    margin: 0 0 10px;
    display: block;
  }
}
.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.clear_fix:before, .clear_fix:after {
  content: "";
  display: table;
}

.clear_fix:after {
  clear: both;
}

.display-none {
  display: none;
}

.position-relative {
  position: relative;
}

.text-red {
  color: #d52828;
}

.no-image {
  border: 1px solid #eee;
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 20px;
}
.no-image img {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.modal-header .close {
  opacity: 1;
  text-shadow: none;
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: #000;
  font-weight: 800;
  background: none;
}

.justify-content-right {
  justify-content: right;
}

.underlined-link {
  text-decoration: underline;
  font: normal normal 600 18px/81px Montserrat;
  color: #091227;
}

.cryptedmail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.yellow-bold-font {
  font: normal normal bold 18px/32px Montserrat;
  color: #FFB300;
}

.loader-circle {
  border: 3px solid rgb(9, 18, 39);
  border-top-color: #1e71ff;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.loader-circle-filter-wrap {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
.loader-circle-filter-wrap::after {
  content: "";
  background: rgba(0, 0, 0, 0.46);
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.loader-circle-filter {
  border: 3px solid rgb(9, 18, 39);
  border-top-color: #1e71ff;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  animation: spin 1s linear infinite;
  position: absolute;
  top: calc(50% - 3em);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.container {
  position: relative;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.image-wrapper {
  position: relative;
  height: 220px;
  border: 1px solid #e5e5e5;
}
.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.back-to-top {
  background: linear-gradient(115deg, #B37C0D 0%, #F2D974 32%, #CFA538 65%, #B0790A 100%);
  bottom: 20px;
  color: #fff;
  display: none;
  opacity: 1;
  padding: 15px 20px;
  position: fixed;
  right: 20px;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 25;
}
.back-to-top:hover {
  opacity: 0.75;
}

#cookieBar {
  display: none;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: fit-content;
  padding: 15px;
  background: rgba(28, 41, 59, 0.9);
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 9888;
}
#cookieBar .btn {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.grid-two-columns {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr;
  align-content: center;
}
.grid-two-columns .column-1, .grid-two-columns .column-2 {
  position: relative;
}
.grid-two-columns img {
  max-width: 100%;
}

.grid-two-columns-first-wider {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-content: center;
}
.grid-two-columns-first-wider .column-1, .grid-two-columns-first-wider .column-2 {
  position: relative;
}
.grid-two-columns-first-wider img {
  max-width: 100%;
}

.grid-two-columns-second-wider {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-content: center;
}
.grid-two-columns-second-wider .column-1, .grid-two-columns-second-wider .column-2 {
  position: relative;
}
.grid-two-columns-second-wider img {
  max-width: 100%;
}

.grid-four-same-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
}
.grid-four-same-columns img {
  max-width: 100%;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1270px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1380px;
    max-width: 1380px;
  }
}
@media (max-width: 1024px) {
  .back-to-top-holder {
    display: none;
  }
}
@media (max-width: 768px) {
  .grid-two-columns-first-wider, .grid-two-columns-second-wider, .grid-two-columns {
    grid-template-columns: 1fr;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  background: #fff;
  overflow-x: hidden;
  color: #0B1A2E;
  height: 100%;
  overflow-y: scroll;
  position: relative;
}

h1 {
  font-weight: 700;
  font-size: 28px;
  color: #0B1A2E;
  margin-top: 0;
  margin-bottom: 25px;
}
h1.marged-top {
  margin-top: 25px;
}

h2 {
  color: #0B1A2E;
  margin: 25px 0 10px;
  font: normal normal 800 34px/32px Montserrat;
}
h2.small-heading {
  font-size: 18px;
  border-bottom: 1px solid #CDDBEC;
}

h2.with-line {
  position: relative;
}
h2.with-line:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #2B4ECD;
  position: absolute;
  left: -25px;
  top: 15px;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  color: #0B1A2E;
  margin-top: 30px;
}

h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 20px 0 10px;
}

a {
  color: #11142D;
  text-decoration: none;
}
a:hover {
  color: #11142D;
  text-decoration: none;
}
a a.more-info {
  float: right;
  border-radius: 6px;
  padding: 12px 36px;
  color: white;
  text-decoration: none;
  background: #4084bd;
}
a a.more-info:hover {
  background: #21649c;
}

p {
  color: #0B1A2E;
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
  color: #11142D;
  font-weight: 700;
}

input[type=submit], input[type=button] {
  text-decoration: none;
  border: none;
  font-size: 16px;
  padding: 10px 27px;
  color: white;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 400;
  background: transparent linear-gradient(180deg, #0055FF 0%, #2C4FCE 100%) 0% 0% no-repeat padding-box;
  border: 0;
}
input[type=submit].green, input[type=button].green {
  background: transparent linear-gradient(180deg, #1bc81b 0%, #009f25 90%, #005513 100%);
}
input[type=submit].green:hover, input[type=button].green:hover {
  background: transparent linear-gradient(180deg, #009f25 0%, #1bc81b 90%, #00284B 100%);
}

input[type=submit]:focus, input[type=button]:focus, .button:focus, button:focus, input[type=submit]:active, input[type=button]:active, .button:active, button:active {
  outline: none;
}

input[type=password], input[type=text], input[type=number], input[type=date], textarea {
  padding: 5px 10px;
  border: solid 1px #CDDBEC;
  font-size: 14px;
  color: #0B1A2E;
}

input[type=password]:focus, input[type=text]:focus, input[type=number]:focus, input[type=date]:focus, textarea:focus,
input[type=password]:active, input[type=text]:active, input[type=number]:active, input[type=date]:active, textarea:active {
  border: 1px solid #C2D1EC;
  outline: none;
}

input[readonly] {
  background-color: #eee;
}

label.radio {
  display: inline;
  margin-right: 10px;
}

input.radio {
  width: auto;
  margin: 0 5px;
}

select {
  border-radius: 2px;
  border: 1px solid #bed4e2;
  padding: 5px;
  width: 100%;
}

ul {
  list-style: none;
}

ol {
  margin-left: 20px;
}

@media (max-width: 1024px) {
  body {
    overflow-x: visible;
  }
}
.benefits-container {
  background: url("/img/front/carton-bg-2.jpg") center bottom no-repeat;
  margin: 0;
  padding: 50px 0;
  z-index: 20;
  position: relative;
}
.benefits-container .item {
  background: left center no-repeat;
  padding: 8px 0 8px 90px;
}
.benefits-container .item .headline {
  font-size: 16px;
  color: #0B1A2E;
  font-weight: 700;
}
.benefits-container .item .subline {
  color: #0B1A2E;
  font-size: 14px;
  font-weight: 400;
}
.benefits-container .item.kvalita {
  background-image: url("/img/front/icons/benefit-kvalita.svg");
  background-position: left 5px center;
}
.benefits-container .item.cena {
  background-image: url("/img/front/icons/benefit-cena.svg");
  background-position: left 5px center;
}
.benefits-container .item.sleva {
  background-image: url("/img/front/icons/benefit-sleva.svg");
  background-position: left 15px center;
}
.benefits-container .item.rychlost {
  background-image: url("/img/front/icons/benefit-rychlost.svg");
}

.product-benefits {
  background: #fff;
  box-shadow: 0 0 23px #EEF1F4;
  margin: 25px 0 15px;
}
.product-benefits .benefits-container {
  background: #fff;
  padding: 15px 10px;
}
.product-benefits .benefits-container .container {
  padding: 0;
  width: auto;
}

@media (max-width: 1024px) {
  .advantages {
    margin: 30px 0 10px;
  }
  .advantages .item {
    padding: 15px 0 15px 85px;
  }
}
@media (max-width: 768px) {
  .benefits-container .item {
    background: left center no-repeat;
    padding: 12px 0 12px 90px;
    margin-bottom: 25px;
  }
}
/*@import "web/content-components/news";*/
.categories-container {
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  margin: 4rem auto;
  max-width: 86%;
}
.categories-container .item {
  position: relative;
  min-height: 380px;
  max-width: 380px;
  min-width: 380px;
  background-size: 100%;
  z-index: 2;
}
.categories-container .item .text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: 30%;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) 0% 0% no-repeat padding-box;
  padding: 3rem 0;
}
.categories-container .item .text-content p {
  font: normal normal normal 16px/32px Montserrat;
  color: white;
  margin: 0 0 20px;
}
.categories-container .item:hover {
  background-size: 105%;
  transition: all 0.6s ease-out;
}
.categories-container .item:hover .standard-btn {
  display: inline-block;
}
.categories-container .item:hover .text-content {
  height: 50%;
}
.categories-container .item .headline {
  font: normal normal 800 22px/22px Montserrat;
  color: white;
}
.categories-container .item .standard-btn {
  color: white;
  margin: 1rem auto;
  display: none;
}

@media (max-width: 1750px) {
  .categories-container .item {
    min-width: 350px;
    min-height: 350px;
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 1620px) {
  .categories-container .item {
    min-width: 320px;
    min-height: 320px;
    max-width: 320px;
    max-height: 320px;
  }
}
@media (max-width: 1440px) {
  .categories-container {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .categories-container .item {
    min-width: 380px;
    min-height: 380px;
    max-width: 380px;
    max-height: 380px;
  }
}
@media (max-width: 1024px) {
  .categories-container {
    padding: 0 0 15px;
  }
  .categories-container .categories-holder {
    border-left: 0;
    margin: 0;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .categories-container {
    grid-template-columns: 1fr;
  }
  .categories-container .item {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .categories-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 1rem;
  }
  .categories-container .item {
    min-width: 100%;
  }
}
.contact-box {
  box-shadow: 0 0 23px #EEF1F4;
  text-align: center;
  padding: 20px;
}
.contact-box a {
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}
.contact-box .headline {
  font-size: 21px;
  margin-bottom: 20px;
}
.contact-box .photo {
  width: 124px;
  height: 124px;
  margin-bottom: 15px;
  max-width: 100%;
  display: inline-block;
  background: transparent radial-gradient(closest-side at 50% 50%, #ECECEC 0%, #FFFFFF 90%, #EFEFEF 100%) 0% 0% no-repeat padding-box;
  border-radius: 60px;
  text-align: center;
  padding-top: 5px;
}
.contact-box .person {
  font-size: 22px;
  font-weight: bold;
}
.contact-box .position {
  font-size: 15px;
  margin: -5px 0 5px;
}
.contact-box .phone {
  color: #0055FF;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
.contact-box .hours {
  font-size: 14px;
  font-weight: 600;
  margin: -5px 0 5px;
}
.contact-box .email {
  display: inline-block;
  background: url("/img/front/icons/contact-box-email.svg") left center no-repeat;
  font-size: 18px;
  color: #0055FF;
  padding-left: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-box .email:hover {
  text-decoration: underline;
}
.contact-box .button {
  display: inline-block;
}

.contact-line-box {
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.1607843137);
  background: transparent linear-gradient(270deg, #020E1E 0%, #0D2544 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  border-right: 5px solid #2B4ECD;
  margin-right: -40px;
  margin-left: -999px;
  padding: 17px 40px 17px 999px;
  margin-bottom: 60px;
}
.contact-line-box a {
  text-decoration: none;
}
.contact-line-box a:hover {
  text-decoration: underline;
}
.contact-line-box .headline {
  font-size: 18px;
  font-weight: 600;
}
.contact-line-box .subline {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-line-box .photo {
  width: 120px;
  display: inline-block;
  background: transparent radial-gradient(closest-side at 50% 50%, #ECECEC 0%, #FFFFFF 90%, #EFEFEF 100%) 0% 0% no-repeat padding-box;
  border-radius: 60px;
  border: 3px solid #fff;
  position: absolute;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
  top: -28px;
  left: -30px;
}
.contact-line-box .photo img {
  max-width: 100%;
}
.contact-line-box .person {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-line-box .position {
  font-size: 14px;
  margin: -5px 0 5px;
}
.contact-line-box .contact {
  padding: 5px 0 5px 55px;
}
.contact-line-box .contact a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.contact-line-box .contact a:hover {
  text-decoration: underline;
}
.contact-line-box .contact.phone {
  background: url("/img/front/icons/contact-phone.svg") center left no-repeat;
}
.contact-line-box .contact.email {
  background: url("/img/front/icons/contact-email.svg") center left no-repeat;
}
.contact-line-box .contact span {
  display: block;
}
.contact-line-box .button {
  display: inline-block;
  background: transparent;
  border: 2px solid #e6b800;
}
.contact-line-box .button:hover {
  background: transparent linear-gradient(180deg, #F39200 0%, #FFBE00 100%) 0% 0% no-repeat padding-box;
}

@media (max-width: 1024px) {
  .contact-line-box {
    margin: 0 0 30px;
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .contact-line-box {
    margin: 0 0 30px;
    background: #2d2d2d;
    padding: 25px;
  }
  .contact-line-box .headline {
    font-size: 20px;
    line-height: 23px;
    font-weight: 600;
    text-align: center;
  }
  .contact-line-box .subline {
    text-align: center;
    margin-bottom: 25px;
  }
  .contact-line-box .photo {
    margin-bottom: 15px;
    display: block;
    text-align: center;
    position: relative;
    top: initial;
    left: 50%;
    margin-left: -60px;
  }
  .contact-line-box .person {
    text-align: center;
  }
  .contact-line-box .position {
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-line-box .contact {
    margin-bottom: 15px;
  }
  .contact-line-box .contact .phone {
    font-size: 22px;
  }
}
.fefco-box {
  background: url("/img/front/fefco-bg.png") center center no-repeat;
  padding: 20px 20px 30px;
  margin-top: 30px;
}
.fefco-box .headline {
  color: #e6b800;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.fefco-box .subline {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 25px;
}
.fefco-box a {
  text-decoration: none;
}
.fefco-box .button {
  background: transparent;
  border: 1px solid #ecab14;
}
.fefco-box .button:hover {
  background: transparent linear-gradient(180deg, #F39200 0%, #FFBE00 100%) 0% 0% no-repeat padding-box;
}

.hp-about-container {
  position: relative;
  max-width: 90%;
  margin-left: auto;
  z-index: 2;
}
.hp-about-container .column-1 {
  padding: 3rem;
}
.hp-about-container h2 {
  margin: 20px 0;
}
.hp-about-container h3 {
  margin: 10px 0 30px;
}
.hp-about-container p {
  margin-bottom: 20px;
}
.hp-about-container .image-holder {
  z-index: 5;
}
.hp-about-container .about-us-text {
  font: normal normal normal 18px/32px Montserrat;
  margin-bottom: 3rem;
}
.hp-about-container img {
  max-width: 100%;
}

.our-results-box {
  background: #091227 0% 0% no-repeat padding-box;
  box-shadow: 0px 60px 55px rgba(9, 18, 39, 0.262745098);
  padding: 2rem;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  left: -28%;
  max-width: 1000px;
}
.our-results-box .our-results-box-content {
  display: flex;
  justify-content: space-between;
  width: auto;
}
.our-results-box .our-results-box-item {
  font: normal normal 600 18px/55px Montserrat;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-results-box .our-results-box-item p {
  font: normal normal 600 18px/21px Montserrat;
  color: #FFFFFF;
  padding: 1rem 1rem 0 0.5rem;
}
.our-results-box .our-results-box-item p:nth-child(1) {
  padding: 1rem 0.5rem 0 0.5rem;
  text-align: right;
}
.our-results-box .our-results-box-item .our-results-box-number {
  background: linear-gradient(139deg, #B37C0D 0%, #F2D974 32%, #CFA538 65%, #B0790A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 47px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .hp-about-container .grid-two-columns-second-wider {
    grid-template-columns: 1fr;
  }
  .hp-about-container .our-results-box {
    position: initial;
  }
}
@media (max-width: 1024px) {
  .hp-about-container {
    margin-right: auto;
  }
  .our-results-box .our-results-box-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .hp-about-container {
    max-width: 100%;
  }
  .hp-about-container h2 {
    margin-top: 15px;
  }
  .our-results-box {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
  .our-results-box .our-results-box-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .our-results-box {
    padding: 2rem 0.5rem;
  }
  .hp-about-container .column-1 {
    padding: 1rem;
  }
  .hp-about-container img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 370px) {
  .hp-about-container .column-1 {
    padding: 1rem;
  }
  .our-results-box .our-results-box-item p {
    font: normal normal 600 14px/21px Montserrat;
  }
}
/*@import "web/content-components/hp-catalogue";*/
.hp-contact-container {
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.hp-hledate-partnera-container {
  padding: 40px 0 80px;
  position: relative;
}
.hp-hledate-partnera-container .hledate-partnera {
  background: transparent linear-gradient(90deg, #020E1E 0%, #0D2544 100%) 0% 0% no-repeat padding-box;
  border-left: 5px solid #2B4ECD;
  position: relative;
  padding: 35px 999px 45px 60px;
  margin-left: -40px;
  margin-right: -999px;
}
.hp-hledate-partnera-container .hledate-partnera h2 {
  margin-top: 0;
  color: #ffffff;
}
.hp-hledate-partnera-container .hledate-partnera p {
  color: #ffffff;
  margin-bottom: 40px;
}
.hp-hledate-partnera-container .hledate-partnera a {
  text-decoration: none;
}
.hp-hledate-partnera-container .hledate-partnera .image-holder {
  position: absolute;
  top: -90px;
}

@media (max-width: 1024px) {
  .hp-hledate-partnera-container {
    padding: 0;
  }
  .hp-hledate-partnera-container .hledate-partnera {
    margin: 0;
    padding: 20px 25px 30px;
  }
}
@media (max-width: 991px) {
  .hp-hledate-partnera-container .hledate-partnera .image-holder {
    display: none;
  }
}
.hp-news-container {
  padding: 40px 0 90px;
  position: relative;
  background: linear-gradient(90deg, #EEF1F7 92%, #ffffff 5%);
  z-index: 2;
}
.hp-news-container .container-wrap {
  max-width: 90%;
  margin-left: auto;
  padding: 3rem;
}
.hp-news-container .news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 90%;
}
.hp-news-container .news-item {
  width: 324px;
  height: 425px;
  position: relative;
}
.hp-news-container .news-item .headline {
  font: normal normal bold 18px/22px Montserrat;
  left: 0;
  right: 0;
  color: #FFFFFF;
  position: absolute;
  bottom: 0.2rem;
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.39);
}
.hp-news-container .news-item .news-category {
  font: normal normal normal 16px/21px Montserrat;
}
.hp-news-container .news-item .news-year {
  font: normal normal normal 16px/19px Montserrat;
  color: #FFB300;
}
.hp-news-container .container {
  max-width: 90%;
  margin-left: auto;
}
.hp-news-container h2 {
  margin: 0 0 40px;
}

@media (max-width: 1745px) {
  .hp-news-container {
    background: linear-gradient(90deg, #EEF1F7 100%, #ffffff 5%);
  }
  .hp-news-container .news-list {
    grid-gap: 1rem;
  }
}
@media (max-width: 1590px) {
  .hp-news-container .news-list {
    display: flex;
    justify-content: center;
  }
  .hp-news-container .news-list .news-item {
    width: 280px;
    height: 380px;
  }
}
@media (max-width: 1590px) {
  .hp-news-container .news-list {
    flex-wrap: wrap;
  }
  .hp-news-container .news-list .news-item {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hp-news-container .container-wrap {
    max-width: 100%;
  }
  .hp-news-container .news-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hp-news-container .news-item {
    margin: 1rem auto 0 auto;
  }
}
.hp-manufacturer-container, .manufacturer-container {
  padding: 20px 0 40px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}
.hp-manufacturer-container h2, .manufacturer-container h2 {
  margin: 15px 0 10px;
  text-align: center;
}
.hp-manufacturer-container .item, .manufacturer-container .item {
  text-align: center;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  max-width: 70%;
  margin: 0 auto;
}
.hp-manufacturer-container .item img, .manufacturer-container .item img {
  max-width: 100%;
  max-height: 100%;
}
.hp-manufacturer-container.gray-backround, .manufacturer-container.gray-backround {
  background: #EEF1F7 0% 0% no-repeat padding-box;
}

@media (max-width: 768px) {
  .hp-manufacturer-container, .manufacturer-container {
    grid-template-columns: 1fr;
  }
}
.manufacturer h1 {
  font: normal normal 800 34px/32px Montserrat;
}
.manufacturer p {
  font: normal normal normal 18px/32px Montserrat;
}
.manufacturer .manufacturer-image {
  display: flex;
  align-items: center;
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 2rem;
  margin: 2rem 0;
}
.manufacturer .manufacturer-image img {
  max-width: 100%;
}
.manufacturer .manufacturer-description {
  padding: 2rem;
}
.manufacturer .manufacturer-products-container {
  position: relative;
  background: #EEF1F7 0% 0% no-repeat padding-box;
  z-index: 2;
  padding: 2rem 0;
  margin-top: 4rem;
}

.manufacturers-box {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  font: normal normal 600 18px/53px Montserrat;
}
.manufacturers-box h3 {
  margin: 2rem 0 0 2rem;
  padding-top: 2rem;
}

.manufacturers-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.manufacturers-box-row a {
  max-width: 250px;
  min-width: 225px;
}
.manufacturers-box-row a:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.15);
}
.manufacturers-box-row a:hover .manufacturer-specialization {
  transition: transform 1s;
  transform: scale(1.1);
}
.manufacturers-box-row .manufacturer-specialization {
  font: normal normal 500 16px/22px Montserrat;
}
.manufacturers-box-row img {
  max-width: 100%;
  padding: 2rem 2rem 1rem;
}
.manufacturers-box-row {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.manufacturer-item {
  display: block;
}
.manufacturer-item img {
  padding: 1rem;
  max-height: 95px;
  min-height: 95px;
}
.manufacturer-item:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 1300px) {
  .manufacturers-box-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hp-container-wrap {
  max-width: 90%;
  margin-left: auto;
  padding: 0 3rem;
}
.hp-container-wrap .grid-two-columns-second-wider {
  grid-gap: 1rem;
  max-width: 90%;
}

.hp-downloads-container {
  position: relative;
  padding: 3rem 0;
  z-index: 2;
}
.hp-downloads-container .grid-two-columns-second-wider {
  grid-gap: 1rem;
}

.download-items {
  display: grid;
  grid-gap: 6px;
}

.download-item {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 1rem;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 12fr 1fr;
  margin-bottom: 0.7rem;
}
.download-item:last-of-type {
  margin: 0;
}
.download-item .download-item-file-icon {
  width: 35px;
}
.download-item .download-item-file-name {
  font: normal normal bold 18px/32px Montserrat;
}
.download-item .download-icon {
  float: right;
}

#downloads-page {
  margin: 3rem 0;
}
#downloads-page .grid-two-columns-first-wider {
  grid-gap: 2rem;
}

@media (max-width: 1400px) {
  .hp-container-wrap {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .hp-downloads-container {
    max-width: 100%;
  }
  .hp-container-wrap {
    padding: 1rem;
    max-width: 100%;
  }
  .hp-downloads-container .grid-two-columns-second-wider {
    max-width: 100%;
  }
  .download-item .download-item-file-icon {
    width: 22px;
  }
}
.hp-container-wrap .hp-gallery-container {
  padding: 2.5rem 3rem 5.6rem 3rem;
}
.hp-container-wrap .gallery-container {
  max-width: 94%;
}

.hp-gallery-container {
  padding: 2.5rem 1rem;
  position: relative;
  margin-left: auto;
  z-index: 2;
}
.hp-gallery-container a.standard-btn {
  margin-left: auto;
}
.hp-gallery-container .grid-two-columns-second-wider {
  grid-gap: 1rem;
}

.gallery-photo:hover img {
  transition: transform 500ms;
  transform: scale(1.1);
}

@media (max-width: 1400px) {
  .hp-container-wrap .hp-gallery-container {
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .hp-gallery-container {
    max-width: 100%;
  }
  .hp-gallery-container .row.gallery-container {
    margin-left: auto;
    margin-right: auto;
  }
  .hp-container-wrap .gallery-container {
    max-width: 100%;
  }
}
.hp-products-container {
  position: relative;
  background: #EEF1F7;
  z-index: 2;
}
.hp-products-container .container-wrap {
  padding: 3rem;
}
.hp-products-container h2 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hp-products-container .container-wrap {
    padding: 4rem 0;
  }
  .hp-products-container h2 {
    margin-top: 3rem;
  }
}
#page h1 {
  font: normal normal 800 34px/32px Montserrat;
  color: #091227;
}
#page ul {
  list-style: disc;
  margin: 10px 0 10px 30px;
}
#page ul li {
  font-size: 16px;
  line-height: 24px;
}
#page .container {
  max-width: 1400px;
}
#page .about-us-column h3 {
  font: normal normal bold 18px/32px Montserrat;
}
#page .about-us-text p {
  font: normal normal normal 18px/32px Montserrat;
}
#page .about-us-image {
  float: right;
}
#page .lighting-delivery-phases h3 {
  font: normal normal 800 24px/32px Montserrat;
}
#page .lighting-delivery-phases .lighting-delivery-phases-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#page .lighting-delivery-phases .lighting-delivery-phase {
  min-width: 33%;
  font: normal normal 600 22px/30px Montserrat;
  margin: 2rem 0;
  display: flex;
  align-items: center;
}
#page .lighting-delivery-phases .lighting-delivery-phase img {
  margin-right: 0.5rem;
}
#page .contact-block {
  margin-top: 3rem;
  background: #EEF1F7 0% 0% no-repeat padding-box;
  font: normal normal normal 22px/27px Montserrat;
  box-shadow: 0 52px 99px rgba(0, 0, 0, 0.0588235294);
  display: flex;
  justify-content: space-evenly;
  padding: 2.1rem 2rem;
  align-items: center;
  flex-wrap: wrap;
}
#page .contact-block img {
  margin-right: 1rem;
}
#page #contact-form {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 20px rgba(5, 27, 71, 0.0705882353);
  padding: 2rem;
}
#page #contact-form h2 {
  margin-top: 0;
}
#page #contact-form .input-row {
  margin-bottom: 1rem;
}
#page #contact-form label {
  font: normal normal normal 16px/28px Montserrat;
}
#page #contact-form input[type=text], #page #contact-form input[type=number], #page #contact-form input[type=date], #page #contact-form textarea {
  width: 100%;
  background: #EEF1F7 0% 0% no-repeat padding-box;
}
#page #contact-form input[type=text]:focus, #page #contact-form input[type=number]:focus, #page #contact-form input[type=date]:focus, #page #contact-form textarea:focus {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #FFB300;
}
#page #contact-form input {
  height: 45px;
}
#page #contact-form textarea {
  margin-top: 2rem;
  height: 105px;
}
#page .contact-address p {
  font: normal normal 400 18px/28px Montserrat;
}
#page .map-holder {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 37px 64px rgba(5, 27, 71, 0.1568627451);
  padding: 2rem;
  margin-bottom: 4rem;
}
#page .map-holder img {
  width: 100%;
}

.sound-section {
  margin-bottom: 2rem;
  padding: 1rem;
}

.hybryd-page .hybryd-systems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.hybryd-page .hybryd-systems .hybryd-systems-item {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 12px 15px 0px;
  padding: 2rem 1rem;
  transition: all 0.5s;
}
.hybryd-page .hybryd-systems .hybryd-systems-item .headline {
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.hybryd-page .hybryd-systems .hybryd-systems-item .image {
  min-height: 200px;
  max-height: 200px;
}
.hybryd-page .hybryd-systems .hybryd-systems-item .image img {
  transition: all 0.5s;
}
.hybryd-page .hybryd-systems .hybryd-systems-item:hover {
  transform: scale(1.05);
}
.hybryd-page .hybryd-systems .hybryd-systems-item:hover img {
  transform: scale(1.1);
}
.hybryd-page .gray-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  background: url("/img/front/hybryd_background.webp") center center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 12px 15px 0px;
}
.hybryd-page .gray-section a {
  background: white;
}
.hybryd-page .gray-section a:hover {
  color: #091227;
  background: #091227;
}

.sound-page img {
  max-width: 100%;
}
.sound-page .gray-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  background: url("/img/front/sound_background.webp") center center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 12px 15px 0px;
}
.sound-page .gray-section a {
  background: white;
}
.sound-page .gray-section a:hover {
  color: #091227;
  background: #091227;
}

@media (max-width: 1300px) {
  .hybryd-page .hybryd-systems {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1230px) {
  #page .lighting-delivery-phases .lighting-delivery-phases-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 830px) {
  #page .lighting-delivery-phases .lighting-delivery-phases-wrapper {
    grid-template-columns: 1fr;
  }
  .hybryd-page .hybryd-systems {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .hybryd-page .hybryd-systems {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  #page .contact-block img {
    margin-right: 0;
  }
}
#career-page h1 {
  margin-top: 1rem;
  font: normal normal 800 34px/32px Montserrat;
}
#career-page {
  margin: 3rem 0;
}
#career-page .sub-headline--bold {
  font: normal normal bold 18px/32px Montserrat;
}
#career-page .career-accordion {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 1rem;
  margin: 1rem 1rem 1rem 0;
}
#career-page .career-accordion .career-heading {
  cursor: pointer;
  position: relative;
  font: normal normal 800 18px/32px Montserrat;
}
#career-page .career-accordion .career-content {
  border-top: 1px solid white;
  margin-top: 1rem;
}
#career-page .career-accordion .career-content ul {
  list-style: disc;
  font: normal normal normal 16px/32px Montserrat;
}
#career-page .career-accordion .career-content ul li {
  margin-left: 1.5rem;
}
#career-page .career-accordion .career-content p {
  font: normal normal normal 16px/32px Montserrat;
}
#career-page .career-accordion .carret {
  background: white;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 1rem;
}
#career-page .career-accordion .carret:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  content: "";
  width: 12px;
  height: 12px;
  border-left: 2px solid black;
  border-top: 2px solid black;
  display: block;
  transform: rotate(222deg);
  margin-left: auto;
  margin-right: auto;
}
#career-page .career-accordion .career-heading.is-active .carret:before {
  transform: rotate(45deg);
  top: 12px;
}
#career-page .career-accordion {
  /* Helpers */
}
#career-page .career-accordion .is-hidden {
  display: none;
}

.categories-strip {
  margin-bottom: 2rem;
}
.categories-strip h3 {
  font: normal normal bold 18px/53px Montserrat;
  color: #FFFFFF;
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  text-align: center;
  left: 0;
  right: 0;
}
.categories-strip .category-item {
  position: relative;
}
.categories-strip .category-item::before {
  content: "";
  display: block;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slider-container {
  background: transparent url("/../../img/front/maybe-banner.webp") 0 0 no-repeat padding-box;
  width: 94%;
  padding-bottom: 37%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-size: cover;
}
.slider-container img {
  max-width: 100%;
}
.slider-container .content {
  position: absolute;
  top: 60px;
  left: 30px;
  width: 50%;
}
.slider-container .content .headline {
  font-weight: 800;
  color: #fff;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 15px;
}
.slider-container .content .subline {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 35px;
}
.slider-container a {
  text-decoration: none;
}
.slider-container .centered-btns_tabs {
  margin-top: -30px;
}
.slider-container .centered-btns_tabs a {
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #fff;
}
.slider-container .centered-btns_here a {
  box-shadow: none;
  background: #0055FF;
}

@media (max-width: 1200px) {
  .slider-container .content {
    top: 20px;
    left: 20px;
  }
}
@media (max-width: 991px) {
  .slider-container .car-select {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .slider-container {
    width: 100%;
  }
  .slider-container .content {
    top: 20px;
    left: 20px;
  }
  .slider-container .content .headline {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 25px;
  }
  .slider-container .content .subline {
    font-size: 18px;
    display: none;
  }
}
@media (max-width: 500px) {
  .slider-container {
    background: none;
  }
}
.customer h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.customer label {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  padding-top: 5px;
}
.customer input[type=text], .customer input[type=date], .customer input[type=number], .customer input[type=password] {
  width: 100%;
}
.customer .customer-row {
  margin-bottom: 10px;
}
.customer .with-checkbox {
  text-align: left;
  position: relative;
  cursor: pointer;
}
.customer .with-checkbox [type=checkbox] {
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.customer [name=Description] {
  width: 100%;
  height: 100px;
}
.customer .company-box, .customer .delivery-box, .customer .user-box {
  display: none;
  padding: 10px 0 5px;
}

@media (max-width: 768px) {
  .customer label {
    text-align: left;
  }
}
.order-box {
  border: 1px solid #ddd;
  background-color: #fafafa;
  padding: 0 20px 20px;
  margin: 15px 0;
}
.order-box h2 {
  margin-top: 15px;
}
.order-box table {
  width: 100%;
}
.order-box th {
  font-size: 14px;
  border-bottom: 2px solid #aaa;
  padding: 5px 7px;
}
.order-box th.alignRight {
  text-align: right;
  width: 200px;
  border-bottom: 1px solid #ccc;
}
.order-box td {
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  padding: 5px 7px;
}
.order-box a {
  font-weight: 500;
}
.order-box .center {
  text-align: center;
}
.order-box .right {
  text-align: right;
}
.order-box .left {
  text-align: left;
}

@media (max-width: 768px) {
  .order-box td, .order-box th {
    display: block;
    border: 0;
  }
  .order-box tr td:last-child {
    border-bottom: 1px solid #999;
  }
  .order-box tr th:last-child {
    border-bottom: 2px solid #555;
  }
  .order-box th.alignRight {
    text-align: left;
    width: auto;
  }
}
.order-list {
  width: 100%;
}
.order-list th {
  font-size: 15px;
  border-bottom: 2px solid #999;
  text-align: center;
  padding: 5px 7px;
}
.order-list td {
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  padding: 5px 7px;
}
.order-list a {
  font-weight: 500;
}

@media (max-width: 768px) {
  .order-list td, .order-list th {
    display: block;
    border: 0;
  }
  .order-list tr th:last-child {
    border-bottom: 2px solid #555;
  }
  .order-list tr td:last-child {
    border-bottom: 1px solid #999;
  }
}
#breadcrumb {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
#breadcrumb a {
  font-size: 0;
}
#breadcrumb span {
  display: inline-block;
  color: #11142D;
  position: relative;
  margin-right: 27px;
  font-size: 14px;
  padding-top: 3px;
  text-decoration: underline;
}
#breadcrumb span:after {
  content: "/";
  position: absolute;
  right: -19px;
  top: 4px;
  width: 7px;
  height: 10px;
  color: #C6CBDC;
}
#breadcrumb span.home {
  width: 12px;
  height: 18px;
  background: url("/img/front/icons/breadcrumb-home.svg") left center no-repeat;
}
#breadcrumb span.home:after {
  top: 1px;
}
#breadcrumb span:hover {
  text-decoration: none;
}
#breadcrumb a:last-of-type span {
  font-weight: 600;
  text-decoration: none;
}
#breadcrumb a:last-of-type span:hover {
  text-decoration: underline;
}
#breadcrumb a:last-of-type span:after {
  display: none;
}

@media (max-width: 768px) {
  #breadcrumb {
    display: block;
  }
}
#header {
  background-color: #ffffff;
  z-index: 50;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  -webkit-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
  margin: 0 auto;
}
#header .header-main-container .main-row-holder {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  align-items: center;
  height: 105px;
  width: 94%;
  margin: 0 auto;
  position: relative;
}
#header .header-main-container .main-row-holder .header-logo img {
  position: relative;
  max-width: 100%;
}
#header .header-main-container .main-row-holder .header-menu {
  margin: 2px 0 0;
  display: flex;
  justify-content: space-between;
  font: normal normal 500 18px/22px Montserrat;
}
#header .header-main-container .main-row-holder .header-menu a {
  text-decoration: none;
}
#header .header-main-container .main-row-holder .header-menu a:hover {
  transition: color 0.5s ease-in;
  color: #d3aa3e;
}
#header .header-main-container .main-row-holder .right-header-menu {
  font: normal normal 600 18px/22px Montserrat;
  display: flex;
  justify-content: end;
  align-items: center;
}
#header .header-main-container .main-row-holder .right-header-menu img {
  margin-left: 6px;
}
#header .header-main-container .main-row-holder .right-header-menu a {
  margin-left: 2rem;
}
#header .header-main-container .main-row-holder .right-header-menu a:hover {
  transition: color 0.25s linear;
  color: #d3aa3e;
}
#header .header-main-container .main-row-holder .right-header-menu a.active {
  color: #d3aa3e;
}
#header .header-main-container .main-row-holder .header-assembler-holder .header-assembler {
  background: url("/img/front/icons/assembler.png") left center no-repeat;
  padding: 15px 0 15px 60px;
  font-weight: 700;
  font-size: 17px;
  color: #0055FF;
  text-decoration: underline;
}
#header .header-main-container .main-row-holder .header-assembler-holder .header-assembler:hover {
  text-decoration: none;
}
#header .header-main-container .main-row-holder .mobile-menu {
  display: none;
  width: 24px;
  height: 24px;
  float: right;
  background: url("/img/front/icons/mobile-menu.svg") center center no-repeat;
  cursor: pointer;
  margin-left: 15px;
}

#header .header-menu li {
  position: relative;
}

#header .header-menu li:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#header .header-menu li:before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(115deg, #B37C0D 0%, #F2D974 32%, #CFA538 65%, #B0790A 100%);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

#header .header-menu li.active a {
  color: #d3aa3e;
}

#header .header-menu li.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #151626;
  transform: none !important;
}

.right-header-menu .submenu {
  position: relative;
}
.right-header-menu .submenu:hover .catalog-submenu-items, .right-header-menu .submenu:active .catalog-submenu-items {
  opacity: 1;
  visibility: visible;
}

.catalog-submenu-items {
  position: absolute;
  background: white;
  width: 300px;
  top: 3.5rem;
  padding: 1rem 1rem;
  border-radius: 4px;
  transition: 0.5s opacity;
  box-shadow: 0 30px 50px rgba(44, 49, 69, 0.1921568627);
  z-index: 1;
  opacity: 0;
  left: 2rem;
}
.catalog-submenu-items::before {
  content: "";
  position: absolute;
  top: -10px;
  transform: rotate(328deg);
  border-bottom: 50px solid #fff;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  height: 0;
  width: 80px;
  z-index: -1;
}

@media (max-width: 1360px) {
  #header .header-main-container .main-row-holder {
    grid-template-columns: 1fr 3fr 2fr;
    grid-gap: 1rem;
  }
}
@media (max-width: 1200px) {
  #header .header-main-container .main-row-holder {
    grid-template-columns: 1fr 3fr 2fr;
    grid-gap: 1rem;
  }
  #header .header-main-container .main-row-holder .right-header-menu a {
    margin-left: 0.5rem;
    font-size: 16px;
  }
  #header .header-main-container .main-row-holder .header-menu {
    font: normal normal 500 16px/22px Montserrat;
  }
  #header .header-main-container .main-row-holder .right-header-menu img {
    margin-left: 6px;
    width: 13px;
  }
}
@media (max-width: 940px) {
  #header .header-main-container .main-row-holder .right-header-menu a {
    margin-left: 0.1rem;
    font-size: 14px;
  }
  #header .header-main-container .main-row-holder .header-menu {
    font: normal normal 500 14px/22px Montserrat;
  }
}
@media (max-width: 768px) {
  #header .header-main-container .main-row-holder .header-menu {
    display: none;
    top: 3rem;
    position: absolute;
    right: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    z-index: 3;
    font-size: 14px;
  }
  #header .header-main-container .main-row-holder .header-menu li {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1803921569);
  }
  #header .header-main-container .main-row-holder .right-header-menu a {
    margin-left: 0.5rem;
    font-size: 14px;
  }
  #header .header-main-container .main-row-holder {
    grid-template-columns: 2.5fr 4fr 1fr;
  }
  #header .header-main-container .main-row-holder .right-header-menu img {
    margin-left: 0;
    width: 9px;
  }
  #header {
    border-bottom: 1px solid #ddd;
  }
  #header .header-panel-container {
    display: none;
  }
  #header .header-main-container {
    padding: 20px 0;
  }
  #header .header-main-container .main-row-holder {
    height: auto;
  }
  #header .header-main-container .main-row-holder .mobile-menu {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #header .header-main-container .main-row-holder .header-logo {
    text-align: left;
  }
  #header .header-main-container .main-row-holder .header-logo img {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  #header .header-main-container .main-row-holder {
    grid-gap: 0;
  }
  #header .header-main-container .main-row-holder .right-header-menu .standard-btn--yellow-border {
    display: none;
  }
  #header .header-main-container .main-row-holder .right-header-menu {
    justify-content: center;
  }
  .catalog-submenu-items {
    left: -2rem;
  }
}
@media (max-width: 400px) {
  #header .header-main-container .main-row-holder .right-header-menu a {
    font-size: 12px;
  }
}
#quick-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 6px 15px 0 #949494;
  z-index: 5;
  border-radius: 5px;
  overflow: hidden;
  max-height: 481px;
}
#quick-search .goto {
  text-align: center;
  padding: 20px 10px 30px;
  margin-top: 10px;
}
#quick-search .goto a {
  text-decoration: none;
}
#quick-search .items {
  overflow-y: scroll;
}
#quick-search .items:not(.notResult) {
  max-height: 400px;
  overflow: overlay;
}
#quick-search .items:not(.notResult)::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}
#quick-search .items:not(.notResult)::-webkit-scrollbar-thumb {
  background: rgba(148, 148, 148, 0.65);
  border-radius: 7px;
}
#quick-search .items:not(.notResult)::-webkit-scrollbar-thumb:hover {
  background: #070D20;
}
#quick-search .items:not(.notResult)::-webkit-scrollbar-thumb:active {
  background: rgb(2.4230769231, 4.5, 11.0769230769);
}
#quick-search .items:not(.notResult)::-webkit-scrollbar-track {
  background: transparent;
}
#quick-search .items:not(.notResult)::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
#quick-search .items:not(.notResult) .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #0B1A2E;
  padding: 5px 15px;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
#quick-search .items:not(.notResult) .item:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
#quick-search .items:not(.notResult) .item .photo {
  max-width: 60px;
  display: inline-block;
  margin-right: 10px;
}
#quick-search .items:not(.notResult) .item .photo img {
  max-width: 100%;
}
#quick-search .items:not(.notResult) .item .name {
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  font-weight: 700;
  padding-right: 15px;
  text-decoration: underline;
}
#quick-search .items:not(.notResult) .item .name:hover {
  text-decoration: none;
}
#quick-search .items:not(.notResult) .item .price {
  justify-self: flex-end;
  font-weight: 700;
  white-space: nowrap;
  font-size: 16px;
}
#quick-search .items:not(.notResult) .item:hover, #quick-search .items:not(.notResult) .item:active {
  background: #F5F7F9;
}
#quick-search .items.notResult {
  padding: 15px;
  font-size: 18px;
  font-weight: 200;
  text-align: center;
}
#quick-search .items.notResult .loader {
  width: 50px;
  display: inline-block;
  object-fit: cover;
  object-position: center;
  height: 30px;
}
#quick-search .items > .categories .category {
  text-decoration: none;
  color: #133055;
  padding: 5px 15px;
  display: block;
  display: flex;
  border-bottom: 1px solid #efefef;
}
#quick-search .items > .categories .category:last-child {
  border-bottom: 1px solid #C3CED9;
}
#quick-search .items > .categories .category .name {
  display: inline-block;
  flex-basis: 100%;
}
#quick-search .items > .categories .category .type {
  justify-self: flex-end;
  display: inline-block;
  color: #949494;
}
#quick-search .items > .categories .category:hover, #quick-search .items > .categories .category:active {
  background: rgba(7, 13, 32, 0.1);
}
#quick-search .items > .categories .category:hover .name, #quick-search .items > .categories .category:active .name {
  color: #070D20;
}

.search-bar {
  max-width: 50%;
  margin: 0 auto 2rem;
}
.search-bar button {
  border: none;
  background: transparent;
}
.search-bar .wrapper {
  width: 1px;
  height: 1px;
}
.search-bar form {
  position: relative;
}
.search-bar form .fa-search {
  position: absolute;
  top: 7px;
  left: 8px;
}
.search-bar form .clearSearch {
  position: absolute;
  right: 9px;
  top: 7px;
}
.search-bar form .submitSearch {
  background: #091227;
  color: white;
  padding: 9px;
  visibility: hidden;
}
.search-bar input {
  color: black;
  padding: 0.5rem 2rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

#quick-search-display-all {
  cursor: pointer;
}

input#searchTerm::-webkit-input-placeholder {
  font: normal normal 400 14px/34px Montserrat;
  color: #999;
}

#content {
  padding-top: 100px;
  max-width: 1920px;
  margin: 0 auto;
}
#content > .container {
  background: #fff;
}
#content > .container .main-content {
  padding: 15px 0 0;
  background: #fff;
  min-height: 300px;
}

.container-with-vertical-lines {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.container-with-vertical-lines::after {
  content: "";
  position: absolute;
  border-left: 2px solid #EEF1F7;
  top: 0;
  width: 28%;
  height: 100%;
  left: 7rem;
  z-index: 1;
}
.container-with-vertical-lines::before {
  content: "";
  position: absolute;
  border-right: 2px solid #EEF1F7;
  top: 0;
  left: 3rem;
  width: 28%;
  height: 100%;
}

.sub-headline {
  font: 400 18px/20px Montserrat;
  color: #FFB300;
  position: relative;
  margin-left: 65px;
}
.sub-headline:after {
  content: "";
  width: 53px;
  height: 1px;
  background: black;
  position: absolute;
  left: -62px;
  top: 10px;
}

.sub-headline--white:after {
  background: white;
}

@media (max-width: 768px) {
  #content {
    padding-top: 64px;
  }
}
#footer {
  background: #091227 0% 0% no-repeat padding-box;
  position: relative;
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}
#footer a {
  text-decoration: none;
  color: #ffffff;
}
#footer .standard-btn--yellow-border-dark-background {
  white-space: nowrap;
}
#footer .standard-btn--white-border:hover {
  color: black;
  text-decoration: none;
}
#footer .footer-logo, #footer .contact-tel, #footer .contact-email, #footer .contact-button, #footer .contact-address {
  max-width: 270px;
  min-width: 270px;
  margin-top: 1rem;
}
#footer .contact-tel {
  font: normal normal normal 22px/27px Montserrat;
}
#footer .contact-tel span {
  font: normal normal bold 22px/27px Montserrat;
}
#footer .contact-email {
  font: normal normal normal 22px/27px Montserrat;
}
#footer .contact-links p, #footer .contact-address p {
  font: normal normal normal 18px/32px Montserrat;
  color: #FFFFFF;
}
#footer .contact-links {
  max-width: 270px;
  min-width: 270px;
}
#footer .copyright-container .container {
  border-top: 1px solid;
  border-image-source: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 72%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  padding: 2rem 0 1rem;
}
#footer .copyright-container .copyright-holder {
  padding-bottom: 20px;
}
#footer .copyright-container .copyright-holder .row {
  margin: 0;
}
#footer .copyright-container .copyright-holder .info {
  font: normal normal medium 16px/32px Montserrat;
  color: #CA9D32;
}
#footer .copyright-container .copyright-holder .evidsoft {
  text-align: right;
}
#footer .copyright-container .copyright-holder .evidsoft img {
  margin-left: 5px;
  margin-top: -5px;
}
#footer .contact-container {
  padding: 25px 0 20px;
}
#footer .contact-container .container-wrap {
  max-width: 75%;
  margin: 0 auto;
}
#footer .contact-container .logo-holder {
  text-align: center;
  padding-top: 10px;
}
#footer .contact-container .logo-holder img {
  max-width: 70%;
}
#footer .contact-container .headline {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
}
#footer .contact-container ul {
  margin-bottom: 0;
}
#footer .contact-container ul li {
  list-style: none;
  line-height: 35px;
  font-size: 14px;
}
#footer .contact-container ul li a {
  text-decoration: none;
}
#footer .contact-container ul li a:hover {
  text-decoration: none;
  color: #d3aa3e;
}
#footer .contact-container .footer-contact-box {
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 11px;
  border: 1px solid #0055FF;
}
#footer .contact-container .footer-contact-box .contact-item {
  padding: 10px 0 10px 52px;
  background: left center no-repeat;
  font-size: 14px;
}
#footer .contact-container .footer-contact-box .contact-item.phone {
  background-image: url("/img/front/icons/footer-phone.svg");
}
#footer .contact-container .footer-contact-box .contact-item.email {
  background-image: url("/img/front/icons/footer-email.svg");
}
#footer .contact-container .footer-contact-box .contact-item a {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: -5px;
}
#footer .contact-container .footer-address {
  font-size: 16px;
  line-height: 35px;
}
#footer .contact-container .map {
  border: 4px solid #fff;
}
#footer .contact-container img {
  max-width: 40px;
}
#footer .payments {
  margin-top: 20px;
  background: #fff;
  padding: 15px 20px;
}

@media (max-width: 1500px) {
  .container-wrap .d-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  #footer .payments {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #footer .copyright-container .copyright-holder .info, #footer .copyright-container .copyright-holder .evidsoft {
    text-align: center;
  }
  #footer .contact-container .container-wrap {
    max-width: 90%;
  }
  #footer .contact-container .container-wrap .d-flex {
    flex-wrap: wrap;
  }
}
.newsletter-container {
  background: #c0262b;
  padding: 10px 0;
}
.newsletter-container .headline {
  font-size: 24px;
  color: #fff;
}
.newsletter-container .form {
  position: relative;
}
.newsletter-container .form input[type=text] {
  width: 100%;
  color: #4d4d4d;
  font-size: 14px;
  padding: 15px 100px 15px 65px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-weight: 600;
  background: #fff url("/img/front/icons/newsletter-email.png") left 20px center no-repeat;
}
.newsletter-container .form input[type=button] {
  position: absolute;
  right: 3px;
  top: 5px;
}
.newsletter-container .message {
  display: none;
  margin-top: 4px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .newsletter-container .headline {
    font-size: 16px;
  }
}
.billboard-container {
  padding: 3rem;
  position: absolute;
  width: 50%;
  height: 92%;
  background: transparent linear-gradient(102deg, #091227 33%, rgba(9, 18, 39, 0.8392156863) 86%, transparent 50%) 0 0 no-repeat padding-box;
  bottom: 2rem;
  top: 2rem;
  left: 3rem;
  border: 3px solid;
  border-image-source: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 72%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.billboard-container .headline {
  font: normal normal bold 60px/72px Montserrat;
  color: #fff;
}
.billboard-container .content-wrapper {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.billboard-container .content-wrapper span {
  font: normal normal normal 28px/57px Montserrat;
  color: #FFB300;
}
.billboard-container .buttons {
  margin-top: 1.5rem;
}
.billboard-container .buttons a {
  margin-right: 1rem;
}

@media (max-width: 1720px) {
  .billboard-container {
    padding: 1rem;
  }
  .billboard-container .content-wrapper {
    flex: 0 0 80.666667%;
    max-width: 80.666667%;
  }
}
@media (max-width: 1400px) {
  .billboard-container .headline {
    font: normal normal bold 42px/56px Montserrat;
  }
}
@media (max-width: 1250px) {
  .slider-container {
    height: 500px;
  }
  .billboard-container {
    padding: 2rem;
    background: transparent linear-gradient(102deg, #091227 33%, rgba(9, 18, 39, 0.8392156863) 84%, transparent 50%) 0 0 no-repeat padding-box;
  }
  .billboard-container .content-wrapper {
    flex: 0 0 100.666667%;
    max-width: 100.666667%;
  }
  .billboard-container .content-wrapper span {
    font: normal normal normal 28px/35px Montserrat;
  }
  .billboard-container .headline {
    font: normal normal 400 30px/35px Montserrat;
    color: #fff;
  }
  .billboard-container .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 1100px) {
  .billboard-container {
    background: transparent linear-gradient(90deg, #091227 33%, rgba(9, 18, 39, 0.8392156863) 100%, transparent 50%) 0 0 no-repeat padding-box;
  }
}
@media (max-width: 875px) {
  .billboard-container {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .slider-container .billboard-container {
    padding: 2rem;
    position: absolute;
    width: 100%;
    height: 90%;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
  }
  .slider-container .billboard-container .buttons {
    margin-top: 1.5rem;
  }
  .slider-container .billboard-container .buttons a {
    display: inline-block;
    margin-top: 1rem;
  }
}
@media (max-width: 500px) {
  .slider-container .billboard-container {
    height: 100%;
    padding: 1rem;
  }
  .slider-container .billboard-container .buttons a {
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 1rem 2rem;
    text-align: center;
  }
  #header .header-main-container .main-row-holder {
    grid-template-columns: 4fr 2fr 1fr;
  }
}
@media (max-width: 370px) {
  #header .header-main-container .main-row-holder .right-header-menu a {
    margin-left: 0.1rem;
  }
  .billboard-container .headline {
    font: normal normal 400 18px/30px Montserrat;
  }
}
ul.tabs {
  padding: 0;
  list-style: none;
  margin: 0;
  position: relative;
  z-index: 5;
  border-bottom: 2px solid #2C4FCE;
}
ul.tabs li {
  color: #0B1A2E;
  display: inline-block;
  padding: 8px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1098039216);
  margin-right: 5px;
}
ul.tabs li:hover {
  text-decoration: none;
}
ul.tabs li.current {
  color: #ffffff;
  text-decoration: none;
  background: transparent linear-gradient(180deg, #2C4FCE 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
}

.tab-content {
  display: none;
  background: #fff;
  padding: 25px 0;
  border-top: 2px solid #e0e7ec;
  position: relative;
  top: -3px;
}

.tab-content.current {
  display: block;
}

.cart-table .header-row {
  font-size: 14px;
  font-weight: 600;
  color: #10133E;
  padding: 8px 0;
  border-bottom: 2px solid #F4F9FD;
}
.cart-table .cart-row {
  font-weight: 600;
  color: #10133E;
  border-bottom: 1px solid #F4F9FD;
  padding: 22px 0;
}
.cart-table .cart-row .name {
  font-size: 17px;
  font-weight: 700;
}
.cart-table .cart-row .name a {
  color: #10133E;
}
.cart-table .cart-row .code {
  font-size: 14px;
  font-weight: 400;
}
.cart-table .cart-row .montage {
  margin-top: 5px;
}
.cart-table .cart-row .montage input {
  position: relative;
  top: 1px;
  margin-right: 3px;
}
.cart-table .cart-row .image {
  text-align: center;
  height: 50px;
}
.cart-table .cart-row .image img {
  max-width: 100%;
  max-height: 100%;
}
.cart-table .cart-row .counter {
  font-size: 0;
  user-select: none;
}
.cart-table .cart-row .counter .counter-item {
  width: 28px;
  height: 28px;
  background: #fff;
  border: solid 1px #e4dad2;
  display: inline-block;
  background: center center no-repeat;
  cursor: pointer;
  user-select: none;
}
.cart-table .cart-row .counter .counter-item.minus {
  border-radius: 5px 0 0 5px;
  background-image: url("/img/front/icons/cart-minus.png");
}
.cart-table .cart-row .counter .counter-item.plus {
  border-radius: 0 5px 5px 0;
  background-image: url("/img/front/icons/cart-plus.png");
}
.cart-table .cart-row .counter .counter-item:hover {
  border-color: #c9b4a3;
}
.cart-table .cart-row .counter .count {
  height: 34px;
  width: 55px;
  display: inline-block;
  border: 1px solid #C3CED9;
  border-radius: 0;
  box-shadow: inset 0px 0px 11px 0px rgb(242, 242, 242);
  padding: 0;
  text-align: center;
  position: relative;
  user-select: none;
}
.cart-table .cart-row .counter .quantity-text {
  font-size: 12px;
}
.cart-table .cart-row .price {
  font-size: 16px;
  font-weight: 800;
  color: #10133E;
}
.cart-table .cart-row .total-price {
  font-size: 18px;
  font-weight: 800;
  color: #0055FF;
}
.cart-table .cart-row .delete-cart-item {
  width: 13px;
  height: 13px;
  display: inline-block;
  background: url("/img/front/icons/cart-delete.png");
  cursor: pointer;
}
.cart-table .cart-row .delete-cart-item:hover {
  opacity: 0.6;
}

.cart-summary {
  padding: 20px 0;
  color: #10133E;
  background: #F4F9FD;
  font-size: 13px;
  font-weight: 800;
}
.cart-summary .left-to-free-shipping-holder {
  margin-bottom: 10px;
}
.cart-summary .without-vat {
  margin-bottom: 5px;
}
.cart-summary .vat {
  margin-bottom: 5px;
}
.cart-summary .without-vat-label {
  font-size: 14px;
  font-weight: 800;
  padding-top: 6px;
}
.cart-summary .with-vat {
  font-size: 20px;
  font-weight: 800;
  color: #0055FF;
}

@media (max-width: 768px) {
  .cart-table .header-row {
    display: none;
  }
  .cart-table .name {
    margin: 10px 0;
    text-align: center;
  }
  .cart-table .price, .cart-table .total-price {
    display: block;
    text-align: center;
  }
  .cart-table .delete-cart-item {
    margin-top: 10px;
  }
  .cart-summary {
    padding: 15px;
  }
  .cart-summary .with-vat {
    font-size: 15px;
  }
}
.cart-recapitulation {
  padding: 15px 15px 0 15px;
  font-weight: 700;
  color: #11142D;
  margin-bottom: 20px;
  border: 2px solid #F4F9FD;
}
.cart-recapitulation h2 {
  font-size: 16px;
  margin-top: 0;
}
.cart-recapitulation .products {
  font-size: 14px;
  border-bottom: 1px solid #F4F9FD;
  font-weight: 600;
}
.cart-recapitulation .products .recap-row {
  margin: 10px 0 15px;
}
.cart-recapitulation .products .product-price {
  color: #0B1A2E;
  font-weight: 700;
  font-size: 14px;
}
.cart-recapitulation .total-products {
  border-bottom: 1px solid #F4F9FD;
  padding: 10px 0;
  font-size: 14px;
}
.cart-recapitulation .total-products .total-price {
  font-size: 14px;
  color: #0B1A2E;
}
.cart-recapitulation .ship-pay {
  border-bottom: 1px solid #F4F9FD;
  padding: 10px 0;
  font-size: 14px;
}
.cart-recapitulation .ship-pay .ship-row {
  margin-bottom: 5px;
}
.cart-recapitulation .ship-pay .item-name {
  font-weight: 500;
}
.cart-recapitulation .ship-pay .price {
  font-size: 14px;
}
.cart-recapitulation .total {
  padding: 15px 15px 5px 15px;
  font-size: 14px;
  background: #F4F9FD;
  margin: 0 -15px;
}
.cart-recapitulation .total .total-row {
  margin-bottom: 5px;
}
.cart-recapitulation .total .total-price-without-vat {
  font-size: 14px;
}
.cart-recapitulation .total .total-vat {
  font-size: 14px;
}
.cart-recapitulation .total .total-price-label {
  font-size: 16px;
}
.cart-recapitulation .total .total-price-with-vat {
  font-size: 19px;
  font-weight: 700;
  color: #0055FF;
}

@media (max-width: 768px) {
  .cart-recapitulation .products .product-price {
    display: block;
    text-align: left;
  }
  .cart-recapitulation .total-products .total-price {
    display: block;
    text-align: left;
  }
  .cart-recapitulation #recap-shipping-price, .cart-recapitulation #recap-payment-price {
    display: block;
    text-align: left;
    margin-bottom: 5px;
  }
  .cart-recapitulation .total .total-price, .cart-recapitulation .total .total-vat, .cart-recapitulation .total .total-price-vat {
    display: block;
    text-align: left;
    margin-bottom: 10px;
  }
}
#cart-steps {
  margin: 40px 0 60px;
}
#cart-steps a {
  text-decoration: none;
  color: #0B1A2E;
}
#cart-steps a:hover {
  text-decoration: underline;
}
#cart-steps .step {
  text-align: center;
  position: relative;
}
#cart-steps .step:after {
  content: "";
  position: absolute;
  width: 91%;
  height: 2px;
  top: 19px;
  left: 50%;
  background: transparent linear-gradient(90deg, #F6FAFE 0%, #E6EBEF 100%) 0% 0% no-repeat padding-box;
  margin-left: 10%;
}
#cart-steps .step .counter {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0B1A2E;
  padding-top: 6px;
  margin-bottom: 10px;
  position: relative;
  z-index: 5;
  background: transparent linear-gradient(315deg, #FFFFFF 0%, #E6E6E6 100%) 0% 0% no-repeat padding-box;
  border: 2px solid #e6e6e6;
}
#cart-steps .step .name {
  font-size: 14px;
  font-weight: 600;
  color: #10133E;
}
#cart-steps .step.active .counter {
  border-color: #0055FF;
}
#cart-steps .step.inactive .counter {
  color: #ccc;
}
#cart-steps .step.inactive .name {
  color: #ccc;
}
#cart-steps .step.passed .counter {
  background: url("/img/front/icons/order-step-passed.png") center center no-repeat;
  color: rgba(0, 0, 0, 0);
  border-color: #0055FF;
}
#cart-steps .step.passed:after {
  background: transparent linear-gradient(90deg, #2C4FCE 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
}

#cart-steps .row .col-md-3:nth-of-type(4) .step:after {
  display: none;
}

@media (max-width: 768px) {
  #cart-steps {
    margin-bottom: 10px;
  }
  #cart-steps .row .col-md-4 .step:after {
    display: none;
  }
  #cart-steps .step {
    text-align: left;
  }
  #cart-steps .step .name {
    display: inline-block;
    margin-left: 5px;
  }
  #cart-steps .step:after {
    display: none;
  }
}
.link-buttons {
  text-align: right;
  margin: 30px 0 20px;
}
.link-buttons a {
  text-decoration: none;
}

.terms-label {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
.terms-label .checkbox-holder {
  display: inline-block;
  margin-right: 10px;
}
.terms-label label {
  display: inline-block;
  line-height: 15px;
  font-weight: 500;
}

.order-completed {
  text-align: center;
  color: #1d1d1b;
}
.order-completed .big-check {
  background: url("/img/front/icons/big-check.png") center center no-repeat;
  height: 150px;
  margin: 20px 0;
}
.order-completed .headline {
  font-size: 20px;
  font-weight: 700;
}
.order-completed .headline span {
  color: #0055FF;
}
.order-completed p {
  line-height: 1.57;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.shippings {
  margin-bottom: 30px;
}

.shippings .item, .payments .item {
  padding: 20px 30px 20px 55px;
  border-bottom: 1px solid #F4F9FD;
  margin-bottom: -1px;
  cursor: pointer;
  background: url("/img/front/icons/radio-off.png") left 15px center no-repeat;
  position: relative;
}
.shippings .item .headline, .payments .item .headline {
  font-size: 18px;
  font-weight: 700;
  padding-top: 1px;
}
.shippings .item .subline, .payments .item .subline {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
}
.shippings .item:hover, .payments .item:hover {
  z-index: 5;
  color: #0055FF;
}
.shippings .item.active, .payments .item.active {
  color: #0055FF;
  background-image: url("/img/front/icons/radio-on.png");
}
.shippings .item .price, .payments .item .price {
  font-size: 16px;
  font-weight: 700;
}
.shippings .item .s-dph, .payments .item .s-dph {
  font-size: 11px;
  color: #999;
  position: relative;
  top: -7px;
}
.shippings .item.inactive, .payments .item.inactive {
  cursor: default;
  color: #999;
}
.shippings .item.inactive .headline, .shippings .item.inactive .subline, .payments .item.inactive .headline, .payments .item.inactive .subline {
  color: #999;
}

.active-filter-box {
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #CDDBEC;
  background: #eef1f7;
}
.active-filter-box .headline {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #CDDBEC;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.active-filter-box .parameter-row {
  margin-bottom: 15px;
}
.active-filter-box .parameter-row .filter-name {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
}
.active-filter-box .parameter-row .filter-value {
  cursor: pointer;
  display: inline-block;
  margin-right: 6px;
  border-radius: 4px;
  padding: 3px 20px 3px 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: #0055FF url("/img/front/icons/filter-remove.png") center right 5px no-repeat;
}
.active-filter-box .parameter-row .filter-value:hover {
  opacity: 0.9;
  text-decoration: line-through;
  background-color: #2C4FCE;
}
.active-filter-box .parameter-row a {
  text-decoration: none;
}
.active-filter-box .filter-remove-all {
  border-top: 1px solid #E0E7EC;
  padding-top: 10px;
}

.category-tree-headline {
  background: #0C4F9C left 20px center no-repeat;
  font-size: 18px;
  color: #fff;
  padding: 12px 15px 12px 60px;
  font-weight: 500;
  position: relative;
}

.category-tree {
  border-top: 0;
  margin-bottom: 30px;
  background: #ffffff;
  box-shadow: 0 0 23px #EEF1F4;
}
.category-tree a {
  text-decoration: none;
}
.category-tree ul {
  margin-bottom: 0;
}
.category-tree ul li {
  position: relative;
}
.category-tree ul li .item {
  background: #ffffff;
  padding: 14px 20px;
  border-bottom: 1px solid #eef3f6;
  display: block;
  color: #0B1A2E;
  font-size: 16px;
  font-weight: 600;
}
.category-tree ul li .item.active {
  font-weight: 700;
  background: #EEF3F6;
  color: #00529C;
}
.category-tree ul li .item:hover {
  text-decoration: underline;
}
.category-tree ul li ul {
  box-shadow: none;
}
.category-tree ul li ul li .item {
  position: relative;
  padding: 10px 15px 10px 40px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
}
.category-tree ul li ul li .item:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #E3EAEE;
}
.category-tree ul li ul li .item.active {
  background: #F7F9FB;
}
.category-tree ul li ul li .item.active:before {
  background: #00529C;
}
.category-tree ul > li:last-child .item {
  border-bottom: 0;
}

@media (max-width: 768px) {
  .category-tree-headline {
    background: #0C4F9C !important;
    font-size: 16px;
    padding: 7px 15px;
    font-weight: 600;
  }
  .category-tree ul li .item {
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 500;
  }
  .category-tree ul li ul li .item {
    padding: 5px 15px 5px 40px;
  }
}
.category-top-container {
  padding: 15px 0 2px;
  background: #fff;
}
.category-top-container img {
  max-width: 100%;
}

.category-container {
  font: normal normal normal 18px Montserrat;
}
.category-container p {
  font: normal normal normal 18px/32px Montserrat;
}
.category-container .gray-section {
  background: #EEF1F7;
  padding: 2rem;
  margin: 2rem;
}
.category-container .realization-item {
  position: relative;
  z-index: 2;
}
.category-container .realization-item a {
  margin-top: 1rem;
  display: inline-block;
}

.category-image {
  display: block;
}
.category-image.margin-left-auto {
  margin-left: auto;
}
.category-image.margin-right-auto {
  margin-right: auto;
}

.category-bottom-container {
  padding: 20px 0 0;
  position: relative;
  background: #fff;
}
.category-bottom-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: transparent linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #F7F8FA 100%) 0% 0% no-repeat padding-box;
}
.category-bottom-container .category-car-select {
  margin-bottom: 50px;
  margin-top: 10px;
}
.category-bottom-container .category-car-select .car-select {
  padding: 22px;
  height: 260px;
}
.category-bottom-container .category-car-select .car-select .headline {
  background: none;
  padding: 0;
  margin-bottom: 20px;
}
.category-bottom-container .category-car-select .car-select .button-holder {
  margin-top: 15px;
}

.category-description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
.category-description h2 {
  font-size: 21px;
  margin-top: 5px;
}

.subcategories {
  padding: 15px 0 30px;
}
.subcategories a {
  text-decoration: none;
}
.subcategories .item {
  display: flex;
  width: 100%;
  height: 63px;
  border: 1px solid #e6b800;
  align-items: center;
  color: #0B1A2E;
  line-height: 18px;
  font-size: 14px;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  padding: 0 10px;
}
.subcategories .item:hover {
  background: #e6b800;
  color: #fff;
}

.pl-box {
  margin: 0 0 50px;
  border-top: 1px solid #CDDBEC;
  padding-top: 15px;
}
.pl-box .pagging a {
  margin: 0 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #0B1A2E;
}
.pl-box .pagging a.arrow {
  position: relative;
  font-weight: 600;
}
.pl-box .pagging a:hover {
  text-decoration: underline;
}
.pl-box .pagging a.active {
  background: transparent linear-gradient(180deg, #2C4FCE 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  padding: 5px 12px;
}
.pl-box .pagging a.active:hover {
  background: transparent linear-gradient(180deg, #0055FF 0%, #2C4FCE 100%) 0% 0% no-repeat padding-box;
}
.pl-box .pagging span {
  display: inline-block;
  margin: 0 3px;
}
.pl-box .showing {
  text-align: right;
  font-weight: 600;
}

.list-settings {
  border-bottom: 1px solid #CDDBEC;
  margin-bottom: 30px;
}
.list-settings .sorting a {
  display: inline-block;
  padding: 7px 14px;
  position: relative;
  top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #0B1A2E;
  text-decoration: none;
}
.list-settings .sorting a:hover {
  text-decoration: underline;
}
.list-settings .sorting a.active {
  color: #0B1A2E;
  text-decoration: underline;
}
.list-settings .grid {
  text-align: right;
}
.list-settings .grid a {
  color: #999999;
}
.list-settings .grid a.active {
  color: #CE0606;
  font-weight: bold;
}

@media (max-width: 768px) {
  .list-settings .grid, .list-settings .sorting {
    text-align: center !important;
  }
  .pl-box .pagging, .pl-box .grid, .pl-box .showing {
    text-align: center !important;
  }
  .category-container .gray-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }
  .category-image {
    margin: 1rem auto 2rem;
  }
}
.categories-strip {
  display: flex;
  justify-content: space-between;
}
.categories-strip .category-item {
  padding: 2rem;
  max-width: 24%;
  min-width: 24%;
  min-height: 170px;
}

.main-filter-box {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  margin: 4rem 0 0;
  padding: 2rem;
  position: relative;
  min-height: 300px;
}
.main-filter-box h3 {
  margin-top: 0;
  font: normal normal bold 20px/53px Montserrat;
  text-align: center;
}
.main-filter-box p {
  font: normal normal 600 18px/18px Montserrat;
  text-align: right;
}

.main-filter-box-item .loader-circle {
  right: 6px;
  top: 12px;
  width: 1rem;
  height: 1rem;
  z-index: 9;
  left: -114px;
}

.select2-container--default .select2-selection--single {
  height: 39px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  grid-gap: 1rem;
  align-items: center;
}

.filter-box {
  margin-bottom: 15px;
}
.filter-box .headline {
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}
.filter-box .content {
  padding: 15px 0;
  background: #fff;
  border-top: 1px solid #CDDBEC;
}
.filter-box .content a {
  text-decoration: none;
}
.filter-box .content a:hover {
  text-decoration: underline;
}
.filter-box .content .filter-item {
  margin-bottom: 8px;
  font-size: 12px;
  background: url("/img/front/icons/check-off.png") left top no-repeat;
  padding-left: 25px;
}
.filter-box .content .filter-item.on {
  background: url("/img/front/icons/check-on.png") left top no-repeat;
}
.filter-box .content .filter-item .counter {
  color: #444;
}
.filter-box .content .filter-item.disabled {
  opacity: 0.4;
}

.product-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.product-flags .flag {
  border-radius: 18px;
  font-weight: 400;
  color: #ffffff;
  padding: 5px 8px;
  margin-bottom: 6px;
  display: inline-block;
  font-size: 14px;
}
.product-flags .flag.discount {
  background: transparent linear-gradient(180deg, #A7090B 0%, #DB0100 100%) 0% 0% no-repeat padding-box;
}
.product-flags .flag.clearance-sale {
  background: transparent linear-gradient(180deg, #FF4949 0%, #EB1F1F 100%) 0% 0% no-repeat padding-box;
}
.product-flags .flag.news {
  background: transparent linear-gradient(180deg, #FFBE00 0%, #F39200 100%) 0% 0% no-repeat padding-box;
}

#product-detail {
  padding-top: 20px;
}
#product-detail h1 {
  margin-bottom: 10px;
}
#product-detail h2 {
  margin: 15px 0 5px;
  padding: 0;
  color: #0B1A2E;
  font-weight: 700;
}
#product-detail .additional-info-header {
  font: normal normal bold 18px/32px Montserrat;
  color: #091227;
  border-bottom: 1px solid #FFB300;
  margin-bottom: 1rem;
}
#product-detail .table td, #product-detail .table th {
  padding: 0.25rem 0.85rem;
  border-top: transparent;
  font: normal normal 600 16px/37px Montserrat;
}
#product-detail .table-striped tbody tr:nth-of-type(odd) {
  background-color: #EEF1F7;
}
#product-detail .table-striped tbody td:nth-of-type(even) {
  text-align: right;
}
#product-detail .product-documents {
  margin-top: 1.5rem;
}
#product-detail .product-document {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 1rem;
  display: block;
  font: normal normal bold 18px/32px Montserrat;
  color: #07091C;
}
#product-detail .product-document .download-icon {
  float: right;
}
#product-detail .product-document .type-icon {
  height: 35px;
  padding-right: 1rem;
}
#product-detail .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  padding: 6px;
  height: 400px;
  position: relative;
}
#product-detail .product-image:hover {
  border-color: #dbdbda;
}
#product-detail .product-image img {
  max-width: 100%;
  max-height: 388px;
}
#product-detail .product-image .car-brand {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 20;
  width: 32px;
}
#product-detail .product-image .car-brand img {
  max-width: 32px;
}
#product-detail .product-images .item {
  display: flex;
  width: 100px;
  height: 80px;
  border: 1px solid #EEF5FF;
  padding: 5px;
  justify-content: center;
  align-items: center;
  float: left;
  margin-right: 13px;
  margin-bottom: 10px;
}
#product-detail .product-images .item:hover {
  border-color: #DEE5EF;
}
#product-detail .product-images .item img {
  max-height: 70px;
  max-width: 100%;
}
#product-detail .code {
  font-size: 16px;
}
#product-detail .car-brand-holder {
  font-size: 16px;
}
#product-detail .car-brand-holder img {
  max-width: 50%;
}
#product-detail .manufacturer img {
  max-width: 50%;
}
#product-detail .short-description {
  margin: 25px 0 5px;
}
#product-detail .availability {
  padding: 10px 15px;
  background: #F4F9FD;
  margin: 20px 0;
}
#product-detail .availability .stock-label {
  font-weight: 800;
  font-size: 18px;
  margin-top: -3px;
}
#product-detail .availability .stock-label.on-stock {
  color: #1E9E00;
}
#product-detail .availability .stock-label.not-stock {
  color: #E60106;
}
#product-detail .availability .stock-label.half-stock {
  color: #fc9f01;
}
#product-detail .availability .delivery-48-hours {
  font-weight: 700;
  font-size: 16px;
  color: #1C174B;
}
#product-detail .question {
  margin: 15px 0;
  font-size: 16px;
  font-weight: 700;
  background: url("/img/front/icons/question.png") left center no-repeat;
  padding-left: 40px;
}
#product-detail .prices-table {
  margin: 10px 0 30px;
  border: 1px solid #EDF0F5;
}
#product-detail .prices-table table {
  width: 100%;
}
#product-detail .prices-table table th {
  font-size: 15px;
  padding: 8px 12px;
  text-align: center;
}
#product-detail .prices-table table td {
  font-size: 14px;
  padding: 8px 12px;
  text-align: center;
}
#product-detail .prices-table table tr:nth-child(even) {
  background: #EDF0F5;
}
#product-detail .main-info {
  margin: 5px 0;
}
#product-detail .main-info .button-holder {
  text-align: right;
}
#product-detail .main-info .button-holder .quantity {
  width: 85px;
  padding: 4px 8px;
  font-size: 18px;
  border-radius: 0;
  display: none;
}
#product-detail .main-info .button-holder .pcs {
  font-weight: 500;
  font-size: 16px;
  /*display: inline-block;*/
  margin: 0 5px;
  display: none;
}
#product-detail .main-info .button-holder .add-to-cart {
  padding: 13px 45px 12px 25px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
#product-detail .main-info .button-holder .add-to-cart:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 19px;
  width: 16px;
  height: 15px;
  background-image: url("/img/front/icons/add-to-cart.png");
}
#product-detail .main-info #cart-msg {
  display: none;
}
#product-detail .main-info .price-original {
  color: #10133E;
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 5px;
  text-align: right;
}
#product-detail .main-info .price-without-vat {
  color: #0B1A2E;
  font-weight: 400;
  font-size: 16px;
}
#product-detail .main-info .price-with-vat {
  color: #FD5A02;
  font-weight: 800;
  font-size: 24px;
  text-align: right;
}
#product-detail .main-info .price-with-vat .vat-label {
  font-size: 14px;
  color: #10133E;
  font-weight: 400;
}
#product-detail .main-info .packaking-unit {
  margin-top: 6px;
}
#product-detail .main-info .without-vat {
  font-size: 14px;
  margin-top: -5px;
}
#product-detail .main-info .related-products {
  margin-bottom: 10px;
}
#product-detail .main-info .related-products h2 {
  margin: 10px 0 0 !important;
}
#product-detail .main-info .related-products p {
  margin: 2px 0;
  font-size: 11px;
  line-height: 13px;
}
#product-detail .main-info .related-products .item {
  padding: 7px 0;
  border-bottom: 1px solid #f4f4f4;
}
#product-detail .main-info .related-products .item .image {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#product-detail .main-info .related-products .item .image img {
  max-width: 100%;
  max-height: 30px;
}
#product-detail .main-info .related-products .item .product-name {
  font-size: 12px;
  line-height: 14px;
}
#product-detail .main-info .related-products .item .price {
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}
#product-detail .main-info .related-products .item .price .without-vat {
  font-weight: 400;
  font-size: 9px;
}
#product-detail .main-info .related-products .rp-count-holder {
  padding: 5px 0 8px;
  border-bottom: 2px solid #bbb;
}
#product-detail .main-info .related-products .rp-button-holder {
  border-top: 2px solid #bbb;
  padding-top: 8px;
}
#product-detail .main-info .related-products .headline {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 8px;
}
#product-detail .main-info .montage {
  margin: 15px 0;
}
#product-detail .main-info .montage label {
  cursor: pointer;
}
#product-detail .main-info .montage input {
  margin-right: 5px;
}

.similiar-products {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 60px 999px 30px 999px;
  margin: 0 -999px 0 -999px;
}
.similiar-products h2 {
  font: normal normal 800 34px/32px Montserrat;
}

.product-info {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 40px 999px 40px 999px;
  margin: 40px -999px 40px -999px;
}
.product-info h2 {
  margin-bottom: 20px !important;
}
.product-info .params .item {
  font-size: 16px;
  font-weight: 700;
  padding: 9px 12px;
}
.product-info .params .item:nth-child(even) {
  background: #edf3f7;
}

.product-description {
  margin-bottom: 25px;
  position: relative;
}

@media (max-width: 1024px) {
  .similiar-products {
    padding: 0 0 30px;
    margin: 0;
    background: none;
  }
}
@media (max-width: 768px) {
  #product-detail .main-info .packaking-unit {
    margin: 0 0 6px;
  }
  #product-detail .main-info .related-products h2, #product-detail .main-info .related-products .headline {
    text-align: center;
  }
  #product-detail .main-info .related-products .item {
    text-align: center;
  }
  #product-detail .main-info .related-products .item .rp-item-count-holder {
    margin: 8px 0;
  }
  #product-detail .main-info .related-products .item .image {
    height: 55px;
  }
  #product-detail .main-info .related-products .item .image img {
    max-height: 50px;
  }
}
#product-portfolio-detail {
  padding-top: 20px;
}
#product-portfolio-detail h1 {
  margin-bottom: 10px;
}
#product-portfolio-detail h2 {
  margin: 15px 0 5px;
  padding: 0;
  color: #0B1A2E;
  font-weight: 700;
}
#product-portfolio-detail .additional-info-header {
  font: normal normal bold 18px/32px Montserrat;
  color: #091227;
  border-bottom: 1px solid #FFB300;
  margin-bottom: 1rem;
}
#product-portfolio-detail table {
  height: auto !important;
}
#product-portfolio-detail table thead td {
  background: #EEF1F7 0% 0% no-repeat padding-box !important;
  font: normal normal 400 16px/28px Montserrat !important;
  color: #07091C !important;
  vertical-align: middle;
}
#product-portfolio-detail table td, #product-portfolio-detail table th {
  padding: 0.25rem 0.85rem;
  border: 1px dotted #EEF1F7 !important;
}
#product-portfolio-detail table tr, #product-portfolio-detail table td {
  height: 100% !important;
  width: auto !important;
  background-color: #FFFFFF !important;
}
#product-portfolio-detail table td p {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  text-align: left !important;
}
#product-portfolio-detail .product-documents {
  margin-top: 1.5rem;
}
#product-portfolio-detail .product-document {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 1rem;
  display: block;
  font: normal normal bold 18px/32px Montserrat;
  color: #07091C;
}
#product-portfolio-detail .product-document .download-icon {
  float: right;
}
#product-portfolio-detail .product-document .type-icon {
  height: 35px;
  padding-right: 1rem;
}
#product-portfolio-detail .product-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 400px;
}
#product-portfolio-detail .product-image:hover {
  border-color: #dbdbda;
}
#product-portfolio-detail .product-image img {
  max-width: 100%;
  max-height: 388px;
}
#product-portfolio-detail .product-images {
  width: 100%;
  display: flex;
  justify-content: center;
}
#product-portfolio-detail .product-images .item {
  display: flex;
  width: 300px;
  height: 250px;
  border: 1px solid #EEF5FF;
  padding: 5px;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 13px;
  margin-bottom: 10px;
}
#product-portfolio-detail .product-images .item:hover {
  border-color: #DEE5EF;
}
#product-portfolio-detail .product-images .item img {
  max-height: 70px;
  max-width: 100%;
}
#product-portfolio-detail .code {
  font-size: 16px;
}
#product-portfolio-detail .car-brand-holder {
  font-size: 16px;
}
#product-portfolio-detail .car-brand-holder img {
  max-width: 50%;
}
#product-portfolio-detail .manufacturer img {
  max-width: 50%;
}
#product-portfolio-detail .short-description {
  margin: 25px 0 5px;
}
#product-portfolio-detail .main-info {
  margin: 5px 0;
}
#product-portfolio-detail .main-info .button-holder {
  text-align: right;
}
#product-portfolio-detail .main-info .button-holder .quantity {
  width: 85px;
  padding: 4px 8px;
  font-size: 18px;
  border-radius: 0;
  display: none;
}
#product-portfolio-detail .main-info .button-holder .pcs {
  font-weight: 500;
  font-size: 16px;
  /*display: inline-block;*/
  margin: 0 5px;
  display: none;
}
#product-portfolio-detail .main-info .button-holder .add-to-cart {
  padding: 13px 45px 12px 25px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
#product-portfolio-detail .main-info .button-holder .add-to-cart:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 19px;
  width: 16px;
  height: 15px;
  background-image: url("/img/front/icons/add-to-cart.png");
}
#product-portfolio-detail .main-info #cart-msg {
  display: none;
}
#product-portfolio-detail .main-info .price-original {
  color: #10133E;
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 5px;
  text-align: right;
}
#product-portfolio-detail .main-info .price-without-vat {
  color: #0B1A2E;
  font-weight: 400;
  font-size: 16px;
}
#product-portfolio-detail .main-info .price-with-vat {
  color: #FD5A02;
  font-weight: 800;
  font-size: 24px;
  text-align: right;
}
#product-portfolio-detail .main-info .price-with-vat .vat-label {
  font-size: 14px;
  color: #10133E;
  font-weight: 400;
}
#product-portfolio-detail .main-info .packaking-unit {
  margin-top: 6px;
}
#product-portfolio-detail .main-info .without-vat {
  font-size: 14px;
  margin-top: -5px;
}
#product-portfolio-detail .main-info .related-products {
  margin-bottom: 10px;
}
#product-portfolio-detail .main-info .related-products h2 {
  margin: 10px 0 0 !important;
}
#product-portfolio-detail .main-info .related-products p {
  margin: 2px 0;
  font-size: 11px;
  line-height: 13px;
}
#product-portfolio-detail .main-info .related-products .item {
  padding: 7px 0;
  border-bottom: 1px solid #f4f4f4;
}
#product-portfolio-detail .main-info .related-products .item .image {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#product-portfolio-detail .main-info .related-products .item .image img {
  max-width: 100%;
  max-height: 30px;
}
#product-portfolio-detail .main-info .related-products .item .product-name {
  font-size: 12px;
  line-height: 14px;
}
#product-portfolio-detail .main-info .related-products .item .price {
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}
#product-portfolio-detail .main-info .related-products .item .price .without-vat {
  font-weight: 400;
  font-size: 9px;
}
#product-portfolio-detail .main-info .related-products .rp-count-holder {
  padding: 5px 0 8px;
  border-bottom: 2px solid #bbb;
}
#product-portfolio-detail .main-info .related-products .rp-button-holder {
  border-top: 2px solid #bbb;
  padding-top: 8px;
}
#product-portfolio-detail .main-info .related-products .headline {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 8px;
}
#product-portfolio-detail .main-info .montage {
  margin: 15px 0;
}
#product-portfolio-detail .main-info .montage label {
  cursor: pointer;
}
#product-portfolio-detail .main-info .montage input {
  margin-right: 5px;
}

.similiar-products {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 60px 999px 30px 999px;
  margin: 0 -999px 0 -999px;
}
.similiar-products h2 {
  font: normal normal 800 34px/32px Montserrat;
}

.product-info {
  background: #EEF1F7 0% 0% no-repeat padding-box;
  padding: 40px 999px 40px 999px;
  margin: 40px -999px 40px -999px;
}
.product-info h2 {
  margin-bottom: 20px !important;
}
.product-info .params .item {
  font-size: 16px;
  font-weight: 700;
  padding: 9px 12px;
}
.product-info .params .item:nth-child(even) {
  background: #edf3f7;
}

.product-description {
  margin-bottom: 25px;
  position: relative;
}

@media (max-width: 1024px) {
  .similiar-products {
    padding: 0 0 30px;
    margin: 0;
    background: none;
  }
}
@media (max-width: 768px) {
  #product-portfolio-detail table {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
  #product-portfolio-detail .main-info .packaking-unit {
    margin: 0 0 6px;
  }
  #product-portfolio-detail .main-info .related-products h2, #product-portfolio-detail .main-info .related-products .headline {
    text-align: center;
  }
  #product-portfolio-detail .main-info .related-products .item {
    text-align: center;
  }
  #product-portfolio-detail .main-info .related-products .item .rp-item-count-holder {
    margin: 8px 0;
  }
  #product-portfolio-detail .main-info .related-products .item .image {
    height: 55px;
  }
  #product-portfolio-detail .main-info .related-products .item .image img {
    max-height: 50px;
  }
}
.product-list .item {
  padding: 20px 10px 10px;
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #e8eef5;
  background: white;
}
.product-list .item:hover {
  box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #CDDBEC;
}
.product-list .item a {
  text-decoration: none;
}
.product-list .item .car-brand {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99;
  width: 32px;
}
.product-list .item .car-brand img {
  max-width: 100%;
}
.product-list .item .intro-params {
  min-height: 42px;
}
.product-list .item:hover {
  transition: transform 0.4s;
  transform: scale(1.1) rotate(0.01deg);
}
.product-list .item .image {
  width: 100%;
  height: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: white;
  overflow: hidden;
}
.product-list .item .image img {
  max-width: 100%;
  max-height: 100%;
}
.product-list .item h3 {
  height: 55px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #0B1A2E;
  text-align: center;
}
.product-list .item h3:hover {
  text-decoration: underline;
}
.product-list .item .manufacturer {
  height: 45px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-list .item .manufacturer img {
  max-width: 100%;
  max-height: 100%;
}
.product-list .item .price-container {
  margin: 5px 0;
  background: #F4F9FD;
  padding: 5px 10px;
}
.product-list .item .price-container .price-with-vat {
  color: #FD5A02;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: -7px;
}
.product-list .item .price-container .price-without-vat {
  font-size: 13px;
  color: #0B1A2E;
  font-weight: 700;
}
.product-list .item .price-container .detail-holder {
  padding-top: 10px;
}
.product-list .item .price-container .detail-holder a {
  color: #2B4ECD;
  font-weight: 700;
  font-size: 17px;
}
.product-list .item .price-container .detail-holder a:hover {
  text-decoration: underline;
}

.product-loader {
  position: relative;
}

#ajax-display-more {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 165px;
}

.filtered-products {
  position: relative;
  padding: 3rem 0;
  background: #EEF1F7 0% 0% no-repeat padding-box;
}
.filtered-products h3 {
  margin-top: 0;
}
.filtered-products .product-list .item {
  padding: 0;
}
.filtered-products .product-list .item .image {
  background-color: white;
}

.row-product-list {
  margin: 15px 0;
  font-size: 12px;
}
.row-product-list .item {
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}
.row-product-list .item:hover {
  background-color: #f9f9f9;
}
.row-product-list .code {
  padding-left: 4px;
}

.product-group {
  cursor: pointer;
}
.product-group h3 {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .product-list .item .detail-holder {
    display: none;
  }
}
@media (max-width: 1024px) {
  .row-product-list .header-row {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-list .item {
    margin-bottom: 15px;
  }
}

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