/****************************************************************************/
/****** globals *****/
.widgets.justify-left{
  justify-content: flex-start;
}
.widgets.justify-center{
  justify-content: center;
}
.widgets.justify-right{
  justify-content: flex-end;
}
.widgets.justify-space-between{
  justify-content: space-between;
}
.widgets.justify-space-around{
  justify-content: space-around;
}
.widgets.justify-space-evenly{
  justify-content: space-evenly;
}
/** Buttons **/
.widgets .order-btn {
  height: auto;
  min-height: 47px;
  line-height: inherit;
  padding: .75rem 2rem;
  margin: 10px;
}
.widgets a.btn.btn--primary,
.widgets button.btn.btn--primary{
  display: inline-block;
  line-height: inherit;
  min-height: 47px;
  padding: .75rem 2rem;
  white-space: inherit;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  background: #B68479;
  border: none;
}
.widgets a.btn.btn--secondary.outlined,
.widgets button.btn.btn--secondary.outlined{
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  line-height: inherit;
  min-height: 47px;
  padding: .75rem 2rem;
  white-space: inherit;
  border: 2px solid #000;
  border-top-color: rgb(0, 0, 0);
  border-right-color: rgb(0, 0, 0);
  border-bottom-color: rgb(0, 0, 0);
  border-left-color: rgb(0, 0, 0);
  transition: .2s;
}
.widgets a.btn.btn--secondary.outlined:hover,
.widgets button.btn.btn--secondary.outlined:hover{
  color: #fff;
  background: #B68479;
  border-color: #B68479;
  cursor: pointer;
}
.widgets a.btn--link {
  color: #B68479;
  font-size: 15px;
  border: 0;
  background: unset;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: unset;
  line-height: unset;
  display: inline-block;
  border-bottom: 1px solid #B68479;
}
.widgets a.btn--link:hover {
  text-decoration: unset;
}


/****************************************************************************/
/***** productWidget *****/
.widgets.productWidget {
  display: flex;
  flex-direction: row;
}
.productWidget .product {
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.productWidget .product .thumbnail-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.productWidget .product .img-container {
  width: 200px;
}
.productWidget .product .img-container img {
  object-fit: cover;
  height: 100%;
  width: 200px;
}
.productWidget .product .info-container {
  display: flex;
  flex-direction: column;
}
.productWidget .product #pColors {
  display: flex;
  justify-content: center;
  gap: .4rem;
  align-items: center;
}
.productWidget .product .product-description {
  height: inherit;
}
.productWidget .product .footer {
  text-align: center;
  margin-top: .2rem;
}
.productWidget .product .spacer {
  flex: 1;
}
.productWidget .product h1,
.productWidget .product h1 a {
  margin: 0!important;
  white-space: normal!important;
  line-height: 1.6rem!important;
  font-size: 1.1rem!important;
  padding: 1rem 0;;
}
@media screen and (max-width: 576px) {
  .productWidget .product .thumbnail-container {
    text-align: center;
    flex-direction: column;
    gap: 0;
  }
  .productWidget .product .img-container {
    width: 100%;
  }
  .productWidget .product .img-container img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .productWidget .product .product-description {
    margin-top: .6rem;
    height: auto;
  }
  .productWidget .product .product-price-and-shipping {
    margin-top: 1.2rem;
  }
  .productWidget .product .footer {
    margin-top: 1.2rem;
  }
}

/***** productWidget + cms page *****/
#cms .productWidget .product .spacer {
  flex: 1;
  background: none;
  height: inherit;
  width: inherit;
}


/****************************************************************************/
/***** categoryWidget *****/
.widgets.categoryWidget .order-btn {
  height: auto;
  min-height: 20px;
  line-height: inherit;
  padding: .4rem 1rem;
  margin: 10px 0 0 0;
}
.categoryWidget {
  display: flex;
  flex-direction: row;
  gap: .2rem;
  flex-wrap: wrap;
}
.categoryWidget .category {
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: row;
}
.categoryWidget .img-container img{
  object-fit: cover;
  height: 100%;
  max-width: 150px;
}
.categoryWidget .info-container{
  display: flex;
  flex-direction: column;
  padding: .8rem;
}
.categoryWidget .info-container h1{
  margin: 0;
  font-size: 1.1rem;
}
.categoryWidget .description{
  flex: 1;
  margin-top: .6rem;
  font-size: .9rem;
}
.categoryWidget .footer{
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .categoryWidget.multiple .category {
    max-width: 280px;
    flex-direction: column;
  }
  .categoryWidget.multiple .img-container img{
    object-fit: cover;
    height: 100%;
    max-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .categoryWidget.multiple {
    gap: 1.6rem;
  }
}

/***** categoryWidget + smartblog page *****/
#module-smartblog-details .magazine--detail-wrap .categoryWidget h1 {
  margin: 0;
  padding: 0;
  line-height: 1.1rem;
  font-size: 1.1rem;
}
#module-smartblog-details .magazine--detail-wrap .categoryWidget h1 a {
  padding: 0;
}

