body {
}
/* style.css */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    .toast.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
#toast {
    visibility: hidden;
    position: fixed;
    bottom: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    padding: 20px;
    font-size: 20px;
    text-align:center;
}

    #toast.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

#video-wrapper {
    background-position: top;
    
}



.aivideo {
    
    border: 5px solid;
    border-color:#ffffff;
    border-radius: 50%;
    background-color: #fff;
}
.show-background {
    background-image: url('./img/monitor.png'); /* Arka plan resminizin URL'sini buraya ekleyin */
    background-size: cover; /* Arka plan resminin boyutunu kaplamasını sağlar */
    background-position: center; /* Arka plan resminin konumunu ayarlar */
    /* Diğer arka plan özelliklerini buraya ekleyebilirsiniz */
}
#loading-container {
    display: flex;
    position: absolute;
    margin-left: 125px;
    width: 100px;
    z-index: 1000; /* İçeriklerin üstünde kalır */
}

#loading-gif {
    width: 100px;
    height: 100px;
}

#waiting-container {
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    margin-top:300px;
    z-index: 1000; /* İçeriklerin üstünde kalır */
}

#waiting-gif {
    width: 100px;
    height: 100px;
    border: 3px solid #999999; /* Kenarlık */
    border-radius: 50px; /* Köşeleri yuvarlat */
    box-shadow: 0 10px 0px rgba(0, 0, 0, 1); /* Hafif gölge efekti */
}

#content {
    text-align: center;
}
.result-container {
    width: 1070px;
    display: flex; /* Flexbox düzeni */
    flex-wrap: wrap; /* Sığmayan kutuların alt satıra geçmesi */
    gap: 10px; /* Kutular arasındaki boşluk */
    justify-content: flex-start; /* Kutuları sola yasla */
    align-items: flex-start; /* Üstten hizala */
}

.country-item {
    width: 170px; /* Genişlik */
    height: 58px; /* Yükseklik */
    display: flex; /* İçeriği düzenlemek için flexbox */
    align-items: center; /* Dikey hizalama */
    justify-content: space-between; /* İçerikleri sola ve sağa yerleştir */
    border: 1px solid #ddd; /* Kenarlık */
    border-radius: 5px; /* Köşeleri yuvarlat */
    padding: 5px 10px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    background-color: #f9f9f9; /* Arka plan rengi */
    box-sizing: border-box; /* Kenarları dahil et */
    
}
.region-item {
    width: 260px; /* Genişlik */
    height: 190px; /* Yükseklik */
    display: flex; /* İçeriği düzenlemek için flexbox */
    align-items: center; /* Dikey hizalama */
    justify-content: space-between; /* İçerikleri sola ve sağa yerleştir */
    border: 1px solid #ddd; /* Kenarlık */
    border-radius: 5px; /* Köşeleri yuvarlat */
    padding: 5px 10px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    background-color: #f9f9f9; /* Arka plan rengi */
    box-sizing: border-box; /* Kenarları dahil et */
}
.hotel-item {
    width: 520px; /* Genişlik */
    height: 240px; /* Yükseklik */
    display: flex; /* İçeriği düzenlemek için flexbox */
    flex-direction: column;
    align-items: center; /* Dikey hizalama */
    justify-content: space-between; /* İçerikleri sola ve sağa yerleştir */
    border: 1px solid #ddd; /* Kenarlık */
    border-radius: 5px; /* Köşeleri yuvarlat */
    padding: 5px 10px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    background-color: #f9f9f9; /* Arka plan rengi */
    box-sizing: border-box; /* Kenarları dahil et */
}

.hotel-summary {
    width: 250px; /* Genişlik */
    height: 200px; /* Yükseklik */
    display: flex; /* İçeriği düzenlemek için flexbox */
    align-items: center; /* Dikey hizalama */
    justify-content: space-between; /* İçerikleri sola ve sağa yerleştir */
    padding: 5px 10px; /* İç boşluk */
    background-color: #f9f9f9; /* Arka plan rengi */
    box-sizing: border-box; /* Kenarları dahil et */
}
.hotel-title {
    width: 250px; /* Genişlik */
    height: 40px; /* Yükseklik */
    left:0;
    display: flex; /* İçeriği düzenlemek için flexbox */
    
}

