<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.giftcard_create {
    font-family: Arial, sans-serif;
    padding: 40px;
    max-width: 1080px;
    margin: auto;
}

/* Card Styling */
.giftcard_create .card {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.giftcard_create h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.giftcard_create label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Input Fields */
.giftcard_create input[type="text"],.giftcard_create input[type="number"],
.giftcard_create textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* Multi-select Dropdown */
.giftcard_create select[multiple] {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
}

/* Buttons Section */

.giftcard_create .buttons{
    flex-direction: row;
    gap: 10px;
}
#giftcardMessage {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}
#giftcardMessage.success {
    background-color: #d4edda;
    color: #008474;
    border: 1px solid #c3e6cb;
}
#giftcardMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Spinner styling */
.spinner2 {
    border: 3px solid #f3f3f3; /* Light gray */
    border-top: 3px solid #008474; /* Blue */
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Parent class for gift card listing page */
.giftcard {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Create button at the top */
.giftcard .create-giftcard-button {
    background-color: #008474;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Tab styling */
.giftcard .giftcard-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.giftcard .giftcard-tabs .tab {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.giftcard .giftcard-tabs .tab.active {
    border-bottom-color: #008474;
}

/* Gift card item styling */
.giftcard .giftcard-list {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
    border: 0.1px solid #e5e4e4;
    padding: 10px;
    background: #fff !important;
    border-radius: 20px !important;
}
.giftcard .giftcard-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 0.1px solid #e5e4e4;
    background-color: #fff;
    flex-wrap: wrap;
}

/* Thumbnail placeholder */
.giftcard .giftcard-thumbnail {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.giftcard .placeholder-thumbnail {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 5px;
}

/* Gift card content */
.giftcard .giftcard-content {
    flex: 1;
}
.giftcard .giftcard-content h3 {
    margin: 0;
    font-size: 18px;
}
.giftcard .status-label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
    color: white;
    font-weight: 600;
}
.giftcard .status-label.published {
    background-color: #008474; /* Blue for published */
}
.giftcard .status-label.draft {
    background-color: #ffc107; /* Yellow for draft */
}
.giftcard .status-text {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #333;
}

/* Action buttons */
.giftcard .giftcard-actions {
    display: flex;
    gap: 10px;
}
.giftcard .btn {
    
    background-color: #e9e9e9;
    color: #666;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600 !important;
}
.giftcard .qr-btn {
    font-weight: bold;
}
.giftcard .edit-btn {
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Main parent class for the single gift card page */
.giftcard_single {
    display: flex;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

@media screen and (max-width: 768px) {
    .giftcard_single {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        padding: 10px;
    }
}

/* Gift card image and details styling */
.giftcard_single .giftcard-container {
    width: 100%;
}

.giftcard_single .giftcard-image-section {
    flex: 1;
    width: 100%;
    min-height: 240px;
    min-width: 300px;
    max-width: 440px;

}

.giftcard-image .gift-card {
    width: 100%;
    background-color: #0A8F76;
    border-radius: 15px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.giftcard-image .gift-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #57c7b2;
    text-align: left;
}
.giftcard-image .gift-card .icon::before {
    content: "\f06b"; /* Font Awesome gift icon unicode */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
}
.giftcard-image .gift-card .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.giftcard-image .gift-card .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #61A298;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    margin: 0 auto;
}
.giftcard-image .gift-card .footer {
    font-size: 12px;
    padding-top: 55px;
    text-align: left;
}

.giftcard_single .giftcard-details {
    padding: 13px;
    margin-top: 26px;
}

.giftcard_single .giftcard-details h3 {
    margin: 0;
    font-size: 24px;
}

.giftcard_single .giftcard-details h3 span {
    font-weight: normal;
    font-size: 22px;
    color: #555;
}

.giftcard_single .giftcard-details p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Purchase section styling */
.giftcard_single .giftcard-purchase-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    width: 100%;
    
}

.giftcard_single .purchase-card {
    
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 0.1px solid #e5e4e4;
    width: 100%;
    min-width: 340px;
    margin-left: 20px;
    
}

.giftcard_single .purchase-card h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

.giftcard_single #giftcardPurchaseForm {
    display: flex;
    flex-direction: column;
}

.giftcard_single #giftcardAmount {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    border: 0.51px solid #eaeaea;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1)
}

.giftcard_single .check-saldo {
    font-size: 14px;
    color: #008474;
    margin-bottom: 20px;
    text-decoration: none;
}

.giftcard_single .check-saldo:hover {
    text-decoration: underline;
}

.giftcard_single .purchase-btn {
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #008474;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.giftcard_single .purchase-btn:hover {
    background-color: #004d40;
}
#toggleSelectAll.active {
    background-color: #008474;
    color: #fff;
    border-color: #008474;
}
.listing_divvv {
    gap: 20px;
    align-items: center;
}

.gift_booking {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
    margin: auto;
}

