/* Force light mode across entire website */
html {
    color-scheme: light !important;
}

body {
    color-scheme: light !important;
    background-color: white !important;
    color: black !important;
}

/* Waitlist Page Specific Styles */

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: inset 0px 72px 10px rgba(0, 0, 0, 0.1), inset 0px 72px 10px rgba(0, 0, 0, 0.1);
}


.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Left Side - Torn Paper Image */
.waitlist-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.torn-paper-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.torn-paper-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.torn-paper-img:hover {
    /* transform: translateY(-3px); */
}

/* Right Side - Form */
.waitlist-right {
    display: flex;
    justify-content: center;
}

.form-container {
    padding: 20px 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1rem;
    color: black;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form Styles */
.waitlist-form {
    width: 100%;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 18px;
}

/* Input wrapper for floating labels */
.input-wrapper {
    position: relative;
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 50px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: black;
}

.form-group input:focus {
    outline: none;
    border-color: #FFC801;
    box-shadow: none;
}

.form-group input::placeholder {
    color: transparent;
}

/* Floating label styles */
.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    padding: 0 8px;
    font-size: 1rem;
    color: #999;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

/* Label moves to top when input is focused or has content */
.form-group input:focus+.floating-label,
.form-group input:not(:placeholder-shown)+.floating-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: black;
    font-weight: 300;
}

/* Keep label at top when input has focus */
.form-group input:focus+.floating-label {
    color: black;
}

