.sapa__section {
  width: 100%;
  padding: 60px 0;
}

.sapa__card {
  width: 90%;
}

.sapa__card img {
  width: 100%;
  height: 100%;
}

/**************/
.custom_btn {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  line-height: 18px;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}

.custom_btn::before,
.custom_btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.custom_btn::before {
  background: #454f73;
}

.custom_btn::after {
  background: var(--sapa-blue);
}

.custom_btn:hover {
  color: #fff !important;
}

.custom_btn:hover::before,
.custom_btn:hover::after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.custom_btn:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}

/*************/

.box__scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #f5f5f5;
}

.box__scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(34 179 145)),
    color-stop(0.72, rgb(2 182 140)),
    color-stop(0.86, rgb(0 147 112))
  );
}

.box__scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #00000020;
  background-color: #f5f5f5;
  border-radius: 10px;
}

/*************/
.delete__modal .modal-dialog {
  max-width: 400px;
}

.delete__modal .modal-content {
  border: none;
  border-radius: 15px;
}
.delete__modal .modal-body {
  text-align: center;
  padding: 30px;
}
.delete__modal .modal-body h6 {
  width: 235px;
  font-size: 17px;
  margin: 20px auto;
  line-height: 24px;
  font-weight: 600;
}
.delete__btns {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0;
}

.delete__btns .btn {
  width: auto;
  height: 40px;
  font-size: 13px;
  padding: 5px 25px;
  border-radius: 3px;
  font-weight: 600;
}

.delete__btns .btn.cancel__delete {
  background: #ebeced;
}

.delete__btns .btn.confirm__delete {
  background: var(--sapa-navy);
  color: #fff;
}

/*************/

@media only screen and (max-width: 575px) {
  .delete__modal .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
  }
}


.modal-content {
  box-shadow: 0 0 3px 0 #ccc !important;
}