﻿﻿
/******************new css 2021****************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.btn.m-btn--hover-brand:hover, .btn.m-btn--hover-brand.active, .btn.m-btn--hover-brand:active, .btn.m-btn--hover-brand:focus, .show > .btn.m-btn--hover-brand.dropdown-toggle {
    border-color: #2280e7 !important;
    color: #ffffff !important;
    background-color: #2280e7 !important;
}

/*input:-internal-autofill-selected {
    background-color: transparent;
}*/
.loginPage {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-wrap: wrap;
}

.login_leftSide {
    height: 100%;
    width: 25%;
    background: url(../images/background-login.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

    .login_leftSide h2 {
        font-size: 40px;
        color: #fff;
    }

        .login_leftSide h2 span {
            font-size: 66px;
            font-weight: 700;
        }

    .login_leftSide img.logoImg {
        max-width: 250px;
        position: absolute;
        left: 50%;
        top: 8%;
        transform: translate(-50%, 00%);
    }

.login_rightSide {
    display: contents;
    height: 100%;
}

.newLoginSection {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .newLoginSection .m-login__wrapper {
        padding: 2rem !important;
    }

        .newLoginSection .m-login__wrapper .m-login__container {
            width: 574px !important;
            max-width: 100%;
            padding: 15px;
        }

            .newLoginSection .m-login__wrapper .m-login__container .loginFormHead h3.TitleHeading {
                font-size: 44px;
                color: #2280E7 !important;
                text-align: center;
                position: relative;
                background: url(../images/heading-bar.png);
                background-position: center bottom;
                background-repeat: no-repeat;
                padding-bottom: 40px;
                font-weight: 600;
            }

.loginFormHead {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.loginForm {
    margin-top: 50px;
}

.newLoginSection .form-group {
    margin-bottom: 0px;
}

    .newLoginSection .form-group + .form-group {
        margin-top: 2.5rem;
    }

.newLoginSection .input-field {
    position: relative;
    width: 100%;
    min-height: 48px;
    line-height: 48px;
    display: inline-block;
}

    .newLoginSection .input-field label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: #d3d3d3;
        transition: 0.2s all;
        cursor: text;
        font-size: 16px;
        float: left;
    }

    .newLoginSection .input-field input {
        width: 100%;
        border: 0;
        outline: 0;
        padding: 0rem 0;
        border: none;
        border-bottom: 2px solid #E1E2E5;
        box-shadow: none;
        color: #000;
        background: transparent;
        font-size: 16px;
        border-radius: 0px;
        float: left;
        font-weight: 500;
    }

        .newLoginSection .input-field input:invalid {
            outline: 0;
            border-color: #E1E2E5;
        }

.newLoginSection .text-danger {
    line-height: normal;
    width: 100%;
    float: left;
    margin-top: 5px;
}

.newLoginSection .input-field input:focus, .newLoginSection .input-field input:valid {
    border-color: #2280E7;
    background: transparent;
}

    .newLoginSection .input-field input:focus ~ label, .newLoginSection .input-field input:valid ~ label {
        font-size: 14px;
        top: -18px;
        color: #747474;
        line-height: normal;
    }

.formOptions {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

.login-form-left {
    float: left;
    font-size: 14px;
    color: #848484;
    position: relative;
}

    .login-form-left input {
        display: none;
    }

    .login-form-left label {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        font-size: 14px;
    }

        .login-form-left label:before {
            width: 23px;
            height: 23px;
            content: "";
            border: 1px solid #eee;
            box-shadow: 0px 0px 6px #ddd;
            border-radius: 5px;
            float: left;
            position: absolute;
            left: 0px;
            top: 0px;
        }

        .login-form-left label:after {
            position: absolute;
            left: 5px;
            top: 1px;
            font-weight: bold;
        }

    .login-form-left input:checked + label::before {
        background: #4ED299;
        box-shadow: 0px 0px 6px #4ED299;
        border-color: #4ED299;
    }

    .login-form-left input:checked + label::after {
        color: #fff;
        content: " ✓";
    }

.login-form-right {
    float: right;
}

    .login-form-right a {
        color: #2584E5;
        font-size: 14px;
        display: inline-block;
        text-decoration: underline;
    }

        .login-form-right a img {
            max-width: 13px;
            margin-right: 5px;
            float: left;
        }

.formButtonArea {
    margin-top: 50px;
    display: inline-block;
    width: 100%;
}

.submitBtnArea {
    background: transparent linear-gradient(265deg, #4EC4D2 0%, #2280E7 100%) 0% 0%;
    border: none;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    height: 54px;
    transition: 1s;
}

.formButtonArea .submitBtnArea:hover:not(:disabled), .formButtonArea .submitBtnArea:hover {
    background: transparent linear-gradient(265deg, #2280E7 0%, #4EC4D2 100%) 0% 0%;
    color: #fff !important;
    transition: 1s;
}

.poweredBy {
    margin-top: 15px;
}

    .poweredBy img {
        max-width: 100%;
    }

.backBtnRow {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.backBTn {
    color: #FF7575;
    font-size: 14px;
}

    .backBTn:hover {
        text-decoration: none;
        opacity: 0.5;
        color: #FF7575;
    }

    .backBTn img {
        margin-right: 5px;
    }

.loginForm .alert {
    padding: 15px;
    margin-top: 10px;
    line-height: normal;
}



/******sidemenu css********/
.m-header > .m-container {
    padding: 0px;
}

.m-aside-left.m-aside-left--skin-dark {
    width: 300px;
    /*background-color: #0C2556;*/
    background: rgb(25,181,200);
    background: linear-gradient(0deg, rgba(25,181,200,1) 0%, rgba(34,128,231,1) 50%);
}

.m-aside-left--minimize .m-aside-left {
    width: 100px;
}

.m-stack__item.m-stack__item--middle.m-brand__logo {
    width: 300px;
    /*background-color: #0C2556;*/
    background-color: #2280e7;
    color: #fff;
    padding: 10px 20px;
}

.m-header--fixed .m-header .m-stack--ver.m-stack--desktop .m-stack.m-stack--ver.m-stack--general .m-brand__tools {
    padding-left: 50px;
}

.m-aside-left--minimize .m-header .m-stack--ver.m-stack--desktop .m-stack.m-stack--ver.m-stack--general .m-brand__tools {
    padding-left: 30px;
}

.m-aside-menu .m-menu__nav > .m-menu__item > .m-menu__heading .m-menu__link-text, .m-aside-menu .m-menu__nav > .m-menu__item > .m-menu__link .m-menu__link-text {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
}

.m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item > .m-menu__heading .m-menu__link-text, .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item > .m-menu__link .m-menu__link-text {
    color: #fff;
}

.m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item > .m-menu__heading .m-menu__link-icon, .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item > .m-menu__link .m-menu__link-icon {
    color: #fff;
    font-size: 1.8rem;
    width: 40px;
}

.m-aside-menu .m-menu__nav > .m-menu__item {
    border-bottom: none;
}

    .m-aside-menu .m-menu__nav > .m-menu__item > .m-menu__link {
        padding: 15px 20px;
        height: 54px;
    }

.m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover {
    background-color: #0F2D69;
    color: #fff;
}

.m-aside-left--minimize .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item > .m-menu__link > .m-menu__link-icon {
    color: #fff;
}

.m-header--fixed .m-header .m-stack--ver.m-stack--desktop .m-stack.m-stack--ver.m-stack--general .m-brand__tools .m-dropdown.m-dropdown--inline.m-dropdown--arrow {
    display: none;
}

.m-header--fixed .m-header .m-stack--ver.m-stack--desktop .m-stack.m-stack--ver.m-stack--general .m-brand__tools #m_aside_left_minimize_toggle {
    left: -30px;
    top: 26px;
}

.m-aside-left--minimize #m_header #m_aside_left_minimize_toggle {
    left: -12px;
}

.m-brand .m-brand__tools .m-brand__toggler {
    width: 33px;
    height: 33px;
}

    .m-brand .m-brand__tools .m-brand__toggler span, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--active span::before, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--active span::after {
        background: #2280E7;
    }

    .m-brand .m-brand__tools .m-brand__toggler span {
        width: 23px;
        height: 2px;
        min-height: 2px;
        border-radius: 3px;
    }

    .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--left.m-brand__toggler--active span::before, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--left span::before {
        top: -9px;
        width: 33px;
        left: 0px;
        height: 2px;
        min-height: 2px;
        border-radius: 3px;
    }

    .m-brand .m-brand__tools .m-brand__toggler span::after, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--left span::after {
        bottom: -9px;
        left: 0px;
        height: 2px;
        min-height: 2px;
        border-radius: 3px;
    }

    .m-brand .m-brand__tools .m-brand__toggler:hover span, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--left:hover span::after, .m-brand .m-brand__tools .m-brand__toggler.m-brand__toggler--left:hover span::before {
        width: 33px;
    }

.m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--fluid {
    padding: 0px 15px;
    border-bottom: solid 1px #f4f3f9
}

.m-aside-menu .m-menu__nav {
    padding: 0px 0px 30px 0px;
}

.custom-body .m-footer__copyright {
    position: absolute;
    left: 0px;
    width: 100%;
    bottom: 20px;
    text-align: center;
    color: #97A7C5;
}

    .custom-body .m-footer__copyright a {
        color: #97A7C5;
    }

.m-nav.m-nav--inline > .m-nav__item > .m-nav__link.profileIcon {
    width: 40px;
    padding: 0px;
    background: #2382E6;
    text-align: center;
    font-size: 32px;
    border-radius: 50px;
    height: 40px;
}

    .m-nav.m-nav--inline > .m-nav__item > .m-nav__link.profileIcon .m-nav__link-icon {
        padding-right: 0px;
        text-align: center;
        color: #fff;
    }

        .m-nav.m-nav--inline > .m-nav__item > .m-nav__link.profileIcon .m-nav__link-icon i {
            font-size: 2.3rem;
        }
/***EmailEngine*****/
.m-aside-left--fixed.m-aside-left--minimize .m-body {
    padding-left: 100px;
}

.m-body {
    padding-right: 0px;
}
/*.m-aside-left--fixed .m-body .m-wrapper.emailEngineWrapper, .m-aside-left--fixed .m-body .m-wrapper {
    margin-top: 0px;
    margin-left: 0px;
}*/
.m-aside-left--fixed .m-body {
    padding-left: 300px;
}
/*.searchBox-left {
    width: 350px;
    max-width: 100%;
    float: left;
    background: #fff;
    height: calc(100vh - 80px);
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
    border-right: 1px solid #DEECFF;
}*/
/*.formBody {
    overflow: auto;
    display: inline-block;
    width: 100%;
    height: calc(100vh - 275px);
    margin-top: 15px;
    margin-bottom: 15px;
}*/
/*.submitBox {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    background: #E4F1FF;
    padding: 15px 20px;
}*/
.submitBox .m-form__actions {
    display: inline-block;
    width: 100%;
}

    .submitBox .m-form__actions .btn {
        border-radius: 5px;
        width: calc(50% - 7px);
        /*text-transform: uppercase;*/
        font-size: 16px;
        font-weight: 500;
    }

        .submitBox .m-form__actions .btn.searchBtn {
            float: left;
            background: transparent linear-gradient(265deg, #2280E7 0%, #4EC4D2 100%) 0% 0%;
            border: none;
            height: 50px;
        }

            .submitBox .m-form__actions .btn.searchBtn:hover {
                background: transparent linear-gradient(265deg, #4EC4D2 0%, #2280E7 100%) 0% 0%;
                color: #fff !important;
            }

        .submitBox .m-form__actions .btn.cancelBtn {
            float: right;
            height: 50px;
            border-color: #AAB6E8;
            color: #8194BF !important;
        }

            .submitBox .m-form__actions .btn.cancelBtn:hover {
                border-color: #ffcaca;
                color: #ff4a4a !important;
                background: #ffcaca;
            }

.select-box {
    border-color: #D1DAFF;
}

.m-subheader .m-subheader__title {
    color: #2280E7;
    /*margin-bottom: 15px;*/
    font-size: 22px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.m-body .m-content.contentBox-right {
    padding-top: 20px;
    background-color: #F3F7F9;
}

.contentBox-right .m-subheader {
    padding: 20px 20px 0px 20px;
}

.contentBox-right .m-portlet {
    border: 1px solid #DEECFF;
    box-shadow: none;
    border-radius: 5px;
    /*min-height: calc(100vh - 120px);*/
    margin: 0px;
}

.m-form__actions .btn.emailButton {
    /*background: transparent linear-gradient(265deg, #2280E7 0%, #4EC4D2 100%) 0% 0%;*/
    background: #2ccaac;
    border: none;
    height: 50px;
    border-radius: 3px;
    /*text-transform: uppercase;*/
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    /*padding: 0.5rem 2.5rem;*/
    margin-right: 10px;
    margin-bottom: 10px;
}
    .m-form__actions .btn.emailButton:hover, .m-form__actions .btn.emailButton:hover:not(:disabled) {
        background: #2382e6;
        color: #fff !important;
    }

    .tableCheckbox {
        position: relative;
        width: 20px;
        height: 20px;
    }

    .tableCheckbox input {
        display: none;
    }

    .tableCheckbox label {
        width: 20px;
        height: 20px;
        content: "";
        border: 1px solid #eee;
        box-shadow: 0px 0px 6px #ddd;
        border-radius: 5px;
        position: relative;
        cursor: pointer;
    }

    .tableCheckbox input:checked + label {
        background: #4ED299;
        box-shadow: 0px 0px 6px #E9EBFF;
        border-color: #4ED299;
    }

        .tableCheckbox input:checked + label::before {
            color: #fff;
            content: " ✓";
            position: absolute;
            left: 3px;
            top: -2px;
            font-weight: bold;
        }

.contentBox-right .table thead th {
    color: #003478;
    font-size: 14px;
    font-weight: 500;
}

.contentBox-right .table tbody tr:hover {
    box-shadow: 0px 0px 10px #E9EBFF;
    border-radius: 5px;
    background: #fff;
}

.contentBox-right .table tbody tr td {
    padding: 1.7% 0.75rem;
}

.contentBox-right .m-portlet .m-portlet__body {
    padding: 0px 2.2rem;
}

.tableRow .table-responsive {
    height: calc(100vh - 270px);
    overflow: auto;
}

.formBody {
    padding: 20px 0px;
}

.m-portlet__foot.m-portlet__foot--fit.submit_btn.submitBox {
    padding: 20px !important;
    margin-top: 30px;
}

    .m-portlet__foot.m-portlet__foot--fit.submit_btn.submitBox .m-form__actions {
        width: 500px;
        max-width: 100%;
    }

.container.contentBox-right {
    max-width: 100%;
}

.emailEngineWrapper {
    padding-top: 20px;
}

#m_header_nav .m-topbar__nav.m-nav.m-nav--inline li .m-dropdown__body .m-dropdown__content ul {
    padding: 0px;
}

.logoutPopup .btn.btn-secondary {
    background: #2382e9;
    border-color: #2382e9;
    color: #fff;
    border-radius: 5px;
}

    .logoutPopup .btn.btn-secondary:hover {
        background: #4ED299;
        border-color: #4ED299;
    }

.mobileLogo {
    display: none;
}
.download {
    height: 40px !important;
    color: #fff !important;
    line-height: 1.25 !important;
}


.downloadLinkPopup .modal-dialog {
    max-width: 550px;
    width: 100%;
}

.downloadLinkPopup .form-control {
    min-height: 48px;
}

.downloadLinkPopup .emailButton {
    background: #2ccaac;
    border: none;
    height: 50px;
    border-radius: 5px;
    /*text-transform: uppercase;*/
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 2.5rem;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #fff !important;
}

.downloadLinkPopup .cancelBtn {
    color: #fff !important;
    background: #ff5f58;
    border: none;
    height: 50px;
    border-radius: 5px;
    /*text-transform: uppercase;*/
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 2.5rem;
    margin-right: 0px;
    margin-bottom: 10px;
}

.downloadLinkPopup .TempAlighMent {
    text-align: right;
}

/**********************Responsive CSS**********************************/
@media only screen and (max-width: 1399px) {
    .newLoginSection .m-login__wrapper .m-login__container .loginFormHead h3.TitleHeading {
        font-size: 38px;
    }

    .login_leftSide {
        width: 350px;
    }
}

@media only screen and (max-width: 1024px) {
    .m-aside-left--fixed .m-body {
        padding-left: 0px;
    }

    .m-stack__item.m-stack__item--middle.m-brand__logo {
        width: auto;
        background: #fff;
        color: #0C2556;
        padding-left: 0px;
    }

    .mobileLogo {
        display: block;
    }

    .webLogo {
        display: none;
    }

    .login_leftSide img.logoImg.mobileLogo {
        display: none;
        max-width: 200px;
    }

    .login_leftSide img.logoImg.webLogo {
        display: block;
        max-width: 200px;
    }
    .m-header--fixed .m-header .m-stack.m-stack--ver.m-stack--desktop #m_header_nav .m-topbar__nav.m-nav.m-nav--inline {
        float: right;
        padding-top: 5px;
    }
    .download {
        height: 40px !important;
        color: #fff !important;
        line-height: 1.25 !important;
    }
}

@media only screen and (max-width: 992px) {
    .newLoginSection .m-login__wrapper .m-login__container {
        width: 100% !important;
    }

    .login_leftSide {
        width: auto;
        max-width: 300px;
        flex: 0 0 300px;
    }

    .login_rightSide {
        display: flex;
        height: 100%;
        max-width: calc(100% - 300px);
        flex: 0 0 calc(100% - 300px);
    }

    .login_leftSide h2 {
        font-size: 30px;
    }

        .login_leftSide h2 span {
            font-size: 50px;
        }
}

@media only screen and (max-width: 767px) {
    .colQuestion-flex {
        flex-direction: row;
    }

    .loginPage {
        display: inline-block;
        background: #fff;
    }

    .login_leftSide {
        padding: 20px 20px;
        width: 100%;
        max-width: 100%;
        height: auto;
        background-image: none;
        background-color: #fff;
        display: inline-block;
    }

        .login_leftSide img.logoImg {
            position: relative;
            left: 0px;
            top: 0px;
            transform: none;
            max-width: 110px;
        }

        .login_leftSide h2 {
            display: none;
        }

    .login_rightSide {
        display: inline-block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .loginForm {
        width: 450px;
        max-width: 100%;
        margin: 50px auto auto auto;
    }

    .newLoginSection .m-login__wrapper .m-login__container .loginFormHead h3.TitleHeading {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .loginFormHead {
        margin-bottom: 0px;
    }

    .newLoginSection .m-login__wrapper .m-login__container {
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .login_leftSide img.logoImg.mobileLogo {
        display: inline-block;
        max-width: 200px;
    }

    .login_leftSide img.logoImg.webLogo {
        display: none;
        max-width: 200px;
    }
}

@media only screen and (max-width: 580px) {
    .colQuestion {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .colQuestion-flex .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .colQuestion + .colQuestion {
        margin-top: 15px;
    }

    .m-form__actions .btn.emailButton {
        width: auto;
        font-size: 14px;
        color: #fff;
    }
    .m-subheader .m-subheader__title {
        font-size: 18px;
    }

    .submitBox .m-form__actions .btn {
        font-size: 14px;
    }

    .newLoginSection .m-login__wrapper {
        padding: 15px !important;
    }
    .mr-auto {
        display:flex;
        flex-direction:column;
    }


}

@media only screen and (max-width: 420px) {
    .m-portlet__foot.m-portlet__foot--fit.submit_btn {
        flex-wrap: wrap;
    }

        .m-portlet__foot.m-portlet__foot--fit.submit_btn .m-form__actions + .m-form__actions {
            margin-top: 15px;
        }

    .m-form__actions .btn.emailButton {
        width: 100%;
    }

    .m-subheader {
        padding: 10px 20px 30px 20px;
    }

    .login-form-left {
        width: 50%;
        font-size: 12px;
    }

    .login-form-right {
        width: 50%;
        text-align: right;
        font-size: 12px;
    }

        .login-form-right a img {
            display: none;
        }

        .login-form-right a, .login-form-left label {
            font-size: 12px;
            line-height: normal;
        }
}




.dataTables_wrapper .dataTable thead tr[role="row"] {
    /*background: #0C2556;*/
    color: #fff;
    background: #2280e7;
}

    .dataTables_wrapper .dataTable thead tr[role="row"] th {
        border: none;
        color: #fff;
        padding: 1rem 0rem 1rem 1rem;
    }

.contentBox-right .m-portlet .m-portlet__body {
    padding: 0px;
}

    .contentBox-right .m-portlet .m-portlet__body .row {
        margin: 0px;
    }

.tableRow .table-responsive {
    padding: 0px;
}

.dataTables_wrapper .dataTable thead tr[class="filter"] th .form-control {
    border: 1px solid #c8cfff !important;
    box-shadow: none;
    min-height: 40px;
    background: #fff;
}

.contentBox-right .table tbody tr:hover {
    box-shadow: 0px 0px 10px #7DC9D5;
    background: #d0f7fd;
}
.dataTables_wrapper .dataTable thead tr[class="filter"] th {
    background: #176ece;
    border: none;
}

.contentBox-right .table tbody tr td {
    padding: 1rem;
}

.table-striped tbody tr {
    background: #E9FCFF;
}

    .table-striped tbody tr:nth-of-type(2n+1) {
        background-color: #ffffff;
    }

.colQuestion-flex-view {
    flex-direction: row;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 3px;
}

.scroll-box {
    min-width: 100%;
}

button.search {
    max-width: 40px;
    min-height: 40px;
    margin: 0px !important;
}


button.reset {
    max-width: 40px;
    min-height: 40px;
    margin: 0px !important;
}

    button.search i, button.reset i {
        font-size: 24px !important;
    }

.col-sm-12.col-md-7.dataTables_pager {
    padding-top: 5px;
}

.btn.m-btn--hover-brand:not(.btn-secondary):not(.btn-outline-light) i {
    color: #0c2556;
    font-size: 20px;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.45rem 0.5rem;
}
td.sorting_1.td_success {
    color: #00b300;
}
td.sorting_1.td_error {
    color: red;
}
/*.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: flex;
    flex-direction: column;
}
.mr-auto, .mx-auto {
    margin-right: auto !important;
    margin-top: 0px;
    padding-bottom: 10px;
}*/






/******New css 2023******/
body {
    background-color: #eef5ff;
}
.padding-15{
    padding:15px;
}
.checkLeadsBtn {
    background: #2280e7;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
    .checkLeadsBtn:hover, .btn.btn-primary.checkLeadsBtn:hover:not(:disabled) {
        background: #2ccaac;
        color: #fff !important;
    }
.m-form__actions .generateBtns {
    background: transparent;
    border: 1px solid #2CCAAC;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-left: 10px;
    margin-bottom: 10px;
    color: #2CCAAC !important;
}

    .m-form__actions .generateBtns:hover, .m-form__actions .generateBtns:hover:not(:disabled) {
        background: #2ccaac;
        color: #fff !important;
    }
.btn.btn-brand.search {
    background: #2ccaac;
}
.TempHeader {
    background-color: #2280e7 !important;
}
.modal-dialog {
    max-width: 800px;
    width: 100%;
}
.modal-content .cancelBtn {
    background: #ff5f58;
    border: none;
    height: 50px;
    border-radius: 3px !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 2.5rem;
    /*margin-right: 10px;*/
    margin-bottom: 10px;
    color: #fff !important;
}
.dataTables_wrapper .pagination .page-item.active > .page-link {
    background: #2ccaac;
}
.dataTables_wrapper .dataTables_paginate .pagination .page-item > .page-link{
    border-radius:3px;
}
.dataTables_wrapper .pagination .page-item:hover > .page-link {
    background: #2ccaac;
}
.dataTables_wrapper .pagination .page-item.previous > .page-link:hover, .dataTables_wrapper .pagination .page-item.next > .page-link:hover, .dataTables_wrapper .pagination .page-item.last > .page-link:hover, .dataTables_wrapper .pagination .page-item.first > .page-link:hover {
    background: #2ccaac;
}

.m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover {
    background-color: #176ece;
    color: #fff;
}

    .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover > .m-menu__heading .m-menu__link-icon, .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover > .m-menu__link .m-menu__link-icon {
        color: #fff;
    }

    .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover > .m-menu__heading .m-menu__link-text, .m-aside-menu.m-aside-menu--skin-dark .m-menu__nav > .m-menu__item:not(.m-menu__item--parent):not(.m-menu__item--open):not(.m-menu__item--expanded):not(.m-menu__item--active):hover > .m-menu__link .m-menu__link-text {
        color: #fff;
    }

.daterangepicker .ranges {
    padding: 0px;
    margin: 0px;
}
    .daterangepicker .ranges ul li {
        padding: 5px 8px;
        margin-bottom: 0px;
        width: 100%;
    }
    .daterangepicker .ranges li.active {
        background: #2ccaac;
        border: 1px solid #2ccaac;
    }

    .daterangepicker .ranges .range_inputs .applyBtn {
        background: #2280e7;
        border-color: #2280e7;
        border-radius:5px;
    }
.daterangepicker .ranges .range_inputs .applyBtn:hover {
    background: #2ccaac;
    border-color: #2ccaac;
}

.downloadLinkPopup, .modal {
    padding: 15px !important;
}
    .downloadLinkPopup .modal-dialog, .modal .modal-dialog {
        margin: auto !important;
    }
    #downloadpopup .modal-content {
        border-radius: 15px;
        text-align: center; 
        left:0px !important;
    }
.downloadText {
    margin: 15px 0px 20px 0px;
    display: inline-block;
    width: 100%;
}
    .downloadText h2 {
        font-size: 30px;
        margin-bottom: 0px;
        color: #2280e7;
    }

    .downloadText h3 {
        font-size: 16px;
        font-weight: normal;
        color: #393939;
    }
.downloadIcon svg {
    max-width: 60%;
    height: auto;
}
.m-brand .m-brand__tools .m-brand__toggler span::before, .m-brand .m-brand__tools .m-brand__toggler span::after {
    background: #2280e7;
}














@media only screen and (max-width: 1023px) {
    .m-stack.m-stack--desktop.m-stack--ver > .m-stack__item.m-stack__item--fluid {
        padding: 0px;
        border-bottom: none;
        position: absolute;
        right: 80px;
        top: 9px;
        z-index: 99;
        box-shadow: none;
    }
    .m-dropdown.m-dropdown--mobile-full-width.m-dropdown--align-center > .m-dropdown__wrapper, .m-dropdown.m-dropdown--mobile-full-width > .m-dropdown__wrapper{
        left:35px;
    }
}

    @media only screen and (max-width: 767px) {
        .headingFlex {
            flex-wrap: wrap;
        }

        .m-subheader .m-subheader__title {
            margin-bottom: 15px;
        }
        .colQuestion-flex {
            flex-wrap: wrap;
        }
            .colQuestion-flex .col-sm-2 {
                flex: 0 0 10%;
                max-width: 10%;
            }
            .colQuestion-flex span.col-sm-5.sub-col {
                flex: 0 0 45%;
                max-width: 45%;
            }
        .padding-15 .form-control{
            margin-bottom:5px;
        }
        .form-group.m-form__group.rowQuestion{
            padding-bottom:20px;
            padding-top:0px;
        }
    }