/* Podcast page episode listing */
.dh-faq-area {
  padding: 15px 0;
}

.dh-faq-area .container {
  max-width: 80%;
  margin: auto;
}

.dh-faq-area .faq-drawer__content {
  padding: 0 15px 15px 15px;
  font-size: 16px;
  font-family: "Montserrat", Sans-serif !important;
  color: black;
  font-weight: 400;
  line-height: 20px;
}

.dh-faq-area .faq-drawer {
  margin-bottom: 30px;
  position: relative;
  border: 2px solid #eaeaea;
}

.dh-faq-area .faq-drawer__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  opacity: 0;
  visibility: 0;
}

.dh-faq-area .faq-drawer__title {
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-out;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 15px;
}
.dh-faq-area .faq-drawer__title a {
    color: black;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #BF071F;
}
.dh-faq-area .faq-drawer__title::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: " ";
  display: inline-block;
  float: right;
  height: 10px;
  left: 2px;
  position: relative;
  right: 20px;
  top: -39px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 10px;
}
.dh-faq-area .faq-drawer__content .text-right a {
  color: #000 !important;
  font-weight: bold;
}

/* OPTIONAL HOVER STATE */
.dh-faq-area .faq-drawer__title a:hover {
  color: #000;
  font-family: "Roboto Slab", Sans-serif;
}

.dh-faq-area .faq-drawer__trigger:checked+.faq-drawer__title+.faq-drawer__content-wrapper {
  max-height: initial;
  opacity: 1;
}

.dh-faq-area .faq-drawer__trigger:checked+.faq-drawer__title::after {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

.dh-faq-area .faq-drawer__content .text-right a:hover {
  border-bottom: solid 2px #BF071F;
}
.dh-faq-area input[type="checkbox"] {
  display: none;
}

.dh-faq-area label.faq-drawer__title img {
  vertical-align: middle;
  width: 60px;
  margin-right: 15px;
}

.dh-faq-area .btn.btn--new-badge {
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  font-stretch: condensed;
  font-style: normal;
  letter-spacing: normal;
  margin: 0;
  width: 50px;
  min-width: 0;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  padding-top: 16px;
  padding-left: 5px;
  box-sizing: border-box;
  position: absolute;
  left: auto;
  right: -30px;
  top: -20px;
  cursor: auto;
  z-index: 100;
}
.wobble-horizontal-top {
  animation: wobble-horizontal-top .8s linear both;
  animation-iteration-count: 1999;
  animation-duration: 2s;
}
@keyframes wobble-horizontal-top {
  0%, 100% {
    transform: translateX(0);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

.dh-faq-area .faq-inside {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

.dh-faq-area .faq-title span {
  display: block;
  font-size: 1.2rem;
  color: #000;
  font-family: "Roboto Slab", Sans-serif;
}

.dh-faq-area .faq-title b {
  font-size: 1rem;
}

.dh-faq-area .faq-drawer:hover {
  border: 2px solid #BF071F;
}

@media screen and (max-width:1024px) {
  .dh-faq-area .container {
    max-width: 85%;
  }
}

@media screen and (max-width:767px) {
  .dh-faq-area .container {
    max-width: 100%;
  }

  .dh-faq-area .btn.btn--new-badge {
    right: 0;
  }
}

@media screen and (max-width:480px) {
  .dh-faq-area .faq-title b {
    font-size: 15px;
  }
  .dh-faq-area .faq-drawer__title::after {
    top: -60px;
  }
}

/* End Podcast Page episode listing */
