
.accordion-tps{
    margin: auto;
    width: auto;
    position: relative;
  
  }
  
  .accordion-tps-ul{
      padding-left: 0rem !important;
  }
  .accordion-tps li{
    list-style: none;
     width: auto;
     margin: 1px;
    padding: 8px;
    border-radius: none;
    background: #FFF;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15);
    transition: all .5s;
  }
  
  .accordion-tps li h5{
      display: flex;
      align-items: center;
      padding: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      color:  #1c9329;
  }
  
  
  .accordion-tps .content-tps{
      color: #555;
      background-color: #defde5;
      border-radius: 8px;
      padding: 0 10px;
      line-height: 26px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s, padding 0.5s;
  }
 

  .question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #1c9329;
}

.answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.5s ease-in;
}

.answer p{
   padding-top: 1rem;
   font-size: 1rem;
}

.appquide {
   cursor: pointer;
}

.appquide.active .answer {
   max-height: 300px;
  animation: fade is ease-in-out;
}

.appquide.active svg {
   transform: rotate(180deg);
}

svg {
   transition: transform 0.5s ease-in;
}

@keyframes fade {
   from {
       opacity: 0;
       transform: translateY(-10px);
   }
   to {
       opacity: 1;
       transform: translateY(0px);
   }
}
/* .modal {
   z-index: 1055 !important;
   display: block;
 }
 */
 .modal-backdrop {
   z-index: 1050 !important;
 }

 .bg-green-mine {
   background-color: #1c9329;
 }
 .bg-website {
   background-color: #1c9329 !important;
   color: #fff !important;
 }
 .bg-website:hover {
   background-color: #066414 !important;
   color: #fff !important;
 }
 .don-account {
     color: rgb(0, 157, 255) !important;
 }
/* Default pagination button */
.page-link {
   color: #1c9329 !important;
   background-color: white;
   border: 1px solid #1c9329;
   padding: 8px 12px;
   transition: all 0.3s ease;
}

/* Hover effect */
.page-link:hover {
   background-color: #1c9329;
   color: white;
}

/* Active page */
.page-item.active .page-link {
   background-color: #1c9329;
   color: white !important;
   border-color: #1c9329;
}

/* Disabled buttons */
.page-item.disabled .page-link {
   color: gray;
   background-color: #f8f9fa;
   border-color: #ddd;
}

/* First and Last buttons */
.page-link.first, .page-link.last {
   font-weight: bold;
}

/* Previous and Next buttons */
.page-link.previous, .page-link.next {
   font-weight: bold;
}
