/* Experience Frontend Form Styles */

.form-row::before,
.form-row::after {
    display: none !important;
}

#ssb-booking-wrapper textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 56px;
}

#ssb-booking-wrapper .form-row {
    display: flex;
    flex-flow: row wrap;
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 16px;
}

#ssb-booking-wrapper .form-group {
    flex: 1;
    width: 100%;
}

#ssb-booking-wrapper .ssb-form-actions button {
    font-size: 16px;
    padding: 12px 18px 10px 18px !important;
    text-transform: uppercase;
    line-height: 1.3em !important;
}

#ssb-booking-wrapper .description-block {
    border: 1px solid #e9ded1;
    padding: 8px 12px;
    font-size: 14px;
    color: #666666;
}

#ssb-booking-wrapper #ssb-submit-btn {
    background: linear-gradient(140deg, #ff8e2f, #ff7401);
    color: #ffffff;
    font-weight: 700;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#ssb-booking-wrapper #ssb-submit-btn:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    filter: brightness(1.12) saturate(1.12);
}

#ssb-booking-wrapper {
    background: #fefaf5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 100%;
    position: relative; /* Context for absolute positioning */
}


#ssb-booking-wrapper h4 {
    margin-top: 6px;
    color: #3f3f3f;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    padding-bottom: 7px;
}

/* Progress Bar */
#ssb-booking-wrapper .ssb-progress-bar {
    display: flex;
    background: #f6f7f7;
    overflow: hidden;
}

#ssb-booking-wrapper .step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 11px 6px;
    text-align: center;
    font-weight: 500;
    color: #646970;
    background: #ffffff;
    border-right: 1px solid #fff;
    line-height: 1.1;
    font-size: 13px;
    box-shadow: inset 0 -2px 0 0px #ccd0d4;
    cursor: pointer;
}

#ssb-booking-wrapper .step-indicator.active {
    background: #d28a4b;
    color: #ffffff;
    box-shadow: inset 0 -2px 0 0px #d28a4b;
}

#ssb-booking-wrapper .step-indicator.completed {
    background: #ffffff;
    color: #23691f;
    box-shadow: inset 0 -2px 0 0px #31a12a;
}

/* Form Layout */
#ssb-booking-wrapper .ssb-step h3 {
    width: 100%;
    margin-top: 0;
    border-bottom: 2px solid #d28a4b;
    padding-bottom: 4px;
    margin-bottom: 16px;
    display: inline-block;
    font-size: 18px !important;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    color: #222222 !important;
    font-weight: 500 !important;
}

#ssb-booking-wrapper label {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;   
    color: #333;
    line-height: 1.3em;
}

#ssb-booking-wrapper .ssb_form_description {
    font-size: 13px;
    color: #666;
    margin-top: 0;
    margin-bottom: 4px;
    line-height: 1.2em;
    font-weight: 400;
}

#ssb-booking-wrapper input[type="text"],
#ssb-booking-wrapper input[type="number"],
#ssb-booking-wrapper input[type="date"],
#ssb-booking-wrapper input[type="email"],
#ssb-booking-wrapper input[type="tel"],
#ssb-booking-wrapper select,
#ssb-booking-wrapper textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
#ssb-booking-wrapper input[type="text"],
#ssb-booking-wrapper input[type="number"],
#ssb-booking-wrapper input[type="email"],
#ssb-booking-wrapper input[type="tel"],
#ssb-booking-wrapper select {
    max-height: 39px;
}

/* Cards for Destinations/Activities */

#ssb-booking-wrapper .ssb-cards-container {
    display: grid;
}

#ssb-booking-wrapper .preview-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.12s;
    position: relative;
}

#ssb-booking-wrapper .preview-card.selected {
    border-color: #8dbadd;
}

#ssb-booking-wrapper .preview-card.required {
    border-color: #d5c6b3;
}

/* Header Label (Clickable Row) */
#ssb-booking-wrapper .preview-destination-header {
    display: flex;
    align-items: flex-start; /* Align top */
    padding: 15px;
    cursor: pointer;
    margin: 0;
    transition: background-color 0.12s;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

#ssb-booking-wrapper .preview-card.selected .preview-destination-header {
    background-color: #f0f6fc;
}

#ssb-booking-wrapper .preview-card.required .preview-destination-header {
    cursor: default;
    background: linear-gradient(180deg,#fefaf5 0%,#f7efea 100%);
}

#ssb-booking-wrapper .preview-card:has(+ h4) {
    margin-bottom: 30px;
}

#ssb-booking-wrapper .preview-destination-header:hover {
    background-color: #f0f6fc;
}

