/*
* @Author: abhi
* @Date:   2024-04-18 14:52:01
* @Last Modified by:   abhishek714
* @Last Modified time: 2024-07-08 11:46:24
*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 9999; /* Ensure the overlay appears above other elements */
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000; /* Ensure the loader appears above the overlay */
}

.spinner {
  width: 100px; /* Adjust the width of the spinner */
  height: 100px; /* Adjust the height of the spinner */
  background-image: url('/assets/images/loading-spinner.gif'); /* URL of the loading spinner image */
  background-size: cover;
}
.sideBar ul li {
  font-weight: 500 !important;
  font-size: 15px !important;  
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.square {
  float: left;
  vertical-align : middle;
  color: #FFFFFF;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; /* Adjust font size as needed */
}
.modal-dialog.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-bg {
  padding: 2% !important;
}
.commonFromTop {
   margin-top: -100px;
}
.membership_plan {
  cursor: pointer;
}
.membership_plan.active {
  border: 1px solid red;
}
.membership_plan_div {
  max-height: 272px;
  overflow-y: scroll;
}
.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}
.badge-success {
    color: #fff;
    background-color: #28a745;
}
.badge-danger {
    color: #fff;
    background-color: #dc3545;
}
.badge-warning {
    color: #212529;
    background-color: #ffc107;
}
a.disabled {
  /* Make the disabled links grayish*/
  color: gray;
  /* And disable the pointer events */
  pointer-events: none;
}
.grayTxt{ color:gray !important; }
.table-container {
  max-height: 400px; /* Set a fixed height for the table */
  overflow-y: auto;  /* Enable vertical scrolling */
}
.table-scroll {
  width: 100%;
  border-collapse: collapse;
}
.table-scroll thead th {
  position: sticky;
  top: 0;
  background: #cc0d2f;
  z-index: 2;
  color: #fff;
}
.table-scroll th, .table-scroll td {
  padding: 10px 10px 10px 20px;
  border: 1px solid #ddd;
}
.spinner-2 {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #cc0d2f;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}