.load.text-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 201;
}

    .load.text-center.show {
        display: flex;
    }

    .load.text-center:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .load.text-center p {
        color: #fff;
        z-index: 2;
    }

    .load.text-center img {
        z-index: 2;
        width: 100px;
    }

.alrt-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
}

    .alrt-popup.show {
        opacity: 1;
        pointer-events: all;
        display:flex !important;
    }

    .alrt-popup .wapper {
        background: #fff;
        width: 320px;
        border-radius: 10px;
        overflow: hidden;
    }

        .alrt-popup .wapper .main {
            padding: 15px;
            text-align: center;
        }

        .alrt-popup .wapper .title {
            background: #2e4879;
            color: #fff;
            text-align: center;
            font-weight: 400;
            padding: 15px 10px;
            margin-bottom: 0;
        }

        .alrt-popup .wapper .close-alrt {
            text-align: center;
            margin: 0 auto 10px auto;
            border: 2px solid #bf2929;
            padding: 5px 15px;
            cursor: pointer;
            width: 205px;
            height: 38px;
            border-radius: 20px;
            color: #bf2929;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .alrt-popup.success .wapper .title {
        background: #09e493;
    }

    .alrt-popup.success .wapper .close-alrt {
        display: none;
    }

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 990;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

    .overlay.show {
        opacity: 1;
        pointer-events: all;
        display: flex !important;
    }

.grecaptcha-badge {
    display: none !important;
}

#notfound {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 991px) {
    #notfound {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    #notfound {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

#notfound .notfound {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    #notfound .notfound .notfound-404 {
        text-align: center;
        color: #2e4879;
        font-size: 100px;
    }

    #notfound .notfound h1 {
        line-height: 1;
    }

    #notfound .notfound h2,
    #notfound .notfound p,
    #notfound .notfound a {
        text-align: center;
    }

    #notfound .notfound h2 {
        color: #2e4879;
        font-size: 32px;
        margin-bottom: 20px;
    }

    #notfound .notfound p {
        margin-bottom: 30px;
    }

@media (max-width: 991px) {
    #notfound .notfound p {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    #notfound .notfound p {
        margin-bottom: 15px;
    }
}

#notfound .notfound a {
    font-size: 14px;
    color: #fff;
    background-color: #2e4879;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.5s linear;
    border: 1px solid #2e4879;
    max-width: 250px;
    margin: auto;
}

    #notfound .notfound a:hover {
        background-color: #fff;
        color: #2e4879;
    }

@media (max-width: 767px) {
    #notfound .notfound .notfound-404 {
        font-size: 50px;
    }

    #notfound .notfound h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    #notfound .notfound p,
    #notfound .notfound a {
        font-size: 14px;
    }
}