/* Eigenes Terminbuchungs-Widget - Calendly-Style Layout */

/* Modal Container - Override Tailwind focus-within styles */
#booking-modal {
    background: rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    border-color: transparent !important;
}

#booking-modal:focus-within,
#booking-modal:focus,
#booking-modal:active {
    background: rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    border-color: transparent !important;
}

/* Prevent ALL focus-within styles from affecting the modal */
#booking-modal,
#booking-modal *,
.booking-modal-content,
.booking-modal-content *,
.booking-widget,
.booking-widget * {
    --tw-border-opacity: 1 !important;
}

#booking-modal:focus-within *,
.booking-modal-content:focus-within,
.booking-widget:focus-within {
    border-color: inherit;
}

/* Reset all Tailwind border classes inside booking widget */
.booking-widget input:not([type="checkbox"]),
.booking-widget textarea {
    border-color: #d1d5db !important;
}

.booking-widget input:not([type="checkbox"]):focus,
.booking-widget textarea:focus {
    border-color: #3b82f6 !important;
}

/* Modal Reset */
.booking-modal-content {
    background: white;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    max-height: 700px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

/* === CALENDLY-STYLE HAUPTLAYOUT === */
.booking-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* Linke Sidebar - Info */
.booking-sidebar {
    width: 320px;
    min-width: 320px;
    background: #fafafa;
    border-right: 1px solid #e5e7eb;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Rechter Bereich - Kalender & Zeitauswahl */
.booking-main-area {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* === SIDEBAR INHALT === */
.booking-sidebar-header {
    margin-bottom: 25px;
}

.booking-logo {
    max-height: 40px;
    margin-bottom: 20px;
}

.booking-back-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
}

.booking-back-btn:hover {
    text-decoration: underline;
}

.booking-back-btn.visible {
    display: flex;
}

.booking-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    margin-bottom: 15px;
}

.booking-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 600;
}

.booking-consultant-name {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.booking-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Info Items */
.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #4b5563;
}

.booking-info-item i {
    color: #6b7280;
    font-size: 16px;
    width: 20px;
    margin-top: 2px;
}

.booking-info-item span {
    line-height: 1.5;
}

/* Beschreibung */
.booking-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.booking-description-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.booking-description p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* === KALENDER BEREICH === */
.booking-calendar-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e5e7eb;
    overflow: visible;
    min-width: 320px;
}

.calendar-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 25px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #374151;
}

.calendar-nav button:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #3b82f6;
}

.calendar-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Kalender Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 500;
    color: #111827;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: #eff6ff;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.calendar-day.available {
    color: #111827;
}

.calendar-day.available:hover {
    background: #dbeafe;
}

.calendar-day.selected {
    background: #1d4ed8;
    color: white;
}

.calendar-day.today {
    border: 2px solid #3b82f6;
}

.calendar-day.today.selected {
    border-color: #1d4ed8;
}

/* Timezone Hinweis */
.calendar-timezone {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-timezone i {
    font-size: 14px;
}

/* === ZEITSLOTS BEREICH === */
.booking-timeslots-section {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: white;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    min-height: 0;
}

.booking-timeslots-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeslots-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.timeslots-header-info {
    flex: 1;
}

.timeslots-close-btn {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.timeslots-close-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.timeslots-day {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.timeslots-date {
    font-size: 14px;
    color: #6b7280;
    margin-top: 2px;
}

.timeslots-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1 1 0;
    padding-right: 5px;
    min-height: 0;
}

.timeslot {
    padding: 10px 12px;
    border: 1px solid #3b82f6;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 500;
    font-size: 13px;
    color: #3b82f6;
    background: white;
    flex-shrink: 0;
}

.timeslot:hover {
    background: #3b82f6;
    color: white;
}

.timeslot.selected {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: white;
}

.timeslot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #d1d5db;
    color: #9ca3af;
    text-decoration: line-through;
}

.timeslot.unavailable:hover {
    background: white;
    color: #9ca3af;
}

/* Placeholder wenn kein Tag gewählt */
.timeslots-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
}

