*, *:before, *:after {
  box-sizing: border-box;
}



:root {
  --dhadh-xtra-dark: #5d3d26;
  --dhadh-dark: #7c5942;

  --dhadh-light: #ddbf99;

  --dhadh-blue: #323141;
  --dhadh-xtra-blue: #1f1d40;


  /* Colors from: https://mycolor.space/?hex=%23DDBF99&sub=1 */
  --dhadh-palette-yellow: #FFF7E8;
  --dhadh-palette-grey: #DFE0DF;

  
}

#podcast-player .shk {
  --color-button: var(--dhadh-light);
  z-index: 110;
}

#podcast-player .shk-player {
  height: 94px;
}

#podcast-player .shk-main {
  align-items: normal;
  max-width: 100%;
}

#podcast-player .shk-artist_wrap,
#podcast-player .shk-cover { 
  display: none;
}

.episodes-wrapper {
  background-color: #f0f0f0;
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  text-align: center;
}


.episodes-wrapper .filter-wrapper {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.episodes-wrapper .filter-wrapper .category-filter, .episodes-wrapper .filter-wrapper .search-filter {
  width: 100%;
  padding: 6px 8px;
  font-family: 'Roboto';
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.episodes-wrapper .filter-wrapper .category-filter {
  background: #fff url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 5px top 50%;
}

.episodes-wrapper .filter-wrapper .search-filter {
}


.episodes-wrapper .show-more-button {
  display: inline-block;
  background: var(--dhadh-light);
  color: #000;

  margin: 15px 0;
  padding: 10px 16px;
  border-radius: 4px;

  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;

  cursor: pointer;
}

.episodes-wrapper .show-more-button.hidden {
  display: none;
}


.episodes-wrapper .show-more-button:hover {
  background: var(--dhadh-dark);
  color: #fff;
}


.episode {
  margin: 10px 0;
  padding: 5px 10px;
  background-color: #fff;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: left;

}

.episode.hidden {
  display: none; 
}

.episode .play-cta {
  position: absolute;
  margin: 6px;
  width: 46px;
  height: 46px;
}

.episode.is-not-playable .play-cta {
  opacity: 0.3;
}

.episode .play-cta img {
  width: 46px;
  height: 46px;
}

.episode.is-playable .play-cta img {
  cursor: pointer;
}

.episode .play-cta img.icon-play-hover {
  display: none;
}

.episode.is-playable .play-cta:hover img.icon-play-hover {
  display: block;
}
.episode.is-playable .play-cta:hover img.icon-play {
  display: none;
}


.episode p.title {
  margin: 8px 0 0 70px;
  font-weight: bold;
}

.episode p.description {
  margin: 4px 0 8px 70px;

  display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 2; 
  overflow: hidden; 
  text-overflow: ellipsis; 

  color: #707070;
  font-size: 14px;
  cursor: pointer;
}

.episode p.description.expanded {
  text-overflow: unset; 
  overflow: auto;
  -webkit-box-orient: unset; 
  -webkit-line-clamp: unset; 
}

.episode p.meta {
  margin: 4px 0 8px 70px;
  font-size: 14px;
  color: #0a0a0a;

}

.category {
  float: left;
  width: 50%;
  padding: 10px;
  text-align: center;
  min-height: 260px;
}

.category img {
  max-width: 70px;
}


.episode-details-overlay {
  display: block;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  min-width: 400px;
  padding: 0 20px 100px 20px;

  background-color: #f0f0f0;
  border-left: 2px solid #eee;

  transform: translateX(100%);
  text-align: left;

  overflow-y: auto;
}

.episode-details-overlay.slide-in {
  animation: episode-details-slide-in 0.5s forwards;
}

.episode-details-overlay.slide-out {
  animation: episode-details-slide-out 0.5s forwards;
}

@keyframes episode-details-slide-in {
  100% { transform: translateX(0%); }
}
    
@keyframes episode-details-slide-out {
  0% { transform: translateX(0%); }
  100% { transform: translateX(+100%); }
}


.episode-details-overlay .episode-details-overlay-sticky {
  padding: 30px 0 0 0;
  display: block;
  position: sticky;
  top: 0;

  background-color: #f0f0f0;
}

.episode-details-overlay .close-button-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;

}

.episode-details-overlay .episode-details-overlay-content {
}


.episode-details-overlay .category-label {
  font-size: 12px;
  color: #707070;
}

.episode-details-overlay h2 {
  font-size: 22px;
  margin: 8px 0 20px 0;
  padding-bottom: 20px;
}

.episode-details-overlay h3 {
  font-size: 18px;
  margin: 10px 0;
}


.episode-details-overlay .transcription table td {
  vertical-align: top;
  font-size: 14px;
  line-height: 1.2;
}

.episode-details-overlay .transcription table td.ts {
  color: #707070;
  font-size: 12px;
  padding-top: 2px;
  padding-right: 8px;
}

.episode-details-overlay .transcription table td.text {
  word-break: break-word;
}
.rss-guide {
  max-width: 100%;
  margin: 15px 0;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;

  background-color: white;
  color: black;
}

.rss-guide .prelude {
  position: relative;
  padding: 15px;
  cursor: pointer;
  background-color: #efefef;
}

.rss-guide .prelude .app-icon {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.rss-guide .prelude .app-icon img {
  height: 40px;
  width: 40px;
}

.rss-guide .prelude .title {
  margin: 0px 10px 0px 50px;
  line-height: 40px; 
  font-weight: bold;
  font-size: 22px;
}

.rss-guide .prelude .accordion-toggler {
  position: absolute;
  top: 20px;
  right: 40px;
}

.rss-guide .prelude .accordion-toggler .icon-plus {
}

.rss-guide .prelude .accordion-toggler .icon-plus:before {
  font-size: 30px;
  content: "\f067";
}


.rss-guide .steps {
  border-top: 1px solid #bbbbbb;
  display: none;
}

.rss-guide.expanded .steps {
  display: block;
  padding: 10px 0;
}

.rss-guide .steps .step {
  display: block;
  min-height: 40px;
  padding: 15px 15px;
}


.rss-guide .steps .step .step-no {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--dhadh-dark);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 26px;
  line-height: 40px;
}

.rss-guide .steps .step .step-text {
  margin: 0 0 10px 50px;
}

.rss-guide .steps .step .copy-link-input {
  width: 100%; 
  padding: 5px;
  border-radius: 4px; 
  font-size: 16px;
  cursor: pointer;
}

.rss-guide .steps ul li { /* Others */
  padding: 4px 0;
}

.newspage {

}

.newspage .box {
  padding: 20px;
  margin: 15px 0;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;

  background-color: white;
  color: black;
}

.cards {
  margin: 0 -15px;
}

.card-container {
  float: left;
  width: 50%;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;

  text-align: center;
  font-family: arial;
  background-color: white;
  padding: 20px;
  margin: 15px;
  color: black;
}

.card .card-inner {
  min-height: 170px;
}

.card p {
  margin: 10px 0;
}

.card p.price {
  font-weight: bold;
  font-size: 20px;
}

.card p.small {
  font-size: 12px;
}

.card .card-cta {
  display: block;
  background: var(--dhadh-light);
  color: #000;

  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 2px;

  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.card .card-cta:hover {
  background: var(--dhadh-dark);
  color: #fff;
}

@media screen and (max-width: 600px) {

  .card-container {
    width: 100%;
  }

  .card-inner {
    min-height: auto !important;
  }
}
.events-wrapper{
  max-width: 100%;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  overflow: hidden;

  background-color: white;
  color: black;
}

.events-wrapper .event {
  position: relative;
  background-color: #efefef;

  border-top: 1px solid #000;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  height: 90px;
}

.events-wrapper .event .date {
  position: absolute;
  left: 20px;
  top: 30px;
}
 
.events-wrapper .event .location {
  position: absolute;
  left: 155px;
  top: 30px;
}

.events-wrapper .event .cta-wrapper {
  position: absolute;
  top: 5px;
  right: 20px;
}

.events-wrapper .event .cta-wrapper .cta-btn {
  font-size: 20px;
}

@media screen and (max-width: 600px) {

  .events-wrapper .event {
    font-size: 20px;
  }

  .events-wrapper .event .location {
    left: 132px;
  }

  .events-wrapper .event .cta-wrapper .cta-btn .only-desktop {
    display: none;
  }
  
}
.giftcard-buy {
  margin: 0 auto;
  max-width: 1000px;
  clear: both;
}

.giftcard-buy .page.hidden {
  display: none;
}

.giftcard-buy .month-buttons {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
}

.giftcard-buy .month-buttons .month-btn-wrapper {
  width: 33.3%;
  text-align: center;
}

.giftcard-buy .month-buttons .month-btn {
  min-width: 220px;
  cursor: pointer;
  line-height: 1.5;
}

.giftcard-buy #release_gift_at {
  font-size: 18px;
}

@media screen and (max-width: 800px) {
  .giftcard-buy {
    padding-top: 80px !important;
  }

  .giftcard-buy .month-buttons .month-btn {
    min-width: 180px;
  }
}

@media screen and (max-width: 600px) {
  .giftcard-buy .month-buttons {
    display: block;
  }

  .giftcard-buy .month-buttons .month-btn-wrapper {
    width: 100%;
  }
  .giftcard-buy .month-buttons .month-btn {
    width: 100%;
  }
}
.giftcard-open {
  margin: 0 auto;
  padding-top: 100px !important;
  max-width: 1000px;
  clear: both;
}



.giftcard-open .box {
  max-width: 100%;
  margin: 30px 0;
  padding: 30px;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;

  background-color: #f0f0f0;
  color: black;
}

@media screen and (max-width: 800px) {
  .giftcard-open {
    padding-top: 80px !important;
  }
}

/* roboto-latin-400-normal */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-display: swap;
font-weight: 400;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-400-normal.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
  
/* roboto-latin-500-normal */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-display: swap;
font-weight: 500;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-500-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-500-normal.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-700-normal */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-display: swap;
font-weight: 700;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-700-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-700-normal.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-900-normal */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-display: swap;
font-weight: 900;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-900-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-900-normal.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-400-italic */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-display: swap;
font-weight: 400;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-400-italic.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-400-italic.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-500-italic */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-display: swap;
font-weight: 500;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-500-italic.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-500-italic.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-700-italic */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-display: swap;
font-weight: 700;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-700-italic.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-700-italic.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* roboto-latin-900-italic */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-display: swap;
font-weight: 900;
src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-900-italic.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/roboto@latest/latin-900-italic.woff) format('woff');
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
form .field {
  margin: 8px 0;
}

