body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #7E61FF;
    text-decoration: none;
}

    a:hover {
        color: #f1775d;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

.icon-btn {
    background: #7e61ff;
    color: white !important;
    padding: 10px;
    margin: 0;
    border-radius: 4px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #7E61FF;
        border-top-color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #7E61FF;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #f06f54;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0 0 0;
}

    #header.header-scrolled {
        padding: 12px 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 26px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-top: -21px;
    }

        #header .logo a {
            color: #0b2341;
        }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
        margin-right: 15px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        color: #0b2341;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #000;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #7E61FF;
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #7E61FF;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: -20px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        margin-top: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            text-transform: none;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #7E61FF;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #0b2341;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #7E61FF;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #7E61FF;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }


/*Login Section*/

.login-left {
    background-color: #f8f7fe;
}

.login-section {
    width: 360px;
    height: 400px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    display: table;
}

.login-right {
    background-image: url(../images/login-bg.jpg);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {

    .contents,
    .content .bg {
        width: 100%;
    }
}

.btn-icon {
    background: #7E61FF;
    padding: 8px !important;
    border-radius: 3px;
    color: white;
    border: none !important;
    text-align: center;
    vertical-align: middle;
    display: flex;
    width: 40px;
}

.form-group,
.content .bg .form-group {
    position: relative;
}
    /*
.content .contents .form-group label,
.content .bg .form-group label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}*/

    .contents .form-group input,
    .content .bg .form-group input {
        background: transparent;
        border-bottom: 2px solid #6F6AF8;
    }

    .contents .form-group.first,
    .content .bg .form-group.first {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }

    .contents .form-group.last,
    .content .bg .form-group.last {
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .contents .form-group label,
    .content .bg .form-group label {
        font-size: 12px;
        display: block;
        margin-bottom: 0;
        color: #4B4B4B;
    }

    .contents .form-group.focus,
    .content .bg .form-group.focus {
        background: #fff;
    }

    .contents .form-group.field--not-empty label,
    .content .bg .form-group.field--not-empty label {
        margin-top: -35px !important;
    }

.contents .form-control,
.content .bg .form-control {
    border: none;
    padding: 0 0 0 10px;
    font-size: 16px;
    border-radius: 0;
}

    .form-control:active,
    .content .contents .form-control:focus,
    .content .bg .form-control:active,
    .content .bg .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.contents .bg {
    background-size: cover;
    background-position: center;
}

.contents a {
    color: #888;
    text-decoration: underline;
}

.text-blue {
    color: #7E61FF;
}

.w-32 {
    width: 32px;
}

.login {
    font-size: 20px;
    font-weight: 700;
}

.btn-primary {
    background-color: #7E61FF;
    border: #7E61FF;
    min-width: 80px;
}

.btn-outline-success {
    color: #00CC93;
    border-color: #00CC93 !important;
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #00CC93 !important;
        border-color: #00CC93 !important;
    }

.btn-login {
    min-width: 120px;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.form-check-input:checked {
    background-color: #7E61FF;
    border-color: #7E61FF;
}

.form-check-input {
    width: 24px !important;
    height: 24px !important;
}

.level-checkbox {
    margin-top: 5px;
    margin-left: 10px;
}

.btn {
    padding: 10px !important;
    font-weight: 600;
    min-width: 80px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #7E61FF !important;
    border-color: #7E61FF !important;
}

#PagingUl li.active {
    background: #00CC93 !important;
    color: #fff !important;
    border-bottom: solid #00CC93;
    padding: 6px 15px;
    margin: 0 5px;
    border-radius: 5px !important;
}

#PagingUl li {
    margin: 0 5px;
    padding: 6px 15px;
    border: solid 1px #00cc93;
    border-radius: 5px;
}

}

.page-item a {
    padding: 0 !important;
}
/*Login Section End*/
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f6f9fd;
    min-height: 40px;
    margin-top: 82px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 74px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2341;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #123a6d;
            content: "/";
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #E3E3EE;
    padding: 0 0 30px 0;
    color: #000;
    font-size: 14px;
}

    #footer .footer-top {
        padding: 60px 0 00px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 15px;
            background: #05101e;
            border-top: 4px solid #7E61FF;
            text-align: center;
            padding: 30px 20px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Raleway", sans-serif;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            background: #0a1e38;
        }

            #footer .footer-top .social-links a:hover {
                color: #fff;
                background: #7E61FF;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 10px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #ef6445;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #ef6445;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px 2px 20px;
                background: #7E61FF;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #ef6445;
                }

    #footer .copyright {
        border-top: 1px solid #0f2f57;
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}


/*Index*/
#header {
    background-color: #F8F7FE !important;
    box-shadow: rgba(30, 24, 67, 0.1) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.mt-50 {
    margin-top: 100px !important;
}

.mt-10 {
    margin-top: 20px !important;
}

h2 {
    font-size: 22px;
    font-weight: 600px !important;
    color: #000;
}

#datagrid thead {
    background-color: #7E61FF;
}

    #datagrid thead th {
        color: #fff;
        font-weight: 400;
    }

#datagrid td {
    vertical-align: middle;
    background-color: #f8f7fe;
    border-bottom: #fff solid 3px !important;
}

    #datagrid td a {
        /*color: #312A79;*/
        color:#fff;
    }

.btn-primary {
    background-color: #7E61FF;
    border: #7E61FF;
}

.text-success {
    color: #00CC93 !important;
}

.text-danger {
    color: #F36285 !important;
}

.table-bordered > :not(caption) > * > * {
    border-width: 0 0px !important;
}

