/**************************************************/
/*-------------------------------------------*/

.dp-xmas-carousel__all-products {
  position: relative;
}
.dp-xmas-carousel__scroll-container {
  pointer-events: none;
  transition: ease-in-out;
  overflow: hidden;
  overflow-x: scroll;
  display: block;
  height: 100%;
  width: 100%;
  padding: 15px 0;
  font-size: 0;
  pointer-events: unset;
  white-space: nowrap;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  max-width: 1248px;
  margin: 0 auto;
  scrollbar-width: none;
}
.dp-xmas-carousel__scroll-container::-webkit-scrollbar {
  display: none;
}

.dp-xmas-carousel__product {
  display: inline-block;
  width: 33vw;
  max-width: 416px;
  height: 100%;
  scroll-snap-align: center;
  vertical-align: top;
}

.dp-xmas-carousel__product-wrapper {
  background-color: #fff;
  width: 250px;
  height: 530px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
  box-shadow: 0px 0px 16px rgb(0 0 0 / 15%);
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.dp-xmas-carousel__packshot {
  width: 368px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-end;
  margin-left: calc(50% - 184px);
  height: 240px;
}
.dp-xmas-carousel__packshot img {
  max-width: 100%;
  display: block;
}
.dp-xmas-carousel__product-collection {
  font-size: 12px;
  font-family: var(--GOTHAM-MEDIUM);
  color: #b40024;
  width: 100%;
  white-space: normal;
  margin-bottom: 10px;
  margin-top: 0px;
}
.dp-xmas-carousel__product-name {
  margin: 0;
  font-size: 24px;
  font-family: var(--CLARINS-FONT);
  color: #333;
  width: 100%;
  white-space: normal;
  text-transform: uppercase;
  flex: 1;
}
.dp-xmas-carousel__product-price {
  font-size: 16px;
  font-family: var(--GOTHAM-MEDIUM);
  color: #333;
  height: 24px;
  flex-basis: 50px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.dp-xmas-carousel__quickshop-link {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  padding-top: 20px;
}
.dp-xmas-carousel__quickshop-link span {
  border: #b40024 solid 2px;
  border-radius: 5px;
  margin-top: 10px;
  height: 44px;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  line-height: 40px;
  font-family: var(--GOTHAM-MEDIUM);
  box-sizing: border-box;
  background-color: #b40024;
  color: #fff;
  min-width: 120px;
  vertical-align: middle;
  margin: 0 auto;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  position: relative;
  width: auto;
}
.dp-xmas-carousel__quickshop-link span::after {
  display: none !important;
}

/*------------------------------------------------*/
.dp-xmas-carousel__quickshop-link span:hover {
  background-color: #8c0b26;
  border: #63021a solid 2px;
}
.dp-xmas-carousel__quickshop-link span:focus {
  background-color: #8c0b26;
  border: #63021a solid 2px;
}
.dp-quickshop {
  display: none;
}
.dp-xmas-carousel__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
*[data-position="noscroll"] .dp-xmas-carousel__pagination {
  display: none;
}

.dp-xmas-carousel__dot {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 0px solid;
  min-width: 0;
  outline: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 0;
  cursor: pointer;
}
.dp-xmas-carousel__dot::before {
  content: " ";
  background-color: #cfcac9;
  border-radius: 50%;
  min-width: 0;
  width: 8px;
  height: 8px;
  display: block;
}
.dp-xmas-carousel__dot[data-active="1"] {
  pointer-events: none;
  cursor: unset;
}
.dp-xmas-carousel__dot[data-active="1"]::before {
  background-color: #333;
}
.dp-xmas-carousel__dot:hover {
  outline: none !important;
}
.dp-xmas-carousel__next,
.dp-xmas-carousel__prev {
  background-image: url(../img/arrow-product.svg);
  background-size: auto 100%;
  background-position: top left;
  width: 48px;
  height: 48px;
  border: 0px solid !important;
  outline: 0px solid !important;
  background-color: transparent !important;
  position: absolute;
  top: calc(50% - 24px);
  font-size: 0;
  z-index: 3;
  cursor: pointer;
  display: block;
  min-width: auto;
}
.dp-xmas-carousel button:hover,
.dp-xmas-carousel button:hover,
.dp-xmas-carousel button:active,
.dp-xmas-carousel button:active {
  border: 0px solid !important;
  outline: 0px solid !important;
  background-color: transparent !important;
}
.dp-xmas-carousel__next:hover,
.dp-xmas-carousel__prev:hover {
  background-position: top right;
}
.dp-xmas-carousel__prev {
  left: 0px;
  transform: scaleX(-1);
}
.dp-xmas-carousel__next {
  right: 0px;
}
*[data-position="start"] .dp-xmas-carousel__prev {
  opacity: 0.5;
  pointer-events: none;
}
*[data-position="end"] .dp-xmas-carousel__next {
  opacity: 0.5;
  pointer-events: none;
}
*[data-position="noscroll"] .dp-xmas-carousel__prev,
*[data-position="noscroll"] .dp-xmas-carousel__next {
  opacity: 0;
  pointer-events: none;
}
/*---------RESPONSIVE---------*/
@media (max-width: 1023px) and (min-width: 762px) {
  .dp-xmas-carousel__product-wrapper {
    width: 180px;
    height: 410px;
    padding: 30px 0;
  }
  .dp-xmas-carousel__packshot {
    width: 268px;
    margin-left: calc(50% - 134px);
    height: 150px;
  }
  .dp-xmas-carousel__product-name {
    margin: 0;
    font-size: 20px;
  }

  .dp-xmas-carousel__filter::before {
    display: none;
  }
  .dp-xmas-carousel__scroll-container {
    height: 480px;
    position: relative;
  }
  .dp-xmas-carousel__quickshop-link {
    padding-top: 0;
  }
}
@media (max-width: 761px) {
  .dp-xmas-carousel__product-wrapper {
  }
  .dp-xmas-carousel__product {
    min-height: 100vw;
    flex-basis: 100vw;
    width: 100vw;
    max-width: unset;
  }
  .dp-xmas-carousel__scroll-container {
    height: auto;
    width: 100vw;
  }
}
