html, body {
    background-color: #0C0B0B;
    background-repeat: repeat;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.blue-text {
    color: #00a7e6;
}
.fade-left {
    opacity: 0;
    transform: translateX(-100%);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(100%);
    animation: fadeRight 1s forwards;
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-bottom {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeBottom 1s forwards;
}

@keyframes fadeBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.visible-fade {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Delay the animations slightly for a staggered effect */
.fade-left {
    animation-delay: 0.5s;
}

.fade-right {
    animation-delay: 1s;
}
.widget-container {
    margin: 0px 0px 0px 0px;
    padding: 25px 25px 25px 25px;
    background-color: #d8d8d81f;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #373737;
    border-radius: 10px 10px 10px 10px;
    height: 100%;
}
.bg-container {
    background-image: url("../../images/bg-dots.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
}
.custom-accordion .accordion-item{
    background: transparent;
    color: #a8a8a8;
}
.custom-accordion .accordion-item .accordion-button {
    background-color: #d8d8d81f;
    color: #fff;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #373737;
}
.custom-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
/* Change the color of the accordion arrow icon */
.accordion-button::after {
    color: white; /* White color for the arrow */
}

/* Change the color of the accordion icon when it is expanded */
.accordion-button:not(.collapsed)::after {
    color: white !important; /* Keep the expanded icon white */
}

/* Optional: Change the accordion background when expanded */
.accordion-button:not(.collapsed) {
    background-color: #007bff; /* Blue background when expanded */
}
.video-thumbnail {
    width: 30px;   /* Adjusted width to 30px */
    height: 30px;  /* Adjusted height to 30px */
    margin-right: 10px;
    border-radius: 4px;
    object-fit: cover; /* Ensures the image maintains its aspect ratio */
}
.list-group-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.video-info {
    display: flex;
    align-items: center;
}
.playlist-header {
    background-color: #00a7e6;
    color: #fff;
    padding: 10px;
}
.text-green {
    color: #34d399;
}
.text-grey {
    color: #9ca3af;
}
.custom-form-input .form-control {
    background: transparent;
    color: #fff;
}
.custom-form-input .form-floating>label {
    color: #ffffff;
}
.phone-input .iti{
    width: 100%;
    height: 56px;
}
.hide {
    display: none;
}
#error-msg {
    color: red;
}
#valid-msg {
    color: green;
}
#error-msg1 {
    color: red;
}
#valid-msg1 {
    color: green;
}
.toast {
    min-width: 300px;
    max-width: 350px;
    font-size: 16px;
}
.toast-header {
    font-size: 18px;
}
/* Custom CSS for Error Toast (Red Background) */
.toast.bg-danger .toast-body,
.toast.bg-danger .toast-header {
    color: white !important; /* White text for red toast */
}

/* Custom CSS for Success Toast (Green Background) */
.toast.bg-success .toast-body,
.toast.bg-success .toast-header {
    color: white !important; /* White text for green toast */
}
html {
    scroll-behavior: smooth;
}
.wistia-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  
  .wistia-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }