:root {
  --tesbess-white: #fff;
  --tesbess-green: #00a443;
  --tesbess-green-1: #007f33;
  --tesbess-sand: #FFF5EC;
  --tesbess-sand-1: #fffeff;
  --tesbess-sand-3: #D8CFC7;
  --tesbess-sand-6: #615D5A;
  --tesbess-sand-7: #3A3735;
  --tesbess-sunset: #FF9C1A;
  --tesbess-forest: #00402a;
}

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

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

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

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

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

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

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

#tesbess .tesbess_title {
  color: var(--tesbess-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;
}

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

#tesbess .tesbess_content {
  width: 100%;
}

#tesbess .tesbess_accordion {
  margin-bottom: 10px;
}

#tesbess .tesbess_accordion_header {
  border-radius: 8px;
  border: 1px solid var(--tesbess-sand-3);
  background: var(--tesbess-sand-1);
  position: relative;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition: all 0.25s ease-in;
}

#tesbess .tesbess_accordion.active .tesbess_accordion_header {
  border-color: var(--tesbess-sand);
  background-color: var(--tesbess-sand);
}

#tesbess .tesbess_accordion_header:after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--tesbess-green);
  border-right: 1.5px solid var(--tesbess-green);
  transform: rotate(135deg);
  transition: all 0.25s ease-in;
  margin: auto;
}

#tesbess .tesbess_accordion.active .tesbess_accordion_header:after {
  border-color: var(--tesbess-forest);
  transform: rotate(-45deg);
}

#tesbess .tesbess_accordion_icon {
  display: block;
  width: 100%;
  max-width: 60px;
}

#tesbess .tesbess_accordion_title {
  width: calc(100% - 116px);
  color: var(--tesbess-forest) !important;
  text-align: center;
  font-family: "IberPangeaText Bold" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  cursor: pointer;
}

#tesbess .tesbess_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;
}

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

#tesbess .tesbess_accordion_col {}

#tesbess .tesbess_accordion_subtitle {
  border-radius: 8px;
  background: var(--tesbess-green-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--tesbess-sand-1) !important;
  font-family: "IberPangeaText Bold" !important;
  font-size: 18px;
  line-height: 1.33;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

#tesbess .tesbess_accordion_col-2 .tesbess_accordion_subtitle {
  color: var(--tesbess-forest) !important;
  background-color: var(--tesbess-sunset);
}

#tesbess .tesbess_accordion_text {
  border-radius: 8px;
  border: 1px solid var(--tesbess-green);
  background: var(--tesbess-white);
  padding: 16px;
  color: var(--tesbess-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

#tesbess .tesbess_accordion_col-2 .tesbess_accordion_text {
  border-color: var(--tesbess-sunset);
}

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

#tesbess .tesbess_accordion_list li {
  color: var(--tesbess-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;
}

#tesbess .tesbess_accordion_list li:last-child {
  margin-bottom: 0 !important;
}

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


@media (min-width: 700px) {

  #tesbess {
    padding: 32px;
  }

  #tesbess .tesbess_accordion {
    margin-bottom: 24px;
  }

  #tesbess .tesbess_accordion_body {
    display: flex;
  }

  #tesbess .tesbess_accordion_col {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  #tesbess .tesbess_accordion_subtitle {
    margin-top: 16px;
    margin-bottom: 16px;
    width: calc(100% - 8px);
    margin-right: auto;
  }

  #tesbess .tesbess_accordion_col-2 .tesbess_accordion_subtitle {
    margin-right: 0;
    margin-left: auto;
  }

  #tesbess .tesbess_accordion_text {
    height: 100%;
  }

  #tesbess .tesbess_accordion_col-1 .tesbess_accordion_text {
    border-right: none;
    border-radius: 8px 0 0 8px;
    position: relative;
  }

  #tesbess .tesbess_accordion_col-1 .tesbess_accordion_text:before {
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 28px);
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--tesbess-sand-3);
    position: absolute;
    right: 0;
  }

  #tesbess .tesbess_accordion_col-2 .tesbess_accordion_text {
    border-left: none;
    border-radius: 0 8px 8px 0;
  }

}