﻿/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 
 * -=-=-=-=-=-=- important css files
 * -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
**************************************************** */
@import url("bootstrap.rtl.css");
@import url("jquery-ui.css");
@import url("line-awesome.css");
@import url("toastr.css");
@import url("lity.css");
@import url("jalalidatepicker.css");
@import url("coloris.css");
@import url("jquery.mCustomScrollbar.css");
@import url("nouislider.min.css");
@import url("font.css");
@import url("color.css");


body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #283048, #859398);
    overflow: hidden;
    font-family: 'Vazir', sans-serif;
    direction:rtl;
}

.error-container {
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease;
    max-width: 700px;
    width: 100%;
    margin: 0 10px;
    max-height: 80%; 
    overflow:auto;
}

pre{
    background-color:#efefef;
    border-radius:5px;
    font-size:10px;
    font-family: Consolas;
    text-align:left;
    direction:ltr;
}

h1 {
    font-size: 8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 10px;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #ff6e7f, #bfe9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.error-icon {
    font-size: 6rem;
    color: #ff6e7f;
    margin-bottom: 20px;
    position: relative;
    animation: spin 2s linear infinite;
    z-index: 1;
}

a {
    display: inline-block;
    font-size: 1.3rem;
    color: #ffffff;
    background-color: #ff6e7f;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.4s, transform 0.4s;
    position: relative;
    z-index: 1;
}

    a:hover {
        background-color: #ff4757;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
    }

.floating-circles {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

    .floating-circles::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 30px;
        left: 30px;
    }

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 110, 127, 0.6), 0 0 40px rgba(255, 110, 127, 0.4);
    }

    to {
        text-shadow: 0 0 30px rgba(191, 233, 255, 0.6), 0 0 50px rgba(191, 233, 255, 0.4);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(-20px);
    }

    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* width */
::-webkit-scrollbar {
    width: 0px;
}
 
/* width */
.error-container ::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.error-container ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 15px;
}

/* Handle */
.error-container ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 15px;
}

    /* Handle on hover */
    .error-container ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }