@font-face {
  font-family: Lato;
  src: url("../font/Lato-Regular.ttf");
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Medium.ttf");
}
* {
  padding: 0;
  margin: 0;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  outline: none;
  cursor: pointer;
  font-family: Lato;
  resize: none;
}

body {
  background-color: #E5E5E5;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-bawean.png");
  font-family: Lato;
}

.main {
  max-width: 480px;
  background-color: white;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}
.main--chat {
  background-color: #EDF9FD;
}
.main--info {
  background: linear-gradient(339.11deg, #2487C9 0%, #4AC5EF 58.45%);
}

.container {
  padding: 0 24px;
}

.w-full {
  width: 100%;
}

.color-primary {
  color: #2487C9;
}

.text-xxs {
  font-size: 10px;
  line-height: 12px;
}

.text-xs {
  font-size: 12px;
  line-height: 14px;
}

.text-xs-x {
  font-size: 13px;
  line-height: 16px;
}

.text-md {
  font-size: 14px;
  line-height: 17px;
}
.text-md--height {
  line-height: 21px;
}

.text-md-x {
  font-size: 15px;
  line-height: 22px;
}

.text-md-xx {
  font-size: 16px;
  line-height: 19px;
}

.text-lg {
  font-size: 18px;
  line-height: 22px;
}

.text-xl {
  font-size: 20px;
  line-height: 30px;
}
.text-xl-ys {
  line-height: 24px;
}

.font-300 {
  font-weight: 300;
}

.font-600 {
  font-weight: 600;
}

.font-900 {
  font-weight: 900;
}

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

.text-white {
  color: white;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

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

.justify-center {
  justify-content: center;
}

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

.justify-end {
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 16px;
}

.-mt-md {
  margin-top: -16px;
}

.mt-lg {
  margin-top: 24px;
}

.mb-xs {
  margin-bottom: 4px;
}

.mb-sm {
  margin-bottom: 8px;
}

.mb-md {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mb-xl {
  margin-bottom: 32px;
}

.mr-xs {
  margin-right: 4px;
}

.mr-sm {
  margin-right: 8px;
}

.mr-md {
  margin-right: 16px;
}

.mr-lg {
  margin-right: 24px;
}

.ml-xs {
  margin-left: 4px;
}

.ml-sm {
  margin-left: 8px;
}

.ml-md {
  margin-left: 16px;
}

.ml-lg {
  margin-left: 24px;
}

.pl-lg {
  padding-left: 24px;
}

.visible-hidden {
  visibility: hidden;
}

.transparent {
  background: transparent !important;
}

.shadow-none {
  box-shadow: none !important;
}

.menu-tab {
  z-index: 99;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.menu-tab .menu {
  margin: auto;
  max-width: 480px;
  display: flex;
  background: #fff;
  padding: 5px 24px;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px 16px 0px 0px;
  box-sizing: border-box;
  height: 64px;
}
@media only screen and (max-width: 576px) {
  .menu-tab .menu {
    padding: 5px 0;
  }
}
.menu-tab a {
  align-items: center;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.menu-tab a p {
  margin-top: 4px;
}
.menu-tab .i-berita {
  margin-top: 5px;
}
.menu-tab .main-btn {
  margin: -32px auto 0;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: linear-gradient(270deg, #2487C9 0%, #4AC5EF 100%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.menu-tab .main-btn .galang {
  transform: scaleX(-1);
  margin: 18px 12px 22px;
}
.menu-tab .menu-item {
  width: 20%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-tab .menu-item img {
  justify-content: center;
}
.menu-tab .menu-item p {
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #C4C4C4;
}
.menu-tab .menu-item .p-news {
  margin-top: 4px;
}

.btn-primary {
  background: #2487c9;
  border-radius: 16px;
  color: white;
  padding: 12px 0;
}

.btn-secondary {
  background: #F7F7F7;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 12px 0;
}

.head {
  background: linear-gradient(270deg, #2487C9 -8.56%, #4AC5EF 17.14%);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  max-width: 480px;
  margin: auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 576px) {
  .head {
    padding: 8px 16px;
  }
}
.head .logo {
  margin-right: 16px;
}
.head .search {
  height: 100%;
  position: relative;
  margin-right: 16px;
  width: 80%;
}
.head .search-input {
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  background: #1AB2EB;
  border-radius: 24px;
  outline: none;
  border: none;
  padding: 0 36px 0 26px;
  color: white !important;
  font-size: 13px;
  font-size: Montserrat !important;
}
.head .search ::placeholder {
  color: white;
  opacity: 1;
}
.head .search :-ms-input-placeholder {
  color: white;
}
.head .search ::-ms-input-placeholder {
  color: white;
}
.head .search-icon {
  position: absolute;
  top: 16px;
  right: 16px;
}
.head .notification {
  position: relative;
}
.head .notification .red {
  position: absolute;
  top: -4px;
  right: 3px;
}

.login {
  padding: 70px 0 100px;
}
.login .intro {
  margin-bottom: 32px;
  width: 90%;
}
@media (min-width: 768px) {
  .login .intro {
    width: 65%;
  }
}
.login input {
  margin-top: 8px;
  width: 100%;
  height: 40px;
  border: 1px solid #EBEFF2;
  box-sizing: border-box;
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
}
.login input:focus, .login input:valid {
  border: 2px solid #109CF1;
}
.login .eye {
  width: 100%;
  height: 40px;
  position: relative;
}
.login .eye .eyes {
  position: absolute;
  right: 20px;
  bottom: 5px;
  cursor: pointer;
}
.login .text-email {
  margin-left: 8px;
}
.login .text-pass {
  margin-left: 8px;
  margin-top: 24px;
}
.login .forget {
  margin: 16px auto 40px;
  text-align: center;
}
.login .forget a {
  color: #1AB2EB;
  text-decoration: none;
}
.login .in {
  width: 100%;
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  color: white;
  border: none;
  height: 40px;
  border-radius: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.login .regis {
  margin: 16px auto 32px;
  font-size: 14px;
  text-align: center;
}
.login .regis a {
  font-size: 14px;
  color: #1AB2EB;
  text-decoration: none;
}
.login .or {
  text-align: center;
  margin-bottom: 32px;
}
.login .btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
}
.login .login-w .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .login-w .facebook {
  background-color: #3B5999;
  text-transform: capitalize;
  color: white;
}
.login .login-w .google {
  margin-top: 16px;
  background-color: #F7F7F7;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  text-transform: capitalize;
}
.login .login-w img {
  margin-right: 16px;
}
.login .login-w p {
  display: inline-block;
}

.swiper-container {
  width: 100%;
  height: 100%;
  padding-top: 64px !important;
}
.swiper-container img {
  width: 100%;
}

.content {
  background: white;
  z-index: 9;
  padding: 53px 24px 85px;
  position: relative;
  border-radius: 16px 16px 0 0;
  margin-top: -27px;
  background: white;
}
.content::after {
  content: "";
  width: 100px;
  height: 8px;
  background: #EBEBEB;
  border-radius: 16px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translate(-50%, 0);
}
.content .donation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1AB2EB;
}
.content .donation .title {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
}
@media (max-width: 420px) {
  .content .donation .title {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 345px) {
  .content .donation .title {
    font-size: 12px;
    line-height: 17px;
  }
}
.content .donation .nominal {
  font-family: Montserrat;
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .content .donation .nominal {
    font-size: 24px;
    line-height: 25px;
  }
}
@media (max-width: 345px) {
  .content .donation .nominal {
    font-size: 22px;
    line-height: 17px;
  }
}
@media only screen and (max-width: 576px) {
  .content {
    padding: 53px 16px 85px;
  }
}

.report {
  background: url("../images/widget.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  border-radius: 16px;
  position: relative;
  margin-top: 24px;
  color: white;
}
@media (max-width: 376px) {
  .report {
    margin-top: 16px;
  }
}
.report .icon {
  margin-right: 24px;
}
@media (max-width: 376px) {
  .report .icon {
    margin-right: 16px;
  }
}
.report .desc .title {
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 376px) {
  .report .desc .title {
    font-size: 13px;
    line-height: 14px;
  }
}
@media (max-width: 376px) {
  .report .desc .title {
    font-size: 11px;
    line-height: 14px;
  }
}
.report .desc .value {
  font-family: Montserrat;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 8px;
}
@media (max-width: 376px) {
  .report .desc .value {
    font-size: 20px;
  }
}
.report .campaign {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.report .donatur {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hi {
  margin-top: 32px;
}
.hi__search {
  margin-top: 72px;
}
.hi .card-slide {
  width: 100%;
  display: flex;
  overflow-y: auto;
  padding: 5px 0;
}

.choose {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
}
.choose__camp {
  padding-top: 58px;
}
.choose .category {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 8px;
  width: 25%;
  text-decoration: none;
  color: black;
}
.choose .ellipse {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: url("../icons/ellipse.svg");
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose .name-category {
  text-transform: capitalize;
  text-align: center;
  justify-self: start;
}

.see-all {
  height: 40px;
  width: 260px;
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  border-radius: 16px;
  text-transform: capitalize;
  font-size: 13px;
  color: white;
  border: none;
  font-family: Montserrat;
  margin-top: 24px;
  text-align: center;
  margin-bottom: 32px;
}
.see-all--more {
  margin-top: 0;
}

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

.hero-detail {
  height: 240px;
}
.hero-detail-preview {
  height: 320px !important;
}
.hero-detail a {
  position: absolute;
  top: 24px;
  left: 24px;
}
.hero-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content--detail {
  background: white;
  padding: 32px 24px 85px;
  position: relative;
  border-radius: 16px 16px 0 0;
  margin-top: -27px;
}
@media only screen and (max-width: 576px) {
  .content--detail {
    padding: 32px 16px 85px;
  }
}
.content--detail--preview {
  padding: 24px;
  margin-top: 0;
}
@media only screen and (max-width: 576px) {
  .content--detail--preview {
    padding: 24px 16px;
  }
}
.content--detail .title {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.content--detail .donation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1AB2EB;
  margin-bottom: 14px;
}
.content--detail .donation .title {
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0;
}
@media (max-width: 376px) {
  .content--detail .donation .title {
    font-size: 12px;
    line-height: 14px;
  }
}
.content--detail .donation .nominal {
  font-family: Montserrat;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
@media (max-width: 376px) {
  .content--detail .donation .nominal {
    font-size: 18px;
  }
}
.content--detail .donation .nominal-light {
  font-size: 14px;
  line-height: 17px;
  color: black;
  font-weight: normal;
}
@media (max-width: 376px) {
  .content--detail .donation .nominal-light {
    font-size: 10px;
  }
}
.content--detail .progress .bar {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  position: relative;
  background-color: #EBEBEB;
  margin-bottom: 16px;
}
.content--detail .progress .bar .value {
  height: 100%;
  width: 30%;
  background: linear-gradient(270deg, #2487C9 0%, #4AC5EF 100%);
  border-radius: 8px;
}
.content--detail .progress .time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: #BDBDBD;
}
.content--detail .progress .time .dl {
  color: red;
}
.content--detail .cal {
  display: flex;
  margin-top: 17px;
  width: 100%;
  justify-content: space-between;
}
.content--detail .cal a {
  text-decoration: none;
}
.content--detail .cal .chat {
  background: #4AC5EF;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 16px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.content--detail .cal .wallet {
  background: #2487C9;
  border-radius: 16px;
  padding: 8px 87px;
  font-size: 13px;
  line-height: 16px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 576px) {
  .content--detail .cal .wallet {
    padding: 8px 64px;
  }
}
@media (max-width: 376px) {
  .content--detail .cal .wallet {
    padding: 8px 39px;
  }
}
.content--detail .inisiator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 16px;
}
.content--detail .inisiator-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #1AB2EB;
}
.content--detail .inisiator-name {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
}
.content--detail .desc .title {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 16px;
}
.content--detail .desc .description {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 24px;
}
.content--detail .desc img {
  max-width: 100% !important;
  height: auto !important;
}
.content--detail .donatur {
  margin-top: 16px;
}
.content--detail .donatur .title {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 16px;
}
.content--detail .donatur .detail-donatur {
  display: flex;
  margin-bottom: 16px;
}
.content--detail .donatur .detail-donatur img {
  align-self: flex-start;
  height: 48px;
  width: 48px;
  border-radius: 50%;
}

.desc-donatur {
  padding-left: 8px;
  width: 100%;
}
.desc-donatur .name-date {
  display: flex;
  margin-bottom: 8px;
  justify-content: space-between;
}
.desc-donatur .name-date .name {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
}
.desc-donatur .name-date .date {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300px;
}
.desc-donatur .value {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300px;
  color: #1AB2EB;
  margin-bottom: 8px;
}
.desc-donatur .comment {
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
}

.update-activity {
  margin-top: 16px;
}
.update-activity .title {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 16px;
}
.update-activity .contain {
  position: relative;
}
.update-activity .height {
  position: absolute;
  height: 100%;
  width: 4px;
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  left: 0;
  top: 0;
}
.update-activity .update-content {
  padding: 0 0 0 28px;
  position: relative;
}
.update-activity .update-content .date {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}
.update-activity .update-content .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 21px;
}
.update-activity .update-content .title::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: -6px;
  background-color: #FBBC05;
  top: 27px;
  border-radius: 50%;
  z-index: 1;
}
.update-activity .update-content .img-update {
  margin-bottom: 16px;
  width: 100%;
}
.update-activity .update-content .desc {
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 24px;
}

.inbox-type {
  padding: 96px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inbox-type .inbox-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2487C9;
  font-size: 14px;
  line-height: 17px;
  text-decoration: none;
}
.inbox-type .inbox-item--active {
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 120px;
  box-sizing: border-box;
  padding: 11px;
}
@media (max-width: 376px) {
  .inbox-type .inbox-item--active {
    height: auto;
    width: auto;
    padding: 8px 18px;
  }
}

.box {
  padding: 55px 0 0;
}
.box .empty-inbox {
  margin: 0 auto;
}

.notification-items {
  margin-bottom: 16px;
}
.notification-items a {
  text-decoration: none;
  color: black;
}
.notification-items img {
  width: 100%;
  margin-bottom: 16px;
}
.notification-items .title {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
}
.notification-items .date {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}
.notification-items .desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  margin-top: 8px;
}

.h-full {
  height: 100vh;
}

.overflow-auto {
  overflow: auto;
}

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

.fully {
  background: rgba(74, 197, 239, 0.1);
  border-radius: 16px;
  color: #1AB2EB;
  font-size: 13px;
  line-height: 16px;
  padding: 12px 91px;
  z-index: 2;
  border: 1px solid;
  position: relative;
}

.card {
  border-radius: 16px;
  background: #fff;
  width: 280px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  margin-right: 24px !important;
  text-decoration: none;
  color: black;
}

.card-header {
  height: 160px;
  width: 100%;
}
.card-header img {
  border-radius: 16px 16px 0 0;
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 24px 16px;
  overflow: hidden;
}
.card-body .title {
  display: block;
  font-family: Montserrat;
  font-weight: 500;
  text-transform: capitalize;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-body .collected,
.card-body .target {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 15px;
  text-transform: capitalize;
}
.card-body .collected .value,
.card-body .target .value {
  font-weight: 600;
}
.card-body .target {
  margin-top: 8px;
}

.progress {
  margin-bottom: 12px;
}
.progress .desc {
  display: flex;
  justify-content: space-between;
}
.progress .desc p {
  font-family: Montserrat;
  font-size: 12px;
  line-height: 15px;
  text-transform: capitalize;
}
.progress .bar {
  margin-top: 8px;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: #EBEBEB;
  position: relative;
}
.progress .bar .value {
  height: 100%;
  width: 55%;
  border-radius: 8px;
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
}

.card--flex {
  display: flex;
  height: 114px;
  width: 100%;
  margin-bottom: 18px;
  overflow: hidden;
}
.card--flex img {
  width: 40%;
  height: auto;
  object-fit: cover;
  max-width: 160px;
}
@media only screen and (max-width: 576px) {
  .card--flex img {
    width: 30%;
  }
}
.card--flex .body {
  width: 60%;
  padding: 8px 16px;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .card--flex .body {
    width: 70%;
  }
}
.card--flex .body .title {
  display: block;
  font-family: Lato;
  font-weight: 500;
  text-transform: capitalize;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card--flex .body .collected,
.card--flex .body .target {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 12px;
  font-weight: 300;
  text-transform: capitalize;
}
.card--flex .body .value {
  font-family: Montserrat;
  font-weight: 600;
}
.card--flex .body .target {
  margin-top: 8px;
}

.dana-action {
  padding: 96px 24px 32px 24px;
}
@media only screen and (max-width: 576px) {
  .dana-action {
    padding: 98px 16px 32px;
  }
}

.sub-head {
  height: 64px;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  box-sizing: border-box;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 99;
}
@media only screen and (max-width: 576px) {
  .sub-head {
    padding: 0 16px;
  }
}
.sub-head-transparent {
  background: transparent;
}
.sub-head a {
  margin-right: 28px;
  margin-top: 5px;
}
.sub-head__transparent {
  background: transparent;
  box-shadow: none;
}
.sub-head p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.action form p {
  margin-left: 8px;
}
.action input,
.action .form-control {
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid #EBEFF2;
  height: 40px;
  width: 100%;
  margin-top: 8px;
  padding: 11px 16px;
}
.action input:focus,
.action .form-control:focus {
  border: 2px solid #109CF1;
}
.action input:valid,
.action .form-control:valid {
  background: #EBEFF2;
}
.action textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 136px;
  border-radius: 16px;
  border: 1px solid #EBEFF2;
  margin-top: 8px;
  padding: 11px 16px;
  overflow: hidden;
}
.action textarea:focus {
  border: 2px solid #109CF1;
}
.action textarea:valid {
  background: #EBEFF2;
}
.action .valid {
  background: #EBEFF2;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch input:checked + .slider {
  background-color: rgba(74, 197, 239, 0.1);
  border: 1px solid #2487C9;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .slider:before {
  background: #2487C9;
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.inbox-chat {
  padding: 10px 0 18px;
  position: relative;
}

.user-chat {
  color: black;
  text-decoration: none;
  width: 100%;
}
.user-chat img {
  border-radius: 50%;
}
@media (max-width: 426px) {
  .user-chat img {
    margin-right: 10px;
  }
}
.user-chat .star {
  position: absolute;
  top: 0;
  left: 36px;
}
.user-chat .user-name {
  width: 78%;
}
@media (max-width: 426px) {
  .user-chat .user-name {
    width: 75%;
  }
}
.user-chat .user-name .name {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 20px;
}
.user-chat .user-name .chatting {
  color: #90A0B7;
  display: block;
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}
@media (max-width: 426px) {
  .user-chat .user-name .chatting {
    width: 100%;
  }
}
.user-chat .notification {
  width: 6%;
}
.user-chat .notification .notif {
  align-items: center;
  background: #FBBC05;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  line-height: 20px;
  width: 24px;
}

.conversation {
  padding: 88px 24px 74px;
}

.day {
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  border-radius: 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  padding: 8px 28px;
}

.user-ballon-chat {
  border-radius: 16px;
  max-width: 80%;
  padding: 21px 16px 8px;
}
.user-ballon-chat__right {
  background: white;
  float: right;
}
.user-ballon-chat__left {
  background: #FBBC05;
  color: white;
  float: left;
}

.time-chat {
  float: right;
}
.time-chat .clock {
  font-size: 10px;
  font-weight: bold;
  line-height: 20px;
}
.time-chat img {
  margin-left: 10px;
}

.keyboard {
  margin: auto;
  max-width: 480px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px 16px 0px 0px;
  box-sizing: border-box;
  min-height: 64px;
  max-height: 150px;
}
.keyboard textarea {
  border: 1px solid #EBEFF2;
  box-sizing: border-box;
  border-radius: 16px;
  font-size: 10px;
  line-height: 20px;
  padding: 5px 24px;
  width: 100%;
  max-height: 130px;
  height: 30px;
  align-self: center;
}
.keyboard img {
  margin-left: 16px;
}
.keyboard a {
  align-self: flex-end;
}

.user-profil {
  background: #EDF9FD;
  padding: 96px 24px 47px;
}
.user-profil img {
  border-radius: 50%;
  height: 80px;
  margin-right: 24px;
  width: 80px;
}
.user-profil button {
  background: rgba(74, 197, 239, 0.1);
  border: 1px solid #1AB2EB;
  border-radius: 16px;
  color: #1AB2EB;
  font-size: 13px;
  font-weight: bold;
  height: 32px;
  line-height: 16px;
  width: 128px;
}

.akun-menu {
  background: white;
  border-radius: 16px 16px 0 0;
  margin-top: -15px;
  padding: 24px;
}
@media only screen and (max-width: 576px) {
  .akun-menu {
    padding: 24px 16px;
  }
}
.akun-menu a {
  text-decoration: none;
  color: black;
}
.akun-menu p {
  margin-bottom: 4px;
}

.menu-items {
  align-items: center;
  display: flex;
  margin-bottom: 24px;
}
.menu-items .ellipse-small {
  background: url("../icons/ellipse-small.svg");
  height: 40px;
  margin-right: 16px;
  width: 40px;
}

.edit {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  padding: 96px 0 24px;
}

.edit-foto {
  position: relative;
  cursor: pointer;
}
.edit-foto::after {
  content: "";
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.edit-foto .photo {
  border-radius: 50%;
  height: 120px;
  width: 120px;
}
.edit-foto .icon {
  left: 50px;
  position: absolute;
  top: 48px;
  z-index: 3;
}
.edit-foto p {
  color: white;
  position: absolute;
  bottom: 26px;
  left: 32px;
  z-index: 3;
}

.backi {
  left: 24px;
  position: absolute;
  top: 24px;
}

.checkbox {
  height: 24px !important;
  width: 27px !important;
}

.konfirmasi {
  position: relative;
}
.konfirmasi label {
  display: flex;
}
.konfirmasi a {
  color: #2487C9;
}

.help-banner {
  background: lightblue;
  height: 265px;
}

.konfirmasi {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.konfirmasi input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 25px;
  width: 32px;
  background-color: transparent;
  border: 3px solid #FBBC05;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 10px 12px 0 0;
}

.konfirmasi input:checked ~ .checkmark {
  background-color: transparent;
  border: 3px solid #FBBC05;
  border-radius: 3px;
  box-sizing: border-box;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.konfirmasi input:checked ~ .checkmark:after {
  display: block;
}

.konfirmasi .checkmark:after {
  left: 11px;
  top: 8px;
  width: 4px;
  height: 16px;
  border: solid #FBBC05;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.berita {
  padding: 88px 24px;
}
@media only screen and (max-width: 576px) {
  .berita {
    padding: 88px 16px;
  }
}
.berita a {
  text-decoration: none;
}

.berita-items {
  color: black;
  text-decoration: none;
}
.berita-items img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}
.berita-items p {
  text-transform: capitalize;
}
.berita-items .t-main {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 65%;
}
@media only screen and (max-width: 678px) {
  .berita-items .t-main {
    width: 55%;
  }
}
.berita-items .tnews-desc {
  max-height: 68px;
  overflow: hidden;
}

.input-search {
  background: transparent;
  border: 1px solid transparent;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.cto {
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  background: #fff;
  height: 72px;
  margin: auto;
  max-width: 480px;
  padding: 16px;
}
.cto button {
  border-radius: 4px;
  color: white;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 40px;
}
.cto .don {
  background: #2487C9;
}

.wa {
  background: #25d366;
  color: white;
  margin-right: 10px;
  max-width: 105px !important;
}
.wa img {
  height: 12px;
  margin-right: 5px;
}

.content-about {
  padding: 16px 24px;
}
@media only screen and (max-width: 576px) {
  .content-about {
    padding: 16px;
  }
}

.img-team {
  border-radius: 16px;
  height: 120px;
  width: 120px;
}

.team-profil {
  margin-bottom: 48px;
}

.succesed {
  margin: auto;
  padding-top: 180px;
}
@media only screen and (max-width: 576px) {
  .succesed {
    height: 200px;
  }
}

.ptc {
  padding-top: 90px;
  text-align: center;
  margin-bottom: 32px;
}

.greeting {
  color: #1AB2EB;
  font-size: 24px;
  margin-bottom: 8px;
}
.greeting a {
  color: black;
}

.explan {
  color: grey;
  font-size: 17px;
}

.paper {
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 25px;
  text-align: center;
}

.title__small {
  color: grey;
  font-size: 16px;
}

.title__normal {
  font-size: 18px;
  font-weight: 600;
}

.nominal {
  color: #1AB2EB;
  font-size: 21px;
  font-weight: bold;
}

.rekening {
  color: darkblue;
  font-size: 19px;
  font-weight: 600;
}

.to {
  font-size: 16px;
  font-weight: 600;
}

.info {
  font-size: 12px;
  color: grey;
}

.logo-app-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 576px) {
  .logo-app-info {
    height: 210px;
  }
}

.version {
  bottom: 0;
  color: white;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 80px;
  position: absolute;
  text-align: center;
  width: 100%;
}

.succesed-detail {
  margin-top: -40px;
}

.logo-done {
  margin-top: 115px;
}

.lab-uf {
  align-items: center;
  background: rgba(74, 197, 239, 0.1);
  border: 1px solid;
  border-radius: 16px;
  color: #1AB2EB;
  display: flex;
  font-size: 13px;
  height: 40px;
  justify-content: center;
  line-height: 16px;
  position: relative;
}

.text-black {
  color: #000 !important;
}

.dana-action ol {
  padding: 0 0 0 15px;
}
.dana-action hr {
  margin: 8px 0;
}

.inagata-made {
  align-items: center;
  bottom: 32px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.inagata-made--static {
  position: static;
}

.awa {
  width: 35%;
}

img.lazy {
  background: #F1F1FA;
  border: none;
}

.semi-blue {
  color: #334D6E;
}

.akun-login {
  background: #EDF9FD;
  padding: 85px 24px 35px;
}
@media only screen and (max-width: 576px) {
  .akun-login {
    padding: 85px 16px 35px;
  }
}
.akun-login button {
  border-radius: 16px;
  height: 40px;
}
.akun-login .masuk {
  background: linear-gradient(270deg, #2487C9 -23.15%, #4AC5EF 123.15%);
  color: white;
}

.d-none {
  display: none;
}

.text-dark {
  color: black;
}

.underline-none {
  text-decoration: none;
}

.address {
  bottom: 80px;
  left: 24px;
  position: absolute;
}
.address--akun {
  position: static;
  margin-top: 60px;
}

.position-relative {
  position: relative;
}

.btn-copy {
  background: #2487C9;
  border-radius: 8px;
  color: white;
  position: absolute;
  padding: 3px;
  text-decoration: none;
  top: 15px;
  right: 25px;
}

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