body{
    font-size: 13px;
    font-family: "Poppins", sans-serif !important;
}
.sidebar-menu li>a{
  letter-spacing: -0.8px;
}
.sidebar-menu>li>a>svg {
  margin-right: 5px;
}
.badge.badge-danger.button-stop.float-right {
  width: 10px;
  height: 10px;
  margin-top: 8px;
}
.billing .btn-app{
  margin: 0 !important
}
.price {
  font-size: 2.4285714286rem;
}
.price sup {
  font-size: 1rem;
}
/* Styles for the loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }
  
  .loader-circle {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #00dcc0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Styles to hide the loader when content is loaded */
  body.loaded #loader {
    display: none;
    pointer-events: none;
  }
  .floating-buttons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    background: #ffffffeb;
    padding: 5px;
    border: 1px solid #d5dfea;
    border-radius: 5px;
}
.button-stop {
  border: none;
  -webkit-animation: 1.5s infinite glowing;
  -moz-animation: 1.5s infinite glowing;
  -o-animation: 1.5s infinite glowing;
  animation: 1.5s infinite glowing;
}
@keyframes glowing {
  0%,
  100% {
      background-color: #b20000;
      box-shadow: 0 0 3px #b20000;
  }
  50% {
      background-color: red;
      box-shadow: 0 0 40px red;
  }
}
@media (max-width: 767px){
    .main-header .navbar-custom-menu .navbar-nav .search-bar > div {
        padding: 5px 0 8px !important;
    }
}
.glowing-btn {
  background-color: #ff3b30; /* Red color */
  color: white !important; /* Text color stays white */
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.8), 0 0 20px rgba(255, 59, 48, 0.8);
  text-align: center;
  transition: all 0.3s ease;
}

.glowing-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 59, 48, 0.6);
  border-radius: 50%;
  animation: glowing 1.5s infinite ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.glowing-btn:hover {
  background-color: #e64c3c !important; /* Slightly darker red on hover */
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.7), 0 0 15px rgba(255, 59, 48, 0.7);
}

.glowing-btn i {
  z-index: 1;
}

@keyframes glowing {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  50% {
      transform: scale(1.3);
      opacity: 0.4;
  }
  100% {
      transform: scale(1);
      opacity: 0.7;
  }
}
.glowing-btn-expiry {
  background-color: #ff9800; /* Orange color (Warning) */
  color: white !important; /* Text color stays white */
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.8), 0 0 20px rgba(255, 152, 0, 0.8);
  text-align: center;
  transition: all 0.3s ease;
}

.glowing-btn-expiry::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 152, 0, 0.6);
  border-radius: 50%;
  animation: glowing 1.5s infinite ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.glowing-btn-expiry:hover {
  background-color: #f3712a !important; /* Darker orange on hover */
  box-shadow: 0 0 8px rgba(255, 152, 0, 0.7), 0 0 15px rgba(255, 152, 0, 0.7);
}

.glowing-btn-expiry i {
  z-index: 1; /* Ensure icon stays above the glow */
}

@keyframes glowing {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  50% {
      transform: scale(1.3);
      opacity: 0.4;
  }
  100% {
      transform: scale(1);
      opacity: 0.7;
  }
}