.timeslots-placeholder i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.timeslots-placeholder p {
    font-size: 14px;
    line-height: 1.5;
}

/* === FORMULAR BEREICH === */
.booking-form-section {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: none;
    max-height: 100%;
}

.booking-form-section.visible {
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

.booking-form-section form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    margin-bottom: 15px;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
}

.form-subtitle {
    font-size: 13px;
    color: #6b7280;
}

/* Ausgewählter Termin Box */
.selected-appointment {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
}

.selected-appointment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #0369a1;
    margin-bottom: 5px;
}

.selected-appointment-item:last-child {
    margin-bottom: 0;
}

.selected-appointment-item i {
    width: 14px;
    color: #0ea5e9;
}

/* Formular Felder */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.15s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Info Hinweis */
.phone-info-box {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    padding: 12px;
    margin: 15px 0 10px;
}

.phone-info-box h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 5px;
}

.phone-info-box p {
    font-size: 12px;
    color: #78350f;
    margin: 0;
    line-height: 1.4;
}

.phone-info-box .phone-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1d4ed8;
    margin-top: 5px;
}

/* Submit Button */
.booking-submit {
    width: 100%;
    padding: 12px 20px;
    background: #1d4ed8;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    flex-shrink: 0;
}

.booking-submit:hover {
    background: #1e40af;
}

.booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Datenschutz Checkbox */
.privacy-checkbox {
    margin: 10px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1d4ed8;
    flex-shrink: 0;
}

.checkbox-wrapper .checkbox-text {
    font-size: 12px;
    line-height: 1.5;
    color: #4b5563;
    cursor: pointer;
}

.checkbox-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: #1d4ed8;
}

.checkbox-text .required {
    color: #ef4444;
}

/* === ERFOLGS-ANSICHT === */
.booking-success-section {
    flex: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.booking-success-section.visible {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 40px;
    color: #16a34a;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.success-message {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.6;
}

.success-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 400px;
    text-align: left;
}

.success-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.success-details-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.success-details-item:last-child {
    margin-bottom: 0;
}

.success-details-item i {
    color: #3b82f6;
    width: 18px;
}

.success-phone-highlight {
    background: #fef3c7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.success-phone-highlight p {
    font-size: 13px;
    color: #78350f;
    margin-bottom: 5px;
}

.success-phone-highlight .phone {
    font-size: 20px;
    font-weight: 700;
    color: #1d4ed8;
}

