:root {
    --bg-booking: #17a2b8;
    --color-booking: #1591a5;

    --bg-symptom: #7a098b;
    --color-symptom: #5c0969;

    --bg-hand-washing: #28a745;
    --color-hand-washing: #24963e;

    --bg-cleaning: #ffc107;
    --color-cleaning: #e5ad06;

    --bg-provider: #dc3545;
    --color-provider: #c6303e;

    --bg-visitor: #e77e18;
    --color-visitor: #cf6e10;

    --bg-room-service: #3e6483;
    --color-room-service: #2e516d;

    --bg-vehicle: #0ba88c;
    --color-vehicle: #0a8f77;

    --purple-ikigai: #7f2282;
    --purple-ikigai-med: #7a098b;
    --purple-ikigai-light: #9435a3;
    --purple-ikigai-dark: #4f065a;
    --brown-menu: #d2c396;
    --brown-light: #c59f6d;
    --brown-dark: #4a3c18;
    --white: #fff;
    --max-width: 1366px;
}
span[aria-current="page"] span{
    background-color: var(--purple-ikigai);
    color: var(--white);
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background-color: var(--white);
}
::-webkit-scrollbar-thumb {
    background-color: var(--purple-ikigai);
}
::-webkit-scrollbar-button {
    /*background-color: navy;*/
    width: 0;
    height: 0;
}
::-webkit-scrollbar-corner {
    background-color: black;
}

body {
    font-family: "Nunito";
}
a {
    display: inline-block;
}

input[type="search"] {
    outline: none;
}
.bg-purple-med {
    background-color: var(--purple-ikigai-med);
}
.bg-purple-light {
    background-color: var(--purple-ikigai-light);
}
.bg-purple-dark,
.hover\:bg-purple-dark:hover {
    background-color: var(--purple-ikigai-dark);
}
.border-ikigai {
    border-color: var(--purple-ikigai);
}
.bg-ikigai-primary,
.hover\:bg-ikigai-primary {
    background-color: var(--purple-ikigai);
}

.text-ikigai-primary {
    color: var(--purple-ikigai);
}

.hover\:text-ikigai-primary:hover {
    color: var(--purple-ikigai);
}
.table-striped tbody tr:nth-child(even) {
    background-color: rgb(252, 252, 252);
}

.bg-booking {
    background: var(--bg-booking);
}

.bg-symptom {
    background: var(--bg-symptom);
}

.bg-hand-washing {
    background: var(--bg-hand-washing);
}

.bg-cleaning {
    background: var(--bg-cleaning);
}

.bg-provider {
    background: var(--bg-provider);
}

.bg-visitor {
    background: var(--bg-visitor);
}

.bg-room-service {
    background: var(--bg-room-service);
}

.bg-vehicle {
    background: var(--bg-vehicle);
}

.focus\:ring-ikigai:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--purple-ikigai));
}
.focus\:ring-1:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: "Nunito", sans-serif !important;
}

.style-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.style-table thead tr {
    background-color: var(--purple-ikigai);
    color: white;
    text-align: left;
}
.style-table tfoot tr {
    background-color: #c7c7c7;
}
.style-table tfoot tr td {
    font-weight: bold;
    text-align: right;
}

.style-table th,
.style-table td {
    padding: 12px 15px;
}

.style-table tbody tr {
    border-bottom: 1px solid #ddd;
}

.style-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.style-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--purple-ikigai);
}

/* estilo para la snackbar*/
#snackbar_url {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #10b981; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 0.5rem; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar_url.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

.iti {
    width: 100%;
}
.text-indent {
    text-indent: 5px;
}

.bg-red-200 {
    background-color: rgba(254, 202, 202, 0.5) !important;
}

.bg-green-200 {
    background-color: rgba(167, 243, 208, 0.5) !important;
}
.bg-texture {
    background-image: url("../img/bg_thankyoupage.jpg");
    background-size: cover;
}
.rounded-custom {
    border-radius: 1.5rem;
}
.ul-custom li::marker {
    color: var(--purple-ikigai);
}
#img-container {
    right: -30px;
    bottom: 0;
}

/* .c-toggle input#toggle{
    background-image: none!important;
    background-color: #ddd;
}

input#toggle {
    background-color: transparent !important;
}

input#toggle:focus {
    box-shadow: none;
} */
.switches {
    position: relative;
    cursor: pointer;
}
.switches label {
    cursor: pointer;
}

.switches [type="checkbox"] {
    position: absolute;
    left: -9999px;
}
.switches span:last-child {
    position: relative;
    width: 50px;
    height: 26px;
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
    background: #cdccd2;
    transition: all 0.3s;
    display: inline-block;
}

.switches span:last-child::before,
.switches span:last-child::after {
    content: "";
    position: absolute;
}

.switches span:last-child::before {
    left: 1px;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #f9f9fa;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s;
}

.switches span:last-child::after {
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/uncheck-switcher.svg);
    background-size: 12px 12px;
}

.switches input[type="checkbox"]:checked + label span:last-child {
    background: #00d084;
}

.switches input[type="checkbox"]:checked + label span:last-child::before {
    transform: translateX(24px);
}

.switches input[type="checkbox"]:checked + label span:last-child::after {
    width: 14px;
    height: 14px;
    /*right: auto;*/
    left: 8px;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/checkmark-switcher.svg);
    background-size: 14px 14px;
}
.switches input[type="checkbox"],
.switches input[type="checkbox"]:checked {
    border-width: 0px;
}
[type="checkbox"]:focus {
    --tw-ring-color: tranaparent;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff6e !important;
}
.swiper-pagination-bullet-active {
    background: white !important;
}
.rotated {
    transform: rotate(90deg);
    display: inline-block;
}
