<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section-title {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.calendar-title {
    color: #69b287;
    font-weight: bold;
}

.calendar-events p {
    color: black;
}

.main-content-calendar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: auto;
    margin-bottom: 100px;
    margin-top: 100px;
}

.flatpickr-month {
    background-color: #69b287 !important;
    color: white !important;
}

.flatpickr-months {
    color: white !important;
}

.flatpickr-day.today {
    border-color: #69b287 !important;
}

    .flatpickr-day.today:hover {
        background-color: #69b287 !important;
    }

.flatpickr-day:hover {
    background-color: #9cccac !important;
}

.flatpickr-day.selected {
    background-color: #69b287 !important;
}

.flatpickr-monthDropdown-month {
    background-color: #69b287 !important;
}

.event-day {
    border: 4px solid #69b287 !important;
    border-radius: 50%;
}

.calendar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #69b287;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: 300px;
}

#calcEventsTitle {
    width: 60%;
    height: 40px;
    background-color: #69b287;
    margin-bottom: 20px;
}

    #calcEventsTitle p {
        width: 100%;
        height: 100%;
        margin: auto;
        color: white;
        font-size: 26px;
        text-align: left;
        padding-left: 5px;
    }

.calc-events {
    text-align: left;
    margin-bottom: 0;
}

.calc-events-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 16px;
    justify-content: space-between;
}
/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    margin: 0;
    margin-left: 5px;
    justify-content: center;
    align-items: center;
}

    /* Custom checkbox - the box itself */
    .custom-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: white;
        border: 2px solid #69b287;
        border-radius: 6px;
    }

    /* When the checkbox is checked, add a green background color */
    .custom-checkbox input:checked + .checkmark {
        background-color: white;
        border-color: #69b287;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .custom-checkbox input:checked + .checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .custom-checkbox .checkmark:after {
        left: 6px;
        top: 2px;
        width: 6px;
        height: 12px;
        border: solid #69b287;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

#calendarLineBreak {
    display: none;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #69b287, #69b287 100%);
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-family: Arial;
}

.modal-content {
    background-color: #69b287;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    height: 400px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .modal-content h2 {
        margin-top: 0;
    }

.modal-smiley {
    display: block;
    margin: 0 auto;
    width: 180px;
}

.modal-text {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 10px;
}

.swal2-image-popup .swal2-image {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
}

.offer-images:hover {
    cursor:pointer;
}

@media (max-width: 767px) {
    .main-content-calendar {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }

    .calendar-container {
        border-right: none;
    }

    .calc-events {
        font-size: 16px;
    }

    #calcEventsTitle p {
        text-align: center;
    }

    #calcEventsTitle {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
    }

    .seperator {
        display: flex;
        width: 70%;
        margin-top: 0;
    }

    #calendarLineBreak {
        display: flex;
        margin-top: 20px;
        width: 60%;
    }

    #eventsList {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .calendar-events {
        min-height: 0;
    }
}
</pre></body></html>