.country-name {
    font-size: 14px; /* Yazı boyutu */
    font-weight: bold; /* Kalın yazı */
    color: #333333;
    text-align:left;
}
.region-name {
    height: 80px;
    width: 250px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 5px;
}
.region-code {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    background-color: #ffffff;
    border-radius: 5px;
}
.hotel-name {
    width:480px;
    font-size: 14px;
    font-weight: bold;
}
.hotel-location {
    width: 480px;
    font-size: 12px;
}
.hotel-info {
    list-style: none;
    margin-left: -30px;
    color: #333333;
    text-align:left;
}
.hotel-info {
    list-style: none;
    margin-left: -30px;
    color: #333333;
    text-align:left;
}

.hotel-image {
    width: 250px;
    height: 180px;
    border: 2px solid #666666; /* Kenarlık */
    border-radius: 10px;
}
.region-name-span {
    padding-left:5px;
    padding-right:5px;
    color: #666666;
    font-size: 16px; /* Yazı boyutu */
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center; /* Yatay merkezleme */
    align-items: center; /* Dikey merkezleme */
    height: 50px; /* Yükseklik ekleyerek dikey hizalama sağlanabilir */
}

.region-code-span {
    padding-left: 5px;
    color: #666666;
    font-size: 16px; /* Yazı boyutu */
    text-align: left;
}
.country-price {
    font-size: 14px; /* Yazı boyutu */
    color: #ff0000; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
}
.region-price {
    font-size: 20px; /* Yazı boyutu */
    color: #ff0000; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align:right;
}
.hotel-singleprice {
    width: 240px;
    font-size: 20px; /* Yazı boyutu */
    color: #ff0000; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align: right;
}
.hotel-price {
    list-style: none;
    width: 240px;
    height:40px;
    line-height: 20px;
    margin-right:10px;
}
.hotel-price-label {
    color: #ff0000; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align: right;
    margin-bottom: 0px;
}
.hotel-singleprice-label {
    font-size: 10px; /* Yazı boyutu */
    color: #666666; /* Yeşil tonunda renk */
    text-align: right;
    margin-bottom: 0px;
}
.region-air {
    font-size: 18px; /* Yazı boyutu */
    color: #333333; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align: left;
}
.region-duration {
    font-size: 14px; /* Yazı boyutu */
    color: #333333; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align: left;
}
.region-water {
    font-size: 18px; /* Yazı boyutu */
    color: #333333; /* Yeşil tonunda renk */
    font-weight: bold; /* Kalın yazı */
    text-align: right;
}
.bi-brightness-low-fill {
    width: 32px; /* Genişlik ayarlama */
    height: 32px; /* Yükseklik ayarlama */
}
.bi-water {
    width: 16px; /* Genişlik ayarlama */
    height: 16px; /* Yükseklik ayarlama */
}
.hotel-top-box {
    width: 100%;
    height: 40px;
    text-align: left;
    line-height: 20px;
    border:0;
}

.hotel-bottom-box {
    display: flex;
    flex-grow: 1;
}

.hotel-bottom-left,
.hotel-bottom-right {
    width: 260px;
    height: 190px;
}


.hotel-bottom-left {
    
}

.hotel-bottom-right {
    color: #333333;
    text-align: left;
}
.btn-warning {
    font-weight:normal;
    background-color: lightyellow;
    margin-top:-65px;
    margin-left:300px;
    width: 200px;
    position: relative;
}

.hotel-attributes {
    width: 250px;
    text-align: right;
    font-size: 12px;
}
#tabs-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

#hotels-tab {
    margin-top: 20px;
    min-height: 300px;
    border: 1px solid #ccc;
    padding: 20px;
    background: #f9f9f9;
}

#navigation {
    margin-top: 10px;
}

    #navigation button {
        padding: 10px 20px;
        margin: 0 10px;
        background: #007bff;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

        #navigation button:disabled {
            background: #ddd;
            cursor: not-allowed;
        }

/* Hotel Details */
.hoteldetail-container {
    align-content:center;
}