#ssb-booking-wrapper .preview-card:has(.preview-destination-header:hover):not(.selected) {
    border: 1px solid #d2e0ed;
}

/* Custom Checkbox (Circle with Check) */
#ssb-booking-wrapper .destination-checkbox {
    display: none;
}

#ssb-booking-wrapper #ssb-destinations-container h4::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--zone-color, #d28a4b);
    border-radius: 50%;
    margin-right: 6px;
    transform: translateY(-1px);
}
#ssb-booking-wrapper .ssb-checkbox-indicator {
    width: 22px;
    height: 22px;
    border: 1px solid #8c8f94;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    background: #fff;
    transition: all 0.12s;
}

#ssb-booking-wrapper .destination-checkbox:checked + .ssb-checkbox-indicator {
    background-color: #2271b1;
    border-color: #2271b1;
}

#ssb-booking-wrapper .destination-checkbox:checked + .ssb-checkbox-indicator::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#ssb-booking-wrapper .preview-card.required .destination-checkbox:checked + .ssb-checkbox-indicator::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #957f64;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#ssb-booking-wrapper .destination-checkbox:disabled + .ssb-checkbox-indicator {
    background-color: #f2e3d0;
    border-color: #d5c6b3;
}

/* Image Wrapper */
#ssb-booking-wrapper .destination-image-wrapper {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

#ssb-booking-wrapper .destination-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#ssb-booking-wrapper .ssb-header {
    background: #fff;
    padding: 20px;
}

#ssb-booking-wrapper .ssb-header .ssb-header-title h2 {
    font-size: 22px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 600;
}

#ssb-booking-wrapper .ssb-header .ssb-header-description {
    line-height: 1.4em;
    font-size: 15px;
}

/* Destination Header Content */
#ssb-booking-wrapper .destination-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Fix flex text overflow */
}

#ssb-booking-wrapper .destination-title-row {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#ssb-booking-wrapper .destination-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin-right: 8px;
    line-height: 1.2;
}

#ssb-booking-wrapper .destination-meta-row {
    font-size: 13px;
}

#ssb-booking-wrapper .destination-description {
    font-size: 13px;
    color: #646970;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#ssb-booking-wrapper .destination-price {
    font-weight: bold;
    color: #077507;
    font-size: 14px;
}

/* Activities Container indent */
#ssb-booking-wrapper .badge {
    background: #fbf7f2;
    color: #555555;
    padding: 6px 6px;
    border: 1px solid #e6dcd0;
    border-radius: 6px;
    font-size: 11px !important;
    line-height: 1em;
}

/* Activities */
#ssb-booking-wrapper .preview-activity-item {
    background: rgba(255,255,255,0.5);
    transition: background 0.12s;
}
#ssb-booking-wrapper .preview-activity-item:not(:last-child) {
    border-bottom: 1px solid #e9e7e4;
}
#ssb-booking-wrapper .preview-activity-item:hover { background: #ffffff; }
#ssb-booking-wrapper .preview-activity-item.selected .activity-name { color: #875a34; }

#ssb-booking-wrapper .preview-activity-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 6px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0;
    padding: 6px 15px 6px 12px;
}

#ssb-booking-wrapper .preview-activity-item label:hover {
    background-color: #fefaf5;
}

#ssb-booking-wrapper .preview-activity-item .activity-checkbox {
    height: 15px;
    width: 15px;
    accent-color: #cb7427;
    margin: 0 3px 0 0;
}

#ssb-booking-wrapper .activity-name {
    font-size: 14px;
    line-height: 1.2em;
}

#ssb-booking-wrapper .activity-extra-info {
    font-weight: bold;
    color: #077507;
    font-size: 14px;
}

/* Sortable List */
#ssb-booking-wrapper .ssb-sort-list {
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background: #fff;
    padding: 8px 8px 3px 8px;
}

#ssb-booking-wrapper .ssb-sort-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #8dbadd;
    background-color: #f0f6fc;
    margin-bottom: 5px;
    border-radius: 3px;
    position: relative;
    padding-left: 30px;
    cursor: grab;
}
#ssb-booking-wrapper .ssb-sort-item:hover {
    background: #e2effd;
}

#ssb-booking-wrapper .ssb-sort-item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 16px;
    background-image: radial-gradient(circle, #8cb0cd 1px, transparent 1px);
    background-size: 4px 4px; /* Dots grid */
    background-repeat: repeat;
    opacity: 0.6;
}

