@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai+Looped:wght@400;500;600&family=IBM+Plex+Sans+Thai:wght@400;500;600&display=swap");
:root {
  --l-green: #06C755;
  --l-green-active: #049640;
  --l-green-light: #E4F4E4;
  --l-green-footer: #C8E4C8;
  --l-text-gray: #96969C;
  --l-text: #151516;
  --l-secondary: #E79300;
  --l-secondary-light: #FEAA15;
  --l-orange: #F7DD82;
  --l-orange-light: #FEFCED;
  --l-heading: "IBM Plex Sans Thai", sans-serif;
  --l-body: "IBM Plex Sans Thai Looped", sans-serif;
  --l-shadow: 0px 13px 15px rgba(0, 0, 0, 0.05);
  --l-border: #DBD8D5;
}

body {
  background-color: var(--l-green-light);
  font-family: var(--l-body);
  color: var(--l-text);
}

h1, h2, h3, h4, h5, h6,
label, legend {
  font-family: var(--l-heading) !important;
  font-weight: 700;
}

.font-head {
  font-family: var(--l-heading);
}

.font-body {
  font-family: var(--l-body);
}

.text-secondary {
  color: var(--l-secondary);
}

.rounded-md {
  border-radius: 10px;
}

.rounded {
  border-radius: 20px;
}

.underline {
  text-decoration: underline;
}

