#loader {
    display: none;
    z-index: 9999;
}

.loader-icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.brand-page {
    height: 100%;
    position: relative;
    color: #252b42;
}

.brand-page a {
  text-decoration: none;
  color: inherit;
}

.brand-page img {
  vertical-align: top;
}

.wrapper-brand {
    min-height: 100%;
    overflow: hidden;
}
    /* Style for the links in the menu */
.menu {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.menu button.category-button {
    text-align: left;
    background-color: transparent;
    border: none;
    padding: 5px;
    margin: 0;
    cursor: pointer;
}
.menu button.category-button:hover {
  color: #fff;
}
.menu > li > span {
    display: block;
    padding: 5px;
    color: #333;
    text-align: center;
}
.menu li {
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 19%;
    flex: 0 1 19%;
    outline: 0.5px solid #ededed;
}
	
.menu li ul li {
    border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
    .menu {
        max-height: 250px;
        overflow: auto;
    }

    .menu span {
        padding: 0px;
    }

    .menu li {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}
/* Style for the top-level menu items */
.menu > li {
    display: block;
    position: relative;
}

    /* Styles for the sub-menus */
.menu > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    z-index: 3;
    padding-left: 0;
    width: 100%;
    background-color: #ffffff;
}

/* Hover state for top-level menu items */
.menu > li:hover {
    background-color: #ffffff;
}

/* Hover state for sub-menu links */
.menu li ul li:hover {
    background-color: #ff7c2e;
}

/* Styles for the sub-menus */
.menu li ul li ul {
    display: none;
    padding-left: 0;
}

/*----COMMON STYLES-----------*/
.container {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.content__container__popular-products {
  min-height: 430px;
}
@media (max-width: 767px) {
  .content__container__popular-products {
    min-height: 200px;
  }
}


/*.ibg {
    position: relative;
}

.ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
*/

.brand-clp-row-series {
    background-color: #f8f9f9;
    border-radius: 10px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 850px) {
    .brand-clp-row-series {
        padding: 7.5px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.brand-clp-row__series-header {
    font-size: 25px;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    margin: 0px;
}

@media (max-width: 767px) {
    .brand-clp-row__series-header {
        font-size: 20px;
    }
}

@media (max-width: 490px) {
    .brand-clp-row__series-header {
        font-size: 18px;
    }
}

.brand-clp-row-series > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    background-color: none;
}

@media (max-width: 850px) {
    .brand-clp-row-series > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
        flex: 0 1 49%;
        margin: 0px;
    }
}

.brand-clp-row {
    background-color: #f8f9f9;
    border-radius: 10px;
    margin: 20px 0px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1%;
}

@media (max-width: 850px) {
    .brand-clp-row {
        padding: 7.5px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0px;
    }
}

@media (max-width: 767px) {
    .brand-clp-row {
        margin: 10px 0px;
    }
}

.brand-clp-row__description {
    font-size: 14px;
    color: #777777;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .brand-clp-row__description {
        font-size: 13px;
    }
}

@media (max-width: 490px) {
    .brand-clp-row__description {
        display: none;
    }
}

.brand-clp-row__header {
    font-size: 25px;
    color: #000;
    padding: 10px 0px;
    margin: 0px;
}
.center {
  text-align: center;
}

@media (max-width: 767px) {
    .brand-clp-row__header {
        font-size: 20px;
    }
}

@media (max-width: 490px) {
    .brand-clp-row__header {
        font-size: 18px;
    }
}

.brand-clp-row div {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    background-color: none;
}

@media (max-width: 850px) {
    .brand-clp-row div {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
        flex: 0 1 49%;
        margin: 0px;
    }
}

.brand-clp-row .brand-clp-row-img {
    height: 255px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 25px;
    background-color: #fff;
}
.brand-clp-row .brand-clp-row-img:hover {
		opacity: 0.7;
}

@media (max-width: 850px) {
    .brand-clp-row .brand-clp-row-img {
        height: 200px;
    }
}

@media (max-width: 687px) {
    .brand-clp-row .brand-clp-row-img {
        height: 180px;
    }
}

@media (max-width: 467px) {
    .brand-clp-row .brand-clp-row-img {
        height: 140px;
    }
}

.brand-clp-row__text > h2 {
    font-weight: 700;
    min-height: 55px;
    margin: 0px;
    font-size: 22px !important;
    color: #000;
    word-wrap: break-word;
    text-decoration: none;
}

@media (max-width: 767px) {
    .brand-clp-row__text > h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 490px) {
    .brand-clp-row__text > h2 {
        font-size: 16px !important;
    }
}

.brand-clp-row__text > h2:hover {
    color: #0197ed;
}

.brand-clp-row__text > b {
    font-size: 18px;
    display: inline-block;
    margin: 10px 0 5px 0;
    color: #777777;
    font-weight: bold;
}

@media (max-width: 992px) {
    .brand-clp-row__text > b {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .brand-clp-row__text > b {
        font-size: 14px;
    }
}

@media (max-width: 467px) {
    .brand-clp-row__text > b {
        font-size: 13px;
    }
}

.brand-clp-row__text a:hover {
    color: #0197ed;
}

.brand-clp-row__text > h3 {
    font-size: 14px !important;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    letter-spacing: normal;
    text-align: center;
}

@media (max-width: 767px) {
    .brand-clp-row__text > h3 {
        margin: 10px 0px !important;
    }
}

@media (max-width: 467px) {
    .brand-clp-row__text > h3 {
        margin: 5px 0px !important;
    }
}

.brand-clp-row__text .brand-clp-row__all-categories-title {
    color: #ff7c2e;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 800;
    font-size: 16px;
}

@media (max-width: 767px) {
    .brand-clp-row__text .brand-clp-row__all-categories-title {
        font-size: 14px;
    }
}

@media (max-width: 467px) {
    .brand-clp-row__text .brand-clp-row__all-categories-title {
        font-size: 12px;
    }
}

.content__background {
    background-color: #f8f9f9;
    margin: 20px 0px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .content__background {
        margin: 10px 0px;
    }
}

.brand-clp-row-carousel .content__item {
    margin: 0px 30px;
}

@media (max-width: 992px) {
    .brand-clp-row-carousel .content__item {
        margin: 0px 15px;
    }
}

@media (max-width: 767px) {
    .brand-clp-row-carousel .content__item {
        margin: 0px 20px;
    }
}

.brand-clp-row-carousel .brand-clp-row-carousel-img {
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 10px;
    position: relative; 
}

.brand-clp-row-carousel .brand-clp-row-carousel-img a {
    display: block;
    color: transparent;
    height: inherit;
    width: inherit;
}

@media (max-width: 992px) {
    .brand-clp-row-carousel .brand-clp-row-carousel-img {
        height: 120px;
    }
}

@media (max-width: 767px) {
    .brand-clp-row-carousel .brand-clp-row-carousel-img {
        height: 80px;
    }
}
/*Product labels*/
.brand-clp-row-carousel-img .product-labels {
  position:absolute;
  left:20px;
  top:10px;
  z-index:9;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  width: 80%;
  justify-content: space-between;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}
.brand-clp-row-carousel-img .product-labels.no-discount {
    /*flex-direction: row-reverse;*/
    justify-content: flex-end;
}

.brand-clp-row-carousel-img .product-labels .product-label{
  height: 20px;
  background: #aaa;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px;
  font-weight: bold;
  margin-right:5px;
  border-radius:5px;
}

.brand-clp-row-carousel-img .product-labels .product-label .percentage {
  background: #00b900;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  position: absolute;
  z-index: 10;
  margin: 10px;
}
.brand-clp-row-carousel-img .product-labels .product-label.sale{
  background: #00b900;
}
/*Product Buttons*/

.content__product .buttons .button {
    padding: 6px 6px 6px 12px;
    opacity: .7;
}

.content__product .buttons {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -6px;
    font-size: 16px;
}
/*.content__product .sm-heart-o {
    font-size: 22px;
    color: red;
}
.content__product .sm-heart-o {
    margin-right: 10px;
}*/

/* TEST add to wish list icon*/
.content__product .sm-heart-o {
    font-size: 22px;
    color: #ef5361;
}
.content__product .sm-heart-o {
    margin-right: 10px;
}

.content__product .sm-heart-o:before {
  content: "\6d" !important;
  opacity: .7;
  background-color: #FFF;
}


/*End Test add to wish list icon*/

/*End product buttons*/
@media(max-width: 767px){
  .brand-clp-row-carousel-img .product-labels {
     top:5px;
  }
  .brand-clp-row-carousel-img .product-labels .product-label{
    height: 15px;
    padding: 0px 5px;
  }
}
/*End Product Labels*/
.brand-clp-row-carousel .brand-clp-row-carousel-text {
    padding: 7px;
    font-weight: 700;
}

.brand-clp-row-carousel-title {
    height: 80px;
    font-size: 12px;
    color: #0197ed;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.out-of-stock {
  display: inline-block;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px; 
  color: #e67e22;
  z-index: 2;
  font-weight: bold !important;
}

.brand-clp-row-carousel .brand-clp-row-carousel-text .brand-clp-row-carousel-title a:hover {
    text-decoration: underline !important;
}

@media (max-width: 767px) {
  	.brand-clp-row-carousel .brand-clp-row-carousel-text {
    	padding: 5px;
		}
    .brand-clp-row-carousel .brand-clp-row-carousel-text .brand-clp-row-carousel-title {
        font-size: 11px;
        height: 60px;
    }
}

.brand-clp-row-carousel .brand-clp-row-carousel-text .brand-clp-row-carousel-price .brand-clp-row-carousel-brutto {
    color: #000000;
    font-size: 18.5px;
}

@media (max-width: 767px) {
    .brand-clp-row-carousel .brand-clp-row-carousel-text .brand-clp-row-carousel-price .brand-clp-row-carousel-			brutto {
        font-size: 15.5px;
    }
}

.brand-clp-row-carousel .brand-clp-row-carousel-text .brand-clp-row-carousel-price .brand-clp-row-carousel-netto {
    color: #777777;
    font-size: 11.7px;
}
.brand-clp-row-carousel .content__product hr{
		margin: 0px;
}

.brand-clp-row-carousel .content__product {
    border: 1px solid #ededed;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    margin: 0px 15px;
}

.brand-clp-row-carousel .content__product .brand-clp-row__text .brand-clp-row__title-small {
    color: #0197ed;
    font-weight: 700;
}

.brand-clp-row-carousel .content__product .brand-clp-row-carousel-img {
    height: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 25px;
}
.brand-clp-row-carousel .content__product .brand-clp-row-carousel-img_modal {
  height: 280px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .brand-clp-row-carousel .content__product {
    	margin: 0px 5px;
	}
  .brand-clp-row-carousel .content__product .brand-clp-row-carousel-img {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .brand-clp-row-carousel .content__product .brand-clp-row-carousel-img_modal {
    height: 220px;
  }
}
.brand-clp-row-carousel .content__product .brand-clp-row-carousel-img a {
    display: block;
    color: transparent;
    height: inherit;
    width: inherit;
}

.brand-clp-row-carousel__header {
    font-size: 25px;
    color: #000;
    padding-top: 20px;
}
@media (max-width: 767px) {
    .brand-clp-row-carousel__header {
        font-size: 20px;
        padding-top: 0px;
    }
}

@media (max-width: 490px) {
    .brand-clp-row-carousel__header {
        font-size: 18px;
    }
}

.clp-grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.clp-grid .clp-grid__body {
    background-color: #fff;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 3px;
}

.clp-grid .clp-grid__body .clp-grid__img {
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 25px;
}

.clp-grid .clp-grid__body .clp-grid__img a {
    color: transparent;
    display: block;
    height: inherit;
    width: inherit;
}

@media (max-width: 850px) {
    .clp-grid .clp-grid__body .clp-grid__img {
        height: 80px;
    }
}

.clp-grid__body {
    text-align: center;
}
.brand-page__hidden-link a{
  display: block;
  color: transparent;
  height: inherit;
  width: inherit;
}
.clp-grid__header {
    height: 50px;
    overflow: hidden;
    padding: 7px;
}
.clp-grid__header-small {
    height: 45px;
    overflow: hidden;
    padding: 7px;
}

@media (max-width: 850px) {
    .clp-grid__header {
        height: 55px;
        padding: 3px;
    }
    .clp-grid__header-small {
        padding: 3px;
    }
}

.clp-grid__header > h3 {
    font-size: 14px;
    margin: 0px !important;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    letter-spacing: normal;
}

@media (max-width: 560px) {
    .clp-grid__header > h3 {
        font-size: 12.5px;
    }
}

.clp-grid__header > h3 :hover {
    color: #0197ed;
}

@media (max-width: 850px) {
    .brand-page__header {
        background-image: none !important;
    }
}

.brand-page__content {
    padding: 0px 15px;
}

@media (max-width: 992px) {
    .brand-page__content {
        padding: 0px 3px;
    }
}

.header-block {
    height: 290px;
    width: 100%;
    margin-bottom: -60px;
}

@media (max-width: 767px) {
    .header-block {
        margin-bottom: -40px;
    }
}

.header-block__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 40px;
    padding-left: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 992px) {
    .header-block__row {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .header-block__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        top: 10px;
    }
}

.header-block__column-img {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    min-height: 120px;
    max-height: 150px;
    margin-bottom: 5px;
    background: #FFF;
    border: 5px solid #FFF;
}
.header-block__column-img img{
  background: #FFF;
}

@media (max-width: 992px) {
    .header-block__column-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
        flex: 0 1 35%;
    }
}

@media (max-width: 767px) {
    .header-block__column-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
        flex: 0 1 40%;
        min-height: 80px;
        max-height: 100px;
    }
}

@media (max-width: 385px) {
    .header-block__column-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}

.header-block__column-text {
    text-shadow: rgba(0, 0, 0, 0.5) 0px 2px 3px;
    color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .header-block__column-text {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        padding-left: 0;
    }
}
.header-block__title {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: clamp(19.5px, 3vw, 42.8px) !important;
}

.header-block__subtitle {
    color: #fff;
    width: 60%;
    font-size: clamp(12.58px, 3vw, 13.61px);
}
@media (max-width: 900px) {
  .header-block__subtitle {
    width: 80%;
  }
}
@media (max-width: 767px) {
    .header-block__title {
        margin-top: 0px;
    }
    .header-block__subtitle {
        width: 90%;
    }
}

@media (max-width: 392px) {
    .header-block__subtitle {
        width: 100%;
    }
}
.image-fit {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
}
.image-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.image-fit_h200 {
  height: 200px;
}