.bi-x-square {
  background-color: #a8577e3b;
  border-radius: 10px;
  color: var(--primary-color);
}

.dashboard-list-card>.card-body:hover {
  transition: transform 0.4s ease;
  transform: scale(0.97);
}

.newltr-btn {
  border-color: var(--primary-color) !important;
  border-radius: var(--btn-border);
}

.newltr-btn:hover,
.newltr-btn:active,
.newltr-btn:focus {
  border-color: var(--primary-color) !important;
  border-radius: var(--btn-border) !important;
  background-color: white !important;
  color: var(--primary-color) !important;
}

.newltr-div {
  border-radius: var(--div-border);
}

.upi-id:hover {
  color: var(--primary-color);
  transform: scale(0.97);

}

.social {
  border: none;
}

.social:hover,
.social:focus,
.social:active {
  color: var(--primary-color);
}


/* main */
.dash-one-card {
  border-radius: var(--btn-border);
}

.dash-one {
  background-color: var(--bg);
  min-height: 50%;
}

.dash-one-container {
  /* background: white; */
  border-radius: var(--div-border);
  /* box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1); */
  max-width: 800px;
  margin: 0 auto;
}

.dash-one-card {
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  min-height: 50%;
}

.dash-list-heading {
  margin-bottom: 1.5rem;
}

/* card */

/* From Uiverse.io by Samalander0 */
.dash-card {
  width: 100%;
  background: #fff480;
  background: var(--primary-card);
  color: black;
  position: relative;
  border-radius: var(--div-border);
  padding: 1.5em;
  transition: transform 0.4s ease;
}

.dash-card .dash-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  height: 100%;
  transition: transform 0.4s ease;
}

.dash-card .dash-card-top,
.dash-card .dash-card-bottom {
  display: flex;
  justify-content: space-between;
}

.dash-card .dash-card-top p,
.dash-card .dash-card-top .dash-card-title,
.dash-card .dash-card-bottom p,
.dash-card .dash-card-bottom .dash-card-title {
  margin: 0;
}

.dash-card .dash-card-title {
  font-weight: bold;
}

.dash-card .dash-card-top p,
.dash-card .dash-card-bottom p {
  font-weight: 600;
}

.dash-card .dash-card-bottom {
  align-items: flex-end;
}

.dash-card .dash-card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.dash-card .dash-card-image svg {
  width: 4em;
  height: 4em;
  transition: transform 0.4s ease;
}

.dash-card:hover {
  cursor: pointer;
  transform: scale(0.97);
}

.dash-card:hover .dash-card-content {
  transform: scale(0.96);
}

.dash-card:hover .dash-card-image svg {
  transform: scale(1.05);
}

.dash-card:active {
  transform: scale(0.9);
}


/*  dash two */
.dash-two-card {
  border-radius: var(--btn-border);
}

.dash-two {
  background-color: var(--bg);
  min-height: 50%;
}