/***** categoryWidget + cms page *****/
#cms .categoryWidget {
  text-align: left;
}
@media screen and (max-width: 576px) {
  #cms .categoryWidget .category {
    flex-direction: column;
  }
  #cms .categoryWidget .img-container img{
    object-fit: cover;
    height: 100%;
    max-width: inherit;
    width: 100%;
    aspect-ratio: 2/1;
  }
}

/****************************************************************************/
/***** cmsWidget *****/
.cmsyWidget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}
.cmsyWidget .cms {
  width: calc(50% - 1rem);
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
}
.cmsyWidget .cms .img-container img{
  object-fit: cover;
  width: 100%;
  aspect-ratio: 2/1;
}
.cmsyWidget .cms .info-container{
  display: flex;
  flex-direction: column;
  padding: 1rem;
  height: 100%;
}
.cmsyWidget .cms .post-lead{
  display: block;
  color: #999;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 3.3px;
}
.cmsyWidget .cms .post-lead div:last-child {
  padding-bottom: .6rem;
}
.cmsyWidget .cms .post-lead a{
  color: #999;
}
.cmsyWidget .cms .info-container .title a{
  font-family: Nunito;
  line-height: 30px;
  font-style: normal;
  color: #000;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.42px;
}
.cmsyWidget .cms .info-container .description{
  font-size: .9375rem;
  color: #7a7a7a;
  font-weight: 400;
  padding-bottom: 1rem;
  flex: 1;
}
.cmsyWidget .cms .footer{
  text-align: center;
}
.cmsyWidget .cms .footer a{
  margin: 0;
}
@media screen and (max-width: 576px) {
  .cmsyWidget .cms {
    width: 100%;
  }
}

/***** cmsWidget + cms page *****/
@media screen and (max-width: 768px) {
  #cms .cmsyWidget .cms {
    width: 100%;
  }
}


