.sidebar-wishlist__scrolled {
  width: 100%;
  height: calc(100% - 220px);
  /* min-height: 300px; */
  position: relative;
}

.sidebar-wishlist__text {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
  display: block;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: .3px;
}

body.light .sidebar-wishlist__text {
  color: rgba(0, 0, 0, 0.4);
}

.sidebar-wishlist__footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  margin-top: 30px;
  bottom: 20px;
  position: absolute;
}

.sidebar-wishlist__input--email {
  width: 100%;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 14px;
  color: #647381;
  line-height: 1.2;
  height: 44px;
  padding: 0 15px;
  font-weight: bold;
  transition: .1s background ease;
  margin-bottom: 15px;
}

.sidebar-wishlist__input--email::placeholder {
  color: #9d9d9d;
}

body.light .sidebar-wishlist__input--email {
  border: 2px solid rgba(68, 68, 68, 0.2);
  color: #2f2f2f;
}

body.dark .sidebar-wishlist__input--email {
  border: 2px solid rgba(0, 0, 0, 0.7);
  color: #2f2f2f;
}

.sidebar-wishlist__input--email:hover,
.sidebar-wishlist__input--email:focus {
  background-color: #f1f1f1;
}

.sidebar-wishlist__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  font-size: 14px;
  letter-spacing: .3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar-wishlist__empty[hidden] {
  display: none;
}

body.light .sidebar-wishlist__empty {
  color: rgba(68, 68, 68, .8);
}

body.dark .sidebar-wishlist__empty {
  color: rgba(255, 255, 255, .8);
}

.sidebar-wishlist__btn--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  background-color: #5dc569;
  height: 44px;
  width: 100%;
  transition: .15s background ease;
  opacity: 1;
}

.sidebar-wishlist__btn--submit:not(:disabled):hover {
  background-color: #65df73;
}

.sidebar-wishlist__btn--submit:disabled {
  background-color: #898989;
  opacity: .6;
  cursor: default;
}

.sidebar-wishlist__btn--submit span {
  text-transform: uppercase;
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
}

.sidebar-wishlist__btn--submit svg {
  width: 22px;
}

.sidebar-wishlist__btn--submit svg path {
  fill: #fff;
}

.sidebar-wishlist__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  overflow: scroll;
}

.sidebar-wishlist__list__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 15px 0;
}

.sidebar-wishlist__list__item.unavailable .wishlist__item__image__wrapper {
  pointer-events: none;
}

.sidebar-wishlist__list__item:not(:last-child) {
  border-bottom: 1px solid #3d4756;
}

body.light .sidebar-wishlist__list__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

body.dark .sidebar-wishlist__list__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.wishlist__item__image__wrapper {
  border-radius: 2px;
  background-color: rgb(224, 224, 224);
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.wishlist__item__image__wrapper * {
  pointer-events: none;
}

.wishlist__item__image__wrapper svg {
  width: 24px;
  height: 24px;
}

body.light .wishlist__item__image__wrapper svg path {
  fill: rgba(0, 0, 0, 0.4);
}

.wishlist__item__image {
  width: 100%;
  pointer-events: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wishlist__item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: calc(100% - 70px);
}

.wishlist__item__name {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
  width: 100%;
  max-width: 143px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: .3px;
}

body.light .wishlist__item__name {
  color: rgba(0, 0, 0, 0.8);
}

.wishlist__item__price {
  font-size: 14px;
  color: #717f8b;
  line-height: 1.2;
  letter-spacing: .3px;
  font-weight: bold;
  width: 70px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: right;
  margin-right: 25px;
}

.wishlist__item__price[hidden] {
  display: none;
}

.wishlist__item__price span:first-of-type {
  margin-right: 1px;
}

body.light .wishlist__item__price {
  color: rgba(0, 0, 0, 0.4);
}

body.dark .wishlist__item__price {
  color: rgba(255, 255, 255, 0.5)
}

.wishlist__item__controls__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.wishlist__item__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #717f8b;
  height: 19px;
  width: fit-content;
}

.wishlist__item__controls[hidden] {
  display: none;
}

body.dark .wishlist__item__controls {
  border-color: rgba(255, 255, 255, 0.5)
}

body.light .wishlist__item__controls {
  border-color: rgba(0, 0, 0, 0.4);
}

.wishlist__item__controls__button {
  width: 23px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .1s background ease;
  padding: 4px;
}

.wishlist__item__controls__button:first-of-type {
  border-right: 1px solid #717f8b;
  padding: 5px;
}

.wishlist__item__controls__button:last-of-type {
  border-left: 1px solid #717f8b;
}

body.dark .wishlist__item__controls__button:first-of-type {
  border-color: rgba(255, 255, 255, 0.5)
}