#navbarTop {
    position: absolute;
    right: top;
    right: 26px;
    top: -22px;
}

    #navbarTop li {
        float: left;
        list-style: none;
    }

        #navbarTop li a {
            padding-bottom: 0 !important;
        }

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #7E61FF;
    white-space: nowrap;
    transition: 0.3s;
}

#navbar a {
    padding-bottom: 0 !important;
    padding-top: 18px;
    padding-bottom: 7px !important;
}

#navbarTop img {
    width: 20px;
    margin-left: 8px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: #00CC93 !important;
    border-color: #00CC93 !important;
}

.page-link {
    position: relative;
    display: block;
    color: #00CC93 !important;
}

.page-link {
    border: 1px solid #00CC93 !important;
}

.page-item:not(:first-child) .page-link {
    margin-left: 4px;
    border-radius: 4px;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-radius: 4px !important;
}

/*Index End*/
#main input.form-control {
    border: #f4f6f9 solid 1px;
    background-color: #f4f6f9 !important;
    height: 45px;
}

    #main input.form-control.addname {
        font-size: 22px !important;
        color: #2F24A5;
        font-weight: 600;
    }

        #main input.form-control.addname::placeholder {
            font-size: 22px !important;
            font-weight: 600;
            color: #2F24A5;
        }

#main select.form-select {
    border: #f4f6f9 solid 1px;
    background-color: #f4f6f9 !important;
}

.form-section {
    border-bottom: dashed #cccccc 2px;
    margin: 30px 0;
    padding-bottom: 20px;
}

label.form-label {
    color: #000 !important;
}

.mt-25 {
    margin-top: 25px;
}

a.btn.btn-primary {
    color: #fff;
    text-decoration: none;
}

.navbar .active {
    border-bottom: solid #7E61FF 4px !important;
}

.float-right {
    float: right !important;
}
.num-list ul {
    padding: 0;
    margin: 0;
}

    .num-list ul li {
        display: inline-block;
        list-style: none;
        padding:12px;
        font-weight:600;
        font-size:16px;
        padding-bottom:0;
        margin-bottom:0;
    }

.num-list .active {
    border-bottom: solid 3px #7E61FF;
    padding-bottom:10px;
}

.bor-bt {
    border-bottom: solid 1px #ddd;
}
.btn-circle {
    background-color: #7E61FF;
    border: #7E61FF;
    padding: 10px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    font-weight: normal;
    width: 50px;
    height: 50px;
    padding: 7px 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 2;
    position: relative;
    top: 20px;
    left: 20px;
}
.holder {
    max-width: 60%;
    padding: 10px;
    background-color: white;
    margin:  80px 0 50px 250px;
}

.modal-header-new {
    background-color: #a9cbdb;
    font-weight: 700 !important;
}


.dbox {
    position: relative;
    background: rgb(255, 86, 65);
    background: -moz-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ff5641', endColorstr='#fd3261', GradientType=0);
    border-radius: 4px;
    text-align: center;
    margin: 60px 0 50px;
}

.dbox__icon {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
}

    .dbox__icon:before {
        width: 75px;
        height: 75px;
        position: absolute;
        background: #fda299;
        background: rgba(253, 162, 153, 0.34);
        content: '';
        border-radius: 50%;
        left: -17px;
        top: -17px;
        z-index: -2;
    }

    .dbox__icon:after {
        width: 60px;
        height: 60px;
        position: absolute;
        background: #f79489;
        background: rgba(247, 148, 137, 0.91);
        content: '';
        border-radius: 50%;
        left: -10px;
        top: -10px;
        z-index: -1;
    }

    .dbox__icon > i {
        background: #ff5444;
        border-radius: 50%;
        line-height: 40px;
        color: #FFF;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

.dbox__body {
    padding: 50px 20px;
}

.dbox__count {
    display: block;
    font-size: 30px;
    color: #FFF;
    font-weight: 300;
}

.dbox__title {
    font-size: 13px;
    color: #FFF;
    color: rgba(255, 255, 255, 0.81);
}

.dbox__action {
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
}

.dbox__action__btn {
    border: none;
    background: #FFF;
    border-radius: 19px;
    padding: 7px 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .5px;
    color: #003e85;
    box-shadow: 0 3px 5px #d4d4d4;
}


.dbox--color-2 {
    background: rgb(252, 190, 27);
    background: -moz-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: -webkit-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: linear-gradient(to bottom, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fcbe1b', endColorstr='#f85648', GradientType=0);
}

    .dbox--color-2 .dbox__icon:after {
        background: #fee036;
        background: rgba(254, 224, 54, 0.81);
    }

    .dbox--color-2 .dbox__icon:before {
        background: #fee036;
        background: rgba(254, 224, 54, 0.64);
    }

    .dbox--color-2 .dbox__icon > i {
        background: #fb9f28;
    }

.dbox--color-3 {
    background: rgb(183,71,247);
    background: -moz-linear-gradient(top, rgba(183,71,247,1) 0%, rgba(108,83,220,1) 100%);
    background: -webkit-linear-gradient(top, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    background: linear-gradient(to bottom, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b747f7', endColorstr='#6c53dc',GradientType=0 );
}

    .dbox--color-3 .dbox__icon:after {
        background: #b446f5;
        background: rgba(180, 70, 245, 0.76);
    }

    .dbox--color-3 .dbox__icon:before {
        background: #e284ff;
        background: rgba(226, 132, 255, 0.66);
    }

    .dbox--color-3 .dbox__icon > i {
        background: #8150e4;
    }