:root {
  --appbess-white: #fff;
  --appbess-green: #00a443;
  --appbess-green-1: #007f33;
  --appbess-border: #d8cfc7;
  --appbess-sand: #FFF5EC;
  --appbess-sand-1: #fffeff;
  --appbess-sand-3: #D8CFC7;
  --appbess-sand-6: #615D5A;
  --appbess-sand-7: #3A3735;
  --appbess-sand-dark: #EBE2DA;
  --appbess-sky: #d8f3ff;
  --appbess-forest: #00402a;
  --appbess-forest-1: #DCEBE1;
}

#appbess {
  width: 100%;
  max-width: 980px;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: var(--appbess-sand);
  padding: 20px 16px;
  margin: 20px auto;
}

#appbess * {
  font-family: "IberPangeaText" !important;
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#appbess strong {
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
}

#appbess h2 {
  margin-top: 0 !important;
}

#appbess ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#appbess ul li:before {
  content: none !important;
  display: none !important;
}

#appbess img {
  display: block;
  width: 100%;
}

#appbess .appbess_title {
  color: var(--appbess-green-1) !important;
  font-size: 32px;
  line-height: 1.125;
  font-family: 'IberPangea' !important;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  margin-bottom: 24px;
}

#appbess .appbess_title strong {
  font-family: 'IberPangea Bold' !important;
  font-style: normal;
  font-weight: normal;
}

#appbess .appbess_content {
  width: 100%;
}

#appbess .appbess_box {}

#appbess .appbess_subtitle {
  border-radius: 8px;
  background: var(--appbess-forest-1);
  padding: 8px;
  margin-bottom: 16px;
  position: relative;
  color: var(--appbess-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  text-wrap: balance;
}

#appbess .appbess_subtitle strong {
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
}

#appbess .appbess_subtitle:before {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--appbess-sand-3);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

#appbess .appbess_accordion {
  border-radius: 16px;
  background: var(--appbess-white);
  padding: 15px;
  margin-bottom: 16px;
}

#appbess .appbess_accordion-2 {
  margin-bottom: 0;
  border-radius: 16px 16px 0 0;
}

#appbess .appbess_accordion-3 {
  border-radius: 0 0 16px 16px;
  padding-top: 23px;
}

#appbess .appbess_accordion_header {
  padding-bottom: 32px;
  position: relative;
}

#appbess .appbess_accordion_header:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--appbess-green);
  border-right: 1px solid var(--appbess-green);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg) translateY(0);
  transition: all 0.25s ease-in;
}

#appbess .appbess_accordion.active .appbess_accordion_header:before {
  border-color: var(--appbess-forest);
  transform: translateX(-50%) rotate(-45deg) translateY(7px);
}

#appbess .appbess_accordion_icon {
  display: block;
  width: 100%;
  max-width: 70px;
  margin: 0 auto 8px;
}

#appbess .appbess_accordion_title {
  border-radius: 8px;
  background: var(--appbess-green-1);
  padding: 8px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--appbess-sand-1) !important;
  text-align: center;
  font-family: "IberPangeaText Bold" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  cursor: pointer;
  text-wrap: balance;
  transition: all 0.25s ease-in;
}

#appbess .appbess_accordion_title:hover {
  background: var(--appbess-forest); 
}

#appbess .appbess_accordion_title span {
  display: block;
}


#appbess .appbess_accordion.active .appbess_accordion_title {
  background-color: var(--appbess-forest);
}

#appbess .appbess_accordion_body {
  max-height: 0;
  overflow: hidden;
  transition-property: max-height;
  transition-duration: .42s;
  transition-timing-function: cubic-bezier(.25, .8, .25, 1);
  will-change: max-height;
}

#appbess .appbess_accordion.active .appbess_accordion_body {
  max-height: 800px;
  transition-duration: .84s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

#appbess .appbess_accordion_amount {
  border-radius: 8px;
  border: 1px solid var(--appbess-green-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 7px;
  color: var(--appbess-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 18px;
  line-height: 1.33;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin-bottom: 16px;
}

#appbess .appbess_accordion_list li {
  color: var(--appbess-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px !important;
}

#appbess .appbess_accordion_list li:last-child {
  margin-bottom: 0 !important;
}

#appbess .appbess_accordion_list li:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--appbess-green);
  position: absolute;
  top: 5px;
  left: 0;
}


@media (min-width: 700px) {

  #appbess {
    padding: 32px;
  }

  #appbess .appbess_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  #appbess.has-active .appbess_content {
    padding-bottom: 169px;
    position: relative;
  }

  #appbess .appbess_box-1 {
    width: calc(33.33% - 8px);
  }

  #appbess .appbess_box-2 {
    width: calc(66.66% - 8px);
    display: flex;
    flex-wrap: wrap;
  }

  #appbess .appbess_subtitle {
    width: 100%;
    padding: 4px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #appbess .appbess_accordion_amount {
    margin-top: 0;
  }

  #appbess .appbess_accordion-2,
  #appbess .appbess_accordion-3 {
    width: 50%;
  }

  #appbess .appbess_accordion-2 {
    border-radius: 16px 0 0 16px;
  }

  #appbess .appbess_accordion-2 .appbess_accordion_list {
    display: flex;
    flex-wrap: wrap;
  }

  #appbess .appbess_accordion-2 .appbess_accordion_list li {
    width: 50%;
  }

  #appbess .appbess_accordion-3 {
    border-radius: 0 16px 16px 0;
    padding-top: 15px;
    margin-bottom: 0;
  }

  #appbess .appbess_accordion {
    position: static;
  }

  #appbess .appbess_accordion_body {
    transition: none;
  }

  #appbess .appbess_accordion.active .appbess_accordion_body {
    transition: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--appbess-white);
    border-radius: 16px;
    padding: 16px;
    height: 176px;
  }

}