body.light .wishlist__item__controls__button:first-of-type {
  border-color: rgba(0, 0, 0, 0.4);
}

body.dark .wishlist__item__controls__button:last-of-type {
  border-color: rgba(255, 255, 255, 0.5)
}

body.light .wishlist__item__controls__button:last-of-type {
  border-color: rgba(0, 0, 0, 0.4);
}

body.dark .wishlist__item__controls__button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

body.light .wishlist__item__controls__button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.wishlist__item__controls__button svg {
  pointer-events: none;
  width: 100%;
}

.wishlist__item__controls__button svg path {
  transition: .1s stroke ease;
}

body.dark .wishlist__item__controls__button svg path {
  stroke: var(--dark-color)
}

body.light .wishlist__item__controls__button svg path {
  stroke: var(--light-color)
}

body.dark .wishlist__item__controls__button:hover svg path {
  stroke: #000;
}

body.light .wishlist__item__controls__button:hover svg path {
  stroke: #fff;
}

.wishlist__item__controls__input {
  width: 30px;
  height: 100%;
  text-align: center;
  background-color: transparent;
  outline: none;
  font-size: 13px;
  color: #828993;
  line-height: 1.2;
}

body.dark .wishlist__item__controls__input {
  color: rgba(255, 255, 255, 0.5);
}

body.light .wishlist__item__controls__input {
  color: rgba(0, 0, 0, 0.5);
}

input.wishlist__item__controls__input::-webkit-outer-spin-button,
input.wishlist__item__controls__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.wishlist__item__controls__input[type=number] {
  -moz-appearance: textfield; 
}

.wishlist__item__buttons {
  display: flex;
  justify-content: flex-end;
  margin-left: 5px;
}

.wishlist__item__remove {
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -4px;
  border-radius: 50%;
  transition: .1s background ease;
}

body.dark .wishlist__item__remove:hover {
  background-color: #c5c5c53d;
}

body.light .wishlist__item__remove:hover {
  background-color: #5f5f5f3d;
}

.wishlist__item__remove svg {
  pointer-events: none;
  width: 16px;
  height: 20px;
}

body.dark .wishlist__item__remove:hover svg path {
  fill: rgba(255, 255, 255, 0.8);
}

body.light .wishlist__item__remove:hover svg path {
  fill: rgba(0, 0, 0, 0.8);
}

body.dark .wishlist__item__remove svg path {
  fill: rgba(255, 255, 255, 0.5);
}

body.light .wishlist__item__remove svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.sidebar-wishlist__status {
  color: #5dc569;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: .3px;
  display: none;
  margin-bottom: 15px;
}

.sidebar-wishlist__status.status--success {
  color: #5dc569;
}

.sidebar-wishlist__status.status--bad {
  color: red;
}

.sidebar-wishlist__status.active {
  display: block;
}

.product-gallery__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  transition: 0.15s opacity linear, 0.15s visibility linear;
}

.product-gallery__container {
  display: flex;
  height: 100%;
  transition: margin 0.2s ease-in-out 0s;
  background-color: #f5f5f5;
}

.product-gallery__slide {
  list-style: none;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-modal__image__wrapper--video {
  position: relative;
}

.product-modal__image__wrapper--video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../assets/images/hotspots/icon-circle-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  z-index: 2;
}

.product-modal__image__wrapper--video::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.product-gallery__arrow-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
}

.product-gallery__arrow {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.1s opacity linear;
  z-index: 1;
}

.product-gallery__arrow--left {
  left: 0;
}

.product-gallery__arrow--right {
  right: 0;
}

.product-gallery__arrow div {
  background-color: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url(../images/prev2_1h.svg);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.8;
  transition: .1s opacity ease;
}

.product-gallery__arrow--right div {
  right: 5px;
  transform: translateY(-50%) rotate(180deg);
}

.product-gallery__arrow--left div {
  left: 5px;
}

.product-gallery__wrapper:hover > .product-gallery__arrow {
  opacity: 1;
}

.product-gallery__arrow:hover div {
  opacity: 1;
}

.product-gallery__slide__iframe {
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  position: absolute;
}

.product-gallery__slide--video {
  position: relative;
}

.product-gallery__slide__button--play {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../assets/images/hotspots/videoembed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2; 
  transition: .1s transform ease;
}

.product-gallery__slide__button--play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.wishlist__item__unavailable {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .3px;
  color: #cb253d;
}

/* body.light .wishlist__item__unavailable {
  color: var(--light-color);
}

body.dark .wishlist__item__unavailable {
  color: var(--dark-color);
} */

/* 
@media screen and (max-height: 400px) {
  body.is_embed .sidebar-wishlist__scrolled {
    min-height: 100px;
  }
} */
