
.radio-container {
    display: flex;
    flex-wrap: wrap; /* Permite que se ajusten a la pantalla */
    justify-content: center;
    gap: 15px;
}
.radio-container input[type="radio"] {
    display: none;
}
.radio-container label {
    cursor: pointer;
    position: relative;
    display: flex;
    width: 100px;
    height: 100px;
}
.radio-container .image-default, .image-selected {
    width: 100%;
    height: auto;
    position: absolute;
    transition: opacity 0.3s;
}
.radio-container .image-selected {
    opacity: 0;
}
.radio-container input[type="radio"]:checked + label .image-selected {
    opacity: 1;
}
.radio-container input[type="radio"]:checked + label .image-default {
    opacity: 0;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .radio-container {
        flex-wrap: wrap;
    }
    .radio-container label {
        width: 80px;
        height: 80px;
    }
    .radio-container .image-default, .image-selected {
        width: 80px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .radio-container label {
        width: 60px;
        height: 60px;
    }
    .radio-container .image-default, .image-selected {
        width: 60px;
        height: auto;
    }
}

.flatpickr-calendar {
    width: 338px;
    height: 350px;
    border-radius: 25px;
    padding: 15px;
}

.card{
    --falcon-card-spacer-y: 1.25rem;
    --falcon-card-spacer-x: 1.25rem;
    --falcon-card-title-spacer-y: 0.5rem;
    --falcon-card-border-width: 0px;
    --falcon-card-border-color: rgba(0, 0, 0, 0.125);
    --falcon-card-border-radius: 15px;
    --falcon-card-inner-border-radius: calc(0.375rem - 0px);
    --falcon-card-cap-padding-y: 1rem;
    --falcon-card-cap-padding-x: 1.25rem;
    --falcon-card-cap-bg: rgba(0, 0, 0, 0);
    --falcon-card-img-overlay-padding: 1rem;
    --falcon-card-group-margin: 1rem;
    position:relative;
    display:flex;
    -ms-flex-direction:column;
    flex-direction:column;
    min-width:0;
    height:var(--falcon-card-height);
    word-wrap:break-word;
    background-clip:border-box;
    border:var(--falcon-card-border-width) solid var(--falcon-card-border-color);
    border-radius:25px;
    box-shadow:var(--falcon-box-shadow);
    background-color: #FFFDFA;
    -webkit-box-shadow:var(--falcon-box-shadow);
    box-shadow:var(--falcon-box-shadow)
}

.text-bold {
    font-weight: bold!important;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #5A6C9C; /* Triángulo hacia arriba */
    transition: transform 0.3s ease; /* Suaviza el cambio de dirección */
}

.arrow-btn[aria-expanded="true"] .arrow {
    transform: rotate(180deg); /* Gira el triángulo hacia abajo */
}

button.swal2-cancel {
    background: #B9415B !important;
    border-radius: 25px !important;
}

button.swal2-confirm {
    background: #4E68A0 !important;
    border-radius: 25px !important;
}

.box {
    width: 41x; /* Tamaño fijo para mantener consistencia */
    height: 42px;
    font-size: 20px;
    text-align: center;
    background-color: #EBEEFF;
}

.box:focus {
    background-color: #e0e0e0; /* Cambia el color de fondo al interactuar */
}


.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 26px solid #C2CFFF;
    margin: auto;
    margin-top: 15px;
    display: flex;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 26px solid #C2CFFF;
    margin: auto;
    margin-top: 15px;
    display: flex;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    cursor: grab;
}
.scroll-container::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}
.card-custom {
    flex-direction: row;
    align-items: center;
    padding: 14px;
    width: 646px;
    -moz-user-select: none;
    -ms-user-select: none;
}
.card-custom img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    margin-right: 20px;
    flex-shrink: 0; /* Evita que la imagen se reduzca */
}
.card-text {
    max-width: 300px;
    word-wrap: break-word; /* Permite que el texto se ajuste a las tarjetas */
    overflow-wrap: break-word; /* Ajusta el texto en varias líneas */
    flex-shrink: 1; /* Permite que el texto se ajuste */
    font-size: 17px; /* Permite que el texto se ajuste */
    padding-top: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .card-custom {
        text-align: center;
        width: 300px;
        padding: 14px;
    }
    .card-custom img {
        margin: 0 0 0 0;
    }
    .card-text {
        max-width: 100%;
        font-size: 13px;
        margin-top: 15px;
    }
}