.error-messages {
  background-color: #D01F3C;
  padding: 10px 20px;
  margin: 0 0 20px 0;
}

form input:focus {
  outline: none;
}

form .field input[type=text], form .field input[type=password] {
  width: 100%;
  border: 1px solid #000;
  border-style: rounded;
  border-radius: 4px; 
  padding: 7px 10px;
  background: #fff;
  font-size: 18px;
  color: #7c5942;
}

form .field input[type=text]:focus, form .field input[type=password]:focus {
  border: 2px solid #000;
  padding: 6px 9px;
}


input[type="checkbox"] {
  accent-color:  var(--dhadh-dark);
  margin-right: 8px; 

}


form .submit {
  margin-top: 20px;
  cursor: pointer;
  border: 1px solid #000;
  border-style: rounded;
  border-radius: 4px; 
  padding: 7px 10px;
  background: var(--dhadh-dark);
  font-size: 18px;
  font-weight: bold;
  color: #fff;

  &.blue {
    background: var(--dhadh-blue);
  }
}
.cta-btn {
  display: inline-block;
  color: #000;

  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 4px;

  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-btn.dark {
  background: var(--dhadh-dark);
  color: #fff;
}

  .cta-btn.dark:hover {
    background: var(--dhadh-xtra-dark);
  }


.cta-btn.blue {
  background-color: var(--dhadh-blue);
  color: #fff;
}

  .cta-btn.blue:hover {
    background: var(--dhadh-xtra-blue);
  }



.cta-btn:hover {
/*  box-shadow: 3px 3px 10px 2px rgba(0,0,0,0.75);*/
/*  transition: box-shadow 0.25s ease-in-out;*/
}


.cta-btn.large {
  font-size: 20px;
}

.cta-btn.xl {
  font-size: 26px;
  padding: 14px 30px;
}


@media screen and (max-width: 1200px) {
  .cta-btn {
    display: block;
  }
}

body {
  margin: 0;
  background: var(--dhadh-light);
  padding: 0;
  font-family: Roboto;
  color: #040000;
}

a {
  color: var(--dhadh-dark);
  font-weight: bold;
}

.wrapper {
  display: flex;
  margin: 0 auto;
}

.content-area {
  width: 730px;
  max-width: 730px;
  max-width: 100vw;
  padding: 0 0 70px 0;
}

.content-area .content {
  padding: 0 36px 36px 36px;
}

.two-column .content-area {
  width: 80vw;
  max-width: 100vw;
}

.col-50 {
  float: left;
  width: 50%;
  padding: 0 16px;
}

.col-50:nth-of-type(1) {
  padding-left: 0;
}
.col-50:nth-of-type(2) {
  padding-right: 0;
}

@media screen and (max-width: 1200px) {
  .two-column .content-area {
    width: 100vw;
  }

  .col-50 {
    width: 100%;
    padding: 0;
  }
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h1.centered-header {
  text-align: center;
  font-size: 40px;
}

@media screen and (max-width: 800px) {
  h1.centered-header {
    font-size: 30px;
  }
}

.mobile-header {
  display: none;
  position: sticky;
  height: 50px;
  background: var(--dhadh-dark);
  left: 0;
  top: 0;
  right: 0; 
  bottom: 0;
  z-index: 1;
}

.mobile-header .menu-toggle {
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
}

.mobile-header .menu-toggle img {
  padding: 7px;
  height: 50px;
}

body.menu-open .mobile-header .menu-toggle img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(24%) saturate(2852%) hue-rotate(305deg) brightness(96%) contrast(78%);
}

@media screen and (max-width: 1000px) {
  .mobile-header {
    display: flex;
  }

  .content-area .content {
    padding: 0 15px 15px 15px;
  }
}

hr {
   height: 0;
   width: 100%;
   border: 1px solid #808080;
   margin: 8px 0;

}

.only-mobile {
  display: none;
}

.only-desktop {
}

@media screen and (max-width: 720px) {
  .only-mobile {
    display: block;
  }

  .only-desktop {
    display: none;
  }
}

.sidebar {
  position: sticky;
  min-height: 100vh;
  width: 20vw;
  min-width: 230px;
  background: var(--dhadh-dark);
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar .nav {
  clear: both;
  margin: 50px 20px 0 10px;
  padding: 0;
  float: right;
  list-style-type: none;
  font-size: 28px;
  line-height: 30px;
}

.sidebar .nav li {
  margin: 0 0 16px 0;
  text-align: right;
}

.sidebar .nav a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.sidebar .nav li > a:hover, .sidebar .nav li > a.selected {
  color: #fff;
  font-style: italic; 
}

.sidebar .nav .sub-nav {
  list-style-type: none;
  padding: 0 0 0 20px;
  font-size: 20px;
  padding-top: 6px;
  text-transform: uppercase;
}

.sidebar .profile-info {
  clear: both;
  padding: 0px 20px 0 0;
  float: right;
  text-align: right;
  font-size: 20px;
  color: var(--dhadh-light);
}

@media screen and (max-width: 1000px) {

  .sidebar {
    display: block;
    position: fixed;
    width: 85vw;
    transform: translateX(-100%);
    transition: all .3s ease-in-out;
    z-index: 200;
  }

  body.menu-open .sidebar {
    transform: translateX(0);
  }
}
.foredrag-topbanner {

}

.foredrag-topbanner .mobile {
  display: none;
}


@media screen and (max-width: 800px) {

  .foredrag-topbanner .mobile {
    display: block;
  }
  .foredrag-topbanner .desktop {
    display: none;
  }


}


.frontpage2 .wrap {
  margin: 0 auto;
  max-width: 1000px;
  clear: both;
}


.frontpage2 .box {
  max-width: 100%;
  margin: 30px 0;
  padding: 30px;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;

  background-color: #f0f0f0;
  color: black;
}

.frontpage2 .box-note {
  max-width: 100%;
  margin: 30px 0;
  padding: 0 15px;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;

  background-color: var(--dhadh-palette-yellow);
  color: black;

}


.frontpage-marquee {
  overflow: hidden;
  display: flex;

  background-color: var(--dhadh-blue);
  color: #fff;
  padding: 10px 0;
  margin-bottom: 30px;
  cursor: pointer;
}

.frontpage-marquee h1{
  font-size: 5em;
  white-space: nowrap;
  text-transform: uppercase;
}

.frontpage-marquee span {
  padding: 0 30px;
  white-space: nowrap;
  font-weight: 500;
}




.accordion {
  border-bottom: .125em solid;
}

.accordion p {
  margin: 0 0 1em;
}

.accordion:last-child {
  border-bottom: none;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: .5em .75em;
  font-size: 1.25em;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  transition: background .3s ease;
}

.accordion-button:hover {
  background: var(--dhadh-light);
}

.accordion-panel {
  max-height: 0;
  max-width: 45em;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 0 1em;
}

.accordion-button[aria-expanded="true"]+.accordion-panel {
  max-height: 40em;
  opacity: 1;
}

.accordion-button::before {
  content: "+";
  font-size: 1.25em;
  width: 1em;
  font-weight: 400;
}

.accordion-button[aria-expanded="true"]::before {
  content: "–";
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
