.fusion-tb-footer.fusion-footer {
    position: relative;
    z-index: 99999;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}


#vki-hesapla-form {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}

#vki-hesapla-form div {
    flex: 1;
    margin-right: 20px;
}

#vki-hesapla-form label {
    display: block;
    margin-bottom: 5px;
}

#vki-hesapla-form input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#vki-sonuc {
    margin-top: 20px;
}


/* Butonun üzerine gelindiğinde */
#vki-hesapla-form input[type="submit"]:hover {
    background-color: #d74b13; /* Hover durumunda arka plan rengi */
}

/* Dönme için kullanılacak stil */
#vki-hesapla-form .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
}

/* Dönme Animasyonu */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}