.text-secondary {
  color: var(--l-secondary);
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.border-0 {
  border: none !important;
}

.lead.lead-lg {
  font-size: 1.5em;
}

._br-tablet {
  display: none;
}
@media only screen and (min-width: 768px) {
  ._br-tablet {
    display: block;
  }
}

._br-visible-tablet {
  display: block;
}
@media only screen and (min-width: 768px) {
  ._br-visible-tablet {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.main {
  min-height: calc(100vh - 47px);
  padding-bottom: 0;
}

.card-rounded {
  padding: 15px;
  background: #FFFFFF;
  border: 1px solid var(--l-border);
  box-shadow: 0px 3px 10px rgba(197, 156, 83, 0.3);
  border-radius: 15px;
}
.card-rounded.--card-rounded-top {
  background-color: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
@media only screen and (min-width: 768px) {
  .card-rounded.--card-rounded-top {
    border-radius: 15px 15px 0 0;
    padding: 30px 30px 0;
    background: #FFFFFF;
    border: 1px solid var(--l-border);
    box-shadow: 0px 3px 10px rgba(197, 156, 83, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.summary-donate {
  display: flex;
  align-items: center;
  font-family: var(--l-heading);
  font-size: 18px;
  margin-bottom: 1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.summary-donate .summary-donate-img {
  flex: 35% 0 0;
  margin-right: 15px;
}
@media only screen and (min-width: 768px) {
  .summary-donate .summary-donate-img {
    flex: 20% 0 0;
  }
}
.summary-donate .summary-donate-name > .to_project {
  display: block;
  font-size: 90%;
}
.summary-donate .summary-donate-name > .project_name {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .summary-donate .summary-donate-name > .project_name {
    font-size: 1.25em;
  }
}

.l-header {
  position: relative;
  z-index: 1;
  background-color: white;
}
@media only screen and (min-width: 768px) {
  .l-header {
    box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.1);
  }
}

.l-logo {
  display: block;
  padding: 1.5rem 0;
  text-align: center;
}

.l-footer {
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
  background-color: var(--l-green-footer);
  color: var(--l-text);
  font-size: 90%;
  font-family: var(--l-heading);
  z-index: 2;
  position: relative;
}
.l-footer .content {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.l-footer .content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 3;
  background-image: url("/static/images/minisite/logo-taejai.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 50px;
}
.l-footer a {
  color: var(--l-text);
  text-decoration: underline;
}
.l-footer a:hover {
  text-decoration: none;
}

.footer-slogan {
  margin: 0 auto;
  overflow: hidden;
  margin-top: auto;
}
.footer-slogan .content {
  margin: 0 auto -10em;
  text-align: center;
  max-width: 400px;
  z-index: 2;
  position: relative;
}
.footer-slogan .content blockquote {
  font-family: var(--l-heading);
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.5;
}
.footer-slogan .content img {
  margin: 0 auto;
}
.footer-slogan .img-footer {
  margin: 0 auto;
  display: none;
}
@media only screen and (min-width: 500px) {
  .footer-slogan .content {
    margin: 0 auto -3em;
    text-align: center;
    width: 400px;
  }
  .footer-slogan .content blockquote {
    font-size: 1.2em;
  }
  .footer-slogan .img-footer {
    display: block;
  }
  .footer-slogan .img-footer-sm {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-slogan .content {
    margin: 0 auto -7em;
  }
  .footer-slogan .content blockquote {
    font-size: 1.4em;
  }
}

.category-list {
  position: relative;
  padding: 0 20px;
  margin-bottom: 0;
  background-color: white;
  box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* Important for iOS devices */
  scrollbar-width: none; /* Firefox */
  transition: 0.5s all;
}
.category-list::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
@media only screen and (min-width: 500px) {
  .category-list {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .category-list .link {
    margin-top: 10px;
  }
}
.category-list > .item {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  scroll-margin-left: 10px;
  margin-right: 20px;
  display: inline-flex;
  white-space: nowrap;
}
.category-list > .item:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .category-list > .item {
    margin-right: 30px;
  }
}
.category-list .link {
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 50px;
  font-family: var(--l-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--l-green);
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1;
  text-align: center;
}
.category-list .link .tj-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
}
.category-list .link .tj-icon.ic-all {
  background-image: url("/static/images/minisite/category/ic-sm-all.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-children-youth {
  background-image: url("/static/images/minisite/category/ic-sm-children-youth.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-eldery {
  background-image: url("/static/images/minisite/category/ic-sm-eldery.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-disable {
  background-image: url("/static/images/minisite/category/ic-sm-disable.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-animals {
  background-image: url("/static/images/minisite/category/ic-sm-animals.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-environment {
  background-image: url("/static/images/minisite/category/ic-sm-environment.svg");
  background-size: 30px;
}
.category-list .link .tj-icon.ic-others {
  background-image: url("/static/images/minisite/category/ic-sm-other.svg");
  background-size: 30px;
}
.category-list .link.active {
  color: var(--l-text);
  position: relative;
}
.category-list .link.active::after {
  content: "";
  background-color: var(--l-green);
  width: 100%;
  height: 4px;
  box-shadow: 0px 4px 9px rgba(184, 208, 184, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
}
.category-list .link.active .ic-all {
  background-image: url("/static/images/minisite/category/ic-sm-all-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-children-youth {
  background-image: url("/static/images/minisite/category/ic-sm-children-youth-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-eldery {
  background-image: url("/static/images/minisite/category/ic-sm-eldery-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-disable {
  background-image: url("/static/images/minisite/category/ic-sm-disable-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-animals {
  background-image: url("/static/images/minisite/category/ic-sm-animals-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-environment {
  background-image: url("/static/images/minisite/category/ic-sm-environment-active.svg");
  background-size: 30px;
}
.category-list .link.active .ic-others {
  background-image: url("/static/images/minisite/category/ic-sm-other-active.svg");
  background-size: 30px;
}

/* All Project */
.article-section {
  margin-bottom: 0;
}

.pager-list {
  border-top: 0;
}

.current-projects {
  padding: 1rem 0;
  background-color: transparent;
}

.page-projects .l-footer {
  margin: 0 auto;
}
.page-projects .l-footer .content::before {
  display: none;
}
@media only screen and (min-width: 600px) {
  .page-projects .project-section .project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-projects .project-section .project-list > .item {
    display: flex;
    flex-basis: auto;
    width: calc(50% - 15px) !important;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .page-projects .project-section .project-list > .item:nth-child(2n) {
    margin-right: 0;
  }
  .page-projects .project-section .project-list > .item .project-card {
    display: flex;
    flex-direction: column;
  }
  .page-projects .project-section .project-list > .item .project-card .action {
    margin-top: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .page-projects .project-section {
    margin-top: 1em;
  }
  .page-projects .project-section .project-list {
    justify-content: flex-start;
    margin-left: 20px;
  }
  .page-projects .project-section .project-list > .item {
    width: calc(33.3333333333% - 20px) !important;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .page-projects .project-section .project-list > .item:nth-child(2n) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .page-projects .project-section .project-list {
    margin-left: 40px;
  }
  .page-projects .project-section .project-list > .item {
    width: calc(33.3333333333% - 40px) !important;
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .page-projects .project-section .project-list > .item:nth-child(2n) {
    margin-right: 40px;
  }
}

/* Cateogry Small */
.category-list-sm {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-family: var(--l-body);
  font-weight: 400;
}
.category-list-sm > .item {
  position: relative;
  padding: 2px 10px 2px 27px;
  margin-bottom: 5px;
  margin-right: 5px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--l-text);
  background-color: #EDDEFF;
}
.category-list-sm > .item::before {
  content: "";
  position: absolute;
  left: 3px;
  background: url("/static/images/minisite/category/ic-others.svg") no-repeat left center;
  background-size: 18px;
  width: 18px;
  height: 18px;
}
.category-list-sm > .item.ic-all {
  background-color: rgba(235, 82, 86, 0.4);
}
.category-list-sm > .item.ic-all::before {
  background: url("/static/images/minisite/category/ic-all.svg") no-repeat left center;
  background-size: 18px;
}
.category-list-sm > .item.ic-animals {
  background-color: rgba(255, 227, 97, 0.6);
}
.category-list-sm > .item.ic-animals::before {
  background: url("/static/images/minisite/category/ic-animals.svg") no-repeat left center;
  background-size: 18px;
}
.category-list-sm > .item.ic-children-youth {
  background: rgba(59, 168, 215, 0.4);
}
.category-list-sm > .item.ic-children-youth::before {
  background: url("/static/images/minisite/category/ic-children-youth.svg") no-repeat left center;
  background-size: 18px;
}
.category-list-sm > .item.ic-eldery {
  background-color: rgba(51, 116, 185, 0.4);
}
.category-list-sm > .item.ic-eldery::before {
  background: url("/static/images/minisite/category/ic-eldery.svg") no-repeat left center;
  background-size: 18px;
}
.category-list-sm > .item.ic-environment {
  background-color: rgba(209, 232, 146, 0.6);
}
.category-list-sm > .item.ic-environment::before {
  background: url("/static/images/minisite/category/ic-environment.svg") no-repeat left center;
  background-size: 18px;
}
.category-list-sm > .item.ic-others {
  background-color: #EDDEFF;
}
.category-list-sm > .item.ic-others::before {
  background: url("/static/images/minisite/category/ic-others.svg") no-repeat left center;
  background-size: 18px;
}

/* Project Header */
.project-header {
  padding-bottom: 60px;
  background: white;
  position: relative;
  padding-top: 10px;
}
.project-header .image {
  margin-bottom: 10px;
}
.project-header .headline {
  font-size: 1.5em;
  margin-bottom: 0.75em;
}
.project-header .fund-raising {
  margin-top: 0;
  padding: 0 10px;
}
.project-header .fund-raising-donate {
  margin-top: auto;
}
@media only screen and (min-width: 768px) {
  .project-header {
    padding-top: 30px;
  }
  .project-header .col-md-4 {
    padding-left: 0;
  }
  .project-header .fund-raising {
    padding: 15px;
    min-height: 413px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .project-header .image {
    margin-bottom: 15px;
  }
}
.project-header .wrap-duration-detail {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-header .wrap-duration-detail {
    display: block;
    font-size: 90%;
  }
}
@media only screen and (min-width: 991px) {
  .project-header .fund-raising {
    min-height: 460px;
  }
  .project-header .wrap-duration-detail {
    display: block;
  }
  .project-header .fund-raising .lead {
    font-size: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .project-header .wrap-duration-detail {
    display: none;
  }
  .project-header .fund-raising.affix {
    width: 310px !important;
    top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .project-header .wrap-duration-detail {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .project-header .wrap-duration-detail {
    display: none;
  }
  .project-header .fund-raising {
    min-height: 560px;
    padding: 25px;
  }
  .project-header .fund-raising .lead {
    font-size: 1.1em;
  }
  .project-header .fund-raising.affix {
    width: 375px !important;
    top: 30px;
  }
  .project-header .fund-raising .share-group {
    margin: 0 -25px 0;
  }
  .project-header .col-md-4 {
    padding-left: 15px;
  }
}

/* Project Card */
.project-card {
  border: 1px solid var(--l-border);
  box-shadow: 0px 13px 15px rgba(0, 0, 0, 0.11);
  border-radius: 20px;
  max-width: 350px;
  margin: 0 auto;
}
.project-card > .media {
  border-radius: 20px 20px 0 0;
}
.project-card > .media .project-img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}
.project-card > .body {
  color: var(--l-text);
  height: auto;
  position: relative;
}
.project-card > .body .edonation-badge {
  position: absolute;
  right: 20px;
  top: 18px;
}
.project-card > .body > .link {
  color: var(--l-text);
}
.project-card > .body .headline {
  font-size: 1.35em;
  font-weight: 700;
}
.project-card > .body > .content {
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* start showing ellipsis when 3rd line is reached */
  white-space: pre-wrap; /* let the text wrap preserving spaces */
}

/* Fundraising */
.fund-raising {
  font-family: var(--l-heading);
  /* Progress Bar */
}
.fund-raising > .body {
  padding: 0;
}
.fund-raising > .body .lead i,
.fund-raising > .body .lead em {
  color: var(--l-secondary);
  font-style: normal;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .fund-raising {
    border: 1px solid var(--l-border);
    box-shadow: 0px 13px 15px rgba(0, 0, 0, 0.11);
    border-radius: 20px;
  }
}
.fund-raising.-inbox {
  border-top: 0;
  border-radius: 0 0 20px 20px;
}
.fund-raising .progress-bar {
  background-color: #EFEFEF;
  box-shadow: none;
  margin: 5px 0;
}
.fund-raising .progress-bar > .bar {
  background: linear-gradient(270deg, #06C755 0%, #78DA78 93.81%);
}
.fund-raising .headline {
  margin-bottom: 1.5rem;
  color: var(--l-text);
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .fund-raising .headline {
    font-size: 2.75rem;
  }
}
.fund-raising .lead {
  margin-bottom: 3rem;
  font-family: var(--l-heading);
  font-size: 1.75rem;
  color: var(--l-text);
  line-height: 1.5em;
}
.fund-raising .timeleft,
.fund-raising .people {
  padding-left: 22px;
  color: var(--l-text-gray);
  font-family: var(--l-heading);
  position: relative;
}
.fund-raising .timeleft::before,
.fund-raising .people::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: url("/static/images/minisite/ic-clock-gray.svg") no-repeat left center;
  background-size: 18px;
  width: 18px;
  height: 18px;
}
.fund-raising .people::before {
  background: url("/static/images/minisite/ic-people-gray.svg") no-repeat left center;
  background-size: 18px;
}

.wrap-btn {
  display: flex;
  justify-content: center;
}
.wrap-btn > .btn-donate {
  margin-top: 0;
}

.wrap-block-fund-raising {
  overflow: hidden;
}

.block-fund-raising {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--l-text-gray);
}
.block-fund-raising .b-amount .h-label {
  line-height: 1;
}
.block-fund-raising .b-amount > .amount {
  font-weight: 700;
  font-size: 2rem;
  color: var(--l-green);
}
@media only screen and (min-width: 1024px) {
  .block-fund-raising .b-amount > .amount {
    font-size: 2.25rem;
  }
}
.block-fund-raising .b-target > .h-label {
  line-height: 1;
  text-align: right;
}
.block-fund-raising .b-target > .target {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--l-text);
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  .block-fund-raising .b-target > .target {
    margin: 0 0 0 25px;
  }
  .block-fund-raising .b-target > .target .wrap-duration-detail {
    display: block;
  }
}

.l-wrap-content {
  position: relative;
}
.l-wrap-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -70px;
  background: url("/static/images/minisite/bg-line-shape-sm.svg") no-repeat left top;
  background-size: cover;
  width: 100%;
  height: 70px;
}
@media only screen and (min-width: 600px) {
  .l-wrap-content::before {
    background: url("/static/images/minisite/bg-line-shape.svg") no-repeat center top;
    background-size: 120%;
    top: -60px;
    height: 60px;
  }
}
@media only screen and (min-width: 500px) {
  .l-wrap-content {
    padding-top: 25px;
  }
}
@media only screen and (min-width: 600px) {
  .l-wrap-content {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .l-wrap-content {
    padding: 20px 0 20px;
  }
}

.l-content-overview {
  padding-bottom: 2rem;
  margin: 0 auto;
  max-width: 700px;
}
.l-content-overview .body {
  padding: 0;
}
.l-content-overview .body .lead i,
.l-content-overview .body .lead em {
  color: var(--l-secondary);
  font-style: normal;
  font-weight: bold;
}
.l-content-overview .wrap-duration-detail {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .l-content-overview .wrap-duration-detail {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .l-content-overview {
    margin: 0 0 0 15px;
  }
  .l-content-overview .wrap-duration-detail {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .l-content-overview .wrap-duration-detail {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .l-content-overview .wrap-duration-detail {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .l-content-overview {
    max-width: inherit;
  }
}

/* Content */
.lead {
  font-family: var(--l-heading);
  font-size: 2rem;
}

.wrap-content-detail h3 {
  display: inline-block;
  padding: 10px 20px 10px 15px;
  font-size: 1.25em;
  background-color: white;
  margin-left: -15px;
  border-radius: 0 10px 10px 0;
}
@media only screen and (min-width: 768px) {
  .wrap-content-detail h3 {
    font-size: 1.75em;
    margin-left: 0;
    padding: 0;
    background-color: transparent;
  }
}
.wrap-content-detail ul, .wrap-content-detail ol {
  padding-left: 25px;
}
.wrap-content-detail ul > li, .wrap-content-detail ol > li {
  margin-bottom: 0.5rem;
}
.wrap-content-detail ul > li strong, .wrap-content-detail ol > li strong {
  font-weight: 500;
}
.wrap-content-detail .card-white {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  margin: 1.5em 0;
}
.wrap-content-detail .card-white .lead, .wrap-content-detail .card-white p {
  font-family: var(--l-heading);
  font-size: 1.35em;
  line-height: 1.4;
  max-height: 100% !important;
  overflow: visible !important;
}
.wrap-content-detail .card-white .lead i, .wrap-content-detail .card-white .lead em, .wrap-content-detail .card-white p i, .wrap-content-detail .card-white p em {
  color: var(--l-secondary);
  font-style: normal;
  font-weight: bold;
}
.wrap-content-detail .card-white .default {
  font-family: var(--l-body);
  font-size: 16px !important;
  color: var(--l-body);
}
.wrap-content-detail .card-white .default p {
  font-size: 16px !important;
  line-height: 1.7em;
  font-family: var(--l-body);
}
.wrap-content-detail .card-white .item-desc {
  font-family: var(--l-body);
  font-size: 16px !important;
  color: var(--l-body);
}
.wrap-content-detail .card-white .item-desc p {
  font-size: 16px !important;
  line-height: 1.7em;
  font-family: var(--l-body);
}
.wrap-content-detail .card-white .card-white-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrap-content-detail .card-white .card-white-item > .item-lead {
  flex: 1;
}
.wrap-content-detail .card-white .card-white-item > .item-img {
  margin: 1em auto 2em;
  max-width: 80%;
}
.wrap-content-detail .card-white .card-white-item--img-bt .item-img {
  margin: 0 auto -20px;
  max-width: 340px;
}
.wrap-content-detail .card-white .card-white-item--img-full .item-img {
  max-width: 340px;
}
@media only screen and (min-width: 768px) {
  .wrap-content-detail .card-white {
    padding: 35px;
  }
  .wrap-content-detail .card-white .card-white-item {
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .wrap-content-detail .card-white .card-white-item > .item-lead {
    width: 60%;
  }
  .wrap-content-detail .card-white .card-white-item > .item-img {
    width: 35%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 40px;
    margin-bottom: 20px;
  }
  .wrap-content-detail .card-white .card-white-item > .item-img img {
    max-width: 95%;
  }
}
@media only screen and (min-width: 1280px) {
  .wrap-content-detail .card-white {
    padding: 35px 55px;
  }
  .wrap-content-detail .card-white .card-white-item .lead, .wrap-content-detail .card-white .card-white-item p {
    font-size: 1.5em;
  }
}
.wrap-content-detail .card-secondary {
  background-color: #FFC66C;
  border-radius: 20px;
  padding: 0 15px;
  margin: 0 0 1.5em;
}
.wrap-content-detail .card-secondary img {
  margin: 0 auto;
}

.wrap-duration-detail {
  padding: 1em 0;
  font-family: var(--l-body);
}
.wrap-duration-detail .duration,
.wrap-duration-detail .location {
  position: relative;
  padding-left: 25px;
}
.wrap-duration-detail .duration::before,
.wrap-duration-detail .location::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: url("/static/images/minisite/ic-clock.svg") no-repeat left center;
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media only screen and (min-width: 768px) {
  .wrap-duration-detail .duration::before,
.wrap-duration-detail .location::before {
    top: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .wrap-duration-detail .duration::before,
.wrap-duration-detail .location::before {
    top: 3px;
  }
}
.wrap-duration-detail .location::before {
  background: url("/static/images/minisite/ic-map.svg") no-repeat left center;
  background-size: 18px;
}

/* Button */
.btn-donate,
.section-donation-form .form-button .btn-primary {
  min-width: 190px;
  max-width: 280px;
  padding: 10px 30px;
  margin: auto;
  background-color: var(--l-green);
  border-color: var(--l-green);
  font-family: var(--l-heading);
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.5s;
}
.btn-donate:hover, .btn-donate:focus, .btn-donate:active,
.section-donation-form .form-button .btn-primary:hover,
.section-donation-form .form-button .btn-primary:focus,
.section-donation-form .form-button .btn-primary:active {
  background-color: var(--l-green-active);
  border-color: var(--l-green-active);
}
.btn-donate:disabled,
.section-donation-form .form-button .btn-primary:disabled {
  opacity: 0.4 !important;
}

.fund-raising .btn-completed {
  border-radius: 30px;
  max-width: 220px;
  padding: 10px 30px;
  font-size: 2rem;
  font-family: var(--l-heading);
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
}

.form-button {
  display: flex;
  justify-content: center;
  padding: 25px 0 !important;
}

.section-donation-form {
  padding: 20px 20px 0 20px;
  border: 2px solid var(--l-orange);
  background-color: var(--l-orange-light);
  border-radius: 20px 20px 0 0;
  border-bottom: 0;
}
.section-donation-form .form-donor {
  margin: 0 -20px;
  padding: 0px 25px 5px;
}
.section-donation-form .form-donor .form-group {
  position: relative;
}
.section-donation-form .form-donor .form-group label {
  min-width: 100px;
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 1em;
  color: var(--l-text-gray);
}
.section-donation-form .form-donor .form-group .form-control {
  padding-top: 25px;
  border-radius: 7px;
  border-color: #F7D382;
}
.section-donation-form .form-donor .form-group .form-control:focus {
  border: 1px solid #F7D382;
}
.section-donation-form .form-donor .form-group .form-control#id_card_security {
  width: 50%;
}
.section-donation-form .form-amount {
  margin: 0;
}
.section-donation-form .form-amount label {
  color: var(--l-text);
  border: 1px solid #F7D382;
  border-radius: 10px;
}
.section-donation-form .form-amount label .amount-choice-help-text {
  font-size: 1.25rem;
  font-family: var(--l-heading);
  color: var(--l-text-gray);
}
.section-donation-form .form-amount label.custom > .unit {
  color: var(--l-text);
}
.section-donation-form .form-amount label.active {
  color: var(--l-text);
  background-color: var(--l-secondary-light);
}
.section-donation-form .form-amount label.active .amount-choice-help-text {
  color: var(--l-text);
}
.section-donation-form .form-invoice {
  margin: 0;
}
.section-donation-form .form-invoice .checkbox label {
  font-family: var(--l-body) !important;
  font-size: 1em;
  color: var(--l-text);
  line-height: 1.5em;
  padding-left: 5px;
}
.section-donation-form .form-invoice .checkbox label::before {
  width: 20px;
  height: 20px;
  margin-left: -25px;
  border-color: #F7D382;
}
.section-donation-form .form-invoice .checkbox label:focus {
  border: none;
}
.section-donation-form .form-invoice .checkbox input[type=checkbox]:checked + label::after {
  font-size: 14px;
}
.section-donation-form .qr-detail {
  text-align: center;
  color: var(--l-text-gray);
  line-height: 1.5em;
}

.alert-payment-qr-code-personal ul, .alert-payment-qr-code-personal ol, .alert-payment-qr-code-personal p {
  font-size: 90%;
  line-height: 1.5em;
}
.alert-payment-qr-code-personal ul > li, .alert-payment-qr-code-personal ol > li, .alert-payment-qr-code-personal p > li {
  margin-bottom: 0.35em;
}

.donation-header-form fieldset legend {
  font-weight: 700;
  font-size: 1.25em;
  color: var(--l-body);
}
.donation-header-form .amount-select .wrap-btn-group {
  display: flex;
  flex-wrap: wrap;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item {
  flex-grow: 1;
  width: calc(50% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item:nth-child(2n) {
  margin-right: 0;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item--custom .caption {
  margin-top: 0;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item--custom label.custom {
  flex-wrap: nowrap;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item--custom label.custom .custom_input {
  height: 30px;
}
.donation-header-form .amount-select .wrap-btn-group .btn-item--custom label.custom .custom_input input {
  font-size: 20px;
  border-radius: 5px;
  height: 32px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .donation-header-form .amount-select .wrap-btn-group .btn-item {
    width: calc(25% - 10px);
    margin-bottom: 0;
  }
  .donation-header-form .amount-select .wrap-btn-group .btn-item:nth-child(2n) {
    margin-right: 10px;
  }
  .donation-header-form .amount-select .wrap-btn-group .btn-item:last-child {
    margin-right: 0;
  }
  .donation-header-form .amount-select .wrap-btn-group .btn-item label {
    height: 80px;
  }
}
.donation-header-form .amount-select .wrap-btn-group label {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 75px;
  padding: 5px;
  margin-bottom: 0;
  background-color: white;
}
.donation-header-form .amount-select .wrap-btn-group label.active {
  background-color: var(--l-secondary-light);
}
.donation-header-form .amount-select .wrap-btn-group .amount-choice-help-text {
  margin-bottom: 0;
}
.donation-header-form .amount-select .unit {
  display: none;
}
@media only screen and (min-width: 768px) {
  .donation-header-form .amount-select .unit {
    display: inline-block;
  }
}

/* Slider */
.wrap-slider {
  max-width: 700px;
}
@media only screen and (min-width: 1280px) {
  .wrap-slider {
    max-width: 730px;
  }
}

.project-slider-part {
  margin: 0 -15px;
  /* slideshow */
  /* slide when not active/center*/
  /* slide when active/center */
}
@media only screen and (min-width: 768px) {
  .project-slider-part {
    max-width: 730px;
    margin: 0 auto;
  }
  .project-slider-part .slick-arrow {
    color: var(--l-secondary-light);
    border: 1px solid var(--l-border);
    text-shadow: none;
    background-color: white;
    font-size: 35px;
    line-height: 1;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
  }
  .project-slider-part .slick-arrow.-left {
    left: -50px;
  }
  .project-slider-part .slick-arrow.-right {
    right: -40px;
  }
  .project-slider-part .fa-angle-right:before,
.project-slider-part .fa-angle-left:before {
    font-weight: bold;
  }
}
.project-slider-part img {
  max-width: 100% !important;
  width: 100%;
  border: 5px solid #FFFFFF;
  filter: drop-shadow(0px 7px 14px rgba(0, 0, 0, 0.15));
  border-radius: 20px;
}
@media only screen and (min-width: 768px) {
  .project-slider-part img {
    border-radius: 10px;
    filter: drop-shadow(0px 7px 7px rgba(0, 0, 0, 0.15));
  }
}
.project-slider-part .slick-slide {
  width: 100%;
}
.project-slider-part .slick-list {
  padding: 0 10% 5% !important;
}
@media only screen and (min-width: 768px) {
  .project-slider-part .slick-list {
    padding: 0 2% 3% !important;
    margin-left: -2%;
  }
}
.project-slider-part .slick-dots {
  margin: -15px 0 20px;
  position: relative;
  z-index: 2;
}
.project-slider-part .slick-dots > li {
  width: 20px;
  height: 7px;
  border: none;
  background-color: white;
  margin: 0 4px;
}
.project-slider-part .slick-dots > li.slick-active {
  background-color: var(--l-secondary-light);
  width: 40px;
}
.project-slider-part .slick-dots li.slick-active button:before {
  color: #ff0000;
}
.project-slider-part .slick-slide,
.project-slider-part .slick-slide[aria-hidden=true]:not(.slick-cloned) ~ .slick-cloned[aria-hidden=true] {
  transform: scale(0.9, 0.9);
  transition: transform 0.3s;
  opacity: 0.3;
}
.project-slider-part .slick-center,
.project-slider-part .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true] {
  transform: scale(1, 1);
  opacity: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .project-slider-part .slick-center::after,
.project-slider-part .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true]::after {
    content: "";
    background: url("/static/images/minisite/projects/04/bg-slide-frame-04.png") no-repeat;
    background-size: cover;
    width: 107%;
    height: 110%;
    z-index: 1;
    position: absolute;
    left: -3%;
    top: -3%;
  }
}
.project-slider-part .slick-slide {
  margin: 10px 0;
}
.project-slider-part .slick-slide img {
  margin: 0 auto;
}

/* Share */
.share-group {
  margin: 0 -15px 0;
  padding: 15px 0 0;
  display: none;
}
.share-group > .title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  min-width: 80px;
}
@media only screen and (min-width: 768px) {
  .share-group {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Category Project Slider */
@media only screen and (min-width: 768px) {
  .cat-animals .project-slider-part .slick-list .slick-slide.item {
    position: relative;
  }
  .cat-animals .project-slider-part .slick-list .slick-slide.item::after {
    content: "";
    width: 100px;
    height: 110px;
    background: url("/static/images/minisite/projects/04/04-gallery-icon-03.png") no-repeat left bottom;
    position: absolute;
    right: 15px;
    bottom: 0px;
    background-size: contain;
  }
  .cat-animals .project-slider-part .slick-list .slick-slide.item:nth-child(3n-2)::after {
    background: url("/static/images/minisite/projects/04/04-gallery-icon-01.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-animals .project-slider-part .slick-list .slick-slide.item:nth-child(3n-1)::after {
    background: url("/static/images/minisite/projects/04/04-gallery-icon-02.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-animals .project-slider-part .slick-list .slick-slide.item:nth-child(3n)::after {
    background: url("/static/images/minisite/projects/04/04-gallery-icon-03.png") no-repeat left bottom;
    background-size: contain;
  }
}

.cat-children-youth {
  /* slide when active/center */
}
@media only screen and (max-width: 767px) {
  .cat-children-youth .slick-center::after,
.cat-children-youth .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true]::after {
    content: "";
    background: url("/static/images/minisite/projects/02/bg-slide-frame-02.png") no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .cat-children-youth .project-slider-part .slick-list .slick-slide.item {
    position: relative;
  }
  .cat-children-youth .project-slider-part .slick-list .slick-slide.item::after {
    content: "";
    width: 100px;
    height: 110px;
    background: url("/static/images/minisite/projects/02/02-gallery-icon-03.png") no-repeat left bottom;
    position: absolute;
    right: 15px;
    bottom: 0px;
    background-size: contain;
  }
  .cat-children-youth .project-slider-part .slick-list .slick-slide.item:nth-child(3n-2)::after {
    background: url("/static/images/minisite/projects/02/02-gallery-icon-01.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-children-youth .project-slider-part .slick-list .slick-slide.item:nth-child(3n-1)::after {
    background: url("/static/images/minisite/projects/02/02-gallery-icon-02.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-children-youth .project-slider-part .slick-list .slick-slide.item:nth-child(3n)::after {
    background: url("/static/images/minisite/projects/02/02-gallery-icon-03.png") no-repeat left bottom;
    background-size: contain;
  }
}

.cat-eldery {
  /* slide when active/center */
}
@media only screen and (max-width: 767px) {
  .cat-eldery .slick-center::after,
.cat-eldery .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true]::after {
    content: "";
    background: url("/static/images/minisite/projects/01/bg-slide-frame-01.png") no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .cat-eldery .project-slider-part .slick-list .slick-slide.item {
    position: relative;
  }
  .cat-eldery .project-slider-part .slick-list .slick-slide.item::after {
    content: "";
    width: 100px;
    height: 110px;
    background: url("/static/images/minisite/projects/01/01-gallery-icon-03.png") no-repeat left bottom;
    position: absolute;
    right: 15px;
    bottom: 0px;
    background-size: contain;
  }
  .cat-eldery .project-slider-part .slick-list .slick-slide.item:nth-child(3n-2)::after {
    background: url("/static/images/minisite/projects/01/01-gallery-icon-01.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-eldery .project-slider-part .slick-list .slick-slide.item:nth-child(3n-1)::after {
    background: url("/static/images/minisite/projects/01/01-gallery-icon-02.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-eldery .project-slider-part .slick-list .slick-slide.item:nth-child(3n)::after {
    background: url("/static/images/minisite/projects/01/01-gallery-icon-03.png") no-repeat left bottom;
    background-size: contain;
  }
}

.cat-environment {
  /* slide when active/center */
}
@media only screen and (max-width: 767px) {
  .cat-environment .slick-center::after,
.cat-environment .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true]::after {
    content: "";
    background: url("/static/images/minisite/projects/05/bg-slide-frame-05.png") no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .cat-environment .project-slider-part .slick-list .slick-slide.item {
    position: relative;
  }
  .cat-environment .project-slider-part .slick-list .slick-slide.item::after {
    content: "";
    width: 100px;
    height: 110px;
    background: url("/static/images/minisite/projects/05/05-gallery-icon-03.png") no-repeat left bottom;
    position: absolute;
    right: 15px;
    bottom: 0px;
    background-size: contain;
  }
  .cat-environment .project-slider-part .slick-list .slick-slide.item:nth-child(3n-2)::after {
    background: url("/static/images/minisite/projects/05/05-gallery-icon-01.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-environment .project-slider-part .slick-list .slick-slide.item:nth-child(3n-1)::after {
    background: url("/static/images/minisite/projects/05/05-gallery-icon-02.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-environment .project-slider-part .slick-list .slick-slide.item:nth-child(3n)::after {
    background: url("/static/images/minisite/projects/05/05-gallery-icon-03.png") no-repeat left bottom;
    background-size: contain;
  }
}

.cat-others {
  /* slide when active/center */
}
@media only screen and (max-width: 767px) {
  .cat-others .slick-center::after,
.cat-others .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true]::after {
    content: "";
    background: url("/static/images/minisite/projects/03/bg-slide-frame-03.png") no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .cat-others .project-slider-part .slick-list .slick-slide.item {
    position: relative;
  }
  .cat-others .project-slider-part .slick-list .slick-slide.item::after {
    content: "";
    width: 100px;
    height: 110px;
    background: url("/static/images/minisite/projects/03/03-gallery-icon-03.png") no-repeat left bottom;
    position: absolute;
    right: 15px;
    bottom: 0px;
    background-size: contain;
  }
  .cat-others .project-slider-part .slick-list .slick-slide.item:nth-child(3n-2)::after {
    background: url("/static/images/minisite/projects/03/03-gallery-icon-01.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-others .project-slider-part .slick-list .slick-slide.item:nth-child(3n-1)::after {
    background: url("/static/images/minisite/projects/03/03-gallery-icon-02.png") no-repeat left bottom;
    background-size: contain;
  }
  .cat-others .project-slider-part .slick-list .slick-slide.item:nth-child(3n)::after {
    background: url("/static/images/minisite/projects/03/03-gallery-icon-03.png") no-repeat left bottom;
    background-size: contain;
  }
}

/* card content */
.line-page {
  background-color: var(--l-green-light);
}
.line-page .card-content {
  margin: 1em auto;
  max-width: 900px;
  padding: 15px;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #DBD8D5;
  box-shadow: 0px 13px 15px rgba(0, 0, 0, 0.11);
  border-radius: 20px;
  z-index: 1;
}
.line-page .card-content .card-content-header {
  text-align: center;
}
.line-page .card-content .card-content-header .lead {
  font-size: 1.1em;
}
.line-page .card-content .card-content-header h2 {
  font-size: 1.45em;
}
.line-page .card-content .card-content-header h3 {
  font-size: 1.25em;
}
.line-page .card-content .card-content-remark {
  max-width: 300px;
  padding: 10px;
  margin: 0 auto 15px;
  background-color: #F1F5F5;
  border-radius: 8px;
  font-size: 95%;
  line-height: 1.5em;
}
.line-page .card-content .card-content-qr {
  border: 1px solid #0D3D6B;
  color: #0C264C;
  font-family: var(--l-heading);
  margin: 10px auto 15px;
  max-width: 300px;
}
.line-page .card-content .card-content-qr .qr-header {
  background-color: #0D3D6B;
}
.line-page .card-content .card-content-qr .qr-header > img {
  margin: 0 auto;
}
.line-page .card-content .card-content-qr .qr-body {
  padding: 10px 20px;
}
.line-page .card-content .card-content-qr .qr-body > img {
  margin: 0 auto 10px;
}
.line-page .card-content .card-content-qr .qr-body .title {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.35em;
  color: #0C264C;
  font-weight: 600;
}
.line-page .card-content .card-content-list {
  padding: 15px;
}
.line-page .card-content .card-content-list .card-content-header {
  display: none;
}
.line-page .card-content .card-content-list h4 {
  font-weight: 600;
  line-height: 1.35em;
}
.line-page .card-content .card-content-list ul, .line-page .card-content .card-content-list ol {
  padding-left: 20px;
}
.line-page .main {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .line-page .main::after, .line-page .main::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 180px;
  }
  .line-page .main::after {
    background: url("/static/images/minisite/bg-page-left.svg") no-repeat left bottom;
    background-size: contain;
    bottom: 0;
    left: 0;
  }
  .line-page .main::before {
    background: url("/static/images/minisite/bg-page-right.svg") no-repeat left bottom;
    background-size: contain;
    bottom: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .line-page .card-content {
    margin: 2em auto 5em;
    padding: 30px;
    display: flex;
  }
  .line-page .card-content .card-content-header--sm {
    display: none;
  }
  .line-page .card-content .wrap-card-content-qr {
    flex: 35%;
  }
  .line-page .card-content .card-content-list {
    flex: 50%;
  }
  .line-page .card-content .card-content-list .card-content-header {
    display: block;
    text-align: left;
    margin-bottom: 4em;
  }
  .line-page .main::after, .line-page .main::before {
    width: 240px;
    height: 260px;
  }
}
@media only screen and (min-width: 1280px) {
  .line-page .main::after, .line-page .main::before {
    width: 340px;
    height: 360px;
  }
}

/* Thankyou */
.page-donate-thankyou .card-content {
  max-width: 650px;
  flex-direction: column;
}
.page-donate-thankyou .card-content .btn-outline {
  padding: 5px 25px;
  font-family: var(--l-heading);
  font-size: 1em;
  font-weight: 700;
  color: #3374B9;
  border: 2px solid #3374B9;
  border-radius: 50px;
}

.card-thankyou {
  font-family: var(--l-heading);
}
.card-thankyou .content {
  background: url("/static/images/minisite/bg-bubble-sm.png") no-repeat top center;
  background-size: 100%;
  min-height: 200px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.card-thankyou .content > p {
  line-height: 1.4em;
}
.card-thankyou .content > p > strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* start showing ellipsis when 3rd line is reached */
  white-space: pre-wrap; /* let the text wrap preserving spaces */
}
.card-thankyou .content a {
  color: var(--l-text);
  text-decoration: underline;
}
@media only screen and (min-width: 360px) {
  .card-thankyou .content {
    min-height: 225px;
    padding: 30px 30px 40px;
    max-width: 320px;
    margin: 0 auto;
  }
  .card-thankyou .content > p > strong {
    -webkit-line-clamp: 2; /* start showing ellipsis when 3rd line is reached */
  }
}
@media only screen and (min-width: 500px) {
  .card-thankyou .content {
    background: url("/static/images/minisite/bg-bubble-thankyou.png") no-repeat top center;
    background-size: 100%;
    min-height: 250px;
    padding: 30px 50px 50px;
    max-width: 400px;
  }
  .card-thankyou .content .project-name {
    font-size: 1.15em;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 768px) {
  .card-thankyou .logo-taejai {
    margin-top: -3.5em;
  }
}

/* Share Social*/
.ic-group-share {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ic-group-share > li {
  margin: 0 10px 0 0;
}
.ic-group-share > li:last-child {
  margin-right: 0;
}
.ic-group-share > li a {
  display: block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background: url("/static/images/minisite/ic-facebook.svg") no-repeat center center;
  background-size: 25px;
  text-indent: -999em;
}
.ic-group-share > li a.ic-facebook {
  background: url("/static/images/minisite/ic-facebook.svg") no-repeat center center;
  background-size: 25px;
}
.ic-group-share > li a.ic-line {
  background: url("/static/images/minisite/ic-line.svg") no-repeat center center;
  background-size: 25px;
}
.ic-group-share > li a.ic-twitter {
  background: url("/static/images/minisite/ic-x.svg") no-repeat center center;
  background-size: 25px;
}
.ic-group-share > li a.ic-link {
  background: url("/static/images/minisite/ic-link.svg") no-repeat center center;
  background-size: 25px;
}

.share-list {
  display: flex;
}
.share-list .ic-twitter-x {
  background: url("/static/images/minisite/ic-x-light.svg") no-repeat center center;
  display: block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background-size: 25px;
  text-indent: -999em;
}

/* Static Page */
.static-page .main {
  display: block;
}
.static-page .card-content {
  margin-bottom: 4em;
}
.static-page .card-content .content {
  width: 100%;
  padding: 12px;
}
.static-page .card-content .content h1, .static-page .card-content .content h2, .static-page .card-content .content h3, .static-page .card-content .content h4, .static-page .card-content .content h5 {
  line-height: 1.5em;
}
.static-page .card-content .content .page-title {
  text-align: center;
  font-size: 1.5em;
}
.static-page .card-content .content h2 {
  font-size: 1.25em;
  margin-bottom: 10px;
}
.static-page .resource-content {
  border-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .static-page .card-content {
    margin-bottom: 6em;
  }
  .static-page .card-content .content {
    padding: 20px 40px;
  }
  .static-page .card-content .content .page-title {
    font-size: 1.75em;
  }
}

.wrap-project-all {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

.fixbar-top {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
}
.fixbar-top .l-note {
  text-align: center;
  background-color: var(--l-green-light);
  padding: 10px 10px 5px;
}

body.tiny .category-list {
  box-shadow: none;
}
body.tiny .fixbar-top .l-note {
  text-align: center;
  background-color: var(--l-green-light);
  box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 5px;
}

/* tab project update */
.l-tab-section {
  margin-bottom: 1.5rem;
  border-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .l-tab-section {
    margin-bottom: 3rem;
  }
}
.l-tab-section .tab-list {
  font-family: var(--l-heading);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.l-tab-section .tab-list > .item.active .link {
  font-family: var(--l-heading);
  font-weight: 700;
  border-color: var(--l-green);
  font-size: 16px;
  line-height: 1.45em;
}
@media only screen and (min-width: 768px) {
  .l-tab-section .tab-list > .item.active .link {
    font-size: 18px;
  }
}
.l-tab-section .tab-list .item {
  flex: 1;
}
.l-tab-section .tab-list .item .link {
  text-align: center;
  padding: 20px 10px 15px;
  font-size: 16px;
  line-height: 1.45em;
}
@media only screen and (min-width: 768px) {
  .l-tab-section .tab-list .item .link {
    font-size: 18px;
  }
}

.wrap-content-overview {
  margin-bottom: 2rem;
}

.wrap-content-update .info-block {
  background-color: white;
  border-radius: 20px;
}
.wrap-content-update .info-block h2, .wrap-content-update .info-block h3 {
  padding: 0;
}
.wrap-content-update .content-node {
  overflow-x: auto;
}
.wrap-content-update .content-node img {
  width: auto !important;
  height: auto !important;
}

.wrap-content-plan {
  font-family: var(--l-heading);
}
.wrap-content-plan .table > thead > tr th {
  background-color: var(--l-green);
}

.wrap-header-tab-section {
  max-width: 400px;
  margin: 1rem auto 0;
}

.current-projects .wrap-content-detail {
  max-width: 400px;
  margin: 0 auto;
  min-height: 30vh;
}

.total-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 23px;
  margin: 20px -20px 0;
  font-family: var(--l-heading);
  font-weight: 600;
  font-size: 1.25em;
  background-color: #F9F3BF;
}
@media only screen and (min-width: 768px) {
  .total-amount {
    padding: 20px 35px;
    margin: 20px -30px 0;
    justify-content: start;
    gap: 10px;
  }
}

.form-payment legend {
  margin-bottom: 20px !important;
}

.panel-payment-methods .panel {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.panel-payment-methods .panel.active {
  border: solid 3px #FEAA15;
}
.panel-payment-methods .panel-heading {
  padding: 10px 15px;
  background-color: #fff;
}
.panel-payment-methods .panel-title {
  font-size: 16px;
}

.donor-type .donor-type-input:checked ~ .donor-type-label {
  background-color: #FEAA15;
}
.donor-type .donor-type-label {
  display: block;
  padding: 5px 15px;
  border-radius: 8px;
  color: #333 !important;
  text-align: center;
  border: solid 1px #FEAA15;
}
.donor-type .donor-type-label::before {
  display: none !important;
}

.footer-section {
  margin: 0 -20px;
  padding: 15px 25px;
  background-color: #F9F3BF;
}
@media only screen and (min-width: 768px) {
  .footer-section {
    margin: 0 -30px;
  }
}

.checkbox-group .checkbox {
  margin-bottom: 20px;
}

.section-donation-form .form-donor .form-donor-title {
  margin: 0 5px 5px;
  padding: 0 0px;
  font-weight: 700;
  font-size: 1.25em;
  color: var(--l-body);
}

.form-donor-tax-receipt {
  padding: 20px 20px !important;
  background-color: #fff;
}

.section-donation-form .form-donor .-tax-id {
  margin-top: 0px;
}

/*# sourceMappingURL=minisite.css.map */
