.jlist-wrapper {
  --font-size-title: 22px;
  --font-size-subtitle: 14px;
  --font-size-title--desktop: 24px;
  --font-size-subtitle--desktop: 18px;
  --font-size-adtitle: 18px;
  --color-default: #000;
  --color-title: #000;
  --color-subtitle: #666;
  --color-theme: #6ca851;
  --color-theme-light: #62b53e;
  --color-number: #fff;
  --color-logo-border: #d4d4d4;
  --color-see-more: #2c7ecf;
  font-family: "Open Sans", sans-serif;
  color: var(--color-default);
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jlist-wrapper > * {
  box-sizing: border-box;
}
.jlist-wrapper__more {
  color: var(--color-see-more);
  margin-top: 18px;
}
.jlist-wrapper__more__icon {
  color: #fff;
  background-color: var(--color-see-more);
  height: 20px;
  width: 20px;
  border-radius: 100%;
  font-size: 22px;
  margin-left: 4px;
  transition: 0.2s ease-in;
  position: relative;
  display: inline-flex;
  align-items: center;
  top: 4px;
}
.jlist-wrapper__more__icon:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transition: transform 150ms ease;
  transform: rotate(135deg);
  left: 7px;
  top: 6px;
}
.jlist-wrapper__more--open .jlist-wrapper__more__icon {
  transform: rotate(180deg);
}
.jlist-wrapper__togglecontent {
  display: none;
  max-width: 100%;
}
.jlist-wrapper__togglecontent > * {
  box-sizing: border-box;
}
.jlist-wrapper__togglecontent--open {
  display: block;
}
.jlist-wrapper__title {
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-title);
  color: var(--color-title);
  margin-bottom: 3px;
}
.jlist-wrapper__subtitle {
  text-align: center;
  font-size: var(--font-size-subtitle);
  color: var(--color-subtitle);
}
.jlist-wrapper__title--mobile,
.jlist-wrapper__subtitle--mobile {
  display: block;
}
.jlist-wrapper__title--desktop,
.jlist-wrapper__subtitle--desktop {
  display: none;
}
.jlist-wrapper .jlist {
  background-color: rgb(243, 243, 243);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 150px;
  max-width: 350px;
  min-height: 280px;
  padding: 20px;
  position: relative;
  margin-top: 18px;
}
.jlist-wrapper .jlist__number {
  display: none;
}
.jlist-wrapper .jlist__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 175px;
  margin: 0 auto 20px auto;
}
.jlist-wrapper .jlist__logo img {
  border: solid 1px var(--color-logo-border);
  width: 100%;
  max-width: 100%;
}
.jlist-wrapper .jlist__headline {
  font-size: var(--font-size-adtitle);
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0;
}
.jlist-wrapper .jlist__url {
  display: none;
  padding: 0;
  text-align: left;
}
.jlist-wrapper .jlist ul {
  text-align: left;
  list-style: disc;
  margin-top: 10px;
}
.jlist-wrapper .jlist__button {
  background-color: var(--color-theme-light);
  border: 0;
  padding: 12px;
  margin: 0 auto;
  color: var(--color-number);
  display: block;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

@media (min-width: 765px) {
  .jlist-wrapper {
    display: block;
  }
  .jlist-wrapper__title--desktop {
    font-size: var(--font-size-title--desktop);
  }
  .jlist-wrapper__subtitle--desktop {
    font-size: var(--font-size-subtitle--desktop);
  }
  .jlist-wrapper__title--mobile,
  .jlist-wrapper__subtitle--mobile {
    display: none;
  }
  .jlist-wrapper__title--desktop,
  .jlist-wrapper__subtitle--desktop {
    display: block;
  }
  .jlist-wrapper__more {
    display: none;
  }
  .jlist-wrapper__togglecontent {
    position: relative;
    display: block;
  }
  .jlist-wrapper__togglecontent > * {
    box-sizing: border-box;
  }
  .jlist-wrapper .jlist {
    flex-direction: row;
    padding: 40px 250px 40px 50px;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
    min-width: 320px;
    max-width: 700px;
    border-radius: 5px;
    transition: box-shadow 200ms ease;
    cursor: pointer;
    text-align: left;
    margin: 18px auto 0 auto;
  }
  .jlist-wrapper .jlist__number {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 28px;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-theme);
    font-weight: bold;
    color: var(--color-number);
    top: 25px;
    left: -25px;
    transition: background-color 200ms ease;
  }
  .jlist-wrapper .jlist:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  .jlist-wrapper .jlist:hover .jlist__number {
    background-color: var(--color-theme-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }
  .jlist-wrapper .jlist__logo {
    position: absolute;
    right: 50px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    overflow: hidden;
    padding: 5px;
  }
  .jlist-wrapper .jlist__logo img {
    border: 0;
  }
  .jlist-wrapper .jlist__headline {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
  }
  .jlist-wrapper .jlist__url {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: #4b9be3;
  }
  .jlist-wrapper .jlist ul {
    padding-left: 18px;
    list-style: circle;
    text-align: left;
  }
  .jlist-wrapper .jlist__button {
    position: absolute;
    width: 180px;
    bottom: 40px;
    right: 50px;
    font-size: 24px;
    line-height: 1.4;
    border-radius: 5px;
    background-color: var(--color-theme);
  }
  .jlist-wrapper .jlist__button:hover {
    background-color: var(--color-theme-light);
  }
} /*# sourceMappingURL=main.css.map */
