body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}


.main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}

.content_not_found .content-error-message {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    color: #072f54;
}


.content_not_found .content-image-container {
    display: flex;
    margin-top: 20px;
}

.content_not_found .content-image-container img {
    width: 40%;
    margin: auto;
}

.content_not_found .show{
    display: flex;
}



.header {
    display: flex;
    padding: 6px;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px;
}

.header .header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #dce6f2;
    color: #072f54;
    padding: 20px 14px;
    border-radius: 14px;
}

/* .header .logo {
    height: 45px;
} */

.header .header-title {
    font-size: 24px;
    font-weight: 600;
    /* margin-top: 20px; */
    text-align: center;
    margin: auto;
    /* font-style: italic; */
}

/* .header .visit-button {
    cursor: pointer;
    background-color: #072f54;
    color: white;
    padding: 7px 10px;
    text-decoration: none;
    border-radius: 1rem;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 1px;
}

.header .visit-button:hover {
    background-color: #ffa101;
    color: white;
} */


.header .visit-button-btn {
    color: white;
    text-decoration: none;
    transition: all 0.1s ease;
}


.content.show {
    display: flex !important;
}


.error-message {
    color: #072f54;
    font-size: 18px;
    margin-bottom: 30px;
    font-style: italic;
    font-size: x-large;
}

.page-loader-container {
    opacity: .5;
    animation: page-loader-blink 0.8s infinite linear;
}

.page-loader-text {
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    letter-spacing: 10px;
    padding-left: 10px;
    color: #072f54;
    font-family: "Poppins", sans-serif;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.m-auto {
    margin: auto !important;
}


/* .visitsite {
    display: flex;
    align-items: center;
} */

@-webkit-keyframes page-loader-blink {
    0% {
        opacity: .3;
    }

    50% {
        opacity: .6;
    }

    100% {
        opacity: .3;
    }
}

@keyframes page-loader-blink {
    0% {
        opacity: .3;
    }

    50% {
        opacity: .6;
    }

    100% {
        opacity: .3;
    }
}


@media (max-width: 568px) {
    /* .header .logo {
        height: 35px;
    } */

    .content_not_found .content-image-container img {
        width: 70%;
    }
}