.card-promo{
  display: block;
  padding: 15px;
  background-color: #f0edec;
  margin-bottom: 20px;
  border-radius: 5px;
  color: black;
  margin-top: 20px;
  position: relative;
  overflow-x: hidden;  
}

@media screen and (min-width: 768px) {
    .card-promo {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.card-promo .blik {
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  transform: skewX(-15deg);
  -webkit-animation: flareAnimation;
  animation: flareAnimation;
  left: -150%;
  background:rgba(255, 255, 255, 0.4);
  -webkit-animation: blikAnim 3s infinite linear;
  animation: blikAnim 3s infinite linear; 
}
@keyframes blikAnim {
  0% { left: -150%; }
  20% { left: 150%; }
  100% { left: 150%; }
}
@-webkit-keyframes blikAnim {
  0% { left: -150%; }
  20% { left: 150%; }
  100% { left: 150%; }
}
.card-promo:hover{
  -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.card-promo .orange{
  font-weight: bold;
  color: #ff7e00;
}
.card-promo .red{
  color:#ff0000;
}
.card-promo .green{
  color:#98bd00;
}
.card-promo .left__text{
  font-size: 13px;
  text-align: center;
}
.card-promo .left__promo{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #ff7e00;
  margin: 10px;
}
.card-promo .right{
  font-size: 11px;
}

.card-promo__accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 8px 0;
    gap: 8px;
}

.card-promo__accordion-title {
    font-size: 13px;
}

.card-promo__accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.card-promo__accordion-toggle svg {
    transition: transform 0.2s ease;
    transform: rotate(0deg);
}

.card-promo__accordion-toggle.rotated svg {
    transform: rotate(180deg);
}

.card-promo__accordion-content {
    display: none;
}