/* Calendar CSS Start */
.custom-calendar-wrapper .calendar-container.book-style {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    margin-top: 8px;
    padding: 20px;
    min-width: 400px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-calendar-wrapper .calendar-book {
    display: flex;
    gap: 20px;
}

.custom-calendar-wrapper .calendar-page {
    flex: 1;
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e9ecef;
}

.custom-calendar-wrapper .calendar-page.left-page {
    border-right: 2px solid #dee2e6;
    margin-right: -1px;
}

.custom-calendar-wrapper .calendar-page.right-page {
    border-left: 2px solid #dee2e6;
    margin-left: -1px;
}

.custom-calendar-wrapper .calendar-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    min-height: 40px;
}

.custom-calendar-wrapper .calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #007cba;
    font-weight: bold;
    min-width: auto;
    height: auto;
}

.custom-calendar-wrapper .calendar-header button:hover {
    background-color: #e3f2fd;
    transform: scale(1.1);
}

.custom-calendar-wrapper .calendar-month-year {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    flex: 1;
}

.custom-calendar-wrapper .calendar-weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px;
    margin-bottom: 8px;
}

.custom-calendar-wrapper .weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    padding: 6px 2px;
    text-transform: uppercase;
    background: #f1f3f4;
    border-radius: 3px;
}

.custom-calendar-wrapper .calendar-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px;
}

.custom-calendar-wrapper .calendar-day {
    aspect-ratio: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    min-height: 32px;
    background: white;
    border: 1px solid transparent;
}

.custom-calendar-wrapper .calendar-day:hover:not(.disabled):not(.other-month) {
    background-color: #e3f2fd;
    transform: scale(1.05);
    border-color: #007cba;
}

.custom-calendar-wrapper .calendar-day.other-month {
    color: #adb5bd;
    cursor: default;
    visibility: hidden !important;
    background: #f8f9fa;
}

.custom-calendar-wrapper .calendar-day.disabled {
    color: #dee2e6;
    cursor: not-allowed;
    background-color: #f8f9fa;
    position: relative;
}

.custom-calendar-wrapper .calendar-day.selected.checkin {
    background-color: #E57757 !important;
    color: white;
    font-weight: 700;
}

.custom-calendar-wrapper .calendar-day.selected.checkout {
    background-color: #e57757 !important;
    color: white;
    font-weight: 700;
}

.custom-calendar-wrapper .calendar-day.in-range {
    background-color: #F3E8E1;
    color: #00332A;
    font-weight: 600;
}

/* New hover range styling */
.custom-calendar-wrapper .calendar-day.hover-range {
    background-color: #F3E8E1;
    color: #00332A;
    font-weight: 500;
    border: 1px dashed #F3E8E1;
    opacity: 0.8;
}

.custom-calendar-wrapper .calendar-day.today {
    border: 2px solid #007cba;
    font-weight: 700;
}

.custom-calendar-wrapper .calendar-footer {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #e1e5e9;
}

.custom-calendar-wrapper .selection-info {
    font-size: 14px;
    font-weight: 600;
    color: #007cba;
}

.custom-calendar-wrapper .nights-display {
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 6px;
}

.custom-calendar-wrapper .calendar-clear {
    background: none !important;
    border: 2px solid #6c757d !important;
    color: #6c757d;
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    height: auto;
}

.custom-calendar-wrapper .calendar-clear:hover {
    background-color: #6c757d !important;
    color: white;
}
.custom-calendar-wrapper .form-date-search{
    cursor: pointer;
}
.custom-calendar-wrapper .form-date-search.form-calendar-open{
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}
/* Mobile responsive */
@media (max-width: 768px) {
    .custom-calendar-wrapper .calendar-container.book-style {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 95vw !important;
        max-width: 95vw !important;
        min-width: auto !important;
        padding: 16px;
    }

    .custom-calendar-wrapper .calendar-book {
        flex-direction: column;
        gap: 16px;
    }

    .custom-calendar-wrapper .calendar-day {
        min-height: 28px;
        font-size: 12px;
    }
}
/* Calendar CSS End */