#ssb-booking-wrapper .ssb-sort-actions button {
    padding: 4px 8px;
    cursor: pointer;
    background: #d28a4b;
    border: unset;
    color: #ffffff;
}
#ssb-booking-wrapper .ssb-sort-actions button:not(:disabled):hover { background: #875a34; }
#ssb-booking-wrapper .ssb-sort-actions button:disabled { opacity: 0.5; cursor: default; }

/* Adjustments Sections */
#ssb-booking-wrapper .adjustment-section {
    display: flex;
    flex-flow: row wrap;
    column-gap: 20px;
    row-gap: 12px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #eee;
}
#ssb-booking-wrapper .adjustment-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 5px;
}

#ssb_adjust_start_date,
#ssb_return_date,
#ssb_summary_start_date,
#ssb_summary_end_date {
    background: linear-gradient(180deg,#fefaf5 0%,#f7efea 100%);
    border-color: #e9ded1 !important;
    color: #555555;
}

/* Summary */
#ssb-booking-wrapper .ssb-summary-card {
    justify-content: space-between;
    padding: 8px 0;
}

#ssb-booking-wrapper .total-row.price {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    border-bottom: none;
    font-weight: bold;
    color: #222222;
    border-top: 1px solid #b3b8bf;
    margin-top: 6px;
    padding-top: 8px;
}

/* Summary Tabs */
#ssb-summary-tabs.ssb-tabs-nav {
    display: flex;
    border-bottom: 2px solid #ccd0d4;
    gap: 2px;
}

.ssb-tab-btn {
    padding: 10px 16px;
    background: #ffffff;
    border: none;
    border-bottom: 2px solid #ccd0d4;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #646970;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    border-radius: 4px 4px 0 0;
}

.ssb-tab-btn:hover {
    color: #c36818;
}

.ssb-tab-btn.active {
    color: #c36818;
    border-bottom-color: #d28a4b;
}

.ssb-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ssb-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Summary List Styles within Tabs */
.ssb-tab-pane .summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ssb-tab-pane .summary-list li {
    padding: 3px 0;
    border-bottom: 1px dashed #e5e5e5;
    font-size: 14px;
    color: #3c434a;
}
.ssb-tab-pane .summary-list li:last-child {
    border-bottom: none;
}
.ssb-tab-pane .summary-list li strong {
    color: #2c3338;
}

/* Actions */
#ssb-booking-wrapper .ssb-form-actions {
    display: flex;
    flex-flow: row wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-top: 0px;
    padding: 12px 20px 12px 20px;
    background: #ffffff;
}

.ssb-btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.12s;
}

.ssb-btn:hover {
    background: #eee;
}

.ssb-btn-primary {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.ssb-btn-primary:hover {
    background: #135e96;
    border-color: #135e96;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
}

.badge.required {
    background: #d63638;
    color: #fff;
}

.badge.recommended {
    background: #00a32a;
    color: #fff;
}

/* Days Bar Styles */
.ssb-days-bar-container {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #f0f0f1;
    border-bottom: 1px solid #dcdcde;
    margin-bottom: 20px;
    border-radius: 4px;
}

.days-bar-info {
    margin-bottom: 5px;
    font-size: 13px;
    color: #50575e;
    line-height: 1.2em;
}

#ssb-days-bar-total {
    color: #222;
    font-weight: 700;
}

.days-bar-visual {
    display: flex;
    width: 100%;
    height: 8px;
    background: #ddd;
    overflow: hidden;
}

.days-bar-segment {
    height: 100%;
    transition: width 0.3s ease;
    position: relative;
    /* Day Separators Pattern */
    background-image: linear-gradient(to right, transparent calc(100% - 2px), rgba(255,255,255,.6) 2px);
    background-size: calc(100% / var(--days-count, 1)) 100%;
}

/* Tooltip for segment */
.days-bar-segment:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 10;
}

/* Colors for Zones */
.days-segment-zone-0 { background-color: #0073aa; } /* Blue */
.days-segment-zone-1 { background-color: #00a32a; } /* Green */
.days-segment-zone-2 { background-color: #dba617; } /* Yellow/Orange */
.days-segment-zone-3 { background-color: #d63638; } /* Red */
.days-segment-zone-4 { background-color: #634c89; } /* Purple */
.days-segment-zone-5 { background-color: #0085ba; } /* Cyan */

.days-segment-variant-shine {
    /* Shine Effect: White gradient from top + Separators */
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.53) 0%, rgba(255, 255, 255, 0.12) 100%),
        linear-gradient(to right, transparent calc(100% - 2px), rgba(255,255,255,.6) 2px);
    background-size: 100% 100%, calc(100% / var(--days-count, 1)) 100%;
}

/* Intl Tel Input Tweaks */
.iti {
    width: 100%;
}
.iti__dropdown-content {
    z-index: 9999 !important;
}

/* Sticky Header & Footer Implementation */
#ssb-fixed-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02),0 8px 16px rgba(0,0,0,0.02);
}

#ssb-fixed-footer {
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: #fefaf5;
    border-top: 1px solid #e9e7e4;
    padding-top: 0;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.02),0 -8px 16px rgba(0,0,0,0.02);
}

.ssb-sort-item.dragging {
    opacity: 0.5;
    background: #e5e5e5;
    border: 1px dashed #999;
}

#ssb-days-bar-container {
    margin-bottom: 0;
    border-bottom: none;
    background: #ffffff;
    padding: 9px 20px 0 20px;
}

