/*Common CSS */
.wrapper {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.ptb-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.plr-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.max-w-800 {
  max-width: 800px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.max-w-200 {
  max-width: 200px !important;
}

.bg-color-light-grey {
  background-color: #f1f1f2;
}

.linear-gradient-200-defaultToDarkGrey {
  background: linear-gradient(to bottom, #fff 350px, #32374b 350px);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-column__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.flex-column__footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.image-fit {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
}
.image-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover
  object-fit: cover
}
.image-fit_h200 {
  height: 200px;
}

.default-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-no-found-message {
  margin: 0px;
  padding: 30px 0 0 0;
  text-align: center;
  color: #000000;
  background-color: #fff;
}

.products-markers {
  position: relative;
}
.products-markers__item {
  font-weight: 100;
  -webkit-animation: pulse 2.5s infinite;
          animation: pulse 2.5s infinite;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products-markers__item.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.products-markers__item::before {
  content: "+";
  font-size: 30px;
  color: rgb(40, 40, 40);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.products-markers__item:hover {
  background-color: rgb(255, 255, 255);
  opacity: 1;
  -webkit-animation: none;
          animation: none;
}
.products-markers__item:hover::after {
  -webkit-animation: animatedeExtraCircle 2.5s infinite;
          animation: animatedeExtraCircle 2.5s infinite;
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.product-modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.product-modal__content {
  background-color: transparent;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 350px;
  position: relative;
}
.product-modal__closebtn {
  margin-left: -10px !important;
  color: black;
  border-radius: 50%;
  background-color: #FFFFFF;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 36px;
}
.product-modal__closebtn:hover, .product-modal__closebtn:focus {
  background-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
}

/*Product*/
.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 hr{
  margin: 0px;
}

.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;
  }
  .brand-clp-row-carousel .content__product .brand-clp-row-carousel-img_modal {
    height: 220px;
  }
}


.brand-clp-row-carousel .brand-clp-row-carousel-img a {
    display: block;
    color: transparent;
    height: inherit;
    width: inherit;
}

.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 .brand-clp-row__text .brand-clp-row__title-small {
    color: #0197ed;
    font-weight: 700;
}
/*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*/

/*End Product*/
/*End Common CSS */

/*Brand's page*/

#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;
    }
}
/*small items of owl-carousel*/
.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; 
}
@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;
    }
}
/*End small items of owl-carousel*/

.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__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%;
    }
}

/*End Brand's page*/

/*Nisbt Olympia*/

