.modal-1 {
    z-index: 9999999999 !important;
}
.modal-2 {
    z-index: 9999999 !important;
}
.modal-checkout {
    justify-content: normal !important;
}
.modal-checkout.is-active .modal-no-bg {
    background: #444f60 !important;
    opacity: 0.8;
}
.modal-checkout .modal-card, .modal-checkout .modal-content {
    top: 8%;
}
.modal-checkout .modal-content-bottom {
    overflow: hidden;
    top: 15%;
    color: #fff;
    font-weight: 700;
}
.modal {
    transition: all 0.5s;
    transition-delay: 500ms;
    transition-duration: 0;
    transform: scale(0);
    z-index: 9999999;
}
.modal .section {
    padding: 2rem 2rem 2rem 2rem;
}
.modal .modal-content {
    transition: all 0.4s;
    transform: scale(0);
    opacity: 0;
    z-index: 99 !important;
}
.modal .modal-close {
    transition: all 0.4s;
    z-index: 100 !important;
}
.modal .modal-close:hover {
    transform: rotate(135deg);
}
.modal a {
    border-radius: 6px;
}
.modal .title {
    color: #333 !important;
}
.modal .subtitle {
    color: #a9abac !important;
}
.modal.is-active {
    transform: scale(1);
}
.modal.is-active .modal-background {
    background: linear-gradient(45deg, #6a85b6 0%, #bac8e0 100%);
    background-color: #41d9bb;
    width: 1000px;
    height: 1000px;
    border-radius: 10000px;
    transition: all 0.5s;
    transform: scale(0);
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 98 !important;
    overflow: hidden !important;
    transition-delay: 300ms;
    transition-duration: 0;
}
.modal.is-active .modal-background.scaleInCircle {
    transform: scale(7);
}
.modal.is-active .modal-content {
    transition-delay: 150ms;
    transition-duration: 0;
}
.modal.is-active .modal-content.scaleIn {
    transform: scale(1);
    opacity: 1;
}
.modal.is-active .modal-close {
    z-index: 100 !important;
}
.modal.is-active.image-modal .modal-background {
    background: linear-gradient(45deg, #444f60, #444);
    background-color: #444f60;
}
.modal.is-active.image-modal img {
    border-radius: 6px;
}
.modal.is-active.image-modal .gallery-item figure {
    background: none;
}
.modal.is-active .modal-card .modal-card-head, .modal.is-active .modal-card .modal-card-foot {
    padding: 15px;
}
.modal.is-active .modal-card .delete {
    background: transparent !important;
    transition: all 0.3s;
    float: right;
}
.modal.is-active .modal-card .delete:before {
    background: #1d8963;
}
.modal.is-active .modal-card .delete:after {
    background: #1d8963;
}
.modal.is-active .modal-card .delete:hover {
    transform: rotate(135deg);
}
.modal.is-active .modal-card .modal-card-head {
    background-color: #fff;
}
.modal.is-active .modal-card .modal-card-head p {
    color: #444f60;
}
.modal.is-active .modal-card .modal-card-body::-webkit-scrollbar {
    width: 10px;
}
.modal.is-active .modal-card .modal-card-body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
}
.modal.is-active .modal-card .modal-card-foot {
    background-color: #fff;
    justify-content: flex-end;
    border-top: none;
}
.modal.is-active.modal-sm .modal-card-body {
    max-height: 400px;
}
.modal.is-active.modal-hero .modal-background {
    background: linear-gradient(45deg, #41d9bb, #1d8963);
    background-color: #1c2930;
}
.modal.is-active.modal-success .modal-background {
    background: #23d160;
}
.modal.is-active.modal-error .modal-background {
    background: #ff7273;
}
.modal.is-active.modal-warning .modal-background {
    background: #eda514;
}
.modal.is-active.modal-info .modal-background {
    background: #039be5;
}
.modal.is-active .modal-svg {
    max-width: 110px;
    margin: 0 auto !important;
}
.modal.is-active .modal-no-bg {
    background: transparent;
}
.modal.is-active .modal-shadow-raise {
    box-shadow: 0rem 0.125rem 2.05rem rgba(0, 0, 0, 0.09) !important;
    border-radius: 8px;
}
@media screen and (min-width: 769px) {
    .modal.modal-lg .modal-card, .modal.modal-lg .modal-content {
        width: 1000px !important;
   }
    .modal.modal-sm .modal-card, .modal.modal-sm .modal-content {
        width: 400px !important;
   }
}


.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}
@keyframes translateLeft {
    from {
        transform: translate3d(100%, 0, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
   }
}
.translateLeft {
    animation-name: translateLeft;
    animation-duration: 0.3s;
    transition: all 500ms cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes translateDown {
    from {
        transform: translate3d(0, -100px, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
   }
}
.translateDown {
    animation-name: translateDown;
    animation-duration: 0.3s;
    transition: all 500ms cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes translateUp {
    from {
        transform: translate3d(0, 100%, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
   }
}
.translateUp {
    animation-name: translateUp;
    animation-duration: 0.3s;
    transition: all 500ms cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes fadeIn {
    from {
        opacity: 0;
   }
    to {
        opacity: 1;
   }
}
.fadeIn {
    opacity: 0;
    animation-name: fadeIn;
}
@keyframes fadeInLeft {
    from {
        transform: translate3d(20px, 0, 0);
        opacity: 0;
   }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
   }
}
.preFadeInLeft {
    opacity: 0;
}
.fadeInLeft {
    opacity: 0;
    animation-name: fadeInLeft;
}
@keyframes fadeInRight {
    from {
        transform: translate3d(-20px, 0, 0);
        opacity: 0;
   }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
   }
}
.preFadeInRight {
    opacity: 0;
}
.fadeInRight {
    opacity: 0;
    animation-name: fadeInRight;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 20px, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
   }
}
.preFadeInUp {
    opacity: 0;
}
.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, -20px, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
   }
}
.preFadeInDown {
    opacity: 0;
}
.fadeInDown {
    opacity: 0;
    animation-name: fadeInDown;
}
@keyframes fadeOutUp {
    from {
        transform: translate3d(0, 20px, 0);
   }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 0;
   }
}
.preFadeOutUp {
    opacity: 1;
}
.fadeOutUp {
    opacity: 1;
    animation-name: fadeOutUp;
}
@keyframes levitate {
    from {
        transform: translate(0, 0);
   }
    50% {
        transform: translate(0, 10px);
   }
    to {
        transform: translate(0, 0);
   }
}
.levitate {
    animation-name: levitate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes gelatine {
    from, to {
        transform: scale(1, 1);
   }
    25% {
        transform: scale(0.9, 1.1);
   }
    50% {
        transform: scale(1.1, 0.9);
   }
    75% {
        transform: scale(0.95, 1.05);
   }
}
.gelatine {
    animation: gelatine 0.6s;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}
@keyframes unzoom {
    from, to {
        transform: scale(1, 0);
   }
    25% {
        transform: scale(0.9, 1.1);
   }
    50% {
        transform: scale(1.1, 0);
   }
}
.unzoom {
    animation: unzoom 0.7s;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}
@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
   }
    100% {
        transform: scale(1.8);
        opacity: 0;
   }
}
@keyframes entrance {
    from {
        transform: scale(0);
   }
    25% {
        transform: scale(1.05);
   }
    50% {
        transform: scale(0.95);
   }
    75% {
        transform: scale(1.05);
   }
    to {
        transform: none;
   }
}
.entrance {
    animation: entrance 0.8s;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
   }
    to {
        transform: scale(1);
   }
}
.scaleIn {
    animation: scaleIn 0.25s;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@keyframes scaleInCircle {
    from {
        transform: scale(0);
   }
    to {
        transform: scale(1);
   }
}
.scaleInCircle {
    animation: scaleInCircle 0.25s;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@keyframes scaleOut {
    from {
        transform: scale(1);
   }
    to {
        transform: scale(0);
   }
}
.scaleOut {
    animation: scaleOut 0.25s;
}
.pulsate {
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
}
.delay-1 {
    animation-delay: 0.25s;
}
.delay-2 {
    animation-delay: 0.5s;
}
.delay-3 {
    animation-delay: 0.75s;
}
.delay-4 {
    animation-delay: 1s;
}
.delay-5 {
    animation-delay: 1.25s;
}
.delay-6 {
    animation-delay: 1.5s;
}
.delay-7 {
    animation-delay: 1.75s;
}
.delay-8 {
    animation-delay: 2.25s;
}
.delay-9 {
    animation-delay: 2.5s;
}
.delay-10 {
    animation-delay: 2.75s;
}
.delay-11 {
    animation-delay: 3s;
}
@keyframes scale-up-center {
    0% {
        transform: scale(0.5);
   }
    100% {
        transform: scale(1);
   }
}



.custom-swal-container{padding:2rem 1rem 2rem 2rem!important;z-index:999999!important}.custom-swal-container .custom-swal-popup{border:2px solid transparent!important;border-radius:8px!important;box-shadow:0 14px 26px -12px rgba(152,169,195,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(152,169,195,.2)!important}.custom-swal-container .custom-swal-popup .swal2-icon.swal2-error,.custom-swal-container .custom-swal-popup .swal2-icon.swal2-info,.custom-swal-container .custom-swal-popup .swal2-icon.swal2-question,.custom-swal-container .custom-swal-popup .swal2-icon.swal2-success,.custom-swal-container .custom-swal-popup .swal2-icon.swal2-success .swal2-success-ring,.custom-swal-container .custom-swal-popup .swal2-icon.swal2-warning{border:none!important}.custom-swal-container .custom-swal-popup-error{border-color:#ff7273!important}.custom-swal-container .custom-swal-popup-error .custom-swal-content,.custom-swal-container .custom-swal-popup-error p{color:#ff7273!important}.custom-swal-container .custom-swal-popup-error .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#ff7273!important}.custom-swal-container .custom-swal-popup-success{border-color:#23d160!important}.custom-swal-container .custom-swal-popup-success .custom-swal-content,.custom-swal-container .custom-swal-popup-success p{color:#23d160!important}.custom-swal-container .custom-swal-popup-success .swal2-icon.swal2-success [class^=swal2-success-line]{background-color:#23d160!important}.custom-swal-container .custom-swal-popup-info{border-color:#039be5!important}.custom-swal-container .custom-swal-popup-info .custom-swal-content,.custom-swal-container .custom-swal-popup-info p{color:#039be5!important}.custom-swal-container .custom-swal-popup-info .swal2-icon.swal2-info{color:#039be5}.custom-swal-container .custom-swal-popup-warning{border-color:#eda514!important}.custom-swal-container .custom-swal-popup-warning .custom-swal-content,.custom-swal-container .custom-swal-popup-warning .swal2-icon.swal2-warning,.custom-swal-container .custom-swal-popup-warning p{color:#eda514!important}.custom-swal-container .custom-swal-header{padding-left:.6rem!important;padding-right:.2rem!important}.custom-swal-container .custom-swal-content{padding:.5rem!important}.custom-swal-container .custom-swal-content p{font-family:inherit!important;font-size:.9rem;font-weight:500;letter-spacing:.4px;padding:.25rem;text-align:left}




/* new ux/ui css customization  START*/

.section.playlist .video-container{
    height: fit-content;
}
.d-nt-m-image {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Horizontal scroller */
.h-scroll{
    flex-wrap: nowrap;
    overflow-y: hidden;
    white-space: nowrap;
    overflow-x: auto;
}

.h-scroll::-webkit-scrollbar {
    width: 6px;
    height: 3px;
    background-color: #f5f6f7;
}

.h-scroll::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
}

/* Vertical scroller */
.v-scroll{
    overflow-x: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: auto;
}

.v-scroll::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    background-color: #F5F5F5;
}

.v-scroll::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
}

.hero .hero-text h1 {
    font-size: 5rem;
}
/* Media Query */
@media only screen and (min-width: 820px) and (max-width: 1180px)  { 
    .break {
        flex-basis: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h1 {
        font-size: 3.5rem !important;
    }
}

@media only screen and (max-width: 768px)  { 
    .break {
        flex-basis: 100%;
    }
    .tab-card {
        width: -webkit-fill-available;
        margin: auto;
    }

    .mbl-title{
        width: 150px; 
        text-wrap: balance;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 999px)  {
    .hero .hero-text {
        padding: 5rem 0rem 10rem 5rem;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1728px) {
    .hero .hero-text {
        padding: 8rem 5rem 10rem 6rem;

    }

    .hero .hero-text h1 {
        font-size: 3rem !important;
    }
    .hero .hero-text h4 {
        font-size: 1.5rem !important;
    }
}
/* new ux/ui css customization  END*/

/* .carousel__track {
    gap: 1rem !important;
    align-items: start;
} */

/* Skeleton Loading Styles */
.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-tag {
    width: 60px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
}

.skeleton-title {
    width: 80%;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-description {
    width: 100%;
}

.skeleton-line {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line:last-child {
    width: 70%;
}

.skeleton-button {
    width: 120px;
    height: 48px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 24px;
}

.skeleton-price {
    width: 80px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive adjustments for skeleton */
@media (max-width: 768px) {
    .skeleton-image {
        height: 180px;
    }
    
    .skeleton-button {
        width: 100px;
        height: 40px;
    }
}

.custom-container{
    max-width: 90%;
    margin: auto;
}

::-webkit-scrollbar {
    display: none;
  }
  
  .no-scrollbar {
    scrollbar-width: none;
  }
  
  .f-small{
    font-size: small !important;
    text-wrap: balance;
  }
  .f-smaller{
    font-size: smaller !important;
    font-weight: 600 !important;
  }

/* Comparison Section Styling */
.comparison-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* .comparison-header-pill {
    background: linear-gradient(90deg, #41d9bb 0%, #1d8963 100%);
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
    color: white;
    box-shadow: 0 10px 30px rgba(29, 137, 99, 0.2);
} */

.comparison-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
}

.comparison-table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 10px 0; /* Add spacing between columns */
}

.comparison-table thead th {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: #444f60;
    text-transform: uppercase;
    background-color: #e2f3f1;
    border-radius: 15px 15px 0 0;
}

.comparison-table thead th.feature-head {
    text-align: left;
    padding-left: 20px;
    font-size: 20px;
    background-color: transparent;
    color: #1c2930;
}

/* Eventmie Highlight Column - Making it look taller/long */
.comparison-table .highlight-col {
    background-color: #1bd9bb !important;
    color: white !important;
    width: 125px;
    box-shadow: 0 0 25px rgba(27, 217, 187, 0.4);
}

.comparison-table thead th.highlight-col {
    background-color: #1bd9bb !important;
    font-size: 13px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.comparison-table tbody td {
    padding: 10px;
    text-align: center;
    border: none;
    margin-bottom: 0;
}

/* Striped Rows Logic */
.comparison-table tbody tr:nth-child(odd) td {
    background-color: #f1fafa; /* Light teal for odd rows */
}

.comparison-table tbody tr:nth-child(even) td {
    background-color: #ffffff; /* Pure white for even rows */
}

/* Feature name column should follow stripe color but keep its padding */
.comparison-table tbody td.feature-name {
    text-align: left;
    padding-left: 20px;
    font-weight: 600;
    color: #444f60;
    font-size: 12px;
}

/* Override Striping for the Highlight Column to keep it solid */
.comparison-table tbody td.highlight-col {
    background-color: #1bd9bb !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(27, 217, 187, 0.2);
}

.comparison-table tbody tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.comparison-table tbody tr td:last-child {
    /* border-radius: 0 12px 12px 0; */
}

/* If the last column is the highlight col, it gets full radius */
.comparison-table tbody tr td.highlight-col {
    /* border-radius: 12px !important; */
}

.feature-bullet {
    color: #1bd9bb;
    margin-right: 8px;
    font-size: 10px;
}

/* Cross and Check indicators */
.status-cross {
    color: #ff5252; /* Red as requested */
    font-size: 10px;
    background-color: rgba(255, 82, 82, 0.1);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-check {
    color: #ffffff; /* White check on green bg */
    font-size: 9px;
    background-color: #ffffff33;
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.status-check-green {
    color: #1bd9bb; /* Green check */
    font-size: 9px;
    background-color: #ffffff33;
    border: 1px solid #1bd9bb;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-cross-cell i {
    background: #f1f5f9;
    color: #cbd5e1;
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
}

.highlight-col i.fa-check-circle {
    color: #ffffff;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 991px) {
    .comparison-table {
        border-spacing: 5px 0;
    }
    .comparison-table .highlight-col {
        transform: none;
        width: 120px;
    }
}