#ssb-prev-step {
    margin-right: auto;
    min-width: 120px;
}
#ssb-next-step {
    margin-left: auto;
}

/* Space for scrolling */
#ssb-scrollable-content {
    padding-inline: 20px;
    padding-bottom: 40px;
}

#ssb-booking-wrapper .pax-adult-child-group {
    display: flex;
    flex-flow: row wrap;
}

#ssb-booking-wrapper .pax-adult-child-group .form-group {
    width: calc(50% - 10px);
    flex: unset;
    min-width: unset;
}

#ssb-booking-wrapper .ssb-client-info .form-row {
    flex-direction: column;
}

#ssb-booking-wrapper .ssb-client-info .form-group {
    width: 100%;
}

/* Validation Errors */
.ssb-input-error {
    border-color: #d63638 !important;
}

.ssb-error-message {
    color: #d63638;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    line-height: 1.2em;
}




/* Floating Error Message Container */
#ssb-floating-errors-container {
    position: absolute; 
    top: 100%; /* Below the header content */
    left: 0;
    width: 100%;
    z-index: 999;
    pointer-events: none; /* Let clicks pass through */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating Error Message */
.ssb-floating-error {
    position: relative; /* Changed from absolute */
    pointer-events: auto; /* Re-enable clicks for close button */
    background-color: #ffffff;
    color: #3f3f3f;
    padding: 12px 30px 12px 12px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: auto;
    max-width: 90%;
    min-width: 280px;
    text-align: left;

    display: flex;
    align-items: center;
    border-left: 4px solid #d63638;
    line-height: 1.3em;
    animation: ssbSlideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px; /* Spacing between errors */
}

.ssb-floating-error .error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d63638;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
}

.ssb-floating-error .close-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

@keyframes ssbSlideDown {
    from { 
        opacity: 0; 
        transform: translateY(-100%);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* Ensure relative positioning for steps to contain the absolute error */
.ssb-step {
    position: relative;
    min-height: 100px; /* Ensure space */
}

#ssb-booking-wrapper #ssb-summary-tabs-content {
    background: #fff;
    border-right: 1px solid #eeeeee;    
    border-left: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 6px 10px 6px 10px;
    margin-bottom: 12px;
}

#ssb-booking-wrapper .summary-totals {
    background-color: #ffffff;
    border: 1px dashed #b3b8bf;
    padding: 9px 16px;
    font-size: 16px;
}

#ssb-booking-wrapper #ssb-accommodation-container input:disabled {
    background: linear-gradient(180deg, #fafafa 0%, #eeeeee 100%);
    border-color: #cccccc;
}

#ssb-booking-wrapper .iti__selected-dial-code {
    font-size: 14px;
}
.iti__search-input {
    padding-block: 9px 12px !important;
}
#ssb-booking-wrapper .iti__selected-country {
    max-height: 37px;
}

/* Success Message Container */
.ssb-booking-submission-success {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft shadow */
    animation: fadeIn 0.5s ease-out;
}

.ssb-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #dff0d8; /* Green background */
    color: #3c763d; /* Green icon color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.ssb-booking-submission-success h2 {
    color: #2c3338;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.ssb-booking-submission-success p {
    color: #50575e;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ssb-booking-submission-success .button {
    background: linear-gradient(140deg, #ff8e2f, #ff7401);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.ssb-booking-submission-success .button:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Select2 Custom Styles */
.select2-container .select2-selection--single {
    height: 39px !important;
    border: 1px solid #8c8f94 !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    color: #333 !important;
    font-size: 14px !important;
    padding-left: 10px !important;
    padding-right: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 37px !important;
    top: 1px !important;
}

.select2-results__option {
    font-size: 14px !important;
    padding: 8px 10px !important;
}

/* Fix for search input inside dropdown */
.select2-search__field {
    height: 34px !important;
    padding: 4px 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none !important;
}