.brand-page-nisbt {
  background: #ffffff;
}
.brand-page-nisbt a {
  text-decoration: none;
  color: #009edf;
}
.brand-page-nisbt h3 {
  margin: 0 0 10px 0 !important;
}
.main-block-olmp__header {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-block-olmp__header > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 767px) {
  .main-block-olmp__header > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
@media (max-width: 767px) {
  .main-block-olmp__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.main-block-olmp__logo {
  width: 50%;
  height: 200px;
  position: relative;
  z-index: 1;
  padding-left: 2%;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .main-block-olmp__logo {
    height: 150px;
  }
}
.main-block-olmp__logo img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  width: 50%;
  height: 30%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .main-block-olmp__logo img {
    margin-top: 5px;
    width: 100%;
  }
}
.main-block-olmp__logo p {
  font-size: clamp(14px, 3vw, 16px);
  margin: 20px 0px;
  text-align: left;
  color: #000000;
}
@media (max-width: 767px) {
  .main-block-olmp__logo p {
    margin: 5px;
  }
}
.main-block-olmp__nav-bar {
  margin-top: 40px;
}

.rectangle-slice {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
@media (max-width: 767px) {
  .rectangle-slice {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    height: 150px;
  }
  .rectangle-slice img {
    width: 70%;
    height: 30%;
  }
  .rectangle-slice h4 {
    margin: 10px 0px;
  }
}

.nav-bar-nisbt__list {
  text-align: center;
  margin: 0 0 50px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .nav-bar-nisbt__list {
    display: none;
  }
}
.nav-bar-nisbt__item {
  display: inline;
  padding: 0 20px;
  border-left: 1px solid #32374b;
}
.nav-bar-nisbt__link {
  text-decoration: none;
  color: #009edf;
}
.nav-bar-nisbt__link:hover {
  color: #ff7c2e;
}

.categories-nisbt-olmp__row {
  gap: 20px;
  margin: 0px 10px 40px 10px;
  max-width: 1044px;
}
@media (max-width: 767px) {
  .categories-nisbt-olmp__row {
    margin: 0px 10px 20px 10px;
  }
}
.categories-nisbt-olmp__row a {
  text-decoration: none;
}
.categories-nisbt-olmp__row a:hover {
  text-decoration: underline;
}
.categories-nisbt-olmp__column {
  position: relative;
  background-color: #ffffff;
  color: #32374b;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 15px);
          flex: 0 1 calc(25% - 15px);
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: solid 1px #32374b;
  -webkit-box-shadow: 0 3px 6px rgba(50, 55, 75, 0.16);
          box-shadow: 0 3px 6px rgba(50, 55, 75, 0.16);
}
@media (max-width: 767px) {
  .categories-nisbt-olmp__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
    padding: 5px 5px 10px 5px;
  }
}
.categories-nisbt-olmp__column > a {
  display: block;
  color: transparent;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.categories-nisbt-olmp__column:hover .nisbt-olmp-column-category__header h3 {
  text-decoration: underline;
}
.title {
  padding-left: 10px;
  padding-right: 10px;
}
.title h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
}
.title p {
  text-align: center;
}

.nisbt-olmp-column-category__header {
  text-align: center;
  overflow: hidden;
  min-height: 50px;
  max-height: 55px;
}

.nisbt-olmp-column-category__header h3 {
  font-size: clamp(16px, 3vw, 20px);
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .nisbt-olmp-column-category__header h3 {
  	margin: 0 0 10px 0;
	}
  .nisbt-olmp-column-category__header {
    max-height: 40px;
  }
}
.nisbt-olmp-column-category__body {
  margin: 0 0 10px 0;
}
.nisbt-olmp-column-category__footer {
  text-align: center;
}
.nisbt-olmp-column-category__cta {
  text-decoration: underline;
  font-size: clamp(11.5px, 3vw, 16px);
  padding: 0px;
}
.nisbt-olmp-column-category__cta:after {
  content: " >";
  font-weight: bold;
}

.olympia-default-cta {
  max-height: 42px;
  padding: 12px;
  font-size: clamp(11px, 3vw, 16px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background-color: #32374b;
  border: 1px solid transparent;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.linear-gradient-200-defaultToDarkGrey .olympia-default-cta {
  color: #32374b !important;
  background-color: #fff;
}
.products-nisbt-olmp__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .products-nisbt-olmp__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.products-nisbt-olmp__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 767px) {
  .products-nisbt-olmp__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
/*Animation*/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes animatedeExtraCircle {
  0% {
    width: 30px;
    height: 30px;
  }
  50% {
    width: 100px;
    height: 100px;
  }
  100% {
    width: 30px;
    height: 30px;
  }
}
@keyframes animatedeExtraCircle {
  0% {
    width: 30px;
    height: 30px;
  }
  50% {
    width: 100px;
    height: 100px;
  }
  100% {
    width: 30px;
    height: 30px;
  }
}
/*End Animation*/


/*Nisbt Olympia*/

/* Nisbt Polar*/
.brand-page-nisbt {
  background: #ffffff;
}
.brand-page-nisbt a {
  text-decoration: none;
}
.brand-page-nisbt > div {
  margin-bottom: 30px;
}
.brand-page-nisbt__main-block {
  margin-bottom: 60px !important;
}
@media (max-width: 767px) {
  .brand-page-nisbt__main-block {
    margin-bottom: 20px !important;
  }
}
.main-block-plr__header {
  position: relative;
  overflow: hidden;
}
.main-block-plr__nav-bar {
  margin-top: 40px;
}
.main-block-plr__title {
  color: #000000;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  text-align: center;
}

.hb-triangle {
  width: 30%;
  height: 200px;
  position: relative;
  z-index: 1;
  padding-left: 2%;
  background-color: #0197ed;
}
.hb-triangle img {
  margin-top: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 50%;
  height: 30%;
}
.hb-triangle h4 {
  font-size: clamp(16px, 3vw, 32px);
  margin: 10px 0px;
  color: #FFFfff;
}
.hb-triangle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(15deg) skewY(60deg);
          transform: rotate(15deg) skewY(60deg);
  margin: -52px -26px;
  width: 52px;
  height: 104px;
  z-index: -1;
  background-color: inherit;
}
@media (max-width: 767px) {
  .hb-triangle .hb-triangle {
    height: 150px;
  }
  .hb-triangle .hb-triangle:after {
    top: 55%;
    -webkit-transform: rotate(20deg) skewY(45deg);
            transform: rotate(20deg) skewY(45deg);
    width: 52px;
    height: 88px;
  }
  .hb-triangle img {
    width: 100%;
    height: 30%;
  }
  .hb-triangle .hb-triangle h4 {
    margin: 10px 0px;
  }
}

.nav-bar-nisbt__list {
  text-align: center;
  margin: 0 0 50px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .nav-bar-nisbt__list {
    display: none;
  }
}
.nav-bar-nisbt__item {
  display: inline;
  padding: 0 20px;
  border-left: 1px solid #32374b;
}
.nav-bar-nisbt__link {
  text-decoration: none;
  color: #009edf;
}
.nav-bar-nisbt__link:hover {
  color: #ff7c2e;
}
.nav-bar-nisbt__advantages p {
  font-size: 16px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.content-centered {
  margin-bottom: 50px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content-centered ul {
    float: none;
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.col-md-6 {
  float: left;
  position: relative;
  margin: 0px;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .col-md-6 {
    width: 46%;
    margin-top: 20px;
  }
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #707070;
}

.flex-container__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 40%;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .flex-container__images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items:flex-end;
  }
}
.flex-container__image {
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .flex-container__image {
    width: 33.333%;
    height: 50px;
  }
  .flex-container__image_width25percentage {
    width: 25%;
  }
}

.flex-container__image.active {
  opacity: 1;
  width: 100%;
}
@media (max-width: 767px) {
  .flex-container__image.active {
    height: 250px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.flex-container__image.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #009edf;
  z-index: 1;
}
.flex-container__image.active_small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #009edf;
  z-index: 1;
}
.flex-container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.flex-container__text {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .flex-container__text {
    padding: 10px;
  }
}
.flex-container__text-title {
  font-weight: 200;
  border-bottom: 1px solid #ffffff;
  text-align: center;
  padding: 0px !important;
}
.flex-container__text-list {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  min-height: 200px;
}
@media (max-width: 767px) {
  .flex-container__text-list {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 210px;
    padding-left: 2px;
  }
}
.flex-container__text-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .flex-container__text-list li {
    margin-bottom: 0px;
  }
}
.flex-container__text-button {
  margin-top: auto;
}
@media (min-width: 768px) {
  .flex-container__images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    max-height: 620px;
  }
  .flex-container__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    text-align: left;
  }
  .flex-container__text-title {
    padding: 25px 0;
    text-align: left;
  }
}

