[ng-cloak] {
    display: none !important;
}

#charCount {
    position: absolute;
    right: 10px;
    bottom: 8px;
    font-size: 12px;
    color: #888;
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Fixed loader image */
.loader-image {
    width: 100px;
    height: 100px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Container for blinking dots */
.blinking-dots {
    display: flex;
    margin-top: 20px;
}

/* Individual dot style */
.dot {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: blink 1.5s infinite;
}

/* Animation for blinking dots */
@keyframes blink {
    0%, 20% { opacity: 0; }
    30%, 80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Delay for the second and third dots */
.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}




.salutation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensures full width */
}

.guest-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensures full width */
}

/* Style the toggle container to push it to the right */
.toggle-container {
    margin-left: auto;
    display: flex;
    align-items: center;
}

#toggle_active_deactive_message {
    padding-left: 10px; /* Adds space to the left */
}

#guest_toggle_active_deactive_message{
    padding-left: 10px; 
}
.grayed-out {
    color: gray;           /* Gray out text */
    background-color: #f0f0f0;  /* Light gray background */
}

.grayed-out-input {
    background-color: #ffffff !important; /* Light gray input field */
    border-color: #0d0c0c;        /* Change border to a lighter color */
    color: #ffffff;               /* Gray text */
}

.grayed-out .form-check-input {
    pointer-events: none;      /* Prevent interaction when grayed out */
    opacity: 0.5;              /* Make it less visible */
}

.confirm-button {
    background-color: #28a745 !important;  /* Green color */
    color: white !important;               /* White text */
    border: none;
    box-shadow: none;
}

.video_model_price{
    position: absolute;
    top: 33%;
    right: 15px;
    background: linear-gradient(0deg, #d81a06 0%, #d81a06 100%);
    color: white;
    border: 2px solid #ffffff;
    padding: 10px 15px;
    font-size: 20px;
    border-radius: 50px;
}

.try_free_sample_video_model_price {
  position: absolute;
  top: 17%;
  right: 15px;

  background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%); /* Bright Yellow Gradient */
  color: black; /* White text */
  border: 2px solid #ffffff;
  font-size: 18px; /* Increase font size */
  font-weight: bold; /* Make text bold */
  padding: 12px 18px; /* Increase padding */
  border-radius: 50px; /* Fully rounded button */
  text-align: center;
  
}







.blinking-button {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}



@-webkit-keyframes glowing {
    0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
    100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  }
  
  @-moz-keyframes glowing {
    0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
    100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
  }
  
  @-o-keyframes glowing {
    0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
    100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  }
  
  @keyframes glowing {
    0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
    100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  }










  .wrapper{
    width:100%;
  padding-top: 20px;
    text-align:center;
  }
  h2{
    font-family:sans-serif;
    color:#fff;
  }
  .carousel{
    width:100%;
    margin:0px auto;
  }
  .slick-slide{
    margin:10px;
  }
 
  .wrapper .slick-dots li button:before {
    font-size:20px;
    color:white;
  }


 
  .music-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #f9f9f9;
    margin: 3px 1;
  }

  .play-btn {
    padding: 5px 10px;
    background: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  .play-btn:hover {
    background: #303f9f;
  }

  .music-name {
    flex-grow: 1;
    margin: 0 10px;
  }

  input[type="radio"] {
    cursor: pointer;
  }

  .large-radio {
    height: 21px;
    width: 21px;
    margin-right: 20px;
  }


  .carousel {
    width: 100%;
    margin: 0 auto;
  }

  .carousel .slick-slide {
    display: flex;
    justify-content: center;
  }

  .music-item {
    width: 100%;
    box-sizing: border-box;
  }

  .slick-track {
    display: flex;
  }

  .slick-slide img {
    width: 100%;
    object-fit: cover;
  }

  /* Optional: To make it more responsive */
  @media (max-width: 768px) {
    .carousel {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .carousel {
      width: 100%;
    }
  }


  #custom-radio-container input[type="radio"] {
    display: none; /* Hide default radio button */
  }
  
  #custom-radio-container .radio-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
  }
  
  /* Create a custom circle */
  #custom-radio-container .radio-container::before {
    content: '';
    position: absolute;

  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #007bff;
  background-color: white;
}

