﻿.ErrorContain {
    background-image: url(../Images/500Five.png);
    background-repeat: no-repeat;
    background-size: 42%;
    background-position: center;
    position: relative;
    height: 30vh;
}

.Error404ImgContain {
    background-image: url(../Images/404Four.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
    position: relative;
    height: 30vh;
}

.ErrorZeroImg1 {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: auto auto;
    width: 35%;
    top: 0;
    bottom: 0;
    animation: spin 60s linear infinite;
    transition: ease all 0.3s;
}

.ErrorZeroImg2 {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: auto auto;
    width: 15%;
    top: 20px;
    bottom: 0;
    animation: spin 60s linear infinite;
    transition: ease all 0.3s;
}

.ErrorZeroImg3 {
    position: absolute;
    display: block;
    left: 57%;
    right: auto;
    margin: auto auto;
    width: 13%;
    top: 42px;
    bottom: 0;
    animation: spin 60s linear infinite;
    transition: ease all 0.3s;
}

.ErrorTxt {
    font-size: 1.1rem;
    padding-top: 10px;
    color: #424242;
    width: fit-content;
    margin: auto;
}

    .ErrorTxt h3 {
        text-align: center;
        font-size: 2rem;
        position: relative;
        padding: 15px 0;
        font-weight: bold;
        text-transform: capitalize;
    }

        .ErrorTxt h3:after {
            content: "";
            position: absolute;
            width: 70%;
            border-top: 1px solid;
            border-bottom: 1px solid;
            height: 5px;
            top: 0;
            bottom: -90%;
            margin: auto auto;
            left: -10%;
            right: -10%;
            display: block;
            border-width: 3px;
            border-style: solid;
            border-image-source: linear-gradient(to left, white, #fc6d00 50%, #fc6d00 50%, white 100%);
            border-image-slice: 1;
            border-width: 1px;
            border-right: 0;
            border-left: 0;
        }

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