.shoplink-color {
  color: #0197ed;
}

.banner-button {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none !important;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  padding: 8px calc(5% - 2px);
  margin: 20px 0;
  color: #ffffff;
  border: 2px solid #009edf;
}
.banner-button::after {
  content: " >";
  font-weight: bold;
}

.dynamic-btn {
  background-color: #ffffff;
  margin-top: 5px;
  color: #009edf;
}
.dynamic-btn:hover {
  background-color: #009edf;
  color: #ffffff;
}
.dynamic-btn-common {
  background-color: #e67e22;
  border-color: #ffffff;
  margin-top: 5px;
  color: #ffffff !important;
  border-radius: 5px;
}
.dynamic-btn-common:hover {
  background-color: #009edf;
  color: #ffffff;
}
.dynamic-btn-common.banner-button::after {
  content: " ";
  font-weight: bold;
}

.categories-nisbt-plr__title {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
}
.categories-nisbt-plr__subtitle {
  text-align: center;
}
.grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px 10px 20px 10px;
}
.grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .banner-button{
        margin: 5px 0;
  }
  .grid__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.grid__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.grid__description {
  margin-top: 0px;
}
.grid__description p {
  font-size: 14px;
  margin: 5px 0px 10px 0px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .grid__description p {
    min-height: 70px;
  }
}
.grid__description h3 {
  margin-top: 0px;
  margin-bottom: 10px;
}