.hoteldetail-item {
    width: 1070px; /* Genişlik */
    height: 800px; /* Yükseklik */
    display: flex; /* İçeriği düzenlemek için flexbox */
    flex-direction: column;
    align-items: center; /* Dikey hizalama */
    justify-content: space-between; /* İçerikleri sola ve sağa yerleştir */
    border: 1px solid #ddd; /* Kenarlık */
    border-radius: 5px; /* Köşeleri yuvarlat */
    padding: 5px 10px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    background-color: #f9f9f9; /* Arka plan rengi */
    box-sizing: border-box; /* Kenarları dahil et */
}
.hoteldetail-info {
    position: absolute;
    list-style: none;
    color: #333333;
    text-align: left;
    width: 520px;
    height: 70px;
    padding: 5px;
    margin-left: 80px;
    
    
}
.hoteldetail-attribute {
    display: flex; /* Flexbox düzeni */
    flex-wrap: wrap; /* Taşan item'lar alt satıra geçer */
    list-style-type: none; /* Nokta veya rakamları kaldır */
    padding: 0;
    margin: 0;
    gap: 10px; /* Öğeler arasında boşluk */
}
.hoteldetail-description {
    display: flex; /* Flexbox düzeni */
    flex-wrap: wrap; /* Taşan item'lar alt satıra geçer */
    list-style-type: none; /* Nokta veya rakamları kaldır */
    padding: 0;
    margin: 0;
    gap: 10px; /* Öğeler arasında boşluk */
}
.hoteldetail-attribute-li {
    color: #333333; /* Yazı rengi */
    padding: 10px 10px; /* İç boşluk */
    border-radius: 5px; /* Köşe yuvarlatma */
    text-align: left;
    white-space: nowrap; /* Metin taşmasını engelle */
}
.hoteldetail-bottom-left,
.hoteldetail-bottom-right {
    width: 520px;
    height: 800px;
    
}
.hoteldetail-top-box {
    width: 100%;
    height: 85px;
    text-align: left;
    line-height: 30px;
}
.hoteldetail-bottom-box {
    display: flex;
    flex-grow: 1;
    max-height: 710px;
}
.hoteldetail-advenced-box {
    display: flex;
    align-items: flex-start; /* Dikeyde üst hizalar */
    justify-content: flex-start; /* Yatayda da üst hizalamak için */
    width: 520px; /* Genişlik */
    max-height: 120px;
    display: flex;
    flex-grow: 1;
    padding-left: 3px;
    padding-bottom: 10px;
    background-color: #f5f1f1;
    border: 3px solid #CCCCCC; /* Kenarlık */
    border-radius: 10px;
}
.hoteldetail-attributes-box {
    display: flex;
    align-items: flex-start; /* Dikeyde üst hizalar */
    justify-content: flex-start; /* Yatayda da üst hizalamak için */
    width: 520px; /* Genişlik */
    max-height: 180px;
    display: flex;
    flex-grow: 1;
    padding-left: 3px;
    padding-top: 10px;
    background-color: #f5f1f1;
    border: 3px solid #CCCCCC; /* Kenarlık */
    border-radius: 10px;
}
.hoteldetail-description-box {
    display: flex;
    align-items: flex-start; /* Dikeyde üst hizalar */
    justify-content: flex-start; /* Yatayda da üst hizalamak için */
    width: 100%; /* Genişlik */
    max-height: 500px;
    display: flex;
    flex-grow: 1;
    padding-left: 3px;
    padding-top: 10px;
    background-color: #f5f1f1;
    border: 3px solid #CCCCCC; /* Kenarlık */
    border-radius: 10px;
    color: #333333;
    text-align: left;
}
.hoteldetail-attributes {
    width: 500px;
    text-align: left;
    font-size: 12px;
}
.hoteldetail-descriptions {
    width: 500px;
    text-align: left;
    font-size: 12px;
    line-height: 15px;
}
.card {
    background-color: #333333;
    height: 105px;
    margin-top: 16px;
}
.w3-content {
    width: 520px;
    height: 365px;
    border: 3px solid #333333; /* Kenarlık */
    border-radius: 10px;
}
.mySlides {
    width: 515px;
    height: 360px;
    border-radius: 10px;
}
.w3-section {
    margin-top: 0px;
    margin-bottom: 0px;
}
.description-title {
    color : #333333;
    font-size: 14px;
    font-weight: bold;
}