.dash-two-container {
  background: white;
  border-radius: var(--div-border);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.dash-two-card {
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  min-height: 50%;
}







/*  dash three */
.dash-three-card {
  border-radius: var(--btn-border);
}

.dash-three {
  background-color: var(--bg);
  min-height: 50%;
}

.dash-three-container {
  background: white;
  border-radius: var(--div-border);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.dash-three-card {
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  min-height: 50%;
}

.donation-container-main {
  background-color: #ffffff;
}



/* checking box */

.dashboard-list-card {
  border-right: none;
  border-left: none;
  border-top: none;
  border-radius: 0;
}


/* pagination */
.active>.page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-link {
  color: var(--primary-color);
}

.dash-new-upload,
.bi-person-fill-x {
  color: var(--primary-color);

}



/* list styleing one-------------------------------------- */
.checklist_one {
  /* width: 50%; */
  --background: #ffffff;
  --text: #414856;
  --check: var(--primary-color);
  --disabled: #c3c8de;
  --width: 100px;
  --height: 140px;
  --border-radius: 10px;
  background: var(--background);

  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 10px 30px rgba(#414856, 0.05);
  /* padding: 30px 45px; */
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;

  label {
    color: var(--text);
    position: relative;
    cursor: pointer;
    display: grid;
    align-items: center;
    width: fit-content;
    transition: color 0.3s ease;

    &::before,
    &::after {
      content: "";
      position: absolute;
    }

    &::before {
      height: 2px;
      width: 8px;
      left: -27px;
      background: var(--check);
      border-radius: 2px;
      transition: background 0.3s ease;
    }

    &:after {
      height: 4px;
      width: 4px;
      top: 8px;
      left: -25px;
      border-radius: 50%;
    }
  }

  input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    height: 15px;
    width: 15px;
    outline: none;
    border: 0;
    margin: 0 15px 0 0;
    cursor: pointer;
    background: var(--background);
    display: grid;
    align-items: center;

    &::before,
    &::after {
      content: "";
      position: absolute;
      height: 2px;
      top: auto;
      background: var(--check);
      border-radius: 2px;
    }

    &::before {
      width: 0px;
      right: 60%;
      transform-origin: right bottom;
    }

    &::after {
      width: 0px;
      left: 40%;
      transform-origin: left bottom;
    }

    &:checked {
      &::before {
        animation: check-01 0.4s ease forwards;
      }

      &::after {
        animation: check-02 0.4s ease forwards;
      }

      +label {
        color: var(--disabled);
        animation: move 0.3s ease 0.1s forwards;

        &::before {
          background: var(--disabled);
          animation: slice 0.4s ease forwards;
        }

        &::after {
          animation: firework 0.5s ease forwards 0.1s;
        }
      }
    }
  }
}


@keyframes move {
  50% {
    padding-left: 8px;
    padding-right: 0px;
  }

  100% {
    padding-right: 4px;
  }
}

@keyframes slice {
  60% {
    width: 100%;
    left: 4px;
  }

  100% {
    width: 100%;
    left: -2px;
    padding-left: 0;
  }
}

@keyframes check-01 {
  0% {
    width: 4px;
    top: auto;
    transform: rotate(0);
  }

  50% {
    width: 0px;
    top: auto;
    transform: rotate(0);
  }

  51% {
    width: 0px;
    top: 8px;
    transform: rotate(45deg);
  }

  100% {
    width: 5px;
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes check-02 {
  0% {
    width: 4px;
    top: auto;
    transform: rotate(0);
  }

  50% {
    width: 0px;
    top: auto;
    transform: rotate(0);
  }

  51% {
    width: 0px;
    top: 8px;
    transform: rotate(-45deg);
  }

  100% {
    width: 10px;
    top: 8px;
    transform: rotate(-45deg);
  }
}

@keyframes firework {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0,
      0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    box-shadow: 0 -15px 0 0px #4f29f0, 14px -8px 0 0px #4f29f0,
      14px 8px 0 0px #4f29f0, 0 15px 0 0px #4f29f0, -14px 8px 0 0px #4f29f0,
      -14px -8px 0 0px #4f29f0;
  }
}

/* list styleing one-------------------------------------- */




/* list styleing two-------------------------------------- */
.checklist_two {
  /* width: 50%; */
  --background: #ffffff;
  --text: #414856;
  --check: var(--primary-color);
  --disabled: #c3c8de;
  --width: 100px;
  --height: 140px;
  --border-radius: 10px;
  background: var(--background);

  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 10px 30px rgba(#414856, 0.05);
  /* padding: 30px 45px; */
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;

  label {
    color: var(--text);
    position: relative;
    cursor: pointer;
    display: grid;
    align-items: center;
    width: fit-content;
    transition: color 0.3s ease;

    &::before,
    &::after {
      content: "";
      position: absolute;
    }

    &::before {
      height: 2px;
      width: 8px;
      left: -27px;
      background: var(--check);
      border-radius: 2px;
      transition: background 0.3s ease;
    }

    &:after {
      height: 4px;
      width: 4px;
      top: 8px;
      left: -25px;
      border-radius: 50%;
    }
  }

  input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    height: 15px;
    width: 15px;
    outline: none;
    border: 0;
    margin: 0 15px 0 0;
    cursor: pointer;
    background: var(--background);
    display: grid;
    align-items: center;

    &::before,
    &::after {
      content: "";
      position: absolute;
      height: 2px;
      top: auto;
      background: var(--check);
      border-radius: 2px;
    }

    &::before {
      width: 0px;
      right: 60%;
      transform-origin: right bottom;
    }

    &::after {
      width: 0px;
      left: 40%;
      transform-origin: left bottom;
    }

    &:checked {
      &::before {
        animation: check-01 0.4s ease forwards;
      }

      &::after {
        animation: check-02 0.4s ease forwards;
      }

      +label {
        color: var(--disabled);
        animation: move 0.3s ease 0.1s forwards;

        &::before {
          background: var(--disabled);
          animation: slice 0.4s ease forwards;
        }

        &::after {
          animation: firework 0.5s ease forwards 0.1s;
        }
      }
    }
  }
}


@keyframes move {
  50% {
    padding-left: 8px;
    padding-right: 0px;
  }

  100% {
    padding-right: 4px;
  }
}

@keyframes slice {
  60% {
    width: 100%;
    left: 4px;
  }

  100% {
    width: 100%;
    left: -2px;
    padding-left: 0;
  }
}

@keyframes check-01 {
  0% {
    width: 4px;
    top: auto;
    transform: rotate(0);
  }

  50% {
    width: 0px;
    top: auto;
    transform: rotate(0);
  }

  51% {
    width: 0px;
    top: 8px;
    transform: rotate(45deg);
  }

  100% {
    width: 5px;
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes check-02 {
  0% {
    width: 4px;
    top: auto;
    transform: rotate(0);
  }

  50% {
    width: 0px;
    top: auto;
    transform: rotate(0);
  }

  51% {
    width: 0px;
    top: 8px;
    transform: rotate(-45deg);
  }

  100% {
    width: 10px;
    top: 8px;
    transform: rotate(-45deg);
  }
}

@keyframes firework {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0,
      0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    box-shadow: 0 -15px 0 0px #4f29f0, 14px -8px 0 0px #4f29f0,
      14px 8px 0 0px #4f29f0, 0 15px 0 0px #4f29f0, -14px 8px 0 0px #4f29f0,
      -14px -8px 0 0px #4f29f0;
  }
}

/* list styleing two-------------------------------------- */

@media (max-width: 343px) {
    .navbar-brand {
        font-size: 14px;
    }
    .navbar-brand img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 400px) {
    #dash-new-upload-logo-id{
      font-size: 16px !important;
    }
    .dash-new-upload{
        padding: 0%;
    }

}