html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    src: url("../fonts/Droid Arabic Naskh.ttf");
    font-family: "mainfont";
    font-display: swap;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "mainfont";
    background: #F0F5FF;
    margin-bottom: 60px;
}

.smallpanel {
    max-width: 600px;
    padding: 40px 15px;
    margin: auto;
    border: 1px solid #eaeced;
    background: #fff;
}

.emptypagelogo {
    max-width: 170px;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: auto;
    margin-bottom: 30px;
    display: block;
}

.btnday {
    width: 100%;
    margin: 8px;
    padding: 15px 2px;
}

/*Loader*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
    background: #fff;
}

    .loader .content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
    }

.loadercon {
    position: relative;
    margin: 0px auto;
    width: 80px;
}

    .loadercon:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}
/*BlockQuote*/
.quote {
    position: relative;
    letter-spacing: .03em;
    margin-bottom: .5rem;
    padding-top: 18px;
    font-size: 22px;
    border-top: 2px dotted #C6D1BF;
}

.quote--container {
    margin: 10px auto 0px auto;
    max-width: 400px;
    width: 100%;
    border-bottom: 2px dotted #C6D1BF;
    padding-bottom: .5rem;
}


.quote--highlight {
    color: #D24335;
}

.quote--author {
    font-family: PayPal;
    font-size: 16px;
    text-align: right;
    font-weight: 300;
}
/*Loader*/

.form-floating > label {
    right: 0 !important;
    left: unset;
}

.btn-primary {
    background: #48E5A0;
    border: 0px;
    color: #000;
}

    .btn-primary:hover {
        background: #11c169;
    }


.loginPage {
    font-size: 13px;
}


#opacityloader {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    display: none;
}

.loadinglog {
    position: relative;
    background-color: #fff;
    height: 8px;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
}

    /* The moving element */
    .loadinglog::after {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#0070ba), to(transparent));
        background: linear-gradient(90deg, transparent, #0070ba, transparent);
        /* Adding animation */
        animation: loadinglog 1.2s infinite;
    }

/* Loading Animation */
@@keyframes loadinglog {
    100% {
        transform: translateX(100%);
    }
}

.login-form {
    max-width: 460px;
    width: 100%;
    margin: 30px auto;
    position: relative;
    border: 1px solid #eaeced;
    background: #fff;
}

    .login-form .formele {
        margin-bottom: 15px;
        overflow: hidden;
        padding: 30px 30px 0px 30px;
    }

    .login-form h2 {
        margin: 0 0 15px;
    }

    .login-form .hint-text {
        color: #777;
        padding-bottom: 15px;
        text-align: center;
    }

.form-control, .btn {
    min-height: 38px;
    border-radius: 2px;
}

.login-btn {
    font-size: 15px;
    font-weight: bold;
}




.input-group-addon .fa {
    font-size: 18px;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-right-color: rgb(204, 204, 204);
    border-right-style: solid;
    border-right-width: 1px;
    border-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.login-form img:nth-child(1) {
    max-width: 170px;
    margin: auto;
    margin-bottom: 30px;
    display: block;
}

.text-paypal {
    color: #0070ba;
}
/*Login Page*/

.PayBtn {
    background: #ff4e0c;
    border: 0px;
    padding: 8px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: -1px 6px 19px rgba(255, 78, 12, 0.2) !important;
    transition: all .5s;
    /*font-family: PayPal;*/
}

    .PayBtn:hover {
        box-shadow: -1px 6px 13px rgba(255, 78, 12, 0.4) !important;
        background: #ff4e0c;
        color: #fff;
        text-decoration: none;
        transition: all .5s;
    }

.PayBtnB {
    background: #0070ba;
    padding: 10px 40px;
    box-shadow: none !important;
}

    .PayBtnB:hover {
        background: #005EA6;
        box-shadow: none !important;
    }

.fullwidth {
    width: 100%;
}

.four h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

    .four h1 span {
        display: block;
        font-size: 0.5em;
        line-height: 1.3;
    }

    .four h1 em {
        font-style: normal;
        font-weight: 600;
    }
/* === HEADING STYLE #4 === */
.four h1 {
    text-align: center;
    padding-bottom: 0.7em;
}

    .four h1 span {
        font-weight: 300;
        word-spacing: 3px;
        line-height: 2em;
        padding-bottom: 0.35em;
        color: rgba(0, 0, 0, 0.5);
    }

    .four h1:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 1px;
        content: "";
        left: 50%;
        margin-left: -30px;
        background-color: #777;
    }
/* Style 8
                                           ----------------------------- */
.eight h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
}

    .eight h1:after, .eight h1:before {
        content: " ";
        display: block;
        border-bottom: 2px solid #ccc;
    }

.imguser {
    max-width: 150px;
    max-height: 200px;
}