.description-container {
    width: 1000px;
    height: 1000px;
    display: flex;
    flex-direction: column; /* Önce aşağıya doğru sırala */
    flex-wrap: wrap; /* Yükseklik dolunca yan sütuna geç */
    gap: 10px; /* İsteğe bağlı: Elementler arası boşluk */
    color: #333333;
    text-align: left;
    margin-left:-15px;
}
.description-div {
    width: 520px;
    height: auto; /* İçerik yüksekliğine göre ayarla */
}
.description-ul {
    list-style-type: none; /* Noktaları kaldır */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Menü arkaplan rengi */
    border: 1px solid #ddd; /* Çerçeve */
    border-radius: 8px; /* Köşe yuvarlatma */
    max-width: 500px; /* Menü genişliği sınırı */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

.description-li {
    padding: 0px; /* Menü item iç boşluğu */
}
.description-h5 {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.flex-container {
    color: #333333;
    text-align: left;
}
.body-grid {
    color: #333333;
    text-align: left;
}



.configure-offer-info {
    color: #333333;
    background-color: var(--alibe-customer-cta, var(--alibe-cta));
    font-size: 1rem;
    min-height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}
.best-offer-info {
    color: #333333;
    text-align: center;
    padding: 0 1rem 1rem;
    cursor: default;
    font-size: .875rem;
}
.bookable-offer {
    padding: 0 1rem;
    cursor: default;
    margin-bottom: -1.625rem;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px dashed #dedede;
    padding: .625rem 0;
    letter-spacing: -.5px;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px dashed #dedede;
    padding: .625rem 0;
    letter-spacing: -.5px;
    margin-left:10px;
    margin-right:10px;
}
.days {
    animation-delay: 0s;
    grid-area: days;
    font-size: 1.875rem;
    justify-self: center;
}
.days-label {
    cursor: pointer;
    font-size: .875rem;
    color: #aaa;
    position: relative;
    top: 2px;
    margin-left: 15px;
    margin-right: 10px;
}
.dates {
    grid-area: dates;
    white-space: nowrap;
    line-height: 1.25rem;
}
.duration-dates-box {
    cursor: pointer;
    display: grid;
    align-items: center;
    grid-template-columns: 2rem 2rem auto 1fr;
    grid-template-areas: "days days-button dates .";
    flex-grow: 1;
    grid-area: duration-dates-box;
    margin-left: 15px;
    margin-right: 15px;
   
}
.dates-label {
    cursor: pointer;
    font-size: .875rem;
    color: #aaa;
    position: relative;
    top: 2px;
    margin-left: 75px;
    margin-right: 15px;
    margin-top: -20px;
}
.bookable-offer .flex-container .duration-dates-container {
    display: grid;
    align-items: center;
    grid-template-columns: 2rem 2rem auto 1fr;
    grid-template-areas:
        "duration-dates-box duration-dates-box duration-dates-box dates-button"
        "days-label . dates-label dates-label";
    flex-grow: 1;
}
.duration-dates-container .dates-label {
    cursor: pointer;
    font-size: .875rem;
    color: #aaa;
    position: relative;
    top: 2px;
}
.main-price {
    color: #ff0000;
    font-size: 1.875rem;
    font-weight:bold;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}
.old-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px; /* Çizgi kalınlığı */
    text-decoration-color: #cccccc; /* Çizgi rengi */
    text-decoration-style: solid; /* Çizgi stili (solid, dashed, dotted) */
    color: #cccccc;
    font-size: 1.01rem;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
    padding-top:15px;
}
.travelers {
    font-size: .875rem;
    margin-bottom: -10px;
}
.flight-overview {
    display: grid;
    white-space: nowrap;
    grid-template-columns: 6.25rem auto 1fr auto;
}
.outbound {
    margin-bottom: 6px;
    background-color: #F5F1F1:;
    padding: 3px;
    border: 1px solid #ddd; /* Çerçeve */
    border-radius: 8px; /* Köşe yuvarlatma */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}
.inbound {
    margin-bottom: 6px;
    background-color: #F5F1F1:;
    padding: 3px;
    border: 1px solid #ddd; /* Çerçeve */
    border-radius: 8px; /* Köşe yuvarlatma */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}
.stops {
    display: flex;
    align-items: center;
    color: #666;
    font-size: .75rem;
}
.airports {
    grid-column: span 4;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 2px;
    color: #666;
    font-size: .875rem;
}
.open-overlay {
    
}
.small-hint {
    color: #666;
    font-size: .875rem;
}

.cancellation-info-line {
    margin-top:-55px;
    margin-left: -19px;
}
.touroperator {
    margin-top: -55px;
}
.hotel-description {
    margin-top: -35px;
}
.flight-overview .stops .border-spacing {
    border-top: 1px solid #dedede;
    flex-grow: 1;
}
.hotel-number {
    position:absolute;
    right:25px;
    margin-top:10px;
    color: darkblue;
    font-size:20px;
    font-weight: bold;
}