/* FORCE SMALL CHECKBOX - HIGHEST PRIORITY */
.waitlist-section .custom-dropdown .dropdown-options .option-item input[type="checkbox"].option-checkbox {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    border: 1px solid #999 !important;
    border-radius: 4px !important;
    background: white !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: 10px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    transform: none !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.waitlist-section .custom-dropdown .dropdown-options .option-item input[type="checkbox"].option-checkbox:checked {
    background: #FFC801 !important;
    border-color: #FFC801 !important;
    width: 8px !important;
    height: 8px !important;
}

.waitlist-section .custom-dropdown .dropdown-options .option-item input[type="checkbox"].option-checkbox:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: black !important;
    font-size: 8px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-header {
    position: relative;
    width: 100%;
    padding: 18px 50px 18px 20px;
    font-size: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 50px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    color: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header:hover {
    border-color: #d1d5da;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.dropdown-header.active {
    border-color: #FFC801;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.dropdown-title {
    flex: 1;
    text-align: left;
}

.dropdown-arrow {
    position: absolute;
    right: 20px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 14px;
    height: 10px;
    opacity: 0.7;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-header:hover .dropdown-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.dropdown-header.active .dropdown-arrow {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-header.active .dropdown-arrow svg path {
    stroke: #FFC801;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(-10px); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dropdown-options::-webkit-scrollbar {
    display: none;
}

.dropdown-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f2f5;
    user-select: none;
}

.option-item:last-child {
    border-bottom: none;
}


/* Multi-select option items (with checkboxes) */

/* Single select option items (without checkboxes) */
.option-item:not(:has(.option-checkbox)) {
    padding: 14px 16px;
}


.option-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: black;
    font-weight: 400;
}

.custom-dropdown .option-item .option-checkbox,
.dropdown-options .option-item .option-checkbox,
input[type="checkbox"].option-checkbox {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    min-height: 10px !important;
    max-height: 10px !important;
    border: 1px solid #dad1d1 !important;
    border-radius: 2px !important;
    background: white !important;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative;
    flex-shrink: 0 !important;
    margin-left: 12px;
    display: inline-block !important;
    vertical-align: middle;
    box-sizing: border-box !important;
}

.custom-dropdown .option-item .option-checkbox:checked,
.dropdown-options .option-item .option-checkbox:checked,
input[type="checkbox"].option-checkbox:checked {
    background: #FFC801 !important;
    border-color: #FFC801 !important;
    width: 16px !important;
    height: 16px !important;
}

.custom-dropdown .option-item .option-checkbox:checked::after,
.dropdown-options .option-item .option-checkbox:checked::after,
input[type="checkbox"].option-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 6px;
    font-weight: bold;
    line-height: 1;
}


/* Regular dropdown wrapper for other selects */
.dropdown-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-wrapper select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    font-size: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    color: black;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dropdown-wrapper select:hover {
    border-color: #d1d5da;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.dropdown-wrapper select:focus {
    outline: none;
    border-color: #FFC801;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.dropdown-wrapper select:valid {
    color: black;
}

.dropdown-wrapper select option {
    color: black;
    padding: 12px 16px;
    font-weight: 400;
    background: #ffffff;
    border: none;
}

.dropdown-wrapper .dropdown-arrow {
    position: absolute;
    right: 20px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 14px;
    height: 10px;
    opacity: 0.7;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-wrapper:hover .dropdown-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.dropdown-wrapper select:focus~.dropdown-arrow {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-wrapper select:focus~.dropdown-arrow svg path {
    stroke: #FFC801;
}

/* City Autocomplete Styling */
.city-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(-10px); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.city-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f2f5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
}

.city-option:last-child {
    border-bottom: none;
    border-radius: 0 0 14px 14px;
}

.city-option:hover {
    background: #f8f9fa;
}

.city-option.highlighted {
    background: #f0f8ff;
}

.city-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.city-flag.usa {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7410 3900"%3e%3cpath fill="%23b22234" d="M0 0h7410v3900H0z"/%3e%3cpath d="m0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0" stroke="%23fff" stroke-width="300"/%3e%3cpath fill="%233c3b6e" d="M0 0h2964v2100H0z"/%3e%3cg fill="%23fff"%3e%3cg id="d"%3e%3cg id="c"%3e%3cg id="e"%3e%3cg id="b"%3e%3cpath id="a" d="m247 90 70.534 217.082-184.66-134.164h228.253L176.466 307.082z"/%3e%3cuse y="420" href="%23a"/%3e%3cuse y="840" href="%23a"/%3e%3cuse y="1260" href="%23a"/%3e%3c/g%3e%3cuse y="1680" href="%23a"/%3e%3c/g%3e%3cuse x="247" href="%23b"/%3e%3c/g%3e%3cuse x="494" href="%23c"/%3e%3c/g%3e%3cuse x="741" href="%23d"/%3e%3c/g%3e%3c/svg%3e');
}

.city-flag.india {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225 150"%3e%3cpath fill="%23ff9933" d="M0 0h225v50H0z"/%3e%3cpath fill="%23fff" d="M0 50h225v50H0z"/%3e%3cpath fill="%23138808" d="M0 100h225v50H0z"/%3e%3ccircle cx="112.5" cy="75" r="20" fill="none" stroke="%23000080" stroke-width="2"/%3e%3cpath fill="%23000080" d="m112.5 55 4 12 12-4-8 9.6 9.6 8-12-4-4 12-4-12-12 4 8-9.6-9.6-8 12 4z"/%3e%3c/svg%3e');
}

.city-no-results {
    padding: 16px;
    text-align: center;
    color: #666;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

/* Others input field styling */
.others-input-container {
    margin-top: 12px;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.others-input-container.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}

.others-text-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
    border: 2px solid #e1e5e9;
    border-radius: 50px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    color: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.others-text-input:focus {
    outline: none;
    border-color: #FFC801;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.others-text-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 55px;
}

.submit-btn {
    background: black;
    color: white;
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .waitlist-content {
        gap: 60px;
    }

    .torn-paper-img {
        max-width: 500px;
    }

    .form-container {
        padding: 50px 40px;
    }

    .form-title {
        font-size: 2.2rem;
    }

    .torn-paper-image {
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .waitlist-section {
        padding: 80px 0 60px;
    }

    .footer-bottom {
        margin: 0 -15px;
    }

    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .waitlist-left {
        order: 1;
    }

    .waitlist-right {
        order: 2;
    }

    .torn-paper-img {
        max-width: 450px;
    }

    .form-container {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .dropdown-wrapper select,
    .dropdown-header {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .floating-label {
        left: 18px;
        font-size: 0.95rem;
    }

    .form-group input:focus+.floating-label,
    .form-group input:not(:placeholder-shown)+.floating-label {
        font-size: 0.8rem;
    }

    .dropdown-wrapper select,
    .dropdown-header {
        padding-right: 45px;
    }

    .dropdown-arrow {
        right: 18px;
    }

    .option-item {
        padding: 10px 14px;
    }

    .option-text {
        font-size: 0.9rem;
    }

    .option-checkbox {
        width: 14px;
        height: 14px;
        margin-left: 8px;
    }

    /* Fix dropdown options alignment on mobile */
    .dropdown-options {
        text-align: left;
    }

    /* Others input responsive */
    .others-text-input {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 16px 50px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .waitlist-section {
        padding: 70px 0 50px;
        box-shadow: inset 0px 90px 15px rgba(0, 0, 0, 0.1), inset 0px 90px 15px rgba(0, 0, 0, 0.15);
    }

    .waitlist-content {
        gap: 40px;
        padding: 0 12px;
    }

    .torn-paper-img {
        max-width: 400px;
    }

    .form-container {
        padding: 35px 25px;
        margin: 0 10px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .form-group input,
    .dropdown-wrapper select,
    .dropdown-header {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .floating-label {
        left: 16px;
        font-size: 0.9rem;
    }

    .form-group input:focus+.floating-label,
    .form-group input:not(:placeholder-shown)+.floating-label {
        font-size: 0.75rem;
    }

    .dropdown-wrapper select,
    .dropdown-header {
        padding-right: 40px;
    }

    .dropdown-arrow {
        right: 16px;
    }

    .option-item {
        padding: 8px 12px;
    }

    .option-text {
        font-size: 0.85rem;
    }

    .option-checkbox {
        width: 12px;
        height: 12px;
        margin-left: 6px;
    }

    .option-checkbox:checked::after {
        font-size: 8px;
    }

    /* Fix dropdown options alignment on smaller mobile */
    .dropdown-options {
        text-align: left;
    }

    /* Others input smaller mobile */
    .others-text-input {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.waitlist-left {
    animation: slideInLeft 0.8s ease-out;
}

.waitlist-right {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.modal-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.party-popper {
    font-size: 4rem;
    animation: bounce 0.8s ease-in-out;
    display: inline-block;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.modal-message {
    font-size: 1.0rem;
    color: black;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Modal Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-message {
        font-size: 1rem;
    }

    .party-popper {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 35px 25px;
        margin: 15px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-message {
        font-size: 0.95rem;
    }

    .party-popper {
        font-size: 2.5rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }
}

/* Focus states for accessibility */
.dropdown-wrapper select:focus,
.submit-btn:focus {
    outline: 3px solid #FFC801;
    outline-offset: 2px;
}

.form-group input:focus,
.dropdown-wrapper select:focus:not(:focus-visible),
.submit-btn:focus:not(:focus-visible) {
    outline: none;
}

.modal-close:focus {
    outline: 3px solid #FFC801;
    outline-offset: 2px;
}

.modal-close:focus:not(:focus-visible) {
    outline: none;
}