body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.breadcrumb {
  display: none;
}
#main:not(.main-homepage) {
  padding-top: 0px;
}
.pt_categorylanding .breadcrumb {
  display: none !important;
}
:root {
  --color-red: #b40c1b;
  --gotham-book: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book",
    Helvetica, Arial, sans-serif;
  --gotham-medium: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium",
    "GothamMedium", Helvetica, Arial, sans-serif;
  --clarins: "ClarinsRegular", "Clarins";
  --margin: 60px;
  --margin_small: 25px;
}

.special-offers {
  max-width: 1228px;
  margin: 0 auto;
  position: relative;
  display: block;
  color: #333;
  font-family: var(--gotham-book);
  font-size: 14px;
  line-height: 1.4em;
}
.special-offers * {
  box-sizing: border-box;
}

.special-offers-section {
  display: block;
  margin-top: 40px;
  padding-top: 173px;
  margin-top: -123px;
  position: relative;
}
@media (max-width: 761px) {
  .special-offers-section {
    padding-top: 113px !important;
    margin-top: -83px;
  }
  #online-exclusives {
    padding-top: 80px !important;
  }
}

.special-offers-section#bestsellers {
  z-index: 2;
}

/*------------------------------------------------*/
.special-offers-cta {
  background-color: var(--color-red);
  display: flex;
  color: #fff;
  padding: 14px;
  text-decoration: none;
  font-size: 14px;
  line-height: 15px;
  font-family: var(--gotham-medium);
  cursor: pointer;
  border: 1px solid #a19b96;
  min-width: 122px;
  text-align: center;
  border-radius: 5px;
  height: 44px;
  box-sizing: border-box;
  text-transform: unset !important;
  letter-spacing: unset !important;
  justify-content: center;
  align-items: center;
  position: relative;
}
.special-offers-cta::after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: var(--color-red) solid 2px;
  border-radius: 7px;
  opacity: 0;
  left: -3px;
  top: -3px;
  pointer-events: none;
  box-sizing: border-box;
}

@media (max-width: 761px) {
  .special-offers-cta {
    min-width: 180px;
  }
}

/*------------------------------------------------*/
.special-offers-cta:focus::after {
  opacity: 1;
}
.special-offers-cta:hover {
  color: #fff;
}
.special-offers-cta:active::after {
  opacity: 1;
}
/*------------------------------------------------*/

/*---------------------------------------------*/
.special-offers-title {
  color: #333;
  font-family: var(--clarins);
  font-size: 35px;
  line-height: 1em;
  margin: 0;
  padding: 0px;
  display: block;
  text-align: center;
  font-weight: normal;
}
.special-offers-header__text {
  margin: 0;
  padding-top: 20px;
}
@media (max-width: 761px) {
  .special-offers-title {
    padding: 0px 20px;
  }
}

/*---------------------------------------------*/
.special-offers-header {
  text-align: center;
  padding: 60px;
  padding-bottom: 20px;
  overflow: hidden;
  transition: max-height ease-in-out 0.5s;
  position: relative;
}
.special-offers-header::before {
  content: " ";
  display: block;
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 25%, #fff 75%);
  z-index: 1;
  cursor: pointer;
}
.special-offers-header::after {
  content: " ";
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  left: calc(50% - 15px);
  bottom: 30px;
  pointer-events: none;
  z-index: 2;
  transition: bottom ease-in-out 0.2s;
}
.special-offers-header:hover::after {
  bottom: 65px;
}
.special-offers-header[data-open="0"] {
  max-height: 320px;
}
.special-offers-header[data-open="1"] {
  max-height: 900px;
}
.special-offers-header[data-open="1"]::after,
.special-offers-header[data-open="1"]::before {
  display: none;
}
.special-offers-header__title {
  font-family: var(--clarins);
  font-size: 50px;
  line-height: 1em;
  font-weight: normal;
  margin: 0;
  display: block;
  text-align: center;
}
@media (max-width: 761px) {
  .special-offers-header {
    padding: 20px;
  }
}

/*---------------------------------------------*/

.special-offers-menu {
  display: flex;
  justify-content: space-between;
  z-index: 5;
  position: relative;
}

.special-offers-menu__link {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  padding: 14px;
  text-decoration: none;
  font-size: 14px;
  line-height: 15px;
  font-family: var(--gotham-medium);
  cursor: pointer;
  border: 1px solid #e7e4e2;
  text-align: center;
  border-radius: 5px;
  height: 55px;
  text-transform: unset !important;
  letter-spacing: unset !important;
  flex-basis: calc(16.66% - 16px);
  margin: 8px;
}
.special-offers-menu__link[data-selected="1"] {
  background-color: var(--color-red);
  color: #fff;
}
.special-offers-menu__link::after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: var(--color-red) solid 2px;
  border-radius: 7px;
  opacity: 0;
  left: -3px;
  top: -3px;
  pointer-events: none;
  box-sizing: border-box;
}

@media (max-width: 761px) {
  .special-offers-menu {
    overflow-x: scroll;
  }
  .special-offers-menu__link {
    min-width: 180px;
  }
}

