/* wah base layout */
.__wahonline {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0px 40px;
}

.__wahonline .__title-img-wrapper,
.__wahonline .__button-wrapper {
  flex: 1 1 100%;
}

.__wahonline .__title-wrapper {
  width: 100%;
}

.__wahonline .__title-wrapper .__title {
  width: 100%;
  padding: 25px 0px;
  text-align: center;
  font-weight: 700;
  font-size: 3em;
  letter-spacing: 0.08em;
  max-width: 100%;
}

.__wahonline .__description-wrapper,
.__wahonline .__title-img-wrapper,
.__wahonline .__button-wrapper {
  max-width: 600px;
  margin-bottom: var(--row-gap-3);
  color: var(--white);
}

/* description panel */

.__wahonline .__description-wrapper .__description {
  background-color: #539ad4;
  padding: 15px 20px;
  box-sizing: content-box;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  opacity: 0.9;
  border-radius: 4px;
}

.__wahonline .__description-wrapper h4 {
  line-height: 1.5;
  margin: 0;
  margin-bottom: 10px;
}

.__wahonline .__description-wrapper hr {
  width: calc(100% - -40px);
  height: 1px;
  background-color: var(--white);
  border: 0;
  margin-right: -20px;
  margin-left: -20px;
  opacity: 0.5;
}

.__wahonline .__description-wrapper p {
  margin-bottom: 20px;
  font-size: 1em;
  color: inherit;
  line-height: 1.7;
  word-break: break-word;
}

.__wahonline .__description-wrapper p.info {
  margin-bottom: 0px;
  font-size: 0.9em;
  opacity: 0.7;
}

.__wahonline .__button-wrapper .--btn-cta {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  color: var(--white);
  background-color: #34be91;
  text-decoration: none;
  box-shadow: 0px 5px #30a57b;
}

.__wahonline .__button-wrapper .--btn-cta:hover {
  background-color: #32b88b;
}

.__wahonline .--btn-cta .play-icon {
  margin-bottom: 4px;
  margin-right: 5px;
}

.__wahonline .__row {
  display: flex;
  flex: 1;
  margin-bottom: 10px;
}

.__wahonline .__row .__title {
  font-size: 1.2em;
  font-weight: bold;
}

.__wahonline .__row img.info {
  width: 20px;
  margin-right: 8px;
}

.__wahonline .__row ul {
  margin: 0;
}

.__wahonline .__row ul li {
  display: flex;
  flex: 1;
  margin-bottom: 5px;
  align-items: center;
}

.__wahonline .__row ul li .arrow {
  width: 6px;
  margin-right: 8px;
}

.__wahonline .--inline {
  display: flex;
  flex-direction: row;
}

.__wahonline .--vcenter {
  align-items: center;
}

/* responsive break points  */

@media only screen and (max-width: 767px) {
  .__wahonline .__description-wrapper .__description {
    padding: 25px;
  }

  .__wahonline .__description-wrapper h3 {
    font-size: 1.5em;
  }

  .__wahonline .__description-wrapper hr {
    width: calc(100% - -30px);
    margin-right: -15px;
    margin-left: -15px;
  }

  .__wahonline .__title-wrapper .__title {
    font-size: 2.3em;
  }

  .__wahonline .__button-wrapper .--btn-cta {
    font-size: 1.2em;
  }
}