/* Calendar Adjustments 09.09.2025 */

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .custom-calendar-wrapper .calendar-container.book-style {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 95vw !important;
        max-width: 95vw !important;
        min-width: auto !important;
        height: auto !important;
        max-height: 85vh !important;
        padding: 12px !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
    }

    .custom-calendar-wrapper .calendar-book {
        flex-direction: column;
        gap: 12px;
    }

    .custom-calendar-wrapper .calendar-page {
        padding: 12px;
        background: #fafafa;
        border-radius: 6px;
        border: 1px solid #e9ecef;
    }

    .custom-calendar-wrapper .calendar-page.left-page,
    .custom-calendar-wrapper .calendar-page.right-page {
        border: 1px solid #e9ecef;
        margin: 0;
    }

    .custom-calendar-wrapper .calendar-header {
        margin-bottom: 8px;
        min-height: 32px;
    }

  /*  .custom-calendar-wrapper .calendar-header button {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 32px;
    }*/

    .custom-calendar-wrapper .calendar-month-year {
        font-size: 14px;
    }

    .custom-calendar-wrapper .weekday {
        font-size: 10px;
        padding: 4px 1px;
    }

    .custom-calendar-wrapper .calendar-day {
        min-height: 28px;
        font-size: 12px;
        border-radius: 4px;
    }

    .custom-calendar-wrapper .calendar-footer {
        padding-top: 12px;
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .custom-calendar-wrapper .nights-display {
        font-size: 12px;
        padding: 6px 10px;
    }

    .custom-calendar-wrapper .calendar-clear {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Calendar Stay Info Mobile */
    .calendar-stay-info {
        font-size: 12px;
        padding: 6px 8px;
        margin-bottom: 8px;
    }

    /* Error Messages Mobile */
    .calendar-errors .error-message {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .custom-calendar-wrapper .calendar-container.book-style {
        position: absolute;
        top: 100%;
        left: 5%;
        right: 5%;
        width: 90%;
        max-width: 900px;
        min-width: 600px;
        padding: 16px;
    }

    .custom-calendar-wrapper .calendar-day {
        min-height: 30px;
        font-size: 12px;
    }
}

/* Very Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .custom-calendar-wrapper .calendar-container.book-style {
        width: 98vw !important;
        max-width: 98vw !important;
        padding: 8px !important;
        max-height: 90vh !important;
    }

    .custom-calendar-wrapper .calendar-book {
        gap: 8px;
    }

    .custom-calendar-wrapper .calendar-page {
        padding: 8px;
    }

    .custom-calendar-wrapper .calendar-day {
        min-height: 24px;
        font-size: 11px;
    }

    .custom-calendar-wrapper .weekday {
        font-size: 9px;
        padding: 3px 1px;
    }

    .custom-calendar-wrapper .calendar-month-year {
        font-size: 13px;
    }

   /* .custom-calendar-wrapper .calendar-header button {
        font-size: 14px;
        padding: 4px 8px;
        min-width: 28px;
    }*/
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .custom-calendar-wrapper .calendar-container.book-style {
        max-height: 95vh !important;
        padding: 8px !important;
    }

    .custom-calendar-wrapper .calendar-book {
        flex-direction: row !important;
        gap: 8px;
    }

    .custom-calendar-wrapper .calendar-page {
        padding: 8px;
    }

    .custom-calendar-wrapper .calendar-day {
        min-height: 22px;
        font-size: 11px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .custom-calendar-wrapper .calendar-day {
        min-height: 32px;
        padding: 2px;
    }

    .custom-calendar-wrapper .calendar-day:hover {
        transform: none; /* Remove scale transform on touch devices */
    }

    .custom-calendar-wrapper .calendar-header button {
        min-height: 36px;
        min-width: 36px;
    }
}

/* Prevent body scroll when mobile calendar is open */
body.calendar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-calendar {
    touch-action: pan-y;
}


/* Close Button Styles */
.calendar-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    user-select: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    display: none; /* Hidden on desktop */
}

.calendar-close-btn:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Show close button on mobile */
@media (max-width: 768px) {
    .calendar-close-btn {
        display: flex !important;
    }

    /* Ensure calendar navigation buttons are touch-friendly */
   /* .custom-calendar-wrapper .calendar-header button {
        min-height: 40px;
        min-width: 40px;
        font-size: 18px;
        padding: 8px 12px;
        touch-action: manipulation;
    }*/
}

/* Prevent body scroll when calendar is open on mobile */
body.calendar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.mobile-calendar {
    touch-action: pan-y;
}

/* Thank you page CSS START */

/* Hide page title */
.page-title { display: none; }

/* Main wrapper */
.balkanea-thankyou-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
    width: 100%;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-content h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-weight: 600;
}

.loading-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

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