.booking-new-btn {
    padding: 12px 24px;
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-new-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    /* Modal nutzt volle Höhe/Breite, Inhalt scrollt */
    .booking-modal-content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .booking-widget {
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    /* Content scrollt innerhalb */
    .booking-content {
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        min-height: 0;
    }
    
    .booking-sidebar {
        width: 100%;
        min-width: auto;
        padding: 16px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        flex-shrink: 0;
    }
    
    .booking-main-area {
        flex-direction: column;
        position: relative;
        overflow: visible;
    }
    
    .booking-calendar-section {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        min-width: auto;
        overflow: visible;
        padding: 16px;
    }
    
    /* Mobile: Uhrzeiten als Overlay über dem Kalender */
    .booking-timeslots-section {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        max-height: 100vh;
        min-width: auto;
        background: white;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 20px;
        transition: right 0.3s ease;
    }
    
    .booking-timeslots-section.visible {
        right: 0;
        border-bottom: none;
    }
    
    .timeslots-close-btn {
        display: flex;
    }
    
    .timeslots-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .timeslot {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 14px 16px;
        font-size: 15px;
    }
    
    /* Overlay hinter dem Uhrzeiten-Panel */
    .booking-timeslots-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .booking-timeslots-overlay.visible {
        display: block;
    }
    
    /* === FORMULAR MOBILE - scrollt mit dem Content === */
    .booking-form-section {
        padding: 16px;
        /* Extra Padding oben für Browser-Leiste */
        padding-top: calc(16px + env(safe-area-inset-top, 50px));
        /* Extra Padding unten für Home-Indicator/Navigation */
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 70px));
    }
    
    .booking-form-section.visible {
        display: flex;
        flex-direction: column;
    }
    
    .booking-form-section form {
        display: flex;
        flex-direction: column;
    }
    
    /* Submit Button normal im Flow */
    .booking-submit {
        position: relative;
        margin-top: 15px;
        margin-bottom: 50px;
        border-radius: 50px;
    }
    
    .form-header {
        margin-bottom: 12px;
    }
    
    /* Kompaktere Elemente auf Mobile */
    .selected-appointment {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Verhindert iOS Zoom */
    }
    
    .form-group textarea {
        min-height: 50px;
    }
    
    .phone-info-box {
        padding: 10px;
        margin: 10px 0;
    }
    
    .phone-info-box h4 {
        font-size: 12px;
    }
    
    .phone-info-box p {
        font-size: 11px;
    }
    
    .phone-info-box .phone-number {
        font-size: 14px;
    }
    
    .privacy-checkbox {
        margin: 8px 0;
    }
    
    .checkbox-wrapper .checkbox-text {
        font-size: 11px;
    }
    
    /* Success Section Mobile */
    .booking-success-section {
        padding: 25px 16px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .success-icon i {
        font-size: 28px;
    }
    
    .success-title {
        font-size: 18px;
    }
    
    .success-message {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .success-details {
        padding: 12px;
    }
    
    .success-details h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .success-details-item {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .success-phone-highlight {
        padding: 10px;
    }
    
    .success-phone-highlight p {
        font-size: 11px;
    }
    
    .success-phone-highlight .phone {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .booking-sidebar {
        padding: 12px;
    }
    
    .booking-avatar {
        width: 50px;
        height: 50px;
    }
    
    .booking-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .booking-info-item {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .booking-description {
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .booking-calendar-section {
        padding: 12px;
    }
    
    .calendar-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeslot {
        flex: none;
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .booking-timeslots-section {
        width: 90%;
        max-width: 300px;
    }
    
    .timeslots-header {
        padding-bottom: 12px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 12px;
    }
    
    .booking-form-section {
        padding: 12px;
    }
    
    .form-title {
        font-size: 15px;
    }
    
    .form-subtitle {
        font-size: 11px;
    }
    
    .selected-appointment-item {
        font-size: 11px;
    }
}

/* Extra kleine Screens (iPhone SE, kleine Androids) */
@media (max-width: 380px) {
    .booking-sidebar {
        padding: 10px;
    }
    
    .booking-avatar {
        width: 40px;
        height: 40px;
    }
    
    .booking-title {
        font-size: 14px;
    }
    
    .booking-form-section {
        padding: 10px;
    }
    
    .form-header {
        margin-bottom: 8px;
    }
    
    .form-title {
        font-size: 14px;
    }
    
    .selected-appointment {
        padding: 8px;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px;
    }
    
    .phone-info-box {
        padding: 8px;
        margin: 8px 0;
    }
    
    .booking-submit {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Scrollbar Styling */
.booking-sidebar::-webkit-scrollbar,
.booking-calendar-section::-webkit-scrollbar,
.booking-timeslots-section::-webkit-scrollbar,
.booking-form-section::-webkit-scrollbar,
.timeslots-grid::-webkit-scrollbar {
    width: 6px;
}

.booking-sidebar::-webkit-scrollbar-track,
.booking-calendar-section::-webkit-scrollbar-track,
.booking-timeslots-section::-webkit-scrollbar-track,
.booking-form-section::-webkit-scrollbar-track,
.timeslots-grid::-webkit-scrollbar-track {
    background: transparent;
}

.booking-sidebar::-webkit-scrollbar-thumb,
.booking-calendar-section::-webkit-scrollbar-thumb,
.booking-timeslots-section::-webkit-scrollbar-thumb,
.booking-form-section::-webkit-scrollbar-thumb,
.timeslots-grid::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.booking-sidebar::-webkit-scrollbar-thumb:hover,
.booking-calendar-section::-webkit-scrollbar-thumb:hover,
.booking-timeslots-section::-webkit-scrollbar-thumb:hover,
.booking-form-section::-webkit-scrollbar-thumb:hover,
.timeslots-grid::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
