
/* =============================== */
/* NotoSansGujarati Font */
/* =============================== */



.is-invalid {
  border-color: #dc3545;
  /* Red border for invalid inputs */
}

.invalid-feedback {
  display: none;
  /* Hide feedback by default */
  color: #dc3545;
  /* Red text for feedback */
}

.is-invalid~.invalid-feedback {
  display: block;
  /* Show feedback for invalid inputs */
}

.bg-primary-success {
  background-color: #00900E !important;
}

.text-primary-success {
  color: #00900E !important;
}

.badge-success {
  color: var(--bs-success-inverse);
  background-color: #00900E !important;
}

.btn.btn-color-warning i {
  color: #00900E !important;
}

.text-green {
  color: #00900E !important;
}


/* custom color */
.text-orange {
  color: #FF6600 !important;
}

.text-pink {
  color: #DB147F !important;
}

.text-blue {
  color: #23408F !important;
}

.text-skyblue {
  color: #2395CA !important;
}

.text-purple {
  color: #6657FD !important;
}

.text-red {
  color: #f1416c !important;
}

.badge-light-orange {
  background-color: #FFEBDE !important;
  color: #FF6600 !important;
}

.badge-light-pink {
  background-color: #FFEDF7 !important;
  color: #DB147F !important;
}

.badge-light-blue {
  background-color: #E9ECF4 !important;
  color: #23408F !important;
}

.badge-light-purple {
  background-color: #EEF1FF !important;
  color: #5570FF !important;
}

.badge-light-skyblue {
  background-color: #bdd9e56e !important;
  color: #2395CA !important;
}

.bg-light-orange {
  background-color: #FFEBDE !important;
  color: #FF6600 !important;
}

.badge-light-red {
  background-color: #fff5f8 !important;
  color: #f1416c !important;
}

.badge-red {
  background-color: #f1416c !important;
  color: #ffffff !important;
}

.badge-light-green{
  background-color: #E6F4E7 !important;
  color: #00900E !important;
}

/* =============================== */
/* Momeries Video Styles */
/* =============================== */

.momeries-video-card-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.momeries-video-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.momeries-video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    background-color: #000;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.momeries-video-thumbnail-wrapper video {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    background-color: #000;
    object-fit: cover;
}

.momeries-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

.momeries-video-link:hover .momeries-video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.momeries-video-action-buttons {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.momeries-video-prevent-lightbox {
    pointer-events: auto;
}

.momeries-edit-video-preview-wrapper {
    position: relative;
    width: 100%;
    background-color: #000;
    border-radius: 0.475rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.momeries-edit-video-preview-wrapper:hover {
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.2);
}

.momeries-edit-video-preview-wrapper video {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    background-color: #000;
}

.momeries-edit-video-preview-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}