/* Create the tick mark */
#custom-radio-container .radio-container::after {
  content: 'âœ”';
  position: absolute;
  top: 2px;
  left: 6px;
  font-size: 18px;
  color: #007bff;
  display: none;
}

/* Show tick mark when radio is selected */
#custom-radio-container input[type="radio"]:checked + .radio-container::after {
  display: block;
}

/* Change background on hover */
#custom-radio-container .radio-container:hover::before {
  background-color: #f0f0f0;
}

#music-carousel {
  display: block;
  width: 100%;
}

.music-item {
  text-align: center;
  padding: 3px;
}

/* #music-carousel .slick-slide {
  width: 350px !important;
} */
.number-input-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the left */
  gap: 5px; /* Space between buttons and input */
}

.number-input-container input[type="number"] {
  width: 60px; /* Adjust the width of the input box */
  height: 40px; /* Adjust the height */
  text-align: center; /* Center the text in the input */
  border: 2px solid #ccc; /* Border color */
  border-radius: 5px; /* Rounded corners */
  font-size: 16px; /* Font size for the input */
  outline: none; /* Remove outline on focus */
  padding: 5px;
}

.number-input-container input[type="number"]:focus {
  border-color: #007bff; /* Highlight border when focused */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add focus shadow */
}

.number-input-container button {
  width: 40px; /* Button width */
  height: 40px; /* Button height */
  background-color: #f0f0f0; /* Button background color */
  border: 2px solid #ccc; /* Button border color */
  border-radius: 50%; /* Circular button */
  font-size: 18px; /* Font size for arrow */
  color: #333; /* Arrow color */
  cursor: pointer; /* Pointer cursor for button */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.number-input-container button:hover {
  background-color: #007bff; /* Button background color on hover */
  color: #fff; /* Arrow color on hover */
  border-color: #007bff; /* Match border color on hover */
}

.number-input-container button:active {
  background-color: #0056b3; /* Darker background on click */
  color: #fff; /* Arrow color on click */
  border-color: #0056b3; /* Match border color on click */
}


.diamond-icon {
  animation: diamond-shine 2s infinite;
}

/* Glow effect animation for the diamond icon */
@keyframes diamond-shine {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff00ff;
  }
  50% {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
  }
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff00ff;
  }
}



.pricing-container {
  /* max-width: 400px; */
  margin: 30px auto;
  background: #ffffff;
  /* padding: 20px; */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Row Styling */
.pricing-row {
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}

.total-row {
  font-weight: bold;
}

.payable-row .highlight {
  color: #007bff; /* Blue color for payable amount */
}

.highlight {
  font-weight: bold;
  color: #e74c3c; /* Red for important values */
}

.value {
  color: #333;
}

/* Promo Code Row */
.promo-row {
  margin-top: 15px;
  text-align: center;
}

.promo-code {
  font-size: 14px;
  font-weight: bold;
  color: #28a745; /* Green color for success */
}

/* Responsive Design */
@media (max-width: 600px) {
  .pricing-container {
    width: 90%;
    padding: 15px;
  }

  .pricing-row {
    font-size: 12px;
  }

  .promo-code {
    font-size: 12px;
  }

  .responsive-image {
    width: 125px !important; /* Fixed width */
            height: 222px !important; /* Fixed height */
            object-fit: cover; /* Crop the image to fit within the dimensions */
            margin: 0 auto; /* Center the image horizontally */
            display: block; /* Ensure the image is treated as a block element */
            border-radius: 10px;
}
}

.responsive-image {
  width: 100%; /* Make the image responsive to the container's width */
  height: auto;
}