.normal-btn {
  background-color: #009edf;
  margin-top: 5px;
  color: #FFFFFF !important;
}
.normal-btn:hover {
  background-color: #FFFFFF;
  color: #009edf !important;
}

.carousel-reviews__title {
  font-size: 32px !important;
  font-weight: bold;
  background-color: #3498db;
  color: #FFF;
  margin: 0px !important;
  padding: 30px 0 0 30px;
}
@media (max-width: 767px) {
  .carousel-reviews__title {
    font-size: 24px !important;
    padding: 15px 0 0 15px;
  }
}
.carousel-reviews__body {
  margin-top: 0px;
}
.carousel-reviews__item {
  height: 150px;
  background-color: #3498db;
  color: #fff;
  width: 100%;
}
@media (max-width: 767px) {
  .carousel-reviews__item {
    height: 240px;
  }
}
.carousel-reviews__content {
  padding: 20px;
}
@media (max-width: 767px) {
  .carousel-reviews__content {
    padding: 10px;
  }
}
.carousel-reviews__text {
  font-size: 16px;
  padding: 10px;
  position: relative;
}
.carousel-reviews__author {
  font-style: italic;
  position: absolute;
  left: 10px;
  bottom: 0;
}

.polarquotes {
  background: url("https://cdn.webshopapp.com/shops/269576/files/444726994/quotemark-upper.webp") top left no-repeat, url("https://cdn.webshopapp.com/shops/269576/files/444726992/quotemark-bottom.webp") bottom right no-repeat;
  padding: 0 20px;
  background-size: 1.5%;
  min-height: 70px;
}

@media (min-width: 768px) {
  .items3To1 > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.333%;
            flex: 1 0 33.333%;
  }
}

.centered * {
  text-align: center;
}
.wrapped {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

 .wrapped > div{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  }

/*End Nisbt Polar*/

/*Common brands page*/
.sorted-brands .brand-clp-row .brand-clp-row__text a{
  color: #3498db;
  text-decoration: none;
  margin: 10px 0px 0px;
}
.sorted-brands .brand-clp-row .brand-clp-row__text a:hover{
  color: #ff7c2e;
}
.sorted-brands .brand-clp-row {
  justify-content: flex-start;
}
.sorted-brands .brand-clp-row .content__item .brand-clp-row__description{
  margin-bottom: 0px;
}
.sorted-brands .brand-clp-row .content__item .brand-clp-row-img{
  border: 10px solid#fff;
}
.sorted-brands .letters .brands {
  margin-bottom: 20px;
}
.sorted-brands .letters {
  margin-left: 10px;
  margin-right: 10px;
}
.return-to-top{
  text-align: center;
  display: inline-block;


  font-weight: bold;
  cursor: pointer;
}

.brand__row {
  color: #32374b;
  display: inline-block;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
}

.brand-item {
  opacity: 0;
  margin: 0px !important;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.brand__content {
  cursor: pointer;
}
.brand__content b {
  font-size: 32px;
  background-color: #fcfcfc;
  padding: 5px 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.brand__content:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 49%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ededed;
}
.char-navigation{
  background-color: white;
  padding: 5px 20px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 29px;
  z-index: 2;
  font-weight: bold;
}
.letters-horizontal{
  padding-left: 0;
  list-style: none;
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}
.letters-horizontal b{
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  color: #32374b;
  font-size: 20px;
  padding: 5px 10px;
  
}
.letters-horizontal b:after{
  content: '';
  width: 1px;
  height: 60%;
  position: absolute;
  top: 20%;
  right: 0px;
  background-color: #32374b;
}
/*TEST CSS*/

.brands .brand .inner .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%; /* Установите желаемую ширину */
  height: 170px;
}
.brands .brand .inner .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-footer {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  font-size: clamp(13.5px, 5vw, 30px);
}

@media (max-width: 1024px) {
  .brands .brand .inner .img-wrap  {
     height: 120px;
  }
}
/*END TEST CSS*/
.brand a {
  text-decoration: none !important;
}
.brand a:hover {
  text-decoration: underline !important;
  color: inherit;
}
.title-bottom, .subtitle-bottom{
	text-align: center;
}
.title-bottom{
	margin-bottom: 30px;
}
.subtitle-bottom {
	margin-bottom: 80px;
}
/*End Common brands page*/