#slider {
  overflow: hidden;
}
#slider figure {
  /* position: relative; */
  display: flex;
  width: calc(500px * 30);
  height: 380px;
  animation: 200s slider infinite;
}
#slider figure img {
  float: left;
  width: 20%;
}
@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(Calc(-500px * 30));
  }
  /* 25% {
    left: -100%;
  }
  45% {
    left: -100%;
  }
  50% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -300%;
  }
  95% {
    left: -300%;
  }*/
}

.whatsapp_float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 3;
}

.scrolling {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: hidden;
  margin-top: 10px;
  font-size: 24px;
}
.scrolling p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 50px;
  color: rgba(0, 0, 0, 0.932);
  transform: translateX(100%);
  animation: scrolling 20s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Style the container with a rounded border, grey background and some padding and margin.  background-color: #eee;*/
.containerbc {
  border: 2px solid #ccc;
  background-color: white;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
  width: 95%;
}

/* Clear floats after containers */
.containerbc::after {
  content: "";
  clear: both;
  display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.containerbc img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

/* Increase the font-size of a span element */
.containerbc span {
  font-size: 20px;
  margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 500px) {
  .containerbc {
    text-align: center;
  }

  .containerbc img {
    margin: auto;
    float: none;
    display: block;
  }
}

.christmas_float {
  position: fixed;
  bottom: 40px;
  left: 20px;
  z-index: 3;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: block;
  background-color: white;
  overflow: hidden;
}

/*.accordion:after {
  content: '\02795';  Unicode character for "plus" sign (+) 
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; Unicode character for "minus" sign (-) 
}*/