
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 17, 17, 0.8); /* Arka plan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Diğer öğelerin üstünde görünmesi için */
}

#loading-image {
    width: 350px; /* Fotoğraf boyutunu ayarla */
    height: auto; /* Yükseklik otomatik ayarlanır */
    animation: fadeIn 1s forwards, fadeOut 1s 2s forwards; /* Fade in ve fade out animasyonları */
}


  

    @keyframes fadeIn {
        0% { opacity: 0; transform: translateY(-50px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeOut {
        0% { opacity: 1; }
        100% { opacity: 0; transform: translateY(50px); }
    }


body {
    font-family: Arial;
    font-size: 17px;
    padding: 8px;
}
* {
    box-sizing: border-box;
}
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    margin: 0 -16px;
}
.col-25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
}
.col-50 {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
}
.col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;
}
.col-25, .col-50, .col-75 {
    padding: 0 16px;
}
.container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
}
input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
label {
    margin-bottom: 10px;
    display: block;
}
.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}
.btn {
    background-color: #ababab;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
}
.btn:hover {
    background-color: #002d02;
}
a {
    color: #2196F3;
}
hr {
    border: 1px solid lightgrey;
}
span.price {
    float: right;
    color: grey;
}
@media (max-width: 800px) {
    .row {
        flex-direction: column-reverse;
    }
    .col-25 {
        margin-bottom: 20px;
    }
}

/* Takvim ikonunun düzgün konumlanması için stil */
.expdate-container {
    position: relative;
    width: 101%;
}
#calendar-icon1 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    pointer-events: none; /* İkonun input alanına girmemesi için */
bottom: -1vh;
  }