﻿a.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

input.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.rotating {
    animation: rotate 2s linear infinite;
}

.text-overflow {
    overflow-x: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
}

.text-overflow:hover {
    overflow-x: auto;
    /*    white-space: nowrap;
    scrollbar-width: thin;*/
}

.img-100-size {
    height: 100px;
    width: auto;
}

.noti-css1 {
    margin: 0px;
}

.noti-css2 {
    right: 0px;
    bottom: 0px;
}

.noti-css3 {
    height: auto;
    overflow: hidden scroll;
}

.noti-css4 {
    padding: 0px;
}

.noti-css5 {
    width: 360px;
    height: 414px;
}

.noti-css6 {
    visibility: hidden;
}

.noti-css7 {
    width: 0px;
    display: none;
}

.noti-css8 {
    visibility: visible;
}

.noti-css9 {
    height: 313px;
    display: block;
    transform: translate3d(0px, 0px, 0px);
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.no-number-spin {
    -moz-appearance: textfield;
    /* Firefox */
    -webkit-appearance: none;
    /* Chrome, Safari, Edge */
    appearance: none;
}

.no-number-spin::-webkit-inner-spin-button,
.no-number-spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Styling the first column */
.center-line {
    position: relative;
    width: 20px;
    /* Adjust column width as needed */
}

.center-line::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -2px;
    left: 50%;
    width: 2px;
    /* Line thickness */
    background-color: #000;
    /* Line color */
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    width: 100%;
    /* Full width */
    /*max-width: 800px;*/
    /* Limit the maximum width */
    margin: 0 auto;
    /* Center horizontally */
    aspect-ratio: 16 / 9;
    /* Maintain the aspect ratio */
    display: flex;
    /* Added for vertical centering */
    align-items: center;
    /* Vertical centering */
    justify-content: center;
    /* Horizontal centering */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.admin-card-img {
    width: 150px !important;
}

.table-mh-350 {
    max-height: 350px;
    overflow-y: auto;
}

.progress-h-15px {
    height: 15px !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-primary);
    transition: .4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 15px;
    font-weight: bold;
    color: white;
}

.slider:before {
    content: "Mensual 📅";
    position: absolute;
    left: 10px;
    transition: .4s;
}

.slider:after {
    content: "🚀 Anual";
    position: absolute;
    right: 10px;
    opacity: 0;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--bs-warning);
}

input:checked+.slider:before {
    opacity: 0;
}

input:checked+.slider:after {
    opacity: 1;
}


.price-lower h5 {
    font-size: 0.8rem;
}

.price-lower h2 {
    font-size: 1rem;
}

.price-lower span {
    font-size: 0.8rem;
}

.price-upper h5 {
    font-size: 1.5rem;
}

.price-upper h2 {
    font-size: 2.5rem;
}

.price-upper span {
    font-size: 1rem;
}

.service-item:hover .svg-shadow {
    filter: drop-shadow(0px 0px 5px white);
}

/*--------------------------------------------------------------
# Whatsapp chat
--------------------------------------------------------------*/
/* WhatsApp Container */
.whatsapp-container {
    position: fixed;
    right: 10px;
    bottom: 25px;
    z-index: 99999;
}

/* WhatsApp Chat Bubble */
.whatsapp-chat {
    background-color: #25d366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.whatsapp-chat img {
    width: 120px;
    height: 120px;
}

/* Red Notification Dot */
.notification-dot {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
}

/* WhatsApp Chat Box */
.whatsapp-box {
    display: none;
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 280px;
    background-image: url("/images/backgrounds/whatsappbg.jpg");
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Chat Header */
.whatsapp-header {
    background: #248069;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.whatsapp-header h3 {
    color: white;
    margin: 0;
    font-size: 16px;
}

.whatsapp-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

/* Close Button */
.close-chat {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 18px;
    cursor: pointer;
}

/* Chat Message */
.whatsapp-message {
    background: #ffff;
    padding: 10px;
    margin: 30px;
    border-radius: 10px;
    font-size: 14px;
    height: 60px
}

.whatsapp-message span {
    font-weight: bold;
}

/* WhatsApp Button */
.whatsapp-button {
    display: block;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-button i {
    margin-right: 5px;
}

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    opacity: 1;
    animation: fall 3s linear forwards, fadeOut 1s ease-in-out 2s forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#promoAlert {
    margin-left: 5% !important;
    margin-right: 5% !important;
}

.text-colored {
    animation: colorCycle 3s infinite alternate;
}

/* Animación que cambia entre azul, rojo, verde y amarillo */
@keyframes colorCycle {
    0% {
        color: #007bff;
    }

    /* Azul */
    25% {
        color: #dc3545;
    }

    /* Rojo */
    50% {
        color: #28a745;
    }

    /* Verde */
    75% {
        color: #ffc107;
    }

    /* Amarillo */
    100% {
        color: #007bff;
    }

    /* Azul nuevamente */
}

label.form-control {
    height: 41px;
}

#notification-area {
    margin-top: -30px;
}