/**********************************   Loader Style     ***********************************/

html, body{
  text-align: start !important;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c80;
  color: white;
  font-size: 50px;
  z-index: 999999999;
}

/****************************************************************************/
/** notifications
    /****************************************************************************/

.notification {
  position: fixed;
  left: 30px;
  bottom: -90px;
  font-size: 14px;
  padding: 10px 2px;
  border-radius: 5px;
  box-shadow: 0 0 50px #000000;
  width: 300px;
  text-align: center;
  z-index: 999999999;
  transition: all 1s ease-in-out;
  border-right: solid 3px;
  color: black;
  background: #96b0d6;
  border-color: #005680;
}

.notification.default {
  background: #96b0d6;
  border-color: #005680;
}

.notification.success {
  background: #96d696;
  border-color: green;
}

.notification.warning {
  background: #e6d287;
  border-color: #8c7213;
}

.notification.error {
  background: #ffbcbc;
  border-color: #b70000;
}

.notification.show_up {
  bottom: 40px;
}

.danger {
  background-color: red !important;
}

.success {
  background-color: #a5d6a7 !important;
}

/****************************************************************************/
/** switch checkbox
/****************************************************************************/

.switch-checkbox {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 25px;
  top: 7px;
}

.switch-checkbox 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.always-blue-switch- {
  background-color: #3963ad;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .switch-slider {
  background-color: #3963ad;
}

input:focus + .switch-slider {
  box-shadow: 0 0 1px #3963ad;
}

input:checked + .switch-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider.round {
  border-radius: 34px;
}

.switch-slider.round:before {
  border-radius: 50%;
}




/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
 

/****************************************************************************/
/** success checkmark
/****************************************************************************/

 .success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
  background: inherit;
}
.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: inherit;
  transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: inherit;
  background: inherit;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}


/****************************************************************************/
/** error checkmark
/****************************************************************************/

.error-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.error-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #e53935; /* You can change the color as needed */
  background: inherit;
}

.error-checkmark .check-icon::before,
.error-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: inherit;
  transform: rotate(-45deg);
}

.error-checkmark .check-icon::before {
  top: 0;
  left: 18px;
  width: 44px;
}

.error-checkmark .check-icon::after {
  top: 18px;
  left: 0;
  width: 44px;
}

.error-checkmark .check-icon .icon-line {
  height: 4px;
  background-color: #e53935;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.error-checkmark .check-icon .icon-line.line-tip {
  top: 38px;
  left: 18px;
  width: 44px;
  transform: rotate(45deg);
}

.error-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  left: 18px;
  width: 44px;
  transform: rotate(-45deg);
}

.error-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 4px;
  left: 38px;
  z-index: 1;
  height: 65px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: inherit;
}


/****************************************************************************/
/** warning checkmark
/****************************************************************************/

.warning-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.warning-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #f39c12; /* You can change the color as needed */
  background: inherit;
}

.warning-checkmark .check-icon::before,
.warning-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: inherit;
  transform: rotate(-45deg);
}

.warning-checkmark .check-icon::before {
  top: 0;
  left: 18px;
  width: 44px;
}

.warning-checkmark .check-icon::after {
  top: 18px;
  left: 0;
  width: 44px;
}

.warning-checkmark .check-icon .icon-line {
  height: 4px;
  background-color: #f39c12;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.warning-checkmark .check-icon .icon-line.line-tip {
  top: 38px;
  left: 18px;
  width: 44px;
  transform: rotate(45deg);
}

.warning-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  left: 18px;
  width: 44px;
  transform: rotate(-45deg);
}

.warning-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 4px;
  left: 38px;
  z-index: 1;
  height: 65px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: inherit;
}

/****************************************************************************/
/** projects pages
/****************************************************************************/

span.item-number {
  display: inline-block;
  width: 20px;
  float: right;
  text-align: center;
}




/****************************************************************************/
/** projects cards
/****************************************************************************/


.projects-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}


/* Chrome, Safari, Edge, Opera */
.projects-cards input::-webkit-outer-spin-button,
.projects-cards input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.projects-cards input[type=number] {
  -moz-appearance: textfield;
}

.project-card {
  margin: 10px;
  width: calc(33.3% - 20px);
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border: solid 1px #4c6c5b8a;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 65px;
}

.projects-cards.c-1 .project-card{
  width: calc(100% - 20px);
}
.projects-cards.c-2 .project-card{
  width: calc(50% - 20px);
}
.projects-cards.c-3 .project-card{
  width: calc(33.3% - 20px);
}
.projects-cards.c-4 .project-card{
  width: calc(25% - 20px);
}

.project-card .project-card-image a{
  display: block;
}

.project-card .project-card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.project-card .project-card-share {
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 0 0 0 10px;
  overflow: hidden;
}

.project-card .project-card-share span {
  background: #00000042 !important;
  color: #eeeeee;
  float: right;
  padding: 5px 10px;
  font-size: 18px;
}

.project-card .project-card-share a {
  background-color: unset;
  float: right;
  padding: 5px 10px;
  color: #fff !important;
  font-size: 18px;
}
.project-card a.twitter-icon-link:hover{
  background: #55acee;
}

.project-card a.facebook-icon-link:hover {
  background: #3b5998;
}

.project-card a.instagram-icon-link:hover {
  background: #dc4e41;
}

.project-card a.whatsapp-icon-link:hover {
  background: #25d366;
}

.project-card .card-content {
  text-align: center;
}