/* Main container */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header styles */
.booking-header {
    text-align: center;
    padding: 48px 32px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.booking-header.success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.booking-header.error {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.status-badge {
    display: inline-block;
}

.status-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 64px;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.booking-header h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

/* Booking summary */
.booking-summary {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-item {
    flex: 1;
}

.summary-item h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.account-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Monaco', 'Menlo', monospace;
    letter-spacing: 0.05em;
    margin: 0;
}

.hotel-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
}

.room-type {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin: 0;
}

/* Payment details */
.payment-details {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.payment-details h3 {
    margin: 0 0 24px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.label {
    font-weight: 500;
    color: #64748b;
}

.value {
    font-weight: 600;
    color: #1e293b;
}

/* Cancellation policy */
.cancellation-policy {
    padding: 32px;
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    border-bottom: 1px solid #e2e8f0;
}

.cancellation-policy h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
}

.cancellation-policy p {
    margin: 0 0 8px;
    color: #1e293b;
}

.policy-note {
    font-size: 14px;
    color: #64748b;
}

/* Action section */
.action-section {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    min-width: 140px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

/* Contact section */
.contact-section {
    padding: 32px;
    text-align: center;
    background: #f8fafc;
}

.contact-section h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.contact-section p {
    margin: 0 0 20px;
    color: #64748b;
}

.contact-methods {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    color: #475569;
    font-size: 14px;
}

.contact-item strong {
    color: #1e293b;
}

/* Error styles */
.error-message {
    padding: 32px;
    text-align: center;
}

.error-message h3 {
    margin: 0 0 16px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.error-message ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 24px;
    padding-left: 20px;
}

.error-message li {
    margin-bottom: 8px;
    color: #64748b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .balkanea-thankyou-wrapper {
        padding: 12px;
    }

    .booking-header {
        padding: 32px 20px 24px;
    }

    .booking-header h1 {
        font-size: 24px;
    }

    .status-icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 24px;
    }

    .summary-row {
        flex-direction: column;
        gap: 20px;
    }

    .account-number {
        font-size: 18px;
    }

    .total-amount {
        font-size: 24px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 12px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .booking-summary, .payment-details, .cancellation-policy, .action-section, .contact-section {
        padding: 24px 20px;
    }
    .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search{
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .loading-content {
        padding: 24px;
    }

    .booking-header h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }
}

.fade-out-important {
    opacity: 0 !important;
    transition: opacity 500ms ease-in-out !important;
    pointer-events: none !important;
}

.hide-important {
    display: none !important;
}
/* Thank you CSS END */

/* CSS update for smaller resolutions start */
@media (min-width: 480px) and (max-width: 768px) {
    .button-search-wrapper button {
        width: 100% !important;
        max-width:100% !important;
    }
}

@media (max-width: 480px) {
/* Hotel list Display on small resolutions START */
    .search-results .card-hotel {
        flex-direction: column !important;
        padding: 5px !important;
    }

    .search-results .card-hotel .card-hotel__thumbnail {
        flex: none !important;
        max-width: 100% !important;
    }

    .search-results .card-hotel .card-body {
        flex: none !important;
        max-width: 100% !important;
        padding: 1rem 1rem 1rem 1rem !important;
    }

    .search-results .card-hotel .card-body .card-body__heading {
        flex-direction:column !important;
        max-width: 100% !important;
    }

    .search-results .card-hotel .card-body .card-body__heading .card-body__heading-title,
    .search-results .card-hotel .card-body .card-body__heading .hotel-rating {
        max-width: 100% !important;
    }

    .search-results .card-hotel .card-body .card-body__heading .hotel-rating {
        margin-top: 15px !important;
        text-align:right !important;
    }

    .search-results .card-hotel .card-body .hotel-amenities,
    .search-results .card-hotel .card-body .room-details,
    .search-results .card-hotel .card-body .show-all-rooms {
        flex:none !important;
        margin-left:1rem !important;
        margin-right:1rem !important;
        max-width: 100% !important;
    }

    .card-hotel .card-body .card-body__heading {
        display:inline !important;
    }

    .card-hotel .card-body .room-details .room-price
    {
        margin-left:0 !important;
    }

    .search-results .card-hotel .card-body .room-details .room-info span {
        margin-bottom:5px !important;
    }
    /* Hotel list Display on small resolutions END */

    /* Search Form Start */
    .search-form label,
    .search-form input,
    .search-form div,
    .search-form span {
        font-size: 14px !important;
    }

    .search-form form {
        /*margin-left:-13px !important;*/
    }

    .search-form .stt-icon {
        margin-right:4px !important;
        border-radius: 23px !important;
    }

    .button-search-wrapper {
        text-align:center !important;
        margin-bottom: -20px !important;
    }

    .button-search-wrapper button
    {
        width: 100% !important;
        height: 50px !important;
        display: inline-block !important;
        float:none !important;
        clear: both !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    /* Search Form End */

    #main-title-home {
        width: 80% !important;
        max-width: 80% !important;
    }

    .room-list_wrapper {
        display:block !important;
    }

    .room-list_wrapper .room-group {
        display:inline-block !important;
        width:100% !important;
        flex: none !important;
    }

    .room-list_wrapper .rates-container {
        display:inline-block !important;
        width:100% !important;
        flex: none !important;
    }

    #st-content-wrapper .balkanea-hotel-heading {
        display:inline-block !important;
        width:100% !important;
        max-width:100% !important;
    }

    #st-content-wrapper * {
        font-size:13px;
    }

    #st-content-wrapper .total-guests,
    .balkanea-hotel__check-in-out span,
    .showmore-btn {
        font-size:14px !important;
    }

    #st-content-wrapper h1 {
        font-size: 18px !important;
    }

    #st-content-wrapper .hotel-address,
    #st-content-wrapper .hotel-address a {
        font-size: 12px !important;
        line-height:130% !important;
    }

    #st-content-wrapper .hotel-address i {
         font-size: 20px !important;
    }

    #st-content-wrapper .balkanea-hotel__sub-heading {
        margin-top:8px !important;
    }

    #st-content-wrapper .balkanea-hotel__sub-heading span {
        margin-top:8px !important;
    }

    div:has(> span.hotel-address) {
        flex:none !important;
    }

    #st-content-wrapper .balkanea-hotel-heading .left {
        margin-bottom:10px !important;
    }

    #st-content-wrapper .balkanea-hotel-heading .right a,
    .show-detail {
        padding: 8px !important;
        font-size: 0.9rem !important;
    }

    div:has(> div.gallery-item-container) {
        display:block; !important;
    }

    .gallery-item-container {
        width: 50% !important;
        display: block;
        float: left !important;
    }

    .balkanea-hotel-rating-overall .hotel-rating {
        margin-top:16px !important;
    }

    .balkanea-hotel-rating-overall .hotel-rating__details a {
        line-height:40px !important;
        height:40px !important;
        border:2px solid !important;
        font-weight:bold !important;
        font-size:14px !important;
        font-family: 'Poppins', sans-serif !important;
    }

    .balkanea-hotel__card h2 {
        font-size:16px !important;
    }

    .balkanea-hotel__popular-amenities a,
    .balkanea-hotel__popular-amenities span {
        font-size: 0.8rem !important;
        line-height: 100% !important;
    }

    .balkanea-hotel__popular-amenities div {
        width:100% !important;
    }

    #rooms-list-container .room-list_wrapper figure,
    #rooms-list-container .room-list_wrapper figure img {
        width:100% !important;
    }

    .balkanea-hotel__card p {
        font-size:13px !important;
    }

    .balkanea-hotel__card h4 {
        font-size:15px !important;
    }

    #roomSearchBtn {
        height:40px !important;
        line-height: 20px !important;
        border-radius: 70px !important;
        font-size:14px !important;
    }

    #custom_guest_fields {
        margin-top:20px !important;
    }

    #sortSelect option {
        font-family:Poppins !important;
    }

    .woocommerce-billing-fields *,
    #custom_guest_fields * {
        color: #00332A !important;
    }

    .woocommerce-billing-fields h3,
    #custom_guest_fields h3 {
        font-size:18px !important;
    }

    #custom_guest_fields h5 {
        font-size:16px !important;
    }

    .woocommerce-billing-fields label {
        font-size:14px !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
        width:100% !important;
    }

    .woocommerce-checkout .select2-selection {
        padding: 0 !important;
    }

    .woocommerce-checkout #select2-billing_country-container,
    #select2-billing_country-results li {
        font-size:13px !important;
    }

    .woocommerce-checkout .optional {
        font-size:14px !important;
        margin-top:5px !important;
    }

    #custom_guest_fields input[type='text'] {
        font-size:13px !important;
    }
}

/* CSS update for smaller resolutions end */

#custom_guest_fields {
    margin-top:40px !important;
}

.underline,
.woocommerce-privacy-policy-link {
    text-decoration:underline !important;
}

/* reset password dialog update start */

.close {
    height: auto !important;
}

.close .input-icon {
    margin-left: 9px;
    margin-right: 9px;
    margin-top: 4px;
    margin-bottom: 4px;
}

/* reset password dialog update end */