.gift_booking .container {
    
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.gift_booking .contact-info, .gift_booking .summary {
    
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.gift_booking .contact-info {
    flex: 2;
    min-width: 60%;
}

.gift_booking .summary {
    flex: 1;
    min-width: 35%;
}

.gift_booking .contact-info h2, .gift_booking .summary h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.gift_booking .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.gift_booking .form-group label {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.gift_booking .form-group input[type="text"],
.gift_booking .form-group input[type="email"],
.gift_booking .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.gift_booking .form-group-half {
    flex: 1;
}

.gift_booking .summary-details {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}

.gift_booking .summary-details p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.gift_booking .total {
    font-weight: bold;
    color: #008474;
    font-size: 16px;
}

.gift_booking .radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.gift_booking .radio-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.gift_booking .radio-group input[type="radio"] {
    margin-right: 8px;
}

.gift_booking .submit-btn {
    width: 100%;
    background-color: #008474;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gift_booking .submit-btn:hover {
    background-color: #008474;
}

.gift_booking .terms {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin: 20px 0;
}

.gift_booking .terms a {
    color: #008474;
    text-decoration: none;
}

.gift_booking .terms a:hover {
    text-decoration: underline;
}
.gift_booking input[type='radio']:after, .gift_booking input[type='radio']:checked:after {
    top: -2px;
    width: 20px;
    height: 20px;
}
.gift_all_bookings {
    padding: 50px 20px;
    background: #fff;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.gift_all_bookings .search-box {
    margin-bottom: 20px;
}
.gift_all_bookings .search-box input[type="text"] {
    background-color: #F5F8FA;
    padding: 12px;
    line-height: 1;
    height: auto;
    border-radius: 10px;
    color: #3F4254;
    font-weight: 600;
    border: 0px;
    min-width: 300px;
}
.gift_all_bookings .gift-card-table {
    width: 100% !important;
    border-collapse: collapse;
    background-color: #fff;
    
    border-radius: 8px;
    overflow: hidden;
}
.gift_all_bookings .gift-card-table thead th {
    
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.gift_all_bookings .gift-card-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd, table.dataTable.display tbody tr.odd&gt;.sorting_1, table.dataTable.display tbody tr.even&gt;.sorting_1 {
    background-color: #fff !important
}


.gift_all_bookings .gift-card-code {
    color: #3c763d;
    font-weight: bold;
    background-color: #eaffea;
    border: 2px dashed #3c763d;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}
.gift_all_bookings .btn {
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
}
.gift_all_bookings .btn-pdf {
    background-color: #008474;
    color: #fff;
}
.gift_all_bookings .btn-deactivate {
    background-color: #F62324;
    color: #fff;
}
.gift_all_bookings .btn-activate {
    background-color: #008474;
    color: #fff;
}
.gift_all_bookings .btn:hover {
    opacity: 0.9;
}
#noDataMessage {
    display: none; /* Hidden by default */
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: #EFF7FA; 
    color: #000; 
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

#noDataMessage i {
    margin-right: 8px;
    color: #f5c6cb; /* Icon color */
    font-size: 1.3em;
}
/* .gift_all_bookings .dataTables_length{
    display: none;
}
 */
.check_giftcard {
    max-width: 100%;
    margin: 0 auto; 
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 1080px;
    margin: auto;
}

.check_giftcard .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}
.check_giftcard .card .log-text{
    text-align: left;
}
.check_giftcard .card-header h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 5px;
}

.check_giftcard .card-header p {
    color: #666;
    font-size: 1em;
}

.check_giftcard .card-form input[type="text"] {
    padding: 10px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
}

.check_giftcard .card-form .check-button {
    background-color: #008474;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
}

.check_giftcard .card-form .check-button:hover {
    background-color: #008474;
}

.check_giftcard .card-saldo {
    font-size: 1.2em;
    color: #333;
    margin-top: 20px;
}

.check_giftcard .card-saldo .saldo-amount {
    font-weight: bold;
    font-size: 1.5em;
    color: #000;
}
.check_giftcard .card-log h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.check_giftcard .card-log .log-entry {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #eee;
}

.check_giftcard .card-log .log-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.check_giftcard .card-log .log-text {
    color: #333;
}

.check_giftcard .card-log .log-text strong {
    color: #000;
}

.check_giftcard .card-log .listing-name {
    background-color: #f0f0f0;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #666;
}


/* Responsive Design */
@media (max-width: 600px) {
    .giftcard_create {
        padding: 15px;
    }

    .giftcard_create h2 {
        font-size: 16px;
    }

    .giftcard_create label {
        font-size: 12px;
    }

    .giftcard_create input[type="text"],
    .giftcard_create textarea,
    .giftcard_create select[multiple] {
        font-size: 13px;
        padding: 8px;
    }

}


.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-left: 2px !important;
}

div#giftCardTable_length {
    display: none !important;
}
 
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #008474 !important;
 
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    font-weight: 600;
    border-radius: 10px;
}


.search-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.search-box input[type="text"] {
    background-color: #F5F8FA;
    padding: 12px 40px 12px 12px; /* Add space for the search icon */
    line-height: 1;
    height: auto;
    border-radius: 10px;
    color: #3F4254;
    font-weight: 600;
    border: 0px;
    min-width: 300px;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F5F8FA;
    border-radius: 10px;
    padding-left: 10px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.search-box .search-icon {
    font-size: 18px;
    color: #3F4254;
    margin-right: 10px; /* Add spacing between the icon and the input */
}

.search-box input[type="text"] {
    background-color: transparent;
    border: none;
    outline: none;
    font-weight: 600;
    color: #3F4254;
    width: 100%;
}

span.select2-selection.select2-selection--multiple {
    background-color: #F5F8FA;
    border: 0px solid #dbdbdb;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 6%);
    border-radius: 4px;
    display: block;
    z-index: 1051;
    padding: 8px;
    border-top: none;
    min-width: 200px;
    min-height: 100px;
}</pre></body></html>