.form-container {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .form-container {
        max-width: 80%;
    }
}


.tabs-form {
    display: flex;
    width: 100%;

}

.tablink {
    background-color: #f2f2f2;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    flex: 1;
}

.tablink:hover {
    background-color: #ddd;
}

/* Aktif sekme için farklı bir arka plan rengi belirtin */
.active {
    background-color: #DE3334;
    /* Örneğin mavi renk */
    color: white;
    /* Aktif sekme metin rengi */
}

/* Sekme içerikleri */
.tabcontent {
    display: none;
    padding: 20px;
}

/* İlk sekme varsayılan olarak görüntülensin */
#Tab1 {
    display: block;
}

.dropdown {
    position: relative;
    ;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: transparent;
    border: 0;
}

.dropdown-toggle:focus {
    scale: 1.05;
    color: #DC2626;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.dropdown-menu {
    z-index: 20 !important;
    left: 50%;
    transform: translate(-50%, 12px);
    padding-left: 2.5rem
        /* 40px */
    ;
    padding-right: 2.5rem
        /* 40px */
    ;
    padding-top: 1.25rem
        /* 20px */
    ;
    padding-bottom: 1.25rem
        /* 20px */
    ;
    position: absolute;
    display: none;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.dropdown-item {
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-selector {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.decrement {
    background-color: #DC2626;
    display: flex;
    padding: 0.8rem;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    width: 0.75rem;
    height: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #ffffff;
    margin-right: 12px;
    cursor: pointer;
    user-select: none !important;
}

.item-input {
    width: 52px !important;
    text-align: center;
    border: 0 !important;
}

.increment {
    margin-left: 12px;
    display: flex;
    padding: 0.8rem;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    width: 0.75rem;
    height: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #ffffff;
    background-color: #059669;
    cursor: pointer;
    user-select: none !important;
}

.room {
    margin-top: 8px;
}

.room-options {
    display: none;
    /* Tüm odalar başlangıçta kapalı olacak */
    margin-top: 8px;
}

.room-button {
    padding: 5px 10px;
    background-color: cadetblue;
    color: white;
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* Otel */

.form-otel-container {
    display: grid;
    border-radius: 0.75rem;
    border-style: solid;
    border-width: 4px;
    border-color: #DC2626;
}

@media not all and (min-width: 1024px) {
    .form-otel-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .form-otel-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.otel-guest-container {
    display: flex;
    padding: 0.6rem;
    justify-content: center;
    align-items: center;
    border-width: 0;
}

.otel-guest-border {
    border-color: #DC2626;
    border-style: solid;
    border-right-width: 2px;
}

@media (min-width: 1024px) {
    .otel-guest-container {
        grid-column: span 1 / span 1;
    }
}

@media not all and (min-width: 1024px) {
    .otel-guest-container {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.otel-container {
    display: flex;
    padding: 0.6rem;
    grid-column: span 2 / span 2;
    align-items: center;
    border-style: solid;
    border-bottom-width: 2px;
    border-right-width: 0;
    border-left-width: 0;
    border-top-width: 0;
    border-color: #DC2626;
    width: auto;
}

.otel-place-border {
    border-bottom: 2px solid;
    border-color: #DC2626;
}

@media (min-width: 1024px) {
    .otel-place-border {
        border-style: solid;
        border-right-width: 2px;
    }
}

@media not all and (min-width: 1280px) {
    .otel-place-border {
        border-style: solid;
        border-bottom-width: 2px;
    }
}

.icon-responsive {
    flex-shrink: 0;
    height: 1.5rem;
    margin-right: 0.875rem;
}

@media (min-width: 1024px) {

    .otel-container {
        justify-content: center;
    }

    .icon-responsive {
        height: 2rem;
    }

}

.place-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 1024px) {
    .place-container {
        width: 66.666667%;
    }
}

.place-input {
    order: 2;
    border-width: 0 !important;
}

.place-input:focus {
    outline: none;
}

.place-input:focus+label {
    scale: 1.05;
    color: #DC2626;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.otel-entry-border {
    border-bottom: 2px solid;
    border-color: #DC2626;
}


.entry-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 1024px) {
    .entry-container {
        width: 66.666667%;
    }
}

.entry-input {
    order: 2;
    border-width: 0 !important;
    white-space: nowrap;
    width: 100%;
}

.entry-input:focus {
    outline: none;
}

.entry-input:focus+label {
    scale: 1.10;
    color: #DC2626;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.entry-input+label {
    padding-left: 4px;
}

.otel-guest-border {
    border: 0;
    border-color: #DC2626;
    border-style: solid;
    border-right-width: 2px;
}

@media (max-width: 1023px) {
    .otel-guest-border {
        border-style: solid;
        border-bottom-width: 2px;
    }
}

#addRoom {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    color: #ffffff;
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity));
    border: 0;
    cursor: pointer;
}

.otel-submit-button {
    color: #ffffff;
    cursor: pointer;
    background-color: #DC2626;
    border: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

@media not all and (min-width: 1280px) {
    .otel-submit-button {
        padding: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 1024px) {
    .otel-submit-button:hover {
        --tw-text-opacity: 1;
        color: rgb(0 0 0 / var(--tw-text-opacity));
    }
}

@media (min-width: 1024px) {
    .otel-submit-button:hover {
        background-color: transparent;
    }
}



/* Uçuş */

.form-flight-container {
    display: grid;
    border-radius: 0.75rem;
    border-style: solid;
    border-width: 4px;
    border-color: #DC2626;
}

@media not all and (min-width: 1024px) {
    .form-flight-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .form-flight-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.flight-place-container {
    display: flex;
    padding: 0.6rem;
    grid-column: span 2 / span 2;
    align-items: center;
    border-style: solid;
    border-bottom-width: 2px;
    border-right-width: 0;
    border-left-width: 0;
    border-top-width: 0;
    border-color: #DC2626;
    width: auto;
}



@media (min-width: 1024px) {
    .flight-place-container {
        border-style: solid;
        border-right-width: 2px;
    }
}

.flight-place-sub-container {
    justify-content: center;
    width: 100%;
}

.flight-place-sub-container label {
    font-weight: bold !important;
}

@media not all and (min-width: 640px) {
    .flight-place-sub-container {
        flex-direction: column;
    }
}

@media not all and (min-width: 1024px) {
    .flight-place-sub-container {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .flight-place-sub-container {
        display: grid;

        gap: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 1280px) {
    .flight-place-sub-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.flight-from-to {
    display: flex;
    margin-left: 0.75rem;
    margin-left: 0.875rem;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 1024px) {
    .flight-from-to {
        justify-content: center;
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.from-margin {
    margin-bottom: 0;
}

@media not all and (min-width: 640px) {
    .from-margin {
        margin-bottom: 20px;
    }
}

.flight-date-container {
    grid-column: span 2 / span 2;
    width: auto;
    border-style: solid;
    border-bottom-width: 2px;
    border-right-width: 0;
    border-left-width: 0;
    border-top-width: 0;
    border-color: #DC2626;
    padding: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

@media not all and (min-width: 1024px) {
    .flight-date-container {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

@media not all and (min-width: 768px) {
    .flight-date-container {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .flight-date-container {
            flex-direction: column;
        }
    }
}

.flight-date-select-container {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    @media not all and (min-width: 1280px) {
        .flight-date-select-container {
            margin-left: 20px;
        }
    }
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .flight-date-select-container {
            margin-top: 20px;
        }
    }
}

@media (min-width: 1280px) {
    .flight-date-select-container {
        margin-left: 20px;
    }
}

.flight-date-select {
    display: flex;
}

/* @media not all and (min-width: 640px) {
    .flight-date-select {
        flex-direction: column;
    }
} */

@media not all and (min-width: 768px) {
    .flight-date-select {
        margin-top: 1rem
            /* 20px */
        ;
    }
}

.flight-date-entry {
    width: auto;
    display: flex;
    flex-direction: column;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    margin-right: 28px;
}



.flight-date-exit {
    width: auto;
    display: flex;
    flex-direction: column;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.flight-date-input {
    order: 2;
    border-width: 0;
    width: 100%;
    white-space: nowrap;
}

.flight-date-input:focus {
    outline: none;
}

.flight-date-input+label {
    margin-bottom: 4px;
    flex-shrink: 0;
}

.flight-date-input:focus+label {
    scale: 1.1;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    color: #DC2626;
}

.flight-date-way {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media not all and (min-width: 768px) {
    .flight-date-way {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .flight-date-way {
            flex-direction: row;
        }
    }
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .flight-date-way {
            justify-content: space-between;
        }
    }
}

@media not all and (min-width: 768px) {
    .one-way-container {
        margin-right: 20px;
    }
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .one-way-container {
            margin-right: 20px;
        }
    }
}

.one-way {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    border: 1px solid black;
    padding: 0.5em;
    -webkit-appearance: none;
}

.one-way:checked {

    background-color: #DC2626;
}

.two-way {
    width: 16px;
    height: 16px;
    border: 1px solid black;
    padding: 0.5em;
    -webkit-appearance: none;
}

.two-way:checked {
    background-color: #DC2626;
}

/* @media not all and (min-width: 768px) {
    .one-way {
        margin-right: 20px;
    }
} */

@media (min-width: 1024px) {
    @media not all and (min-width: 1280px) {
        .one-way {
            margin-right: 20px;
        }
    }
}

.two-way {
    margin-right: 8px;
}

.flight-passenger-container {
    display: flex;
    padding: 0.6rem;
    justify-content: center;
    align-items: center;
    border-width: 0;
}

.flight-passenger-border {
    border-color: #DC2626;
    border-style: solid;
    border-right-width: 2px;
}

@media (min-width: 1024px) {
    .flight-passenger-container {
        grid-column: span 1 / span 1;
    }
}

@media not all and (min-width: 1024px) {
    .flight-passenger-container {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

#otel-currency {
    border: 0 !important;
}

#currency {
    border: 0 !important;
}

.otel-currency {
    display: flex;
    flex-direction: column;
    padding: 0.6rem;
    grid-column: span 1 / span 1;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #DC2626 !important;
}

@media not all and (min-width: 1024px) {
    .otel-currency {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
        border-right: 0 !important;
        border-bottom: 2px solid #DC2626 !important
    }
}

.flight-currency {
    display: flex;
    flex-direction: column;
    padding: 0.6rem;
    grid-column: span 1 / span 1;
    justify-content: center;
    align-items: center;
}

@media not all and (min-width: 1024px) {
    .flight-currency {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
        grid-column: span 2 / span 2;
        border-top: 2px solid #DC2626;
    }
}

#flight-class {
    border: 0
}

.flight-class {
    display: flex;
    flex-direction: column;
    padding: 0.6rem;
    grid-column: span 1 / span 1;
    justify-content: center;
    align-items: center;
    border: 2px solid #DC2626;
    border-right-width: 2px;
    border-left-width: 0;
    border-bottom-width: 0;
    border-top-width: 0;
}

@media not all and (min-width: 1024px) {
    .flight-class {
        border: 0;
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.flight-submit {
    color: #ffffff;
    cursor: pointer;
    background-color: #DC2626;
    border: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

@media not all and (min-width: 1280px) {
    .flight-submit {
        padding: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 1024px) {
    .flight-submit:hover {
        --tw-text-opacity: 1;
        color: rgb(0 0 0 / var(--tw-text-opacity));
    }

    .flight-submit {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 1024px) {
    .flight-submit:hover {
        background-color: transparent;
    }
}

@media not all and (min-width: 1024px) {
    .flight-submit {
        grid-column: span 2 / span 2;
    }
}

#otel-nationality {
    border: 0;
    width: 70%;
}

.otel-nationality {
    display: flex;
    flex-direction: column;
    padding: 0.6rem;
    grid-column: span 1 / span 1;
    justify-content: center;
    align-items: center;
    border: 2px solid #DC2626;
    border-right-width: 2px;
    border-left-width: 0;
    border-bottom-width: 0;
    border-top-width: 0;
}

@media not all and (min-width: 1024px) {
    .otel-nationality {
        border: 0;
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.vc_row[data-vc-full-width] {
    overflow: visible !important;
}

.vc_parallax {
    overflow: visible !important;
}

.vc_row[data-vc-full-width].vc_hidden {
    opacity: 1 !important;
}

#selected_results {
    display: none !important;
}

#departure_hidden_inputs {
    display: none !important;
}

#arrival_hidden_inputs {
    display: none !important;
}

.daterangepicker .drp-calendar {
    max-width: none !important;

}

.daterangepicker {
    overflow: auto !important;
    width: auto !important;
}


.guest_group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.removeRoom {
    background-color: #DC2626;
    width: 100%;
    height: 50px;
    color: white;
    order: 2;
}

.city-complete {
    position: absolute;
    background-color: white;
    flex-direction: column;
    top: 64px;
    left: 10px;
    padding: 10px;
    max-height: 150px;
    overflow: auto;
    z-index: 10 !important;
}

.city-complete .result {
    margin-bottom: 5px;
}

/* KARTLAR */

.otel-card-container {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    padding: 1.25rem;
    border-radius: 1rem;
    border: solid #DC2626 2px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    cursor: pointer;

}

.otel-card-container:hover {
    border: 2px solid transparent;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-scale-x: 1.03;
    --tw-scale-y: 1.03;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}


@media not all and (min-width: 640px) {
    .otel-card-container {
        flex-direction: column;
    }
}

.otel-card-img-cont {
    width: 100%;
}

@media (min-width: 640px) {
    .otel-card-img-cont {
        width: 25%;
        margin-right: 1.25rem;
    }
}

.otel-card-img {
    object-fit: cover;
    border-radius: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .otel-card-img {
        height: 100%;
    }
}

.otel-card-content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}

@media not all and (min-width: 640px) {
    .otel-card-content-container {
        margin-top: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 640px) {
    .otel-card-content-container {
        width: 75%;
    }
}

@media (min-width: 1024px) {
    .otel-card-content-container {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .otel-card-content {
        margin-right: 1.25rem
            /* 20px */
        ;
        flex-basis: 50%;
    }
}

.otel-card-title {
    color: #DC2626;
    font-weight: bold !important;
}

@media (min-width: 768px) {
    @media not all and (min-width: 1280px) {
        .otel-card-title {
            font-size: 1.125rem
                /* 18px */
            ;
            line-height: 1.75rem
                /* 28px */
            ;
        }
    }
}

@media (min-width: 1280px) {
    .otel-card-title {
        font-size: 1.5rem
            /* 24px */
        ;
        line-height: 2rem
            /* 32px */
        ;
    }
}

.otel-star {
    color: #F59E0B;
    font-size: 16px;
}

.otel-star.half {
    width: 8px;
    overflow: hidden;
}

.otel-location {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.otel-location-detail {
    color: #DC2626;
    margin-left: 4px;
}

@media not all and (min-width: 1280px) {
    .otel-location-detail {
        font-size: 0.75rem
            /* 12px */
        ;
        line-height: 1rem
            /* 16px */
        ;
    }
}

@media (min-width: 1280px) {
    .otel-location-detail {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.otel-room {

    display: flex;
    align-items: center;
    margin-top: 8px;

}

.otel-room-detail {
    color: black;
    margin-left: 4px;
    font-weight: bold !important;
}

@media not all and (min-width: 1280px) {
    .otel-room-detail {
        font-size: 0.75rem
            /* 12px */
        ;
        line-height: 1rem
            /* 16px */
        ;
    }
}

@media (min-width: 1280px) {
    .otel-room-detail {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.otel-extra {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media not all and (min-width: 1024px) {
    .otel-extra {
        display: none;
    }
}

.otel-extra-1 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    color: #ffffff;
    background-color: #10B981;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 300ms;
}

.otel-extra-1:hover {
    background-color: #065F46;
}

@media (min-width: 1280px) {
    .otel-extra-1 {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media not all and (min-width: 1280px) {
    .otel-extra-1 {
        font-size: 10px;
    }
}

.otel-extra-2 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    color: #EA580B;
    background-color: #FED7AA;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 300ms;
}

.otel-extra-2:hover {
    background-color: #fe9b28;
}

@media (min-width: 1280px) {
    .otel-extra-2 {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media not all and (min-width: 1280px) {
    .otel-extra-2 {
        font-size: 10px;
    }
}


.otel-extra-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    color: #D97706;
    background-color: #FDE68A;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 300ms;
}

.otel-extra-3:hover {
    background-color: #92400E;
}

@media (min-width: 1280px) {
    .otel-extra-3 {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media not all and (min-width: 1280px) {
    .otel-extra-3 {
        font-size: 10px;
    }
}

.otel-extra-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    color: #EC4899;
    background-color: #FBCFE8;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 300ms;
}

.otel-extra-4:hover {
    background-color: #9D174D;
}

@media (min-width: 1280px) {
    .otel-extra-4 {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media not all and (min-width: 1280px) {
    .otel-extra-4 {
        font-size: 10px;
    }
}

.otel-total-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .lg\:basis-1\/4 {
        flex-basis: 25%;
    }
}

.otel-total-sub-cont {
    justify-content: space-between;
}

@media not all and (min-width: 1024px) {
    .otel-total-sub-cont {
        display: flex;
    }
}

.otel-evaluation-container {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .otel-evaluation-container {
        justify-content: flex-end;
    }
}

.otel-evaluation-text {
    text-align: end;
    margin-right: 8px;

}

@media not all and (min-width: 1024px) {
    .otel-evaluation-text {
        display: none;
    }
}

.otel-evaluation-text-title {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity));
    font-weight: bold;
    font-size: 1.125rem
        /* 18px */
    ;
    line-height: 1.75rem
        /* 28px */
    ;
}

.otel-evaluation-text-subtitle {
    font-size: 0.75rem
        /* 12px */
    ;
    line-height: 1rem
        /* 16px */
    ;
}

.otel-evaluation-number {
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #ffffff;
    background-color: #1F2937;
}

@media not all and (min-width: 1024px) {
    .otel-evaluation-number {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.otel-card-passenger {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: end;
}

@media not all and (min-width: 1024px) {
    .otel-card-passenger {
        display: none;
    }
}

.otel-card-price-discount {
    margin-right: 0.5rem;
    color: #6B7280;
    text-decoration: line-through;
    white-space: nowrap;
}

@media not all and (min-width: 1536px) {
    .otel-card-price-discount {
        font-size: 0.875rem
            /* 14px */
        ;
        line-height: 1.25rem
            /* 20px */
        ;
    }
}

.otel-card-price {
    color: #DC2626;
    white-space: nowrap;

}

@media not all and (min-width: 1536px) {
    .otel-card-price {
        font-size: 1.125rem
            /* 18px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

@media (min-width: 1536px) {
    .otel-card-price {
        font-size: 1.25rem
            /* 20px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

.otel-card-reservation-button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 1.25rem;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    --ring-color: #DC2626;
    text-align: center;
    color: #ffffff;
    background-color: #DC2626;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    text-decoration: none;

}

.otel-card-reservation-button:hover {
    background-color: transparent;
    color: #DC2626;
    border: 2px solid #DC2626;
}

/* Uçuş kart */

.flight-card-container {
    display: flex;
    padding: 1.25rem;
    margin-top: 2.5rem;
    align-items: flex-start;
    border-radius: 1rem;
    border: solid #DC2626 2px;
    background-color: #ffffff;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 300ms;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.flight-card-container:hover {
    border: 0;
    box-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tw-scale-x: 1.03;
    --tw-scale-y: 1.03;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 640px) {
    @media not all and (min-width: 1024px) {
        .flight-card-container {
            justify-content: space-between;
        }
    }
}

@media not all and (min-width: 640px) {
    .flight-card-container {
        flex-direction: column;
    }
}

.flight-card-img-container {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .flight-card-img-container {
        width: 25%;
    }
}

.flight-card-locaiton-container {
    display: flex;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .flight-card-locaiton-container {
        width: 75%;
    }
}

@media not all and (min-width: 640px) {
    .flight-card-locaiton-container {
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    @media not all and (min-width: 1024px) {
        .flight-card-locaiton-container {
            flex-direction: column;
        }
    }
}

.flight-card-locaiton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .flight-card-locaiton {
        margin-left: 1.75rem;
        margin-right: 1.75rem;
        width: 50%;
    }
}

@media (min-width: 640px) {
    @media not all and (min-width: 768px) {
        .flight-card-locaiton {
            margin-left: 1.75rem
                /* 28px */
            ;
            margin-right: 1.75rem
                /* 28px */
            ;
        }
    }
}

@media (min-width: 1280px) {
    .flight-card-from-date {
        font-size: 1.5rem
            /* 24px */
        ;
        line-height: 2rem
            /* 32px */
        ;
    }
}

@media not all and (min-width: 1280px) {
    .flight-card-to-date {
        font-size: 1.25rem
            /* 20px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

@media (min-width: 1280px) {
    .flight-card-to-date {
        font-size: 1.5rem
            /* 24px */
        ;
        line-height: 2rem
            /* 32px */
        ;
    }
}

@media not all and (min-width: 1280px) {
    .flight-card-from-date {
        font-size: 1.25rem
            /* 20px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

.flight-card-from-place {
    color: #4B5563;

}

@media (min-width: 1280px) {
    .flight-card-from-place {
        font-size: 1.125rem
            /* 18px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

@media (min-width: 1280px) {
    .flight-card-to-place {
        font-size: 1.125rem
            /* 18px */
        ;
        line-height: 1.75rem
            /* 28px */
        ;
    }
}

.flight-card-to-place {
    color: #4B5563;

}

.flight-price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media not all and (min-width: 640px) {
    .flight-price-container {
        margin-top: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 1024px) {
    .flight-price-container {
        width: 25%;
    }
}

.flight-price {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    color: #1F2937;

}

.flight-card-reservation-button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 1.25rem;
    border-radius: 0.5rem;
    border-color: #DC2626;
    text-align: center;
    color: #ffffff;
    white-space: nowrap;
    background-color: #DC2626;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    text-decoration: none;
}

.flight-card-reservation-button:hover {
    color: #DC2626;
    border: solid 2px #DC2626;
    background: transparent;
}

@media (min-width: 1024px) {
    @media not all and (min-width: 1536px) {
        .flight-card-reservation-button {
            font-size: 0.75rem
                /* 12px */
            ;
            line-height: 1rem
                /* 16px */
            ;
        }
    }
}

.flight-card-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media not all and (min-width: 1280px) {
    .flight-card-icon-container {
        margin-left: 1.25rem
            /* 20px */
        ;
        margin-right: 1.25rem
            /* 20px */
        ;
    }
}

@media (min-width: 1280px) {
    .flight-card-icon-container {
        margin-left: 1.75rem
            /* 28px */
        ;
        margin-right: 1.75rem
            /* 28px */
        ;
    }
}

.drp-buttons .cancelBtn {
    background-color: #DC2626 !important;
    padding: 10px 20px !important;
    color: white !important;
    margin-right: 5px !important;
}

.drp-buttons .applyBtn {
    background-color: green !important;
    padding: 10px 20px !important;
    color: white !important;
}

#anasayfa label {
    padding: 0 !important;
}

#anasayfa select {
    padding: 0 !important;
    height: 30px;
    font-size: 12px;
}

.place-container input::placeholder {
    font: 10px;
}


@media (max-width: 640px) {

    .daterangepicker .ranges,
    .daterangepicker .drp-calendar {
        float: none !important;
    }

    .daterangepicker.show-calendar .drp-buttons {
        display: flex;
        flex-direction: column;
    }

    .daterangepicker .drp-selected {
        display: block;
        font-size: 12px;
        padding-right: 0;
        margin-bottom: 5px;
        text-align: center !important;
    }

    .drp-buttons .cancelBtn {
        background-color: #DC2626 !important;
        padding: 10px 20px !important;
        color: white !important;
        margin-right: 0 !important;
        margin: 5px 0 !important;
    }

    .drp-buttons .applyBtn {
        background-color: green !important;
        padding: 10px 20px !important;
        color: white !important;
        margin: 0 !important;
    }
}

#rooms .item-name {
    white-space: nowrap !important;
}


/*Ekleme */

#loadingImageflight {

    clear: both;

    display: flex;

    background-repeat: no-repeat;
    /* Tekrar etmemesini sağlar */

    background-position: center center;
    /* Resmi ortalar */

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;
    /* Ekran yüksekliği kadar olacak şekilde ayarlayabilirsiniz */

    display: flex;

    justify-content: center;

    align-items: center;



}

#loadingImage {

    clear: both;

    display: flex;

    background-repeat: no-repeat; /* Tekrar etmemesini sağlar */

    background-position: center center; /* Resmi ortalar */

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh; /* Ekran yüksekliği kadar olacak şekilde ayarlayabilirsiniz */

    display: flex;

    justify-content: center;

    align-items: center;

}