.project-card .card-title {
  text-align: center;
  padding: 0;
  margin: 0;
  background-color: #0a9216;
  font-size: 18px;
}

.project-card .card-title a {
  display: block;
  color: white !important;
  padding: 12px 7px;
  text-decoration: none;
}

.project-card .card-body {
  padding: 0;
  margin: 10px;
}
.project-card .card-body .card-excerpt {
  font-size: 14px;
  font-weight: bold !important;
  line-height: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: justify;
  color: #0d0c0c;
}

.project-card .options {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  max-height: 190px;
  overflow: auto;
}

.project-card .options button.option{
  padding: 3px 10px;
  margin: 3px;
  flex-grow: 1;
  background-color: unset;
  border: solid 1px #0000003d;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  font-size: 14px;
}

.project-card .options button.option.active,
.project-card .options button.option:hover{
  background-color: #857ab917;
}

.project-card .options button.option,
.project-card .options button.option:hover,
.project-card .options button.option:active{
  outline: none;
}

.project-card .input-spinner {
  display: flex;
  width: 230px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 5px auto;
  align-items: stretch;
  justify-content: center;
  text-align-last: center;
  transition: all ease-in-out 0.2s;
}

.project-card .input-spinner.show{
  height: 25px;
  opacity: 1;
}

.project-card .input-spinner .spinner-btn {
  background-color: #0a9216;
  border: 0;
  padding: 0 10px;
  color: white;
  cursor: pointer;
}

.project-card .input-spinner .spinner-btn,
.project-card .input-spinner .spinner-btn:hover,
.project-card .input-spinner .spinner-btn:active{
  outline: none;
}

.project-card .input-spinner input {
  margin: 0;
  padding: 5px 0;
  border-radius: 0;
  border: solid 1px #03643338;
}

.project-card .card-footer {
  padding: 15px;
  background: #f3f3f3;
  height: 65px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.project-card .card-footer .footer-btns {
  display: flex;
  width: 100%;
  justify-content: stretch;
  align-items: center;
  font-weight: bold;
}

.project-card .card-footer .footer-btns .amount {
  flex: 1;
  position: relative;
  line-height: 1;
}

.project-card .card-footer .footer-btns .amount input {
  margin: 0;
  color: black;
  width: 100%;
  min-width: unset;
  background: #fefefe;
  height: 33px;
  box-shadow: inset 2px 2px 8px rgb(0 0 0 / 2%);
  border-radius: 3px;
  font-size: 16px;
  border: inset 1px;
  box-sizing: border-box;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}


.project-card .card-footer .footer-btns .amount input:disabled{
  background-color: #eee;
}
.project-card .card-footer .donate-btn,
.project-card .card-footer .cart-donate-btn {
  flex: 1;
  height: 34px;
  margin: 0 3px;
}

.project-card .card-footer a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-color: rgb(10, 146, 22);
  border-color: rgb(57, 80, 44);
  position: relative;
  color: white !important;
  border-radius: 0;
  padding: 0;
  text-decoration: none;
}
.project-card .card-footer a:hover{
  text-decoration: none;
}

.project-card .card-footer .cart-donate-btn a {
  background-color: rgb(202, 146, 47);
}




.project-card .progress-text{
  display: flex;
  justify-content: space-between;
  margin: 20px 10px;
  text-align: center;
}

.project-card .progress-text strong{
  display: block;
}

.project-card .progress-text span{
  font-size: 14px;
}

.project-card .percentage-bar {
  position: relative;
  background-color: #f5f5f5;
  height: 6px;
  width: 100%;
  box-shadow: 0 0 5px #00000042;
}
.project-card .percentage-bar-track {
  background-color: #fe813a;
  text-align: left;
  height: 100%;
  max-width: calc(100% - 40px);
  overflow: visible !important;
  position: relative;
  transition: ease-in-out 2.5s;
}
.project-card .percentage-bar-track .percentage-bar-ball {
  background-color: #fe813a;
  text-align: left;
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 0.85714em;
  border-radius: 100%;
  color: #FFFFFF;
  top: 50%;
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


@media screen and (max-width: 850px) {
  .projects-cards.c-1 .project-card,
  .projects-cards.c-2 .project-card,
  .projects-cards.c-3 .project-card,
  .projects-cards.c-4 .project-card,
  .projects-cards .project-card{
    width: calc(100% - 20px) !important;
  }
}


/* style 2 of project cards */

.project-card.project-card-2{
  padding: 0;
  position: relative;
  overflow: hidden;
  margin: 5px 10px 30px 10px;
  background-color: #ffffff;
  box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 20%);
  transition: all 0.4s ease;
  border: none;
  border-radius: 5px;
}

.project-card.project-card-2:hover {
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.project-card.project-card-2 .card-title{
  background-color: unset;
}
.project-card.project-card-2 .card-title a{
  color: #0a9216 !important;
}

.project-card.project-card-2 .card-body{
  margin-bottom: 50px;
}

.project-card.project-card-2 .input-spinner{
  height: 25px;
  visibility: hidden;
}
.project-card.project-card-2 .input-spinner.show{
  visibility: visible;
}

.project-card.project-card-2 .card-footer{
  padding: 15px;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  top: calc(100% - 3px);
  bottom: unset;
  height: unset;
  width: 100%;
  transition: top ease-in-out 0.5s;
  border-top: solid 3px #1ba074;
  border-bottom: solid 3px #1ba074;
  border-radius: 15px 15px 0 0;
}

.project-card.project-card-2 .card-footer .toggle-btn {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
  width: 150px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: white;
  background-color: #1ba074;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}