html {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 16px;
  }
}

.text-xxs {
  font-size: 0.579rem;
  line-height: 160%;
}

.text-xs {
  font-size: 0.694rem;
  line-height: 160%;
}

.text-sm {
  font-size: 0.833rem;
  line-height: 160%;
}

.text-md {
  font-size: 1rem;
  line-height: 160%;
}

.text-lg {
  font-size: 1.2rem;
  line-height: 160%;
}

.text-xl {
  font-size: 1.44rem;
  line-height: 140%;
}

.text-2xl {
  font-size: 1.728rem;
  line-height: 140%;
}

.text-3xl {
  font-size: 2.074rem;
  line-height: 140%;
}

.text-4xl {
  font-size: 2.488rem;
  line-height: 120%;
}

.text-5xl {
  font-size: 2.986rem;
  line-height: 120%;
}

@media screen and (min-width: 600px) {
  .text-xxs {
    font-size: 0.512rem;
  }

  .text-xs {
    font-size: 0.64rem;
  }

  .text-sm {
    font-size: 0.8rem;
  }

  .text-md {
    font-size: 1rem;
  }

  .text-lg {
    font-size: 1.25rem;
  }

  .text-xl {
    font-size: 1.563rem;
  }

  .text-2xl {
    font-size: 1.953rem;
  }

  .text-3xl {
    font-size: 2.441rem;
  }

  .text-4xl {
    font-size: 3.052rem;
  }

  .text-5xl {
    font-size: 3.815rem;
  }
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-nowrap {
  text-wrap: nowrap;
}

.color-primary {
  color: var(--theme-main);
}

.color-default {
  color: #141619;
}

.color-dim1 {
  color: #3B414C;
}

.color-dim2 {
  color: #636C7E;
}

.color-white {
  color: #FFFFFF;
}

.color-error {
  color: #FF3030 !important;
}

.color-warning {
  color: #FAAB14 !important;
}

.color-success {
  color: #22C55E !important;
}

.color-info {
  color: #14A3FA !important;
}

.msf-navbar {
  padding: 16px;
  border-bottom: 1px solid #E0E2E5;
  -webkit-box-align: center;
          align-items: center;
}

.msf-navbar .left-sect {
  height: 24px;
}

.msf-navbar .left-sect img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.msf-navbar .nav-bar .nav-item {
  cursor: pointer;
}

.msf-navbar .nav-bar .nav-item .expandable {
  display: none;
  position: absolute;
  min-width: 200px;
  z-index: 999;
  background: white;
  border: 1px solid #E0E2E5;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.msf-navbar .nav-bar .nav-item .expandable > * {
  display: block;
  padding: 16px;
  border-radius: 8px;
}

.msf-navbar .nav-bar .nav-item .expandable > *:hover {
  background-color: var(--theme-main-light);
}

.msf-navbar .nav-bar .nav-item .icon img {
  height: auto;
  width: auto;
}

.msf-navbar .nav-bar .nav-item.active {
  color: var(--theme-main);
}

.msf-navbar .nav-bar .nav-item.active .icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.msf-navbar .nav-bar .nav-item.active .expandable {
  display: block;
}

.msf-navbar .right-sect .hamburger {
  align-self: center;
}

.msf-navbar .right-sect .hamburger.active ~ .left-menu {
  display: block !important;
}

.msf-navbar .right-sect .hamburger.active ~ .left-menu .list-bg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.msf-navbar .right-sect .left-menu {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99999;
}

.msf-navbar .right-sect .left-menu .list-bg {
  position: absolute;
  top: 0;
  right: 0;
  padding: 48px 0 64px 0;
  height: 100%;
  width: 100%;
  max-width: 600px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.msf-navbar .right-sect .left-menu .list-bg .lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items {
  height: 100%;
  overflow-y: scroll;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item {
  padding: 16px 64px;
  border-radius: 8px;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item .expandable {
  display: none;
  border-bottom: 1px solid #E0E2E5;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item .expandable > * {
  display: block;
  padding: 16px 32px;
  border-radius: 8px;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item.active {
  color: var(--theme-main);
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item.active .icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.msf-navbar .right-sect .left-menu .list-bg .lists .items .item.active .expandable {
  display: block;
}

.msf-navbar .right-sect .left-menu .list-bg .lists .btns {
  padding: 0 64px;
}

.msf-navbar .right-sect .left-menu .close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 600px) {
  .msf-navbar {
    padding: 24px 64px;
  }

  .msf-navbar .left-sect {
    height: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .msf-navbar {
    padding: 24px 128px;
  }
}

footer .msf {
  -webkit-box-align: end;
          align-items: end;
}

footer .msf .logo {
  max-height: 32px;
  max-width: 162px;
  overflow: hidden;
}

footer .msf .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

footer .address {
  align-content: baseline;
  overflow-wrap: anywhere;
}

footer .hyperlinks {
  -webkit-box-align: start;
          align-items: flex-start;
  overflow-wrap: anywhere;
}

footer .hyperlinks > * {
  width: 100%;
}

footer .social {
  align-content: baseline;
  overflow-wrap: anywhere;
}

footer > * {
  border-top: 1px solid #E0E2E5;
}

@media screen and (min-width: 600px) {
  footer .address {
    width: 30%;
  }

  footer .hyperlinks {
    width: 60%;
  }

  footer .social {
    width: 20%;
    justify-items: end;
  }
}

a {
  color: inherit;
}

.image.round-corner {
  overflow: hidden;
  border-radius: 32px;
}

.image img.img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.image img.img.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.image img.img.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.popup-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  align-content: space-evenly;
  justify-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow: scroll;
}

.popup-viewer .popup-content {
  max-width: 800px;
}

.popup-viewer .popup-content .popup-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.overflow-hidden::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.overflow-hidden::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.overflow-hidden::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.overflow-unset {
  overflow: unset;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-scroll::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.overflow-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.overflow-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.overflow-scroll::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.overflow-wrap {
  overflow-wrap: anywhere;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-x-scroll::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.overflow-x-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.overflow-x-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.overflow-x-scroll::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-scroll::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.overflow-y-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.overflow-y-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.overflow-y-scroll::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.position-fixed {
  position: fixed;
}

.m-0 {
  margin: 0 !important;
}

.p-4 {
  padding: 4px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-24 {
  padding: 24px !important;
}

.p-32 {
  padding: 32px !important;
}

.section-padding {
  padding: 48px 16px;
}

.section-padding-md {
  padding: 32px 16px;
}

.section-padding-sm {
  padding: 32px 16px;
}

.revert > :nth-child(1) {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.square {
  aspect-ratio: 1/1;
}

.round-circle {
  border: 1px solid #EFF0F2;
  border-radius: 999px;
  overflow: hidden;
}

.round-circle.no-border {
  border: none;
}

.round-circle.shadow {
  box-shadow: 0 12px 24px -4px rgba(23, 23, 24, 0.0588235294);
}

.badge {
  padding: 7px 12px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #ffffff;
}

.badge.primary {
  background-color: var(--theme-main);
}

.badge.error {
  background-color: #FF3030;
}

.badge.warning {
  background-color: #FAAB14;
}

.badge.success {
  background-color: #22C55E;
}

.badge.info {
  background-color: #14A3FA;
}

.help-box {
  padding: 24px;
  border: 1px solid var(--theme-main);
  color: #06314B;
  border-radius: 24px;
}

.custom-check .unchecked {
  width: 22px;
  height: 22px;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.custom-check .checked {
  width: 0;
  height: 0;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.custom-check.active .unchecked {
  width: 0;
  height: 0;
}

.custom-check.active .checked {
  width: 22px;
  height: 22px;
}

.ratio-3-2 {
  aspect-ratio: 3/2;
}

.ratio-4-3 {
  aspect-ratio: 4/3;
}

.ratio-16-9 {
  aspect-ratio: 16/9;
}

.pointer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-main)), to(transparent));
  background-image: linear-gradient(to bottom, var(--theme-main), transparent);
}

.pointer::before {
  content: ".";
  width: 12px;
  height: 12px;
  background: var(--theme-main);
  border-radius: 999px;
  overflow: hidden;
  color: var(--theme-main);
  display: block;
}

.banner-sect {
  padding: 16px;
}

.banner-sect .banner {
  position: relative;
  padding: 48px 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 32px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.cards .card {
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 24px -4px rgba(23, 23, 24, 0.0588235294);
  overflow: hidden;
}

.cards .card .icon {
  height: 32px;
}

.cards .card.bordered {
  border: 1px solid #e0e2e5;
}

.cards .card.card-sq {
  width: 156px;
  height: 156px;
}

.cards .card.card-center {
  align-content: center;
  text-align: center;
  justify-items: center;
}

.cards .card.card-image {
  padding: 0;
}

.cards .card.card-image .image {
  height: 60%;
}

.cards .card.card-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cards .card.card-image .text {
  padding: 24px;
  height: 40%;
}

.cards .card.card-image.height-auto > * {
  height: auto;
}

.cards .card.no-shadow {
  box-shadow: none;
}

.cards .card.no-padding {
  padding: 0;
}

.cards .card.no-border {
  border: none;
}

.cards .card-sm {
  padding: 12px;
}

.cards .card-sm .image {
  border-radius: 12px;
  overflow: hidden;
}

.cards .card-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.cards .card.d-grid {
  display: grid;
}

.cards .card.d-flex {
  display: -webkit-box;
  display: flex;
}

.table {
  border-radius: 24px;
  box-shadow: 0 12px 24px -4px rgba(23, 23, 24, 0.0588235294);
  overflow-x: scroll;
}

.table::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.table::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.table::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.table::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.table.bordered {
  border: 1px solid #e0e2e5;
}

.table.no-shadow {
  box-shadow: none;
}

.btns .button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.btns .button.btn-primary {
  background-color: var(--theme-main);
  color: #fff;
}

.btns .button.btn-white {
  background-color: #fff;
  color: #141619;
  border: 1px solid #eff0f2;
}

.btns .button.btn-link {
  background-color: transparent;
  color: var(--theme-main);
  text-decoration: underline;
}

.btns .button.btn-none {
  background-color: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
}

.btns .button.btn-rounded {
  border-radius: 999px;
}

.btns .button.btn-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btns .button.btn-long {
  padding: 8px 64px;
}

.btns .button.btn-tab {
  background-color: #fff;
  border: none;
}

.btns .button.btn-tab:hover {
  background-color: var(--theme-main-light);
}

.btns .button.btn-tab.active {
  background-color: var(--theme-main);
  color: #fff;
}

.btns .button.btn-tab.btn-outline {
  border: 1px solid #fff;
}

.btns .button.btn-tab.btn-outline:hover {
  border-color: var(--theme-main);
  background-color: #fff;
}

.btns .button.btn-tab.btn-outline.active {
  border-color: var(--theme-main);
  background-color: var(--theme-main-opac);
  color: #141619;
}

.btns .button .caret-icon .fa {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.btns .button .caret-icon .fa.fa-angle-up {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.btns .button .caret-icon .fa.fa-angle-down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btns .button.collapsed .caret-icon .fa-angle-up {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btns .button.collapsed .caret-icon .fa-angle-down {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.btns.flex {
  flex-wrap: wrap;
}

.pagination {
  width: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 16px;
}

.pagination-desktop {
  display: none;
}

.pagination-mobile {
  display: -webkit-box;
  display: flex;
}

.pagination .page {
  min-width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid #EFF0F2;
  background: #fff;
  color: #141619;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.pagination .page:hover:not(.active):not(.disabled) {
  background: var(--theme-main-light);
}

.pagination .page.active {
  background: var(--theme-main);
  color: #fff;
  border-color: var(--theme-main);
}

.pagination .page.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination .page.dots {
  border: none;
  background: transparent;
  cursor: default;
  padding: 0 6px;
}

@media (min-width: 600px) {
  .pagination-desktop {
    display: -webkit-box;
    display: flex;
  }

  .pagination-mobile {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: flex;
}

.flex.flex-wrap {
  flex-flow: wrap;
}

.flex.flex-nowrap {
  flex-wrap: nowrap;
}

.flex.flex-scroll {
  padding-bottom: 5px;
  flex-flow: nowrap;
  overflow-x: scroll;
}

.flex.flex-scroll::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.flex.flex-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.flex.flex-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.flex.flex-scroll::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.flex.direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.flex.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.grid {
  display: grid;
}

.grid.template-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.template-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.template-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.template-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid.template-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid .seperator {
  border-top: 1px solid #E0E2E5;
}

.grid .grid-column-1-3 {
  grid-column: 1/3;
}

.grid .grid-column-auto {
  grid-auto-flow: column;
}

.gap-0 {
  gap: 0px;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-48 {
  gap: 48px;
}

.gap-64 {
  gap: 64px;
}

.gap-96 {
  gap: 96px;
}

.gap-24-0 {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 0;
}

.gap-24-48 {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 48px;
}

.gap-32-64 {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 64px;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.icon-md {
  width: 48px;
  height: 48px;
}

.icon-8 {
  width: 8px;
  height: 8px;
}

.icon-12 {
  width: 12px;
  height: 12px;
}

.icon-14 {
  width: 14px;
  height: 14px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-42 {
  width: 42px;
  height: 42px;
}

.icon-48 {
  width: 48px;
  height: 48px;
}

.icon-50 {
  width: 50px;
  height: 50px;
}

.icon-52 {
  width: 52px;
  height: 52px;
}

.icon-56 {
  width: 56px;
  height: 56px;
}

.icon-76 {
  width: 76px;
  height: 76px;
}

.icon img {
  -o-object-fit: cover;
     object-fit: cover;
}

.image-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.image-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-16 {
  border-radius: 16px;
}

.border-radius-24 {
  border-radius: 24px;
}

.border-radius-32 {
  border-radius: 32px;
}

.border-radius-40 {
  border-radius: 40px;
}

.border-radius-48 {
  border-radius: 48px;
}

.msf-form label {
  margin: 0;
}

.msf-select {
  display: block;
  padding: 11px 48px 11px 16px;
  width: 100%;
  border: 1px solid #E0E2E5;
  border-radius: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg width='18' height='9' viewBox='0 0 18 9' fill='black' xmlns='http://www.w3.org/2000/svg'><path d='M16.0576 0.217407C16.3476 -0.0725454 16.8272 -0.0724508 17.1172 0.217407C17.4072 0.507407 17.4072 0.986978 17.1172 1.27698L10.5977 7.79749C10.0677 8.32732 9.36781 8.59721 8.66797 8.59729C7.96797 8.59729 7.2673 8.32749 6.7373 7.79749L0.217773 1.27698C-0.0721486 0.986986 -0.0721614 0.507391 0.217773 0.217407C0.507752 -0.0725715 0.987337 -0.0725291 1.27734 0.217407L7.79785 6.73694C8.27785 7.21694 9.05809 7.21694 9.53809 6.73694L16.0576 0.217407Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  /* Standard */
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  /* Firefox */
}

.msf-input {
  display: block;
  padding: 11px 16px;
  width: 100%;
  border: 1px solid #E0E2E5;
  border-radius: 16px;
}

.msf-input.is-invalid {
  border-color: #FF3030;
}

.msf-input[type=date],
.msf-input[type=time],
.msf-input[type=datetime-local],
.msf-input[type=month] {
  line-height: inherit;
}

.msf-checkbox {
  width: 24px;
  height: 24px;
  margin: 0;
}

.msf-table thead tr {
  background-color: #F7F8F9;
}

.msf-table thead tr th {
  padding: 12px 16px;
  overflow: hidden;
}

.msf-table thead tr th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.msf-table thead tr th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.msf-table tbody tr {
  border-bottom: 1px solid #F7F8F9;
}

.msf-table tbody tr td {
  padding: 16px;
  text-wrap: nowrap;
}

.msf-table tbody tr td input {
  height: 42px;
  width: 100%;
  padding: 8px;
  border: 1px solid #EFF0F2;
  border-radius: 4px;
  box-shadow: none;
}

.msf-table tbody tr:last-child {
  border-bottom: none;
}

.project-tabs .project-tab .icon-fill {
  display: none;
}

.project-tabs .project-tab .icon-o {
  display: block;
}

.project-tabs .project-tab.active .icon-fill {
  display: block;
}

.project-tabs .project-tab.active .icon-o {
  display: none;
}

.project-tabs .project-tab.tab-item {
  display: none;
}

.project-tabs .project-tab.tab-item.active {
  display: block;
}

span.phone-prefix.msf-input {
  position: absolute;
  bottom: 0;
  left: 0;
  border-color: transparent;
  background: white;
  z-index: 0;
}

input.phone-prefix.msf-input {
  text-indent: 30px;
  z-index: 1;
  background: transparent;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mw-225 {
  max-width: 225px;
}

.mw-250 {
  max-width: 250px;
}

.mw-300 {
  max-width: 300px;
}

.mw-320 {
  max-width: 320px;
}

.mw-360 {
  max-width: 360px;
}

.mw-480 {
  max-width: 480px;
}

.mw-760 {
  max-width: 760px;
}

.mw-1200 {
  max-width: 1200px;
}

.miw-50 {
  min-width: 50px;
}

.miw-225 {
  min-width: 225px;
}

.miw-250 {
  min-width: 250px;
}

.miw-300 {
  min-width: 300px;
}

.miw-320 {
  min-width: 320px;
}

.miw-360 {
  min-width: 360px;
}

.miw-480 {
  min-width: 480px;
}

.miw-760 {
  min-width: 760px;
}

.miw-1200 {
  min-width: 1200px;
}

.truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate.line-1 {
  -webkit-line-clamp: 1;
}

.truncate.line-2 {
  -webkit-line-clamp: 2;
}

.truncate.line-3 {
  -webkit-line-clamp: 3;
}

.truncate.line-4 {
  -webkit-line-clamp: 4;
}

.truncate.line-5 {
  -webkit-line-clamp: 5;
}

.bg-white {
  background-color: #fff;
}

.bg-default {
  background-color: var(--theme-default-bg);
}

.bg-primary {
  background-color: var(--theme-main);
}

.bg-secondary {
  background-color: var(--theme-secondary);
}

.bg-main-light {
  background-color: var(--theme-main-light);
}

.bg-secondary-light {
  background-color: var(--theme-secondary-light);
}

.align-content-center {
  align-content: center !important;
}

.align-content-start {
  align-content: start;
}

.align-item-baseline {
  -webkit-box-align: baseline;
          align-items: baseline;
}

.align-item-center {
  -webkit-box-align: center;
          align-items: center;
}

.align-item-start {
  -webkit-box-align: start;
          align-items: start;
}

.align-item-end {
  -webkit-box-align: end;
          align-items: end;
}

.justify-left {
  -webkit-box-pack: left;
          justify-content: left;
}

.justify-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.justify-item-center {
  justify-items: center;
}

.justify-item-start {
  justify-items: start;
}

.justify-item-end {
  justify-items: end;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.file-upload-dropzone {
  min-height: auto !important;
  text-align: center;
  -webkit-box-align: center;
          align-items: center;
  border: 2px dashed #E0E2E5 !important;
}

.file-upload-dropzone .dropzone-preview .dz-preview * {
  display: none;
}

.file-upload-dropzone .dropzone-preview .dz-preview .dz-image {
  display: block;
}

.only-mobile,
.mobile-tablet {
  display: block !important;
}

.only-mobile.grid,
.mobile-tablet.grid {
  display: grid !important;
}

.only-mobile.flex,
.mobile-tablet.flex {
  display: -webkit-box !important;
  display: flex !important;
}

.only-tablet,
.only-desktop,
.tablet-desktop {
  display: none !important;
}

.only-tablet.grid,
.only-desktop.grid,
.tablet-desktop.grid {
  display: none !important;
}

.only-tablet.flex,
.only-desktop.flex,
.tablet-desktop.flex {
  display: none !important;
}

@media screen and (min-width: 600px) {
  .section-padding {
    padding: 96px 64px;
  }

  .section-padding-md {
    padding: 64px;
  }

  .section-padding-sm {
    padding: 40px 64px;
  }

  .popup-viewer {
    padding: 35px;
  }

  .cards .card.card-sq {
    width: 200px;
    height: 200px;
  }

  .cards .card.card-md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .banner-sect .banner {
    padding: 96px 0;
  }

  .flex-md {
    display: -webkit-box;
    display: flex;
  }

  .grid-md {
    display: grid;
  }

  .grid-md.template-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-md.template-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-md.template-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-md.template-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-md.template-md-2-1 {
    grid-template-columns: 2fr 1fr;
  }

  .grid-md .grid-column-md-1-3 {
    grid-column: 1/3;
  }

  .grid-md .grid-column-md-auto {
    grid-auto-flow: column;
  }

  .gap-md-0 {
    gap: 0px;
  }

  .gap-md-4 {
    gap: 4px;
  }

  .gap-md-8 {
    gap: 8px;
  }

  .gap-md-12 {
    gap: 12px;
  }

  .gap-md-16 {
    gap: 16px;
  }

  .gap-md-24 {
    gap: 24px;
  }

  .gap-md-32 {
    gap: 32px;
  }

  .gap-md-40 {
    gap: 40px;
  }

  .gap-md-48 {
    gap: 48px;
  }

  .gap-md-64 {
    gap: 64px;
  }

  .gap-md-96 {
    gap: 96px;
  }

  .gap-md-24-0 {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 0;
  }

  .gap-md-24-48 {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 48px;
  }

  .gap-md-32-64 {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 64px;
  }

  .w-md-50 {
    width: 50%;
  }

  .w-md-100 {
    width: 100%;
  }

  .w-md-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .mw-md-225 {
    max-width: 225px;
  }

  .mw-md-250 {
    max-width: 250px;
  }

  .mw-md-300 {
    max-width: 300px;
  }

  .mw-md-320 {
    max-width: 320px;
  }

  .mw-md-360 {
    max-width: 360px;
  }

  .mw-md-480 {
    max-width: 480px;
  }

  .mw-md-760 {
    max-width: 760px;
  }

  .mw-md-1200 {
    max-width: 1200px;
  }

  .miw-md-225 {
    min-width: 225px;
  }

  .miw-md-250 {
    min-width: 250px;
  }

  .miw-md-300 {
    min-width: 300px;
  }

  .miw-md-320 {
    min-width: 320px;
  }

  .miw-md-360 {
    min-width: 360px;
  }

  .miw-md-480 {
    min-width: 480px;
  }

  .miw-md-760 {
    min-width: 760px;
  }

  .miw-md-1200 {
    min-width: 1200px;
  }

  .only-mobile {
    display: none !important;
  }

  .only-mobile.grid {
    display: none !important;
  }

  .only-mobile.flex {
    display: none !important;
  }

  .only-tablet,
  .tablet-desktop {
    display: block !important;
  }

  .only-tablet.grid,
  .tablet-desktop.grid {
    display: grid !important;
  }

  .only-tablet.flex,
  .tablet-desktop.flex {
    display: -webkit-box !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1200px) {
  .section-padding {
    padding: 96px 128px;
  }

  .section-padding-md {
    padding: 64px 128px;
  }

  .section-padding-sm {
    padding: 40px 128px;
  }

  .popup-viewer {
    padding: 50px;
  }

  .cards .card.card-sq {
    width: 218px;
    height: 218px;
  }

  .cards .card.card-lg-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .text-lg-center {
    text-align: center;
  }

  .flex-lg {
    display: -webkit-box;
    display: flex;
  }

  .grid-lg {
    display: grid;
  }

  .grid-lg.template-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-lg.template-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-lg.template-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-lg.template-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-lg.template-lg-2-1 {
    grid-template-columns: 2fr 1fr;
  }

  .grid-lg .grid-column-lg-1-3 {
    grid-column: 1/3;
  }

  .grid-lg .grid-column-lg-auto {
    grid-auto-flow: column;
  }

  .gap-lg-0 {
    gap: 0px;
  }

  .gap-lg-4 {
    gap: 4px;
  }

  .gap-lg-8 {
    gap: 8px;
  }

  .gap-lg-12 {
    gap: 12px;
  }

  .gap-lg-16 {
    gap: 16px;
  }

  .gap-lg-24 {
    gap: 24px;
  }

  .gap-lg-32 {
    gap: 32px;
  }

  .gap-lg-40 {
    gap: 40px;
  }

  .gap-lg-48 {
    gap: 48px;
  }

  .gap-lg-64 {
    gap: 64px;
  }

  .gap-lg-96 {
    gap: 96px;
  }

  .gap-lg-24-0 {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 0;
  }

  .gap-lg-24-48 {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 48px;
  }

  .gap-lg-32-64 {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 64px;
  }

  .w-lg-50 {
    width: 50%;
  }

  .w-lg-100 {
    width: 100%;
  }

  .w-lg-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .mw-lg-225 {
    max-width: 225px;
  }

  .mw-lg-250 {
    max-width: 250px;
  }

  .mw-lg-300 {
    max-width: 300px;
  }

  .mw-lg-320 {
    max-width: 320px;
  }

  .mw-lg-360 {
    max-width: 360px;
  }

  .mw-lg-480 {
    max-width: 480px;
  }

  .mw-lg-760 {
    max-width: 760px;
  }

  .mw-lg-1200 {
    max-width: 1200px;
  }

  .miw-lg-225 {
    min-width: 225px;
  }

  .miw-lg-250 {
    min-width: 250px;
  }

  .miw-lg-300 {
    min-width: 300px;
  }

  .miw-lg-320 {
    min-width: 320px;
  }

  .miw-lg-360 {
    min-width: 360px;
  }

  .miw-lg-480 {
    min-width: 480px;
  }

  .miw-lg-760 {
    min-width: 760px;
  }

  .miw-lg-1200 {
    min-width: 1200px;
  }

  .only-tablet,
  .mobile-tablet {
    display: none !important;
  }

  .only-tablet.grid,
  .mobile-tablet.grid {
    display: none !important;
  }

  .only-tablet.flex,
  .mobile-tablet.flex {
    display: none !important;
  }

  .only-desktop {
    display: block !important;
  }

  .only-desktop.grid {
    display: grid !important;
  }

  .only-desktop.flex {
    display: -webkit-box !important;
    display: flex !important;
  }
}

.banner {
  padding: 8px;
  height: 627px;
  background-color: #fff;
}

.banner .banner-carousel {
  height: 100%;
  border: 1px solid #eff0f2;
  border-radius: 32px;
  overflow: hidden;
}

.banner .banner-carousel .owl-item .item {
  height: 611px;
  background-color: var(--theme-default-bg);
}

.banner .banner-carousel .owl-item .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.banner .banner-carousel .owl-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  align-content: center;
}

.banner .banner-carousel .banner-nav {
  display: -webkit-box;
  display: flex;
  padding: 0 10px;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.banner .banner-carousel .banner-nav .bnav-prev,
.banner .banner-carousel .banner-nav .bnav-next {
  width: 56px;
  height: 56px;
  align-content: center;
  text-align: center;
  background-color: #fff;
  border: 1px solid #eff0f2;
  border-radius: 999px;
  box-shadow: 0 2px 4px -2px rgba(23, 23, 24, 0.0588235294);
  cursor: pointer;
}

.banner .banner-carousel .banner-dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  height: 44px;
  padding: 16px;
  display: -webkit-box;
  display: flex;
  gap: 12px;
  border: 1px solid #eff0f2;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 2px 4px -2px rgba(23, 23, 24, 0.0588235294);
}

.banner .banner-carousel .banner-dots .banner-dot {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.banner .banner-carousel .banner-dots .banner-dot.active span {
  background-color: var(--theme-main);
}

.banner .banner-carousel .banner-dots .banner-dot span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #eff0f2;
}

.banner .banner-carousel .item {
  width: 100%;
}

.banner .banner-carousel .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.visi {
  padding: 64px 16px;
  font-weight: bold;
  background-color: #fff;
}

.impacts {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(var(--theme-main-light)));
  background: linear-gradient(to bottom, #ffffff 0%, var(--theme-main-light) 100%);
}

.impacts .counts {
  justify-items: center;
}

.impacts .cards {
  margin: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.impacts .cards .card {
  padding: 16px;
  aspect-ratio: 1/1;
}

.impacts .cards .card:nth-child(odd) {
  justify-self: end;
}

.impacts .cards .card:nth-child(even) {
  justify-self: start;
}

.impacts .cards .card:last-child:nth-child(odd) {
  grid-column: 1/-1;
  justify-self: center;
}

.wave {
  font-size: 0;
  border-top: 1px solid;
}

.wave .wave-content {
  border-top: 1px solid;
}

.sand {
  background-color: var(--theme-secondary);
}

.sand .title {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.sand .box {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.sand .icon {
  position: absolute;
  top: 0;
  width: calc(100% - 32px);
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.sand .icon:nth-child(2) {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media screen and (min-width: 600px) {
  .banner {
    padding: 16px;
    height: 354px;
  }

  .banner .banner-carousel .owl-item .item {
    height: 322px;
  }

  .banner .banner-carousel .banner-nav {
    padding: 0 64px;
  }

  .visi {
    padding: 64px;
  }

  .uwa .links .btns {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .sand .icon {
    width: calc(100% - 128px);
  }
}

@media screen and (min-width: 1200px) {
  .banner {
    height: 648px;
  }

  .banner .banner-carousel .owl-item .item {
    height: 616px;
  }

  .banner .banner-carousel .banner-nav {
    padding: 0 128px;
  }

  .visi {
    padding: 64px 128px;
  }

  .impacts .cards .card:nth-child(even) {
    -webkit-transform: translateY(48px);
            transform: translateY(48px);
  }

  .impacts .cards .card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: center;
  }

  .sand .icon {
    width: calc(100% - 256px);
  }
}

.about-us {
  display: -webkit-box;
  display: flex;
  padding: 48px 16px;
  gap: 48px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.about-us .image {
  border-radius: 32px;
  overflow: hidden;
}

.about-us .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-us.t-standard .image {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.about-us.t-standard .content-text {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.about-us.t-standard.revert .image {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.about-us.t-standard.revert .content-text {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.about-us.t-slogan {
  padding: 0 !important;
  display: grid;
  grid-template: none;
  gap: 0;
  align-content: center;
}

.about-us.t-slogan .slogan-text {
  position: relative;
  align-content: center;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.about-us.t-slogan .slogan-text .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-us.t-slogan .slogan-text .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-us.t-slogan .content-text {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.about-us.t-slogan > * {
  padding: 48px 16px;
}

.about-us.t-cards {
  display: grid !important;
}

.about-us.t-cards .content-text {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.about-us.t-cards .content-text .parag > * {
  width: 100%;
}

.about-us.t-cards .card-list {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.about-us.t-cards .card-list .cards .card {
  height: 100%;
}

.about-us.t-cards .card-list .cards .card .image {
  width: 80px;
  height: 80px;
  border-radius: 0;
}

.about-us > * {
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .about-us {
    padding: 96px 64px;
  }

  .about-us.t-slogan > * {
    padding: 96px 64px;
  }
}

@media screen and (min-width: 1200px) {
  .about-us {
    padding: 96px 128px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .about-us.t-slogan {
    grid-template-columns: 1fr 1fr;
  }

  .about-us.t-slogan > * {
    padding: 96px 128px;
  }
}

.about-us-wave {
  padding: 64px 16px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .about-us-wave {
    padding: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .about-us-wave {
    padding: 64px 128px;
  }
}

.our-team.members {
  padding: 48px 16px;
}

.our-team.members .member-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (min-width: 600px) {
  .our-team.members {
    padding: 96px 64px;
  }
}

@media screen and (min-width: 1200px) {
  .our-team.members {
    padding: 96px 128px;
  }
}

.impacts-areas {
  -webkit-box-align: center;
          align-items: center;
}

.impacts-areas .image {
  overflow: hidden;
  border-radius: 32px;
}

.impacts-areas .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.impacts-areas > * {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .impacts-areas.revert-lg > :nth-child(1) {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

.donation-form label {
  font-weight: normal;
}

.donation-form .tabs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.donation-form .tab-contents {
  position: relative;
}

.donation-form .tab-contents .online-box {
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}

.donation-form .tab-contents .manual-box {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.donation-form .tab-contents .content-box {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.donation-form .tab-contents .content-box.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.donation-form .tab-contents .content-box .steps .numbering {
  height: 32px;
  aspect-ratio: 1/1;
  border: 1px solid #141619;
  border-radius: 999px;
  align-content: center;
  text-align: center;
}

.donation-form .tab-contents .content-box .steps .field .dona-amount > li.active {
  background-color: var(--theme-main);
  color: #fff;
}

.donation-form .tab-contents .content-box .steps .field .custom-amount {
  display: none;
}

.donation-form .tab-contents .content-box .steps .field .custom-amount.show {
  display: block;
}

.donation-form .tab-contents .content-box .steps .field .help {
  padding: 24px;
  border: 1px solid #14A3FA;
  background-color: #D0EDFE;
  color: #06314B;
  border-radius: 24px;
}

.donation-form .tab-contents .content-box .steps .field .align-center {
  -webkit-box-align: center;
          align-items: center;
}

.donation-form .tab-contents .content-box .dona-amount {
  flex-wrap: wrap;
}

.donation-form .tab-contents .content-box .instruction {
  align-content: start;
}

.donation-form .tab-contents .content-box .qr .image {
  max-height: 560px;
}

.donation-form .tab-contents .content-box .qr .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.donation-form .tab-contents:has(.online-box.active) .manual-box {
  position: absolute;
}

.donation-form .tab-contents:has(.manual-box.active) .online-box {
  position: absolute;
}

@media screen and (min-width: 600px) {
  .donation-form .tab-contents .content-box .steps.btns {
    padding-left: 56px;
  }
}

@media screen and (min-width: 1200px) {
  .donation-form .tab-contents .manual-box.active {
    display: -webkit-box;
    display: flex;
  }
}

.news-banner {
  position: relative;
  height: 584px;
  border-radius: 32px;
  align-content: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.news-banner .box {
  position: relative;
  padding: 24px;
  z-index: 2;
}

.news-banner .box > a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline !important;
}

.news-banner .box > a:hover {
  color: white;
  font-weight: bold;
}

.news-banner.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.news-banner.overlay.overlay-full::before {
  background: rgba(0, 0, 0, 0.6);
}

.news-banner.content-center {
  align-content: center;
}

.news-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.news-box .top {
  -webkit-box-align: center;
          align-items: center;
}

.news-box .grids .image {
  aspect-ratio: 3/2;
  border-radius: 32px;
  overflow: hidden;
}

.news-box .grids .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-box .news-paginate {
  width: 100%;
  align-self: stretch;
}

.d-image {
  aspect-ratio: 3/2;
  border-radius: 32px;
  overflow: hidden;
}

.d-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-box .msf-input.search {
  padding-right: 48px;
}

.search-box .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.search-box .search-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (min-width: 600px) {
  .news-banner {
    height: 322px;
  }

  .news-banner .box {
    padding: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .news-banner {
    height: 616px;
  }

  .news-banner .box {
    padding: 64px;
  }
}

@font-face {
  font-family: open_sans;
  src: url("/css/fonts/Open_Sans/OpenSans-Regular.ttf");
}

body {
  font-family: "open_sans";
}

p {
  font-size: 16px;
  color: #232323;
}

p.with-dot {
  padding-left: 15px;
}

p.with-dot:before {
  content: "\F0DA";
  position: relative;
  float: left;
  left: -15px;
  width: 0;
  color: var(--theme-main);
  font-family: "FontAwesome" !important;
}

p.with-dot.indent-dot {
  padding-left: 30px;
}

p.left-align {
  text-align: left;
}

h3 {
  font-weight: bold !important;
}

.font-size-fixed {
  font-size: 16px;
}

.primary-text {
  color: var(--theme-main);
}

table.timeline {
  margin: 0 -10px;
  width: calc(100% + 20px);
  table-layout: fixed;
  color: #000000;
}

table.timeline tr > td:nth-of-type(1) {
  width: 20%;
}

table.timeline tr > td:nth-of-type(2) ul li {
  margin-left: 20px;
  margin-bottom: 10px;
}

table.timeline tr td {
  padding: 10px;
  border: 1px solid #e4e4e4;
}

table.timeline tr td ul li {
  list-style: initial;
}

.btn {
  border-radius: 200px;
}

.ellipsis-3-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.form-control.is-invalid {
  border-color: #ff0000 !important;
}

.invalid-feedback {
  color: #ff0000;
}

span.asterisk {
  color: #ff0000;
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 300px;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 5px #b8b8b8;
  text-align: center;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  cursor: pointer;
}

.toast.success {
  background-color: rgba(40, 167, 69, 0.8);
}

.toast.error {
  background-color: rgba(220, 53, 69, 0.8);
}

.toast:hover.success {
  background-color: #28a745;
}

.toast:hover.error {
  background-color: #dc3545;
}

.toast.popup-msg {
  width: 90%;
  max-width: 700px;
}

.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:hover {
  color: initial;
}

.open {
  position: relative;
}

.open > .dropdown-menu {
  margin: -1px 0 0 0;
}

.open > .dropdown-menu .dropdown-item {
  display: block;
  float: none;
  padding: 10px;
  white-space: nowrap;
}

.open > .dropdown-menu .dropdown-item:hover {
  background-color: #c2f0ff;
}

header {
  position: fixed;
  box-shadow: #000000 0px 3px 10px -8px;
}

header nav {
  padding: 0 20px;
  background: #ffffff;
  font-size: 0;
}

header nav .logo.image {
  display: inline-block;
  width: 20%;
  padding: 4px;
  overflow: hidden;
  vertical-align: middle;
}

header nav .logo.image .logo {
  width: 100%;
  height: 100;
  max-width: 200px;
  max-height: 64px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

header nav .nav-bar {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
}

header nav .nav-bar ul.ownmenu .auth-btn {
  float: right;
}

header nav:before {
  content: none;
}

header .container > .row > .logo {
  padding: 10px;
  height: 100px;
  max-height: 100px;
}

header .container > .row > .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

header .fundraised-meter {
  padding: 20px 0 10px 0;
}

header .fundraised-meter .total-fundraised-meter {
  width: 100%;
  height: 20px;
  background-color: #e8e8e8;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

header .fundraised-meter .total-fundraised-meter .progress-bar {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 0 5px -1px #b8b8b8;
}

header .fundraised-meter .count {
  padding-top: 10px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
}

header .fundraised-meter .count .val {
  font-weight: bold;
  font-size: 18px;
}

header .fundraised-meter .count .pricetag {
  font-size: 10px;
}

header .btn-right {
  text-align: right;
}

header .btn-right .btn {
  margin-top: 25px;
  display: inline-block;
  padding: 10px;
}

header .btn-right .btn i {
  margin-right: 0;
}

header .btn-right .btn .text {
  margin-left: 10px;
}

header .btn-right .btn.long {
  width: 100%;
}

header .btn-right .btn.long .text {
  display: inline-block;
}

header .btn-right .btn.short {
  width: 20%;
}

header .btn-right .btn.short .text {
  display: none;
}

header .btn-right .btn.fundraiser-search .text {
  margin-left: 0;
  margin-right: 10px;
  width: calc(100% - 24px);
  border: none;
  text-indent: 5px;
}

header .btn-right .btn:hover,
header .btn-right .btn.hovered {
  background: var(--theme-main);
  color: #303030;
}

header .btn-right .btn:hover i,
header .btn-right .btn.hovered i {
  color: #303030;
}

header .btn-right .search-result-container {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 60%;
  height: 200px;
  z-index: 9999;
  background-color: #fff;
  border: 1px solid var(--theme-main);
  overflow-y: scroll;
  overflow-x: hidden;
}

header .btn-right .search-result-container a {
  display: block;
  height: 40px;
  text-align: center;
  line-height: 40px;
  white-space: nowrap;
}

header .btn-right .search-result-container a:hover {
  color: #000;
  background-color: #c2f0ff;
}

#payment_iframe {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}

#banner .flex-banner .slides li {
  overflow: hidden;
}

#banner .flex-banner .slides li img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sub-banner {
  margin-top: 0;
}

.sub-banner .overlay {
  padding: 200px 0;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.sub-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.enevtii .up-com-event .img-responsive {
  width: 100%;
}

.enevtii .donate-price .tabii-price {
  text-align: center;
}

.enevtii .donate-price #year-slider .slider-labels li {
  cursor: pointer;
}

.cases .container .view-all {
  text-align: center;
}

.cases .container .view-all a {
  text-transform: capitalize;
  font-weight: bold;
}

.cases li img {
  height: 16vw;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.cases li .donate-detail {
  height: 210px;
}

.cases li .donate-detail .head {
  color: #232323;
  font-size: 15px;
}

.cases li .donate-detail .head .title {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cases li .donate-detail p.description {
  height: 40px;
  max-height: 40px;
  line-height: 20px;
  overflow: hidden;
}

.donatores .container li .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.donatores .container li .donor-details {
  padding-left: 5px;
  padding-right: 5px;
}

.donatores .container li .donor-details .name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.donatores .container li .donor-details .address {
  height: 40px;
  max-height: 40px;
  line-height: 20px;
  overflow: hidden;
}

.event-pages ul.events {
  overflow-x: hidden;
}

.event-pages .date-place span {
  display: block;
  font-size: 18px;
}

.event-pages .date-place .indent {
  display: inline-block;
  padding-left: 25px;
}

.event-pages .description {
  font-size: 18px;
}

.event-pages .contact-info > p.name {
  text-transform: capitalize;
}

.event-pages .donatores ul.row li {
  padding: 0 15px 30px;
}

.event-pages .btn-join-now {
  margin-top: 0;
  width: 100%;
}

.top-bar {
  background-color: #9cc4e4;
  border-bottom: none;
}

.top-bar p {
  font-size: 14px !important;
}

.top-bar .left-bar-side p {
  color: #fff;
}

.top-bar .left-bar-side .logo {
  max-height: 40px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.top-bar .right-bar-side li p {
  color: #fff;
}

.top-bar .right-bar-side li a {
  width: auto;
}

section.form .event-info .events li .info {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
}

section.form .event-info .events li .info div > * {
  display: inline-block;
}

section.form .event-info .events li .info div span {
  margin-left: 10px;
}

.recent-donors {
  margin: 0 0 30px 0;
  padding: 15px 15px 0;
  max-height: 400px;
  background-color: #fff;
  overflow-y: scroll;
}

.recent-donors li {
  margin-bottom: 15px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #e8e8e8;
}

.recent-donors li .image {
  margin: 0 15px 0 0;
  float: left;
  width: 50px;
  height: 50px;
}

.recent-donors li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.recent-donors li .info {
  width: 100%;
}

.recent-donors li .info .left {
  float: left;
}

.recent-donors li .info .left .name {
  font-size: 20px;
  text-transform: capitalize;
}

.recent-donors li .info .left .donated .fa,
.recent-donors li .info .left .comment .fa {
  width: 20px;
  text-align: center;
}

.recent-donors li .info .left .donated .fa.fa-dollar,
.recent-donors li .info .left .comment .fa.fa-dollar {
  color: #28a745;
}

.recent-donors li .info .left .donated .fa.fa-comment,
.recent-donors li .info .left .comment .fa.fa-comment {
  color: #9cc4e4;
}

.recent-donors li .info .left .donated span,
.recent-donors li .info .left .comment span {
  padding-left: 10px;
}

.recent-donors li .info .right {
  float: right;
}

.recent-donors li .info .right .date {
  font-size: 13px;
}

.btn_to_fundraise_page {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 10px;
  width: 100%;
}

.btn_wrap {
  white-space: normal;
}

.profile.side-bar {
  overflow-x: hidden;
}

.profile.side-bar .sidebar-title {
  margin: 0;
  padding: 10px 15px;
  background-color: var(--theme-main);
}

.profile.side-bar .sidebar-border {
  border: 1px solid var(--theme-main);
  padding: 15px;
  background-color: #fff;
}

.profile.side-bar .current-event {
  border-bottom: 0;
}

.profile.side-bar .current-event .title {
  font-size: 15px;
  font-weight: bold;
}

.profile.side-bar .current-event .target span {
  color: #848484;
}

.profile.side-bar .progress-bars {
  margin-bottom: 30px;
}

.profile.side-bar .record .sidebar-border {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.profile.side-bar .record .sidebar-border span {
  display: block;
  font-size: 25px;
}

.profile.side-bar .qrcode img {
  width: 100%;
  height: 100%;
}

.participant-profile table {
  font-size: 15px;
}

.participant-profile table td.icon {
  padding-right: 5px;
}

.participant-profile.info {
  text-transform: capitalize;
}

.participant-profile.info td.title {
  padding-right: 20px;
  font-size: 13px;
}

.participant-profile.info td.value {
  font-size: 15px;
  font-weight: bold;
}

.participant-profile.info td .update_target {
  margin-left: 10px;
  padding: 1px 5px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  font-size: 10px;
  text-transform: capitalize;
  color: #000;
  background-color: var(--theme-main);
  vertical-align: middle;
}

.participant-profile.info td .update_target:hover {
  background-color: #9cc4e4;
  color: #fff;
}

.participant-profile.slogan {
  margin: 20px 0;
  max-height: 200px;
  font-size: 20px;
  font-weight: bold;
  overflow-y: scroll;
}

.participant-profile.slogan img {
  margin: 0 15px;
  max-width: 25px;
  max-height: 25px;
  vertical-align: middle;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.participant-profile.sharebutton .sharethis-inline-share-buttons .st-btn {
  margin-bottom: 5px;
  display: inline-block !important;
}

.participant-profile #update-donor-list-visibility {
  float: right;
  padding: 3px 10px;
  font-size: 15px;
  color: #232323;
  text-transform: capitalize;
  background-color: var(--theme-main);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  cursor: pointer;
}

.participant-profile #update-donor-list-visibility a {
  color: inherit;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.participant-profile #update-donor-list-visibility a:hover {
  text-decoration: unset;
}

.participant-profile #update-donor-list-visibility:hover {
  background-color: #9cc4e4;
}

.participant-profile #update-donor-list-visibility:hover a {
  color: #fff;
}

.item-info .nav-tabs li.setting .btn.popup-with-zoom-anim {
  padding: 10px 15px;
  font-size: 20px;
  line-height: 10px;
  background-color: var(--theme-main);
  color: #000;
}

.item-info .nav-tabs li.setting .btn.popup-with-zoom-anim:hover {
  background-color: #fff;
  color: #000;
}

.progress-bar.progress-bar-striped {
  min-width: 40px;
  max-width: 100%;
}

.tab-content {
  margin-bottom: 20px !important;
}

.tab-content span.highlight {
  font-size: 16px;
  font-weight: bold;
  color: #232323;
  text-transform: uppercase;
}

.popup_form .form-group.selection .btn-group {
  margin-bottom: 12px;
  border: 1px solid #ebeef0;
  display: inline-block;
  width: 100%;
  height: 40px;
}

.popup_form .form-group.selection .btn-group .btn.dropdown-toggle.selectpicker {
  background: #fafbfb;
}

.popup_form .form-group.selection .btn-group .dropdown-menu {
  top: 0;
  width: 100%;
}

.popup_form .form-group.selection .btn-group .dropdown-menu li a span.text {
  white-space: normal;
}

.popup_form .form-group .dona-amount {
  margin-bottom: 0;
}

.popup_form .form-group .dona-amount li {
  margin-bottom: 12px;
  cursor: pointer;
}

.popup_form .form-group .dona-amount li.order.active {
  display: none;
}

.popup_form .row.per-info {
  margin: 0;
}

.popup_form .row.per-info > li,
.popup_form .row.per-info > .receipt-checkbox > li {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.popup_form .row.per-info li.form-group input[name=anonymous],
.popup_form .row.per-info li.form-group input[name=tax],
.popup_form .row.per-info li.form-group input[name=receiptDonor] {
  margin-top: 0;
  margin-right: 10px;
  height: 25px;
  width: 25px;
  vertical-align: middle;
}

.popup_form .row.per-info li.form-group input[name=receiptDonor] {
  margin-top: 12px;
}

.popup_form .row.per-info li.form-group input,
.popup_form .row.per-info li.form-group textarea {
  margin: 0;
  margin-bottom: 12px;
  text-transform: none;
}

.popup_form .row.per-info li.form-group .checkbox-text {
  width: 80%;
  vertical-align: middle;
  font-size: 15px;
  text-transform: uppercase;
}

.popup-btn {
  margin: 0 0 15px !important;
  width: 100%;
}

#application_form_selection > label {
  width: 100%;
}

#application_form_selection > label .selectpicker {
  font-size: 13px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#footer-container footer h6 {
  color: #fff;
  font-size: 20px;
}

#footer-container footer p {
  color: #fff;
}

#footer-container footer .container > .row {
  padding-bottom: 10px;
}

#footer-container footer .container > .row .shadow {
  padding-bottom: 30px;
}

#footer-container footer ul.links li a {
  color: #ffffff;
}

#footer-container footer .rights {
  padding-bottom: 15px;
  height: unset;
  background-color: #000;
}

#footer-container footer .rights p {
  color: #fff;
}

#footer-container footer .rights a {
  color: inherit;
}

.footer-link {
  color: var(--theme-main);
}

.footer-link:hover {
  color: #fff;
}

.footer-link:focus {
  color: var(--theme-main);
}

.content > .application-form {
  padding: 60px 0;
}

#event_application_form label {
  text-transform: capitalize;
}

#event_application_form li {
  margin-bottom: 10px;
}

#event_application_form li label[for=state] {
  width: 100%;
}

#event_application_form li input[type=radio] {
  margin: 0 0 0 15px;
  display: inline-block;
  width: 15px;
  vertical-align: middle;
  box-shadow: none;
}

#event_application_form li input[type=radio]:focus {
  border: none;
  outline: none;
}

.dropdown-menu.open {
  top: 0;
}

.consent-form .consent-form-label {
  position: absolute;
  display: block;
  width: calc(100% - 30px);
  height: 34px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.consent-form .consent-form-label:after {
  position: absolute;
  padding: 5px 10px;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 5px;
  background-color: #e9ecef;
  content: "Browse";
}

.consent-form .consent-form-input {
  opacity: 0;
}

#private_event_password_input {
  margin-bottom: 0;
  border-radius: 5px;
}

#private_event_password_input.is-invalid {
  border-color: #ff0000;
}

.error-message {
  color: #ff0000;
}

.error-message#private_event_password_error_message {
  padding: 0 10px;
}

.success-message {
  color: #28a745;
}

.error-page .container .error-text {
  margin: auto;
  max-width: 80%;
}

.error-page .container .error-text h2 {
  text-shadow: none;
  -webkit-text-stroke: initial;
}

.contact-us .selectpicker[data-id=contact-us-services] {
  background: none;
}

.contact-us .selectpicker[data-id=contact-us-services]:focus {
  outline: none !important;
}

.content.sponsor .sponsor-gallery {
  margin-bottom: 20px;
  float: left;
  height: 300px;
}

.content.sponsor .sponsor-gallery > section {
  height: 100%;
}

.content.sponsor .sponsor-gallery:hover .item-over {
  background-color: rgba(0, 0, 0, 0.7411764706);
}

.content.sponsor .sponsor-gallery img.img-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#region-selection {
  position: fixed;
  display: -webkit-inline-box;
  display: inline-flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
}

#region-selection .pop-inner {
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 8fr 8fr;
  padding: 50px;
  width: 600px;
  height: 400px;
  background-color: #fff;
}

#region-selection .pop-inner .region_btn {
  margin: 10px;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--theme-main);
  color: #000;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}

#region-selection .pop-inner .region_btn:hover {
  color: #fff;
  background-color: #000;
}

#region-selection .pop-inner .region_btn .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#region-selection .pop-inner:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-transform: capitalize;
  content: "choose region:";
}

#region-selection .pop-inner .times-icon {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

#change_region {
  cursor: pointer;
}

.how-can-help .help-fea {
  padding-top: 125px;
}

.how-can-help .help-fea li {
  padding: 8px 0 !important;
}

.how-can-help > .container {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.how-can-help > .container > .row {
  margin: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.how-can-help > .container > .row li p {
  margin-bottom: 20px;
}

.how-can-help > .container > .row .program .inner .logo {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.how-can-help > .container > .row .program.white-bg {
  background: rgba(255, 255, 255, 0.5);
}

.how-can-help > .container > .row .program.white-bg::before {
  background: rgba(255, 255, 255, 0.5);
}

.how-can-help > .container.pinkbg {
  background-color: #c2f0ff;
}

.how-can-help .big-text {
  position: relative;
}

.how-can-help:before {
  display: none;
}

a.reference-link {
  font-size: large;
  font-weight: bold;
  color: var(--theme-main);
}

a.reference-link:hover {
  color: #434343;
}

.testi {
  padding: 50px 0;
}

.testi:before {
  height: 90px !important;
}

.testi.how-to-join {
  padding: 5vh 0;
  background-color: #f2f2f2;
}

.testi.how-to-join:before {
  content: none;
}

.testi.how-to-join .container {
  margin-top: 70px;
  margin-bottom: 100px;
}

.testi.how-to-join .container > .row > div {
  margin-bottom: 20px;
}

.testi.how-to-join .container .with-bg-drk iframe {
  position: relative;
  z-index: 2;
}

.testi.how-to-join .title {
  margin: 0;
  margin-bottom: 20px;
  padding: 10px;
  background-color: var(--theme-main);
  font-size: 18px;
  text-transform: capitalize;
  color: #232323;
}

.testi.how-to-join .title span {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
}

.testi.get-involve .col-md-6.with-bg-drk-left {
  text-align: right;
}

.testi.get-involve .col-md-6.with-bg-drk-left:before {
  margin-top: 40px;
  position: absolute;
  top: 0px;
  right: 30%;
  width: 1000%;
  height: 100%;
  background: #434343;
  content: "";
  z-index: 0;
}

@media (max-width: 991px) and (min-width: 768px) {
  .testi.get-involve .col-md-6.with-bg-drk-left:before {
    right: -30%;
  }
}

.testi.get-involve .col-md-6.with-bg-drk-left img {
  position: relative;
}

.testi.get-involve .col-md-6 .title {
  padding: 10px;
  background-color: var(--theme-main);
  font-size: 18px;
  text-transform: capitalize;
  color: #232323;
}

.testi.get-involve .col-md-6 .title span {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
}

.testi.get-involve .testi-slides .item-slide {
  margin-left: 0;
}

.testi.get-involve .addthis_involved {
  display: inline-block;
  vertical-align: top;
}

.testi.get-involve .addthis_involved.addthis_follow p {
  display: none;
}

.testi.get-involve .addthis_involved.addthis_share a:last-child {
  margin-right: 0;
}

.fea-service.about-gobald {
  margin-top: 0;
}

.fea-service.about-gobald li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fea-service.about-gobald.beneficiary-institution {
  margin-bottom: 20px;
}

.fea-service.about-gobald.beneficiary-institution .title {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}

.fea-service.about-gobald.beneficiary-institution li img {
  height: 100%;
  width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.community-content .title {
  margin-bottom: 50px;
  padding-top: 35px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #e8e9ea;
  font-size: 20px;
  text-transform: uppercase;
  color: #232323;
  background: #ffffff;
}

.community-content .donatores {
  padding-top: 20px;
}

.community-content .top-list .item {
  margin-bottom: 60px;
  position: relative;
}

.community-content .top-list .item .avatar {
  position: absolute;
  top: -20px;
  left: 0;
  width: 130px;
  height: 130px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 100%;
  overflow: hidden;
  z-index: 1;
}

.community-content .top-list .item .avatar img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.community-content .top-list .item .details {
  margin: 20px 0 20px 20px;
  padding: 10px 0 0 130px;
  width: calc(100% - 20px);
  min-height: 90px;
  background-color: #fff;
}

.community-content #fundraiser_search {
  margin: 28px 0 10px 0px;
  position: relative;
  height: 25px;
}

.community-content #fundraiser_search #fundraiser_search_input {
  height: 100%;
  text-indent: 30px;
  border: 1px solid #e8e8e8;
}

.community-content #fundraiser_search #fundraiser_search_input:focus {
  outline: 1px solid var(--theme-main);
}

.community-content #fundraiser_search #fundraiser_search_button {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 100%;
  text-align: center;
  background-color: var(--theme-main);
  color: #fff;
  border: 2px solid var(--theme-main);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  cursor: pointer;
}

/* Search Bar */

#record-container .search-container {
  margin-bottom: 15px;
}

#record-container .search-container .participant-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 40px;
  border-width: 2px;
  border-style: inset;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-color: light-dark(var(--theme-main), #858585);
  background-color: light-dark(var(--theme-main), #858585);
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
}

#record-container .search-container #participant-search-input {
  height: 40px;
  width: 100%;
  padding: 0 120px 0 20px;
  border-width: 2px;
  border-style: inset;
  border-radius: 100px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-color: light-dark(var(--theme-main), #858585);
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
}

#record-container .community-content {
  padding: 50px 0;
}

#record-container .community-content .participant-container {
  height: 300px;
  max-height: 400px;
  overflow-y: scroll;
}

#record-container .community-content .participant-container::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

#record-container .community-content .participant-container::-webkit-scrollbar-track {
  background: #e8e8e8;
}

#record-container .community-content .participant-container::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

#record-container .community-content .participant-container::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.content.media .col-md-9 .title {
  padding: 2px 15px;
  font-size: 17px;
  font-weight: bold;
  background-color: var(--theme-main);
}

.content.media .blog-post {
  margin-bottom: 0;
  padding: 10px;
  width: 100%;
}

.content.media .blog-post h5 {
  float: left;
}

.content.media .blog-post h5 a {
  margin: 0;
}

.content.media .blog-post .btn {
  float: right;
}

.proud .container > hr {
  margin: 20px auto;
}

.proud .container img {
  width: 100%;
}

.how-to-join-content {
  background-color: #ffffff !important;
}

.how-to-join .container {
  margin-top: 100px;
  margin-bottom: 100px;
}

.get-involved {
  padding-bottom: 100px !important;
}

.faq-session {
  padding: 50px 0;
}

.faq-session .panel-default > .panel-heading {
  background-color: var(--theme-main);
}

.faq-session .panel-default > .panel-heading > a {
  color: inherit;
}

#change_region {
  text-transform: uppercase;
}

.why-you-should-gobald {
  text-align: center;
  padding-bottom: 15vh;
  background-color: #c2f0ff;
}

.why-you-should-gobald .title {
  margin: 20px 0;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
}

.why-you-should-gobald .col-sm-4 {
  padding: 5vh 10px;
  text-align: center;
}

.why-you-should-gobald .col-sm-4 .image {
  margin: auto;
  margin-bottom: 30px;
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.why-you-should-gobald .col-sm-4 .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.why-you-should-gobald .col-sm-4 h4 {
  margin: 20px 0;
}

.why-you-should-gobald .col-sm-4 > p {
  text-align: justify;
}

.why-you-should-gobald > .btn {
  font-size: 35px;
}

.gridgallery {
  padding: 100px 0 0 0;
}

.gridgallery .container > .title {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.gridgallery .grid.gallery-frame {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 15px;
}

.gridgallery .grid.gallery-frame .grid-item {
  position: relative;
  height: 350px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.gridgallery .grid.gallery-frame .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gridgallery .grid.gallery-frame .grid-item .title {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  font-size: 17px;
  font-weight: bold;
  line-height: 50px;
  background-color: var(--theme-main);
  color: #000;
  opacity: 0;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.gridgallery .grid.gallery-frame .grid-item:hover .title {
  opacity: 0.9;
}

.gridgallery #gallerymodal .content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 90%;
  max-height: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-y: scroll;
}

.gridgallery #gallerymodal .content img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.gridgallery #gallerymodal .close {
  position: fixed;
  right: 10px;
  top: 10px;
  font-size: 40px;
  font-weight: bold;
  color: var(--theme-main);
  opacity: 1;
}

.participant-profile .grid-frame {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
  min-height: 250px;
}

.participant-profile .grid-frame .image {
  position: relative;
  box-shadow: 2px 2px 4px 0 #c3c3c3;
}

.participant-profile .grid-frame .image img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.participant-profile .grid-frame .image .bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.participant-profile .grid-frame .image .bottom-right .text {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  background: border-box;
  background-color: var(--theme-main);
  padding: 1px 5px 1px 14px;
  text-transform: capitalize;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  color: #000;
}

.participant-profile .grid-frame .image .bottom-right .button {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme-main);
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.participant-profile .grid-frame .image .bottom-right .button .fa {
  color: #000;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.participant-profile .grid-frame .image .bottom-right:hover .button,
.participant-profile .grid-frame .image .bottom-right:hover .text {
  background-color: #9cc4e4;
  color: #fff;
}

.participant-profile .grid-frame .image .bottom-right:hover .button .fa,
.participant-profile .grid-frame .image .bottom-right:hover .text .fa {
  color: #fff;
}

#update-shave-form .form-group {
  font-size: 20px;
}

#update-shave-form .form-group > div {
  margin-bottom: 10px;
}

input[type=radio].radio-btn {
  margin: 0;
  width: 25px;
  vertical-align: middle;
}

.donation-pop .pop-inner {
  overflow: hidden;
}

.donation-pop .pop-inner label.radiolabel {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: normal;
  width: auto;
}

.donation-pop .pop-inner div.display-inline {
  margin-right: 20px;
  display: inline-block;
}

.donation-pop .pop-inner ul.row.per-info {
  margin-left: 0;
  margin-right: 0;
}

.donation-pop .pop-inner ul.row.per-info.group-tshirt {
  margin: 0;
}

.donation-pop .pop-inner ul.row.per-info.group-tshirt > li > label {
  width: 15%;
}

.donation-pop .pop-inner ul.row.per-info.group-tshirt > li > input {
  width: 83%;
}

#register-slot-form #current_slot,
#group-register-slot-form #current_slot {
  text-transform: uppercase;
}

#register-slot-form input[type=radio],
#group-register-slot-form input[type=radio] {
  margin: 0;
  width: 15px;
  vertical-align: middle;
}

#register-slot-form .radio-row,
#group-register-slot-form .radio-row {
  margin-left: 0;
  margin-right: 0;
}

#register-slot-form .radio-row textarea[name=address],
#group-register-slot-form .radio-row textarea[name=address] {
  margin: 0;
}

#register-slot-form .radiolabel,
#group-register-slot-form .radiolabel {
  margin: 0;
  width: auto;
  text-transform: capitalize;
  font-weight: normal;
  vertical-align: middle;
}

.container.salon-schedule {
  padding: 70px 0;
}

.container.salon-schedule .date {
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-indent: 10px;
}

.container.salon-schedule .grid {
  margin: 0;
  margin-bottom: 15px;
  padding: 0 10px !important;
}

.container.salon-schedule .grid .grid-box {
  padding: 5px !important;
}

.container.salon-schedule .grid .grid-box .grid-header {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

.container.salon-schedule .grid .grid-box .grid-content {
  text-align: center;
}

.container.salon-schedule .grid .grid-box .grid-content > a {
  color: inherit;
}

.container.salon-schedule .grid .grid-box .grid-content > a:hover {
  color: inherit;
}

.container.salon-schedule .grid .grid-box .grid-content .cell {
  margin: 5px 0;
  display: block;
  height: 92px;
  background-color: #f2f2f2;
  overflow: hidden;
}

.container.salon-schedule .grid .grid-box .grid-content .cell:hover {
  background-color: #c2f0ff;
}

.container.salon-schedule .grid .grid-box .grid-content .cell.placeholder {
  background-color: transparent;
}

.container.salon-schedule .grid .grid-box .grid-content .cell > * {
  white-space: nowrap;
  line-height: 23px;
}

.container.salon-schedule .grid .grid-box .grid-content .cell.add {
  margin: auto;
  width: 80%;
  height: auto;
  font-weight: bold;
  background-color: var(--theme-main);
  border: 2px solid var(--theme-main);
  border-radius: 999px;
  line-height: 30px;
  text-transform: capitalize;
}

.container.salon-schedule .grid .grid-box .grid-content .cell.add:hover {
  background-color: #c2f0ff;
}

.container.salon-schedule .grid .grid-box .grid-content .cell.remove {
  position: relative;
}

.container.salon-schedule .grid .grid-box .grid-content .cell.remove label {
  position: absolute;
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.5;
}

.container.salon-schedule .grid .grid-box .grid-content .cell .pass {
  font-weight: bold;
}

.container.salon-schedule > .row.add {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}

.container.salon-schedule > .row.add .info {
  margin-right: 15px;
  display: inline-block;
  font-size: 20px;
}

.container.salon-schedule > .row.add .add {
  display: block;
  border-radius: 999px;
  border: 2px solid #9cc4e4;
  background-color: #9cc4e4;
  color: #fff;
}

.container.salon-schedule > .row.add .add:hover {
  color: #000;
  background-color: #c2f0ff;
}

.bootstrap-datetimepicker-widget a[data-action],
.bootstrap-datetimepicker-widget button[data-action] {
  background-color: initial;
}

button.mfp-close {
  z-index: 999;
}

#change-booking .pop-inner .slot-booked {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

#change-booking .pop-inner .slot-booked .time {
  text-transform: uppercase;
}

#change-booking .change-booking-select .dropdown-toggle.selectpicker {
  border: 1px solid #848484;
}

#add-slot,
#remove-slot {
  text-align: center;
}

#add-slot #modal_add_slot_datetime,
#add-slot #modal_remove_slot_datetime,
#remove-slot #modal_add_slot_datetime,
#remove-slot #modal_remove_slot_datetime {
  font-size: 20px;
}

.swal2-popup.swal2-modal {
  font-size: 15px;
}

.swal2-popup.swal2-modal ul {
  text-align: left;
}

.swal2-popup.swal2-modal ul li {
  list-style: disc;
}

.swal2-popup.swal2-modal ul li a {
  font-size: large;
  font-weight: bold;
  color: var(--theme-main);
}

.swal2-popup.swal2-modal ul li a:hover {
  color: #434343;
}

.register_as_shavee ul li {
  margin: 0 0 0 20px;
  list-style: disc;
}

.radio-label {
  font-weight: normal;
}

.join-event-page.container {
  margin-bottom: 50px;
}

.join-event-page.container .image {
  text-align: center;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.join-event-page.container .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.mailing-address {
  margin-bottom: 0;
}

.text-align-c {
  text-align: center;
}

.notice {
  margin: 30px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-transform: capitalize;
}

.csr-detail .image {
  height: 200px;
}

.csr-detail .image .img-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.csr-detail .sharebutton {
  margin-top: 20px;
  text-align: center;
}

.csr-detail .csr-detail-info {
  max-height: 300px;
  overflow-y: scroll;
}

.csr-detail .client-profile-card {
  text-align: center;
}

.csr-detail .client-profile-card .avatar {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 150px;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
  background: #fff;
  overflow: hidden;
}

.csr-detail .client-profile-card .avatar .img-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.csr-detail .client-profile-card .avatar-details {
  margin-top: -70px;
  position: relative;
  padding-top: 80px;
  padding-left: 5px;
  padding-right: 5px;
  background: #fff;
  z-index: 1;
}

.csr-detail .client-profile-card .avatar-details span {
  margin-top: 15px;
  display: inline-block;
  padding-bottom: 4px;
  color: #232323;
  border-bottom: 3px solid #e5e5e5;
}

.csr-detail .client-profile-card .avatar-details span strong {
  font-size: 17px;
  color: var(--theme-main);
}

.csr-detail #update-csr-info-btn {
  margin: 15px 0;
  height: 30px;
  border-radius: 100px;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme-main);
  color: black;
  cursor: pointer;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.csr-detail #update-csr-info-btn:hover {
  background-color: #9cc4e4;
  color: #fff;
}

.loading-overlay.overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(34, 34, 34, 0.8666666667);
  z-index: 999;
}

.loading-overlay .overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.loading-overlay .overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading-overlay .spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.05);
  border-top-color: #fff;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading-spinner span {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.05);
  border-top-color: #000;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

.privacy ul {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.privacy ul li {
  list-style: initial;
}

.upcoming-events-item {
  cursor: pointer;
  padding-left: 25px;
}

.upcoming-events-item:before {
  content: "\F0DA";
  position: relative;
  float: left;
  left: -15px;
  width: 0;
  color: var(--theme-main);
  font-family: FontAwesome !important;
}

#upcoming-event-description {
  overflow: hidden;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}

.donation-form.container {
  margin: 5em auto;
}

.donation-form.container .title {
  text-align: center;
}

.donation-form.container .dona-amount > li {
  margin-bottom: 12px;
  margin-right: 10px;
  background: #f5f6f7;
  border: 1px solid #ebeef0;
  display: inline-block;
  padding: 0 15px;
  font-size: 13px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  color: #232323;
  text-transform: uppercase;
  cursor: pointer;
}

.donation-form.container .dona-amount > li:hover,
.donation-form.container .dona-amount > li.active {
  background: var(--theme-main);
  border-color: var(--theme-main);
}

.donation-form.container .form-control {
  width: 100%;
  display: inline-block;
  height: 40px;
  border: 1px solid #ebeef0;
  background: #fafbfb;
  padding: 0 10px;
}

@media only screen and (max-width: 768px) {
  .cases {
    padding: 0 !important;
  }

  .cases li {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }

  .cases li img {
    height: 50vw;
  }

  .recent-donors li {
    min-height: 65px;
  }

  #footer-container footer .rights {
    padding-bottom: 65px;
  }

  #banner {
    height: auto;
  }

  .top-bar .right-bar-side {
    float: right;
  }
}

@media only screen and (max-width: 767px) {
  header > nav {
    padding: 0;
  }

  header .image.logo {
    margin: 0 50px;
    position: absolute;
    width: calc(100% - 100px) !important;
    text-align: center;
    z-index: 2;
  }

  header .nav-bar {
    width: 100% !important;
  }

  header .nav-bar > .ownmenu > .showhide {
    float: right;
    width: 10%;
    padding: 0;
  }

  header .nav-bar > .ownmenu li {
    padding: 0 20px;
  }

  header > .container .row > .logo {
    display: none;
  }

  header .fundraised-meter {
    width: 100%;
  }

  header .fundraised-meter .count .donor {
    display: none;
  }

  header .fundraised-meter .count .shavee {
    display: none;
  }

  header .btn-right {
    width: 100%;
    text-align: center;
  }

  header .btn-right .btn {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  header .btn-right .search-result-container {
    top: 36px;
    right: 55px;
  }

  .donation-pop .pop-inner ul.row.per-info li {
    padding-left: 0;
    padding-right: 0;
  }

  .donation-pop .pop-inner ul.row.per-info .form-group {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .recent-donors li {
    min-height: 80px;
  }

  .recent-donors li .info .left {
    float: none;
  }

  #payment_iframe {
    width: 300px;
  }

  #region-selection .pop-inner {
    padding: 40px;
    width: 90%;
    grid-template-columns: 16fr;
  }

  header .fundraised-meter {
    position: relative;
  }

  header .fundraised-meter .count.row {
    margin: 0;
    padding-top: 20px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  header .fundraised-meter .count.row .col-xs-6 .val {
    font-size: 12px;
  }

  header .fundraised-meter .count.row .col-xs-6 .title {
    display: none;
  }

  header.container .btn-right > .btn {
    margin-bottom: 10px;
  }

  .testi.how-to-join .btn.join-now {
    width: 100%;
  }
}

/* live donor */

.live-donor-sec {
  position: relative;
}

.live-donor-sec .donor-container {
  position: fixed;
  display: none;
  top: 2px;
  right: 2px;
  height: calc(100vh - 6px);
  width: calc(100vw - 4px);
  max-width: 400px;
  border-radius: 20px;
  z-index: 999;
  background-color: var(--theme-main-light);
  box-shadow: 0 0 10px -5px #000;
}

.live-donor-sec .donor-container .donor-list {
  height: 100%;
}

.live-donor-sec .donor-container .donor-list .header {
  font-size: 0;
  padding: 10px;
}

.live-donor-sec .donor-container .donor-list .header .search-bar {
  position: relative;
  width: calc(100% - 50px);
  font-size: initial;
  vertical-align: middle;
}

.live-donor-sec .donor-container .donor-list .header .search-bar .donor-search {
  height: 40px;
  width: 100%;
  padding: 0 40px 0 20px;
  border-radius: 100px;
  border-color: light-dark(var(--theme-main), #858585);
}

.live-donor-sec .donor-container .donor-list .header .search-bar .icon {
  position: absolute;
  top: 12px;
  right: 15px;
  line-height: 10px;
}

.live-donor-sec .donor-container .donor-list .header .minimize {
  display: -webkit-box;
  display: flex;
  float: right;
  height: 40px;
  width: 40px;
  background-color: white;
  border-radius: 100px;
  border-color: light-dark(var(--theme-main), #858585);
  vertical-align: middle;
  -webkit-box-pack: center;
          justify-content: center;
  border-width: 2px;
  border-style: inset;
  cursor: pointer;
}

.live-donor-sec .donor-container .donor-list .header .minimize .icon {
  align-content: center;
}

.live-donor-sec .donor-container .donor-list .donor-items {
  padding: 10px;
  height: calc(100% - 90px);
  overflow-y: scroll;
}

.live-donor-sec .donor-container .donor-list .donor-items::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

.live-donor-sec .donor-container .donor-list .donor-items::-webkit-scrollbar-track {
  background: #e8e8e8;
}

.live-donor-sec .donor-container .donor-list .donor-items::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #bfbfbf;
}

.live-donor-sec .donor-container .donor-list .donor-items::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item {
  position: relative;
  margin-bottom: 10px;
  height: 80px;
  overflow: hidden;
  border-radius: 100px 20px 20px 100px;
  box-shadow: 0 0 10px -4px #000;
  background-color: #fff;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .image-container {
  float: left;
  height: 80px;
  width: 80px;
  padding: 3px;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: inset 0 0 10px -4px #000;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .image-container .image {
  height: 74px;
  width: 74px;
  border-radius: 100%;
  overflow: hidden;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .image-container .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .text {
  padding: 10px;
  width: calc(100% - 80px);
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .text .name {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.live-donor-sec .donor-container .donor-list .donor-items .donor-item .text .time-ago {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
}

.live-donor-sec .donor-container.active {
  display: block;
}

.live-donor-sec .float-btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  border-radius: 100%;
  display: -webkit-box;
  display: flex;
  background-color: #fff;
  justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  vertical-align: middle;
  -webkit-box-pack: center;
  justify-content: center;
  border-width: 2px;
  border-style: inset;
  cursor: pointer;
  box-shadow: 0 0 15px -5px #000;
}

.live-donor-sec .float-btn:hover {
  border-color: light-dark(var(--theme-main), #858585);
  box-shadow: inset 0 0 10px -5px var(--theme-main);
}

.live-donor-sec .float-btn.active {
  display: none;
}

/* end live donor */

/* loading spinner */

.spinner {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.lds-roller {
  position: relative;
  display: inline-block;
  height: 64px;
  width: 64px;
}

.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 32px 32px;
          transform-origin: 32px 32px;
}

.lds-roller div:after {
  position: absolute;
  display: block;
  background: #00539f;
  border-radius: 50%;
  content: " ";
  margin: -3px 0 0 -3px;
  height: 6px;
  width: 6px;
}

.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

/* end loading spinner */

/*new profile*/

input[type=radio].pfh-radio-btn {
  margin: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #ffffff;
  box-shadow: 0px 0px 0px 1px var(--theme-main);
  border-radius: 100%;
  vertical-align: middle;
  -webkit-appearance: none;
}

input[type=radio].pfh-radio-btn:checked {
  background-color: var(--theme-main);
}

.button-back {
  text-transform: none;
  font-weight: 400;
  padding: 10px 20px;
}

.profile-container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.profile-container #myTab {
  position: -webkit-sticky;
  position: sticky;
}

.profile-container .profile-image-form-submit {
  padding-top: 15px;
  text-align: center;
}

.profile-container .profile-image-form-submit .button-update {
  float: none;
}

.profile-container .tab-title {
  font-style: normal;
  font-size: 2em;
  font-weight: bold;
  text-transform: capitalize;
}

.profile-container .tab-subline {
  margin-bottom: 30px;
  font-size: 1em;
  color: #6c757d;
}

.profile-container .card {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
}

.profile-container .card .card-header {
  padding: 15px;
  color: white;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.profile-container .card .card-header.bb-color {
  background-color: var(--theme-main);
}

.profile-container .card .card-header.pfh-color {
  background-color: var(--theme-main);
}

.profile-container .button-back {
  margin: 20px 0;
  border-color: var(--theme-main);
  color: var(--theme-main);
  background: white;
  border-radius: 5px;
}

.profile-container .tab-panel,
.profile-container .tab-content {
  padding: 15px;
}

.profile-container .tab-content {
  padding: 15px;
}

.profile-container .tab-content.disappear {
  display: none;
}

@media screen and (min-width: 767px) {
  .profile-container .tab-panel {
    display: inline-block;
    width: 300px;
  }

  .profile-container .tab-content {
    display: inline-block;
    width: calc(100% - 305px);
  }
}

@media screen and (max-width: 767px) {
  .profile-container {
    margin-top: 0px;
  }
}

.profile-container .form-fields.row > div {
  margin-bottom: 30px;
}

.profile-container > div {
  vertical-align: top;
}

.profile-container .profile-nav-bar {
  margin-bottom: 50px;
}

.profile-container .profile-nav-bar > .nav-item {
  margin-bottom: 10px;
}

.profile-container .profile-nav-bar > .nav-item > .nav-link {
  text-align: left;
  border-radius: 5px;
}

.profile-container .profile-nav-bar > .nav-item > .nav-link .icon.svg > svg {
  fill: #000000;
}

.profile-container .profile-nav-bar > .nav-item > .nav-link .text {
  padding-left: 8px;
  width: calc(100% - 25px);
  color: #000000;
  text-transform: capitalize;
}

.profile-container .profile-nav-bar > .nav-item > .nav-link > div {
  vertical-align: middle;
}

@media screen and (min-width: 766px) {
  .profile-container .profile-nav-bar > .nav-item.active .nav-link {
    background-color: #000000;
  }

  .profile-container .profile-nav-bar > .nav-item.active .icon.svg > svg {
    fill: #ffffff;
  }

  .profile-container .profile-nav-bar > .nav-item.active .text {
    color: #ffffff;
  }
}

.profile-container .general,
.profile-container .current {
  margin-bottom: 30px;
}

.profile-container .current .title {
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: capitalize;
}

.display-inline {
  display: inline-block;
}

.display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media screen and (min-width: 1200px) {
  .display-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card-profile {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-family: arial;
  background-color: #f4f4f4;
  overflow: hidden;
}

.card-profile .profile-image {
  position: relative;
  margin: 15px auto;
  width: 160px;
  height: 160px;
}

.card-profile .profile-image .image {
  margin: 15px auto;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.card-profile .profile-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card-profile .profile-image .camera-icon {
  display: -webkit-box;
  display: flex;
  position: absolute;
  bottom: -3px;
  right: 0px;
  height: 50px;
  width: 50px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 100%;
  font-size: 24px;
  color: #fff;
  background: #c4c4c4;
}

.card-profile .profile-image .camera-icon:hover {
  background-color: rgba(196, 196, 196, 0.5333333333);
}

.card-profile .profile-image .camera-icon:hover .camera {
  color: black;
}

.card-profile .profile-image .camera-icon:hover .trash {
  fill: #f53232;
}

.card-profile .title {
  font-size: 20px;
}

.card-profile .padding-button {
  padding: 13px 15px;
}

.card-profile .mb-3 {
  margin-bottom: 30px;
}

.button-logout {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  text-align: left;
  background: #f53232;
  color: #fff;
  text-transform: capitalize;
}

.button-logout > .fa {
  margin-right: 10px;
  width: 18px;
  font-size: 18px;
}

.tranform-camera {
  -webkit-transform: translatey(-80%) translatex(15%);
          transform: translatey(-80%) translatex(15%);
}

button:hover,
a:hover {
  opacity: 0.7;
}

/*end profile*/

/* dashboard */

.cursor-pointer {
  cursor: pointer;
}

.image-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card.card-dashboard {
  margin-bottom: 15px;
  display: -webkit-inline-box;
  display: inline-flex;
  padding: 23px;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: start;
          align-items: flex-start;
  background: #ffffff;
  box-shadow: 0px 4px 16px rgba(46, 53, 79, 0.11);
}

.card.card-dashboard .icon.svg {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.card.card-dashboard .text {
  padding-left: 15px;
  max-width: calc(100% - 45px);
}

.card.card-dashboard .text .title {
  margin-bottom: 15px;
  font-size: 1em;
  font-weight: bold;
  text-transform: capitalize;
}

.card.card-dashboard .text .value {
  font-size: 2em;
  font-weight: bold;
}

.bg-calender {
  background-color: #becbf9;
}

.bg-donate {
  background-color: #ffed8c;
}

/* end dashboard */

/* Current Event */

.card.card-simple .image {
  height: 150px;
  overflow: hidden;
}

.card.card-simple .image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card.card-simple .details {
  padding: 15px;
  border-top: 1px solid #eeeeee;
}

.card.card-simple .details .title {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-size: 1em;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card.card-simple .details .button-join {
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  border: none;
  border-radius: 100px;
  color: #ffffff;
  text-transform: capitalize;
}

.card.card-simple .details .button-join.pfh {
  background-color: var(--theme-main);
}

.card.card-simple .details .button-join.bb {
  background-color: var(--theme-main);
}

/*end Current Event */

/* Edit Profile */

.button-update {
  float: right;
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #232323;
  border: none;
  color: #ffffff;
  border-radius: 6px;
}

/*end Edit Profile */

/* Favourite Project */

.progress-bar.pfh-progress-bar {
  background-color: var(--theme-main);
  border-radius: 50px;
  max-width: 100%;
}

.favourite-card {
  margin-bottom: 15px;
  -webkit-box-orient: inherit !important;
  -webkit-box-direction: inherit !important;
          flex-direction: inherit !important;
}

.favourite-card .image {
  width: 120px;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.favourite-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.favourite-card .image .status-place {
  position: absolute;
  padding: 7px 12px;
  border-radius: 4px;
  bottom: 10px;
  left: 50%;
  max-width: calc(100% - 20px);
  background: var(--theme-main);
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
}

.favourite-card .details {
  padding: 15px;
  width: calc(100% - 120px);
  vertical-align: top;
}

.favourite-card .details .title {
  width: calc(100% - 25px);
  margin-bottom: 15px;
  font-weight: bold;
  color: #000000;
}

.favourite-card .details .progress {
  margin: 30px 0px 12px;
  border-radius: 50px;
}

.favourite-card .details .progress .amount {
  position: absolute;
  bottom: 5px;
  left: 0;
  padding: 0;
  color: var(--theme-main);
  font-weight: bold;
  font-size: 15px;
}

.favourite-card .bottom-line {
  color: #000000;
}

.favourite-card .bottom-line .progress-text {
  float: left;
}

.favourite-card .bottom-line .day-left {
  float: right;
}

.favourite-card .fa.fa-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #ff0000;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
  .favourite-card .details .title {
    width: 100%;
  }

  .favourite-card .bottom-line .progress-text {
    margin-bottom: 15px;
    float: none;
  }

  .favourite-card .fa.fa-heart {
    position: relative;
    top: unset;
    right: unset;
  }
}

@media screen and (max-width: 500px) {
  .favourite-card .font-size-fixed {
    font-size: 12px;
  }

  .favourite-card .details {
    width: calc(100% - 85px);
  }

  .favourite-card .bottom-line .progress-text {
    display: none;
  }
}

.limit-word-1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 576px) {
  .font-size-fixed {
    font-size: 12px;
  }
}

.sharebutton .sharethis-inline-share-buttons .st-btn {
  margin: 4px !important;
  display: inline-block !important;
}

.width-favourite {
  max-width: 100%;
}

.address-fields input.form-control {
  margin: 0;
}

.join-donate-button-group {
  display: -webkit-box;
  display: flex;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 15px;
  width: 50%;
  min-width: 320px;
}

.join-donate-button-group .btn.community {
  margin: 0;
  padding: 8px;
}

.bald-beauty-run {
  padding: 50px 0;
}

.bald-beauty-run .image {
  display: grid;
  grid-template-columns: auto;
  grid-gap: 15px;
}

.bald-beauty-run .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}

.bald-beauty-run .text {
  padding: 50px 0;
}

.bald-beauty-run #bbrunGallery button.close {
  position: fixed;
  right: 10px;
  top: 10px;
  font-size: 40px;
  font-weight: 700;
  color: var(--theme-main);
  opacity: 1;
}

.bald-beauty-run #bbrunGallery .content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 85%;
  max-height: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}

.bald-beauty-run #bbrunGallery .content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.bald-beauty-day .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.bald-beauty-day .gallery {
  margin: 20px 0;
  display: -webkit-box;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