/*------------------------------------------------*/
.special-offers-menu__link:focus::after {
  opacity: 1;
}
.special-offers-menu__link:hover {
  color: var(--color-red);
}
.special-offers-menu__link[data-selected="1"]:hover {
  color: #fff;
}
.special-offers-menu__link:active::after {
  opacity: 1;
}
/*------------------------------------------------*/
#online-exclusives {
  padding-top: 143px;
  z-index: 4;
}
.special-offers-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  z-index: 2;
  background-color: #fff;

  padding: 20px;
}

.special-offers-banner .special-offers-title {
  margin-bottom: 15px;
}
.special-offers-banner__text {
  margin: 0;
  font-size: 14px;
  margin-bottom: 15px;
}
.special-offers-banner__tag {
  margin: 0;
  font-size: 14px;
  margin-bottom: 15px;
  font-family: var(--gotham-medium);
  text-transform: uppercase;
  color: var(--color-red);
}
.special-offers-banner__background {
  z-index: 1;
  flex-basis: 50%;
}

.special-offers-banner__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-offers-banner__content .red {
  color: var(--color-red);
  font-size: 20px;
  line-height: 14px;
  vertical-align: middle;
}
.special-offers-banner__content .infos {
  border-radius: 50%;
  color: #333;
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 2px solid #333;
  text-decoration: none;
  line-height: 14px;
  font-family: var(--gotham-medium);
  font-size: 14px;
}
.special-offers-banner__content *[data-expand="1"] {
  display: none;
}
.special-offers-banner__content[data-expand="1"] *[data-expand="0"] {
  display: none;
}
.special-offers-banner__content[data-expand="1"]
  .special-offers-banner__text[data-expand="1"] {
  display: block;
}
.special-offers-banner__content[data-expand="1"]
  .special-offers-cta[data-expand="1"] {
  display: flex;
}

@media (min-width: 762px) {
  .special-offers-banner {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
    justify-content: flex-start;
  }
  .special-offers-banner:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .special-offers-banner:nth-child(2n + 1) {
    flex-direction: row;
  }
  .special-offers-banner__content {
    min-height: 290px;
    flex-basis: 50%;
    padding: 35px 60px;
  }

  .special-offers-banner--hero .special-offers-banner__content {
    flex-basis: calc(50% - 120px);
    max-width: 497px;
    margin: 0 60px;
  }
  .special-offers-banner--hero .special-offers-banner__background img {
    width: 200%;
    margin-left: -100%;
  }
}
/*---------------------------------------------*/
@media (min-width: 762px) {
  .special-offers-everyday-offers {
    margin: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    grid-auto-rows: minmax(100px, auto);
  }
}
#everyday-offers {
  z-index: 3;
}
@media (max-width: 761px) {
  #everyday-offers {
    background-color: #eeeeee;
    padding-bottom: 20px;
  }
  .special-offers-everyday-offers {
    padding: 20px 0;
    margin-left: 20px;
  }
  .special-offers-everyday-offers .slick-slide > div,
  .special-offers-everyday-offer {
    height: 100%;
  }
  .special-offers-everyday-offers .slick-slide {
    display: block;
  }
  .special-offers-everyday-offers .slick-list {
    overflow: visible;
  }
  .special-offers-everyday-offers .slick-track {
    display: flex;
  }
}

.special-offers-everyday-offer {
  display: flex !important;
  float: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border: 1px solid #c3c3c3;
  padding: 30px;
  background-color: #fff;
}
@media (max-width: 761px) {
  .special-offers-everyday-offer:first-child {
    /*margin-left: 20px;*/
  }
  .special-offers-everyday-offer {
    margin-right: 20px;
  }
}

.special-offers-everyday-offer__title {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--gotham-medium);
  font-weight: normal;
}
.special-offers-everyday-offer__visual {
  margin: -30px;
  width: calc(100% + 60px);
  margin-bottom: 30px;
}
.special-offers-everyday-offer__visual img {
  width: 100%;
  display: block;
}
.special-offers-everyday-offer__text {
  flex: 1;
  font-size: 14px;
  margin: 20px 0;
}

/*------------------------------------------------*/
.special-offers-newsletter {
  padding: 20px;
  text-align: center;
}

/*------------------------------------------------*/
.newsletter-form-4-container .subscribe .newsletter-form-4-button {
  background-color: var(--color-red);
  display: flex;
  color: #fff;
  padding: 14px;
  text-decoration: none;
  font-size: 14px;
  line-height: 15px;
  font-family: var(--gotham-medium);
  cursor: pointer;
  border: 1px solid #a19b96;
  min-width: 280px;
  text-align: center;
  border-radius: 5px;
  height: 55px;
  box-sizing: border-box;
  text-transform: unset !important;
  letter-spacing: unset !important;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
}
.newsletter-form-4-container .subscribe .newsletter-form-4-button::after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: var(--color-red) solid 2px;
  border-radius: 7px;
  opacity: 0;
  left: -3px;
  top: -3px;
  pointer-events: none;
  box-sizing: border-box;
}

/*------------------------------------------------*/
.newsletter-form-4-container .subscribe .newsletter-form-4-button:focus::after {
  opacity: 1;
}
.newsletter-form-4-container .subscribe .newsletter-form-4-button:hover {
  color: #fff;
}
.newsletter-form-4-container
  .subscribe
  .newsletter-form-4-button:active::after {
  opacity: 1;
}
