﻿body {
    font-family: 'IRANSansX', sans-serif;
    overflow-x: hidden;
}
/*custom error*/
/* Error and Success Alert*/
.floating-alert-container {
    position: fixed;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    z-index: 10000;
    display: none;
    max-width: 80%;
    width: 300px;
}

.floating-alert {
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #81998C;
}

.alert-danger {
    background-color: #DC3545;
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .floating-alert-container {
        width: 90%;
        max-width: 100%;
        margin-top: 10%;
    }
}

@media (max-width: 1024px) {
    .floating-alert-container {
        width: 90%;
        max-width: 100%;
        margin-top: 10%;
    }
}
/*custom error end*/