* {box-sizing:border-box}

/* Slideshow container */
.wp-block-slidewhow {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.wp-block-slide {
  display: none;
}

/* Next & previous buttons */
.wp-block-slidewhow-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.wp-block-slidewhow-button-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
a.wp-block-slidewhow-button:hover {
  color: white;
  background-color: rgba(0,0,0,0.5);
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Accordion */
.wp-block-accordion-item{
  float:left;
  display:block;
  width:100%;
}
.wp-block-accordion-item-heading{
  cursor:pointer;
  padding:10px;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  margin-bottom: 0;
}
.wp-block-accordion-item-close .wp-block-accordion-item-content{
  height:0px;
  transition:height 1s ease-out;
transform: scaleY(0);
  float:left;
  display:block;
  
  
}
.wp-block-accordion-item-open .wp-block-accordion-item-content{
      padding: 20px;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  display:block;
transform: scaleY(1);
transform-origin: top;

transition: transform 0.4s ease;
}