.icon-circular {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.icon-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.icon-name {
    text-align: center;
    margin-top: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.scroll-horizontal-icons {
    overflow-x: hidden;
    white-space: nowrap;
    cursor: grab;
}
.scroll-horizontal-icons:active {
    cursor: grabbing;
}

.dynamic-content {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.dynamic-content.aparecer {
    opacity: 1;
    transform: translateY(0);
}
.half-page-right {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: 0;
    width: 80%;
}

@media (max-width: 576px) { /* Ajustes para versiones móviles */
    .half-page-right {
        width: 90%;
        margin: 100px auto;
    }
}

.radio-card {
    background: #dae3ff;
}

.text-center-content {
    display: flex;
    background-color: #f2f0ec;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 270px; /* Altura mínima de 200px */
    box-sizing: border-box; /* Incluye el borde en el tamaño total */
    text-align: center;
    border-radius: 1.735rem;
}

.section {
    display: none;
}
.section.active {
    display: block;
}
.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.nav-buttons .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    cursor: pointer;
    margin: auto;
}
.nav-buttons .left {
    border-width: 10px 15px 10px 0;
    border-color: transparent #5A6C9C transparent transparent;
}
.nav-buttons .right {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #5A6C9C;
}
.nav-buttons span {
    margin: 0 20px;
}






.custom-checkbox-container {
    display: flex;
    align-items: center; /* Centra los elementos verticalmente */
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 10px; /* Espacio entre el círculo y el texto */
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    width: 40px;
}

.custom-checkbox input[type="checkbox"]:checked + label {
    background-color: #003366;
}

.custom-checkbox input[type="checkbox"]:checked + label::after {
    content: "✔";
    color: #fff; /* Cambia este color si es necesario */
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif; /* Aseguramos que la fuente sea correcta */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

#radio-error, #checkbox-error {
    margin-top: 5px;
    font-size: 0.9em;
}

input, select {
    border: 1px solid #ccc;
    transition: border 0.3s ease;
}

.mobile-menu-button {
    padding: .5rem 1.1rem;
    width: 100%;
    display: block;
}



.dayDescription {
    font-size: .8rem;
    text-align: center;
}

.calendar-header {
    color: #27315A;
    padding: .5rem;
    text-align: center;
    width: 14.28%;
}

.calendar-top {
    text-align: center;
    font-size: 2rem;
}

.day {
    width: 13.08%;
    margin: .6%;
    border-radius: 10px;
    background-color: #EEEEEE;
}

.dayNumber {
    display: flex;
    text-align: center;
}

.day.current-month {
    background-color: #EBEEFF;
    padding: 5px;
    text-align: center;
}

.reloj-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 150px;
}
#reloj {
    font-family: 'Digital Numbers', monospace;
    font-size: 3rem;
    color: #303C69;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    left: -43px;
    position: relative;
    top: 31px;
}
.horaTipo {
    font-family: 'Digital Numbers', monospace;
    font-size: 1.8rem;
    color: #DBDBDB;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    left: 104px;
    position: relative;
    top: -45px;
}
.timeSelected {
    color: #303C69!important;
}
.accordeon-text-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: var(--falcon-accordion-btn-padding-y) var(--falcon-accordion-btn-padding-x);
    font-size: 1rem;
    color: var(--falcon-accordion-btn-color);
    text-align: left;
    background-color: var(--falcon-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: var(--falcon-accordion-transition);
    -o-transition: var(--falcon-accordion-transition);
    transition: var(--falcon-accordion-transition);
}
/*
.start {
    background: #1abc9c;
    color: white !important;
    font-weight: bold;
    border-radius: 50px 0px 0px 50px;
}

.center {
    background: #1abc9c;
    color: white !important;
    font-weight: bold;
}

.end{
    background: #1abc9c;
    color: white !important;
    font-weight: bold;
    border-radius: 0px 50px 50px 0px;
}*/

.calendar-title {
    background-color: #3E5693;
    border-radius: 25px;
}

.row-calendar {
    min-height: 70px;
    margin: auto;
}

.row-calendar-header {
    min-height: 50px;
    margin: auto;
}

.button-booked {
    font-size: .7rem;
    border-radius: 9px;
    padding: 1px 5px;
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 5px;
    /*min-width: 38px;*/
}

.booked-morning {
    background: rgba(179, 192, 251, 1);
    color: #141c49;
}

.booked-afternoon {
    background: rgba(62, 86, 147, 1);
    color: #ffffff;
}

.booked-great {
    background: rgba(131, 199, 149, 1);
    color: #ffffff;
}

.booked-good {
    background: rgba(169, 216, 119, 1);
    color: #ffffff;
}

