@import "fonts.css";
/* OFFERS */
/* CheilRomanOTF-ExtraBold
CheilRomanOTF-Bold
CheilRomanOTF-Medium
CheilRomanOTF-Regular
CheilRomanOTF-Light */
.promotions {
  padding: 0 15px;
  grid-column: span 2;
  min-height: 60px;
  position: relative;
}

.promotions.vertical {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: column !important;
  padding: 0 15px;
  grid-column: unset !important;
}
.promotions.vertical .promotions-container {
  flex-direction: column;
}
.promotions.vertical .promotions__title-container .promotions___title {
  margin: 10px 0 0 10px;
}
.promotions.vertical .promotions__title-container #promotions__arrow-down { display: none }
.promotions.vertical .promotions-container__arrow {
  display: none;
}
.promotions.vertical .promotions-container__cards {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.promotions.vertical .promotions-container__cards__inner {
  position: unset;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  height: 100%;
  width: 100%;
}
.promotions.vertical .promotions-container__cards::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 0.4rem;
}
.promotions.vertical .promotions-container__cards::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 0.4rem;
}
.promotions.vertical .promotions-container__cards::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
}
.promotions.vertical .offer-card {
  margin: 8px;
  width: 90% !important;
}






.promotions__title-container {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-bottom: 12px;
}

.promotions__arrow-down {
  cursor: pointer;
  height: 24px;
  width: 24px;
  transform: rotate(-90deg);
}

.promotions___title {
  font-family: CheilRomanOTF-Bold;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 0;
  margin-right: 18px;
}
.promotions.light .promotions___title {
  color: #0b0b0b;
}

.promotions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promotions-container__arrow {
  background-color: #24252b;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  padding: 6px;
  margin: 0 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: absolute;
}

.promotions.light .promotions-container__arrow {
  background-color: #FFFFFF;
}

.promotions-container__arrow:last-child {
  right: 15px;
}

.promotions-container__arrow:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.promotions-container__cards {
  display: flex;
  width: 100%;
  margin: 0 50px;
  position: relative;
  overflow: hidden;
  height: 125px;
  align-items: center;
}

.promotions-container__cards__inner {
  display: flex;
  position: absolute;
  left: 0;
}

.offer-card {
  cursor: pointer;
  display: flex;
  padding: 15px;
  border-radius: 6px;
  background-color: rgba(36, 37, 43, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 0 10px;
  border: 1px solid transparent;
}

.promotions.light .offer-card {
  background-color: rgba(255, 255, 255, 1);
}

.offer-card-responsive {
  cursor: pointer;
  display: flex;
  padding: 15px;
  border-radius: 6px;
  background-color: rgba(36, 37, 43, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
  width: 90%;
  border: 1px solid transparent;
}

.promotions.light .offer-card-responsive {
  background-color: rgba(255, 255, 255, 1);
}

.offer-card:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
  border: 1px solid #6c12dd;
}

.offer-card-image-container {
  width: 30%;
  height: 75px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.offer-card-image {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}

.offer-card-info-container {
  width: 70%;
  height: 75px;
  margin-left: 11px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-around;
}

.offer-card-info-product-name {
  font-family: CheilRomanOTF-Regular;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #FFFFFF;
  overflow: hidden;
  white-space: normal;
  margin: 0;
  height: auto;
}
.promotions.light .offer-card-info-product-name {
  color: #707c97;
}

.offer-card-info-product-description {
  font-family: CheilRomanOTF-Light;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #FFFFFF;
  overflow: hidden;
  white-space: normal;
  margin: 0;
  height: auto;
}
.promotions.light .offer-card-info-product-description {
  color: #707c97;
}

.offer-card-price {
  font-family: CheilRomanOTF-Bold;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  text-align: left;
  color: #6c12dd;
  margin: 0;
  white-space: normal;
}
.promotions.light .offer-card-price{
  color: #0d1c2e;
}

.logo-samsung {
  max-width: 40%;
}

.crossed-text {
  font-family: CheilRomanOTF-Light;
  text-decoration: line-through;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 14px;
}
.promotions.light .crossed-text{
  color: #1428a0;
}

@media only screen and (max-width: 991px) {
  .promotions__title-container {
    display: none;
  }
  .promotions {
    display: none;
  }
  .promotions-container {
    flex-direction: column;
    height: 450px;
  }

  .promotions-container__arrow {
    display: none;
  }

  .promotions-container__cards {
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .promotions-container__cards__inner {
    position: unset;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    height: 100%;
    width: 100%;
  }

  .promotions-container__cards::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 0.4rem;
  }

  .promotions-container__cards::-webkit-scrollbar-track {
    background-color: darkgrey;
    border-radius: 0.4rem;
  }

  .promotions-container__cards::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0.4rem;
  }

  .offer-card {
    margin: 8px;
    width: 90%;
    max-width: 400px;
  }
}