/****************************************************************************/
/***** Smartblog *****/
.smartblogWidget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}
.smartblogWidget .smartblog {
  width: calc(32% - 1rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
}
.smartblogWidget .smartblog .img-container img{
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
}
.smartblogWidget .smartblog .post-lead{
  display: block;
  color: #999;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 3.3px;
  padding-top: .6rem;
}
.smartblogWidget .smartblog .post-lead a{
  color: #999;
}
.smartblogWidget .smartblog .info-container{
  display: flex;
  flex-direction: column;
  padding: 1rem;
  height: 100%;
}
.smartblogWidget .smartblog .info-container .h4.title{
  margin: .6rem 0 .4rem 0;
}
.smartblogWidget .smartblog .info-container .title a{
  font-family: Nunito;
  line-height: 30px;
  font-style: normal;
  color: #000;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.42px;
}
.smartblogWidget .smartblog .info-container .description{
  font-size: .9375rem;
  color: #7a7a7a;
  font-weight: 400;
  padding-bottom: 1rem;
  flex: 1;
}
.smartblogWidget .smartblog .footer{
  text-align: center;
}
.smartblogWidget .smartblog .footer a{
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .smartblogWidget .smartblog {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 576px) {
  .smartblogWidget .smartblog {
    width: 100%;
  }
}

/***** Smartblog + cms page *****/
#cms .smartblogWidget .smartblog {
  text-align: left;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .smartblogWidget .smartblog {
    width: calc(32% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  #cms .smartblogWidget .smartblog {
    width: 100%;
  }
}

/****************************************************************************/
/***** MyAccount *****/
.myAccountWidget {
  display: flex;
  flex-direction: row;
}
.myAccountWidget .myAccount {
  width: calc(45% - 1rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
}
.myAccountWidget .myAccount .img-container img{
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
}
.myAccountWidget .myAccount .info-container{
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.myAccountWidget .myAccount .info-container .h4.title{
  margin: .6rem 0 .4rem 0;
}
.myAccountWidget .myAccount .info-container .title a{
  font-family: Nunito;
  line-height: 30px;
  font-style: normal;
  color: #000;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.42px;
}
.myAccountWidget .myAccount .info-container .description{
  font-size: .9375rem;
  color: #7a7a7a;
  font-weight: 400;
  padding-bottom: 1rem;
}
.myAccountWidget .myAccount .footer{
  text-align: center;
}
.myAccountWidget .myAccount .footer a{
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .myAccountWidget .myAccount {
    width: calc(55% - 1rem);
  }
}
@media screen and (max-width: 576px) {
  .myAccountWidget .myAccount {
    width: 100%;
  }
}

/***** MyAccount + cms page *****/
@media screen and (min-width: 576px) and (max-width: 768px) {
  #cms .myAccountWidget .myAccount {
    width: 100%;
  }
}


/****************************************************************************/
/***** TriolaKlub *****/
.triolaKlubWidget {
  display: flex;
  flex-direction: row;
}
.triolaKlubWidget .triolaKlub {
  width: calc(45% - 1rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
}
.triolaKlubWidget .triolaKlub .img-container img{
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
}
.triolaKlubWidget .triolaKlub .info-container{
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.triolaKlubWidget .triolaKlub .info-container .h4.title{
  margin: .6rem 0 .4rem 0;
}
.triolaKlubWidget .triolaKlub .info-container .title a{
  font-family: Nunito;
  line-height: 30px;
  font-style: normal;
  color: #000;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.42px;
}
.triolaKlubWidget .triolaKlub .info-container .description{
  font-size: .9375rem;
  color: #7a7a7a;
  font-weight: 400;
  padding-bottom: 1rem;
}
.triolaKlubWidget .triolaKlub .footer{
  text-align: center;
  margin-bottom: 1rem;
}
.triolaKlub .footer a{
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .triolaKlubWidget .triolaKlub {
    width: calc(55% - 1rem);
  }
}
@media screen and (max-width: 576px) {
  .triolaKlubWidget .triolaKlub {
    width: 100%;
  }
}

/***** TriolaKlub + cms page *****/
@media screen and (min-width: 576px) and (max-width: 768px) {
  #cms .triolaKlubWidget .triolaKlub {
    width: 100%;
  }
}

/****************************************************************************/
/***** ProductCarousel *****/
.widgets .triola-slick {
  margin: 0;
}
.widgets .triola-slick.slick-container .thumbnail-container {
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/***** ProductCarousel + smartblog *****/
#module-smartblog-details .triola-slick .slick-prev {
  left: -5px;
}
#module-smartblog-details .triola-slick .slick-next {
  right: -5px;
}
@media screen and (min-width: 1150px) {
  #module-smartblog-details .triola-slick.slick-container {
    width: 100%;
  }
}
#module-smartblog-details .triola-slick.slick-product-box .thumbnail-container .product-description h1 {
  margin-top: 0;
  font-size: 25px;
  line-height: 20px;
}

/***** ProductCarousel + cms page *****/
#cms .triola-slick .slick-prev {
  left: -5px;
}
#cms .triola-slick .slick-next {
  right: -5px;
}
@media screen and (min-width: 1150px) {
  #cms .triola-slick.slick-container {
    width: 100%;
  }
}


/***** oneToThreeProducts *****/
.oneToThreeProducts .product-miniature .product-description {
  background: transparent;
}
.widgets.oneToThreeProducts {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.widgets.oneToThreeProducts .product {
  width: calc(32% - 1rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
}
.widgets.oneToThreeProducts .thumbnail-container {
  text-align: center;
}
.widgets.oneToThreeProducts #pColors {
  display: flex;
  justify-content: center;
  gap: .4rem;
  align-items: center;
}
.widgets.oneToThreeProducts h1.product-title {
  margin-top: 1.2rem;
  line-height: 1rem;
  white-space: normal;
}
.widgets.oneToThreeProducts .product-description {
  margin-top: .6rem;
  height: auto;
}
.widgets.oneToThreeProducts .product-price-and-shipping {
  margin-top: 1.2rem;
}
.widgets.oneToThreeProducts .footer {
  margin-top: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .widgets.oneToThreeProducts .product {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 576px) {
  .widgets.oneToThreeProducts .product {
    width: 100%;
    max-width: 280px;
  }
}

/***** oneToThreeProducts + smartblog page *****/
#module-smartblog-details .oneToThreeProducts h1.product-title {
  margin-top: 1.2rem;
  line-height: 1rem;
}
#module-smartblog-details .oneToThreeProducts .product-description {
  margin-top: .6rem;
  height: auto;
}
#module-smartblog-details .oneToThreeProducts .product-price-and-shipping {
  margin-top: 1.2rem;
}
#module-smartblog-details .oneToThreeProducts .footer {
  margin-top: 1.2rem;
}

/***** oneToThreeProducts + cms page *****/
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .widgets.oneToThreeProducts .product {
    width: calc(32% - 1rem);
  }
}
@media screen and (max-width: 992px) {
  #cms .widgets.oneToThreeProducts .product {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  #cms .widgets.oneToThreeProducts .product {
    width: 100%;
  }
}