.lazy-placeholder {
    width: 100%;
    height: 278px;
    background: linear-gradient(
        135deg,
        rgba(211, 223, 232, 0.5) 30%,
        rgba(169, 184, 197, 0.5) 38%,
        rgba(168, 182, 193, 0.6) 41%,
        rgba(168, 182, 193, 0.6) 50%,
        rgba(168, 182, 193, 0.6) 50%,
        rgba(169, 184, 197, 0.6) 51%,
        rgba(211, 223, 232, 0.6) 57%,
        rgba(211, 223, 232, 0.6) 80%,
        rgba(211, 223, 232, 0.6) 80%
    );
    background-size: 1200% 1200%;
    animation: loadingAnimation 2s ease infinite reverse;
    border-radius: 4px; /* yuvarlatma */
}

@keyframes loadingAnimation {
    0% {
        background-position: 0% 92%;
    }
    50% {
        background-position: 100% 9%;
    }
    100% {
        background-position: 0% 92%;
    }
}

.h-auto {
    height: auto !important;
}

.technicalItem.active {
    background: #ec670c6e;
}

.technicalItem2.active td {
    background: #ec670c6e;
}
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    /* Görüntünün kapsayıcı genişliğe uyumlu olması için */
}

.image-container img {
    width: 100%;
    /* Kapsayıcı genişliğe uyumlu */
    height: auto;
    /* Görüntü oranını korur */
}

.point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.bg-none {
    background: none;
}

.al-end {
    align-items: end;
}

/*popup*/

#popupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.5s ease-out;
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 36px;
    font-weight: bold;
    width: 35px;
    background: #fff;
    border-radius: 22px;
    color: #333;
    cursor: pointer;
    z-index: 100;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #e60000;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.img-res{
	    height: 500px!important;
    aspect-ratio: 4 / 4!important;
    object-fit: contain!important;
}