.booked-fine {
    background: rgba(232, 177, 98, 1);
    color: #ffffff;
}

.booked-bad {
    background: rgba(185, 65, 91, 1);
    color: #ffffff;
}

.bookings-desktop-headers {
    background-color: #445B98;
    color: #ffffff;
    border-radius: 50px;
}

.carousel-caption {
    top: 20%;
    color: #ffffff;
    text-align: left;
    width: 45%;
    left: 9%;
}

.order_position {
    background-color: #54679C;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    height: 3rem;
    width: 3rem;
    margin: 5px 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon_style {
    background-color: #36446B;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.all_options_discount {
    width: 273px;
    height: 60px;
    border-radius: 25px;
    padding: 10px;
}
.footer-padding {
    padding-left: 8rem !important;
}
.image-bordered-index {
    border-radius: 25px 0 0 25px;
}
.size-image-packages {
    weight: 50%;
}
.padding-6-2-rem {
    padding: 6rem;
    text-align: center;
}
.margin-how-can {
    padding: 4rem;
}
.margin-bottom-title {
    margin-bottom: 4rem;
}
.card-booking-types {
    width: 100%;
    height: 355px;
}
.cleaning_options_images {
    width: 80%;
}
.text-size-14 {
    font-size: 14px;
}
.text-size-50-40 {
    font-size: 50px;
}
.text-size-60-30 {
    font-size: 60px;
}
.text-size-30-20 {
    font-size: 30px;
}
.text-size-28-16 {
    font-size: 28px;
}
.text-size-32-26 {
    font-size: 32px;
}
.text-size-20-15 {
    font-size: 20px;
}
.text-size-18-13 {
    font-size: 18px;
}
.text-size-40-25 {
    font-size: 40px;
    font-weight: bold;
}
.text-size-40-30 {
    font-size: 40px;
}
.text-size-20-17 {
    font-size: 20px;
}
.text-size-25-18 {
    font-size: 25px;
}
.text-size-35-20 {
    font-size: 35px;
}
.text-size-50-30 {
    font-size: 50px;
}
.text-size-22-20 {
    font-size: 22px;
}

@media (max-width: 576px) { /* Ajustes para versiones móviles */
    body{
        font-size:15px;
    }
    .all_options_discount {
        width: 155px;
        height: 40px;
        padding: 5px;
    }
    .footer-padding {
        padding-left: 1rem !important;
    }
    .image-bordered-index {
        border-radius: 0px;
        vertical-align: baseline;
    }
    .size-image-packages {
        weight: 80%;
    }
    .padding-6-2-rem {
        padding: 2rem;
    }
    .margin-how-can {
        padding: 2rem 1rem;
    }
    .margin-bottom-title {
        margin-bottom: 1.8rem;
    }
    .card-booking-types {
        width: 155px;
        height: 240px;
    }
    .cleaning_options_images {
        width: 100%;
    }
    .text-size-14 {
        font-size: 9px;
    }
    .text-size-50-40 {
        font-size: 37px;
        font-weight: bold;
    }
    .text-size-60-30 {
        font-size: 30px;
    }
    .text-size-30-20 {
        font-size: 20px;
    }
    .text-size-28-16 {
        font-size: 16px;
    }
    .text-size-32-26 {
        font-size: 26px;
    }
    .text-size-20-15 {
        font-size: 15px;
    }
    .text-size-18-13 {
        font-size: 13px;
    }
    .text-size-40-25 {
        font-size: 25px;
    }
    .text-size-40-30 {
        font-size: 30px;
    }
    .text-size-20-17 {
        font-size: 17px;
    }
    .text-size-25-18 {
        font-size: 18px;
    }
    .text-size-35-20 {
        font-size: 20px;
    }
    .text-size-50-30 {
        font-size: 30px;
    }
    .text-size-22-20 {
        font-size: 20px;
    }
    .carousel {
        background-color: #2d4075;
    }

    .carousel-caption {
        top: 14%;
        color: #ffffff;
        text-align: left;
        width: 60%;
    }

    .button-booked {
        font-size: .4rem;
        border-radius: 5px;
    }
}

.drag-icon {
    font-size: 38px;
    cursor: move;
    user-select: none; /* Evita la selección de texto */
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    transition: .4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 21px;
    width: 21px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: green;
}

input:checked + .slider:before {
    transform: translateX(25px);
}

.mi-boton-stripe {
    background-color: #635bff;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.mi-boton-stripe:hover {
    background-color: #5146ff;
}