@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    color: #393b3d;
    background-color: #f4f7fa;
}

.form-control.select select {
    background-image: url(../images/dropdown.svg);
    background-repeat: no-repeat;
    background-position: 97%;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    line-height: normal;
    font-weight: 500;
    border: 0px solid #e5e9ef;
    border-radius: 6px;
    background-color: #fdfeff;
    padding: 8px 12px;
}

.form-control.select {
    padding: 0px;
    max-height: 41px;
}

a:hover, a:active, a:focus {
    text-decoration: none;
}

.header-section {
    box-shadow: 0 1px 0 0 #e4e4e3;
    background-color: #fff;
}

header {
    padding: 10px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    header .header-right {
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -ms-flex-align: center;
        align-items: center;
        min-width: 320px;
    }

@media (max-width: 767px) {
    header .header-right {
        min-width: auto;
    }

    .fl-1-mobile {
        flex: 1;
        min-width: 100%;
        margin-top: 16px;
        padding: 0px;
    }

    .fl-wrap-mobile {
        flex-wrap: wrap;
    }
}

header .header-right .form-control.dropdown-select {
    width: 200px;
    height: auto;
}

    header .header-right .form-control.dropdown-select select {
        border: none;
        outline: none;
    }

header .header-right .user-menu {
    display: -ms-flexbox;
    display: flex;
    margin-left: 24px;
}

    header .header-right .user-menu .dropdown-toggle {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

        header .header-right .user-menu .dropdown-toggle .user-short-name {
            background-color: #d98c6a;
            width: 32px;
            height: 32px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-right: 10px;
            border-radius: 50%;
            color: #fff;
            text-transform: uppercase;
        }

        header .header-right .user-menu .dropdown-toggle .user-name {
            color: #393b3d;
        }

        header .header-right .user-menu .dropdown-toggle .user-drop {
            margin-left: 16px;
        }

    header .header-right .user-menu .dropdown-menu {
        display: none;
        position: absolute;
    }

    header .header-right .user-menu.open .dropdown-menu {
        display: block;
        padding: 10px;
        width: 210px;
        margin-top: 20px;
        left: -84px;
    }

@media (max-width: 767px) {
    header .header-right .user-menu.open .dropdown-menu {
        left: -130px;
    }
}

.user-menu > .dropdown-menu > li.user-header {
    height: 175px;
    padding: 10px;
    text-align: center;
}

    .user-menu > .dropdown-menu > li.user-header > img {
        z-index: 5;
        height: 90px;
        width: 90px;
        border: 3px solid;
        border-color: transparent;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .user-menu > .dropdown-menu > li.user-header > p > small {
        display: block;
        font-size: 12px;
    }

.page-heading {
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
}

.bg-color {
    background-color: #f4f7fa;
    padding-top: 27px;
}

.table-section {
    padding: 14px 18px 33px;
    border-radius: 18px;
    background-color: #fdfeff;
}

.search-container {
    width: 186px;
}

@media (max-width: 767px) {
    .search-container {
        width: 100%;
    }
}

.search-container .search-input {
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: 0px 1px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    line-height: normal;
    font-weight: 500;
    border: 0px solid #e5e9ef;
    border-radius: 6px;
    padding-left: 30px;
    background-color: #fdfeff;
}

.search-container :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b3bac0;
    opacity: 1;
    /* Firefox */
}

.search-container ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b3bac0;
    opacity: 1;
    /* Firefox */
}

.search-container :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b3bac0;
}

.search-container ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #b3bac0;
}

.filter-section {
    display: -ms-flexbox;
    display: flex;
    background-color: #fdfeff;
    /*padding: 40px 28px 40px 24px;*/
    padding: 24px;
    border-radius: 18px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 18px;
}

@media (max-width: 1200px) {
    .filter-section {
        padding: 24px 12px;
    }
}

@media (max-width: 767px) {
    .filter-section {
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }
}

.filter-section .section-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .filter-section .section-container:nth-child(3) {
        margin: 0px;
    }
}

@media (max-width: 767px) {
    .filter-section .section-container {
        margin: 0px;
        margin-bottom: 12px;
    }
}

.filter-section .section-container:nth-child(2) {
    margin: 0px 24px;
}

@media (max-width: 1200px) {
    .filter-section .section-container:nth-child(2) {
        margin: 0px 4px;
    }
}

@media (max-width: 767px) {
    .filter-section .section-container:nth-child(2) {
        margin: 0px 0px 12px 0px;
    }
}

.filter-section .section-container label {
    margin: 0px;
    margin-right: 12px;
    width: auto;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .filter-section .section-container label {
        white-space: normal;
        margin-right: 4px;
    }
}

@media (max-width: 767px) {
    .filter-section .section-container label {
        min-width: 90px;
    }
}

.filter-section .section-container .dropdown-select {
    width: 100%;
}

    .filter-section .section-container .dropdown-select.year-drop {
        width: 140px;
    }

@media (max-width: 1200px) {
    .filter-section .section-container .dropdown-select.year-drop {
        width: 90px;
    }
}

@media (max-width: 767px) {
    .filter-section .section-container .dropdown-select.year-drop {
        width: 100%;
    }
}

.filter-section .section-container .dropdown-select.course-type-drop {
    width: 244px;
}

@media (max-width: 1200px) {
    .filter-section .section-container .dropdown-select.course-type-drop {
        width: 120px;
    }
}

@media (max-width: 767px) {
    .filter-section .section-container .dropdown-select.course-type-drop {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .filter-section.print-section {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .filter-section.print-section .section-container {
        margin-bottom: 0px;
    }
}

.filter-section.print-section .print-btn {
    border-radius: 8px;
    background-color: #edf2f8;
    min-width: 30px;
    height: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
    position: relative;
}

    .filter-section.print-section .print-btn img {
        max-width: 100%;
        cursor: pointer;
    }

.filter-section.print-section .form-control {
    width: 100%;
}

    .filter-section.print-section .form-control.print-drop {
        width: 100%;
    }

@media (max-width: 767px) {
    .container {
        padding-right: 5px;
        padding-left: 5px;
    }
}

.accordion-data {
    position: relative;
    width: 100%;
    height: auto;
    padding: 16px 0px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .accordion-data {
        border-bottom: 1px solid #ebf0f5;
        border-radius: 0px;
    }
}

.accordion-data:hover {
    background-color: #f5f9fc;
}

@media (max-width: 767px) {
    .accordion-data:hover {
        background-color: transparent;
    }
}

.accordion-data.active {
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(123, 145, 186, 0.2);
    border: solid 1px #ebf0f5;
}

@media (max-width: 767px) {
    .accordion-data.active {
        padding-left: 16px;
        padding-right: 16px;
        width: calc(100% + 24px);
        margin-left: -12px;
    }
}

.accordion-data .accord-drop {
    width: 32px;
    height: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ebf0f5;
    padding: 6px;
    border-radius: 8px;
    -ms-flex-pack: center;
    justify-content: center;
}

.accordion-data .table-print-upload .print-btn {
    min-width: 32px;
    height: 32px;
    max-width: 32px;
    position: relative;
}

@media (max-width: 767px) {
    .accordion-data .table-print-upload .print-btn:nth-child(1) {
        margin-left: 0px;
    }
}

.accordion-data .table-print-upload .print-btn .check-img {
    position: absolute;
    top: -5px;
    right: -5px;
}

.accordion-data > a {
    display: block;
}

.content {
    display: none;
}

    .content .score-input {
        max-height: 32px;
        max-width: 50px;
        padding: 12px;
        font-size: 12px;
        line-height: 1;
        color: #4b4b4b;
        background-color: #fff;
        background-image: none;
        border: 1px solid #e5e9ef;
        border-radius: 6px;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        outline: none;
    }

    .content .accord-table-data {
        display: -ms-flexbox;
        display: flex;
        padding-left: 20px;
        padding-top: 20px;
    }

@media (max-width: 1200px) {
    .content .accord-table-data {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .content .accord-table-data {
        padding-left: 0px;
        padding-top: 18px;
    }
}

@media (max-width: 767px) {
    .content .accord-table-data.accord-score-data {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.content .accord-table-data .info-tag {
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
    background-color: #ebf0f5;
    padding: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 68px;
    min-height: 32px;
    margin-right: 4px;
}

@media (max-width: 767px) {
    .content .accord-table-data .info-tag {
        min-width: 24px;
        min-height: 24px;
        font-size: 10px;
    }
}

.content .accord-table-data .info-tag input {
    border: none;
    background-color: transparent;
    width: 100%;
}

@media (max-width: 767px) {
    .content .accord-table-data .info-tag:nth-last-child(1) {
        margin-right: 0px;
    }
}

.content .accord-table-data .info-tag img {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .content .accord-table-data .info-tag img {
        margin-left: 5px;
    }
}

.content .accord-table-data .info-tag.info-tag-number {
    background-color: #dbf0ff;
    min-width: 32px;
}

.content .accord-table-data .info-tag.info-tag-paid {
    background-color: #eef8ed;
    color: #3fc033;
    min-width: 70px;
}

@media (max-width: 767px) {
    .content .accord-table-data .info-tag.info-tag-paid {
        min-width: 60px;
    }
}

.content .accord-table-data .info-tag.info-tag-unpaid {
    background-color: #ffefef;
    color: #f74b50;
    min-width: 70px;
}

@media (max-width: 767px) {
    .content .accord-table-data .info-tag.info-tag-unpaid {
        min-width: 60px;
    }
}

.content p {
    padding: 10px 15px;
    margin: 0;
    font-size: 13px;
    color: #333;
    min-height: 52px;
    padding-top: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.accord-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 20px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .accord-heading {
        padding: 0px;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.accord-heading.active + .content {
    display: block;
}

.accord-heading .desktop-data {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.accord-heading .mobile-table {
    width: 100%;
    margin-top: 20px;
}

    .accord-heading .mobile-table tr th {
        width: 100px;
        color: #8c929d;
        padding: 4px 0px;
    }

.table-heading {
    color: #8c929d;
    border-top: 1px solid #f4f7fa;
    border-bottom: 1px solid #f4f7fa;
    padding: 23px 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .table-heading {
        display: none;
    }
}

.table-number {
    width: 50px;
}

@media (max-width: 767px) {
    .table-number {
        display: none;
    }
}

.table-drop-space {
    display: inline-block;
    width: 50px;
}

@media (max-width: 767px) {
    .table-drop-space {
        width: auto;
        -ms-flex-order: 3;
        order: 3;
    }
}

.table-drop-space .accord-drop img {
    transition: 1s;
}

.table-drop-space.active .accord-drop img {
    transform: rotate(180deg);
    transition: 1s;
}

.table-print-upload {
    width: 104px;
}

@media (max-width: 767px) {
    .table-print-upload {
        width: auto;
        -ms-flex-order: 1;
        order: 1;
    }
}

.table-student {
    width: 300px;
    position: relative;
}

@media (max-width: 1200px) {
    .table-student {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .table-student {
        display: none;
    }
}

.table-student.ribban-img .ribban-img-con {
    position: absolute;
    left: -35px;
    top: 0px;
    border-radius: 6px;
    background-color: #f5f9fc;
    padding: 3px;
}

.table-course {
    width: 200px;
}

@media (max-width: 1200px) {
    .table-course {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .table-course {
        display: none;
    }
}

.table-balance {
    width: 100px;
}

@media (max-width: 1200px) {
    .table-balance {
        width: 70px;
    }
}

@media (max-width: 767px) {
    .table-balance {
        display: none;
    }
}

.table-status {
    width: 50px;
}

@media (max-width: 767px) {
    .table-status {
        width: auto;
        -ms-flex-order: 2;
        order: 2;
    }
}

.table-status.bal-status {
    text-transform: uppercase;
    font-size: 11px;
}

    .table-status.bal-status span {
        display: inline-block;
        padding: 3px 6px 2px;
        border-radius: 6px;
    }

@media (max-width: 767px) {
    .table-status.bal-status span {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        min-height: 32px;
    }
}

.table-status.bal-status span.bal-paid {
    color: #3fc033;
    background-color: #eef8ed;
}

.table-status.bal-status span.bal-unpaid {
    color: #f74b50;
    background-color: #ffefef;
}

.table-status.bal-status span.bal-part {
    color: #be951f;
    background-color: #fff2c7;
}

.table-pagination {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #ebf0f5;
}

@media (max-width: 767px) {
    .table-pagination {
        align-items: center;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.table-pagination .pagination-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .table-pagination .pagination-left {
        -ms-flex-order: 2;
        order: 2;
    }
}

.table-pagination .pagination-left a {
    display: inline-block;
    margin-right: 6px;
}

.table-pagination .pagination-left .img-disabled {
    opacity: 0.2;
}

.table-pagination .pagination-left .pagination-btn {
    color: #393b3d;
    width: 28px;
    height: 28px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
}

    .table-pagination .pagination-left .pagination-btn.active {
        color: #fff;
        border-radius: 3px;
        background-color: #147afc;
    }

@media (max-width: 767px) {
    .table-pagination .pagination-right {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 24px;
    }
}

.table-pagination .pagination-right .section-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 220px;
}

@media (max-width: 767px) {
    .table-pagination .pagination-right .section-container {
        width: 190px;
        margin: auto;
    }
}

.table-pagination .pagination-right .section-container label {
    margin: 0px 16px 0px 0px;
    min-width: 105px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .table-pagination .pagination-right .section-container label {
        min-width: 105px;
    }
}

@media (max-width: 767px) {
    .table-pagination .pagination-right .section-container .form-control {
        max-width: 80px;
    }
}

.table-print-upload {
    display: -ms-flexbox;
    display: flex;
}

    .table-print-upload .print-btn {
        border-radius: 8px;
        background-color: #edf2f8;
        min-width: 40px;
        height: 40px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 12px;
    }

        .table-print-upload .print-btn img {
            max-width: 100%;
            cursor: pointer;
        }

.table-bottom-btns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 20px 8px 20px;
}

@media (max-width: 767px) {
    .table-bottom-btns {
        padding: 24px 0px 8px 0px;
    }
}

.table-bottom-btns input {
    margin-right: 8px;
    border-radius: 8px;
    background-color: #ecf1f8;
    outline: none;
    padding: 0px;
    font-weight: bold;
    min-width: 88px;
    border: none;
    padding: 10px;
}

    .table-bottom-btns input.active {
        color: #fff;
        background-color: #147afc;
    }

.mobile-filter-btns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .mobile-filter-btns input {
        height: 48px;
        margin: 14px 0 24px 0;
        padding: 15px 50px;
        border-radius: 8px;
        border: 1px solid #ebf0f5;
        outline: none;
        font-weight: bold;
        background-color: transparent;
        line-height: 1;
    }

.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

    .overlay.active {
        display: -ms-flexbox;
        display: flex;
    }

@media (max-width: 767px) {
    .overlay {
        padding: 20px;
    }
}

.overlay .print-modal {
    padding: 17px 56px;
    position: relative;
    background-color: #fff;
    border-radius: 18px;
    min-height: 240px;
    max-width: 800px;
    min-width: 545px;
}

@media (max-width: 767px) {
    .overlay .print-modal {
        padding: 24px;
        min-height: 220px;
        width: 100%;
        min-width: 100%;
    }
}

.overlay .print-modal .close-print {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}

.overlay .print-modal h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    color: #393b3d;
    margin: 20px 0px 42px 0px;
}

@media (max-width: 767px) {
    .overlay .print-modal h3 {
        font-size: 18px;
        margin: 4px 0px 32px 0px;
    }
}

.overlay .print-modal a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 6px;
    padding: 8px 11px;
    color: #393b3d;
    margin: 0px 5px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .overlay .print-modal a {
        margin: 0px 0px 18px 0px;
    }
}

.overlay .print-modal a:nth-last-child(1) {
    margin-bottom: 0px;
}

.overlay .print-modal a img {
    margin-right: 8px;
}

.overlay .print-modal .print-pdf-con {
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .overlay .print-modal .print-pdf-con {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.overlay .print-modal .print-pdf-con .downlaod-pdf {
    background-color: #dbf0ff;
}

.overlay .print-modal .print-pdf-con .downlaod-advanced-pdf {
    background-color: #fff0db;
}

.overlay .print-modal .file-details-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 18px;
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .overlay .print-modal .file-details-section .loading-data {
        color: #afb5bf;
        display: inline-block;
        position: absolute;
        right: 40px;
    }

    .overlay .print-modal .file-details-section .file-icon-container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .overlay .print-modal .file-details-section .file-format-section {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

        .overlay .print-modal .file-details-section .file-format-section img {
            width: 28px;
            margin-right: 10px;
        }

        .overlay .print-modal .file-details-section .file-format-section .file-format-name {
            width: 75%;
        }

            .overlay .print-modal .file-details-section .file-format-section .file-format-name p {
                font-weight: bold;
                margin: 0px;
            }

                .overlay .print-modal .file-details-section .file-format-section .file-format-name p + p {
                    color: #afb5bf;
                }

.overlay .border-line-div {
    height: 1px;
    background-color: #ebf0f5;
    width: 100%;
    margin: 20px auto;
}

.overlay .file-support-text {
    color: #afb5bf;
    font-weight: bold;
    margin: 35px 0px;
}

.overlay .upload-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .overlay .upload-section .upload-file-section {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding: 22px 28px;
        border-radius: 12px;
        border: dashed 2px rgba(175, 181, 191, 0.3);
        background-color: #f4f7fa;
        font-weight: bold;
    }

@media (max-width: 767px) {
    .overlay .upload-section .upload-file-section {
        padding: 22px 18px;
    }
}

.overlay .upload-section .upload-file-section img {
    margin-right: 14px;
    width: 18px;
    opacity: 0.6;
}

.overlay .upload-section .upload-file-section .choose-file {
    display: -ms-flexbox;
    display: flex;
    width: auto;
    overflow: hidden;
    position: relative;
    font-weight: bold;
}

    .overlay .upload-section .upload-file-section .choose-file a {
        display: inline-block;
        padding: 0px;
        margin: 0px;
        margin-left: 3px;
        text-decoration: underline;
        color: #147afc;
    }

    .overlay .upload-section .upload-file-section .choose-file input {
        opacity: 0;
        position: absolute;
    }

.login-bg {
    background-color: #fff;
}

.bg-main {
    background-image: url(../images/login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-color: #fff;
}

@media (max-width: 767px) {
    .bg-main {
        background-image: none;
    }
}

.login-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .login-container .login-logo {
        position: inherit;
        margin-bottom: 50px;
        text-align: center;
    }

        .login-container .login-logo img {
            max-width: 100%;
        }

.login-heading {
    color: #ee3124;
    font-weight: bold;
    text-align: left;
    margin-top: -15px;
    font-size: 18px;
    margin-bottom: 20px;
}

.login-container .login-box {
    border-radius: 8px;
    background-color: #fff;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (max-width: 767px) {
}

.login-container .login-box .form-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
}

    .login-container .login-box .form-control input {
        border: none;
        outline: none;
    }

        .login-container .login-box .form-control input:active {
            border: none;
            outline: none;
        }

.login-container .login-box .options-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-container .login-btn {
    padding: 8px 56px;
    border-radius: 4px;
    background-color: #ee3124;
    outline: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
}

.dropdown-select {
    width: 100%;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    outline: 0;
    line-height: normal;
    font-weight: 500;
    border: 1px solid #e5e9ef;
    border-radius: 6px;
    background-color: #fdfeff;
    padding: 10px 21px 10px 12px;
    /*background-image: url(../images/dropdown.svg);*/
    background-repeat: no-repeat;
    max-height: 40px;
    background-position: 97%;
}

    .dropdown-select.show .dropdown-menu {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 6px;
        border-radius: 6px;
    }

        .dropdown-select.show .dropdown-menu a {
            padding: 5px 4px;
        }

    .dropdown-select a {
        color: #393b3d;
    }

.content .accord-table-data .info-tag.jopen {
    background: white;
    border: 2px solid #ebf0f5;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.profile-date-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

    .profile-date-info .img-div {
        max-width: 150px;
        border-radius: 50%;
        margin-bottom: 20px;
        border: 3px solid #afb5bf;
        min-width: 150px;
        min-height: 150px;
        display: flex;
        align-items: center;
        width: 150px;
        height: 150px;
        justify-content: center;
        background-color: #faf7f5;
    }

        .profile-date-info .img-div img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 50%;
        }

    .profile-date-info input[type="file"] {
        display: block;
        width: 100%;
        max-height: 40px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1;
        color: #4b4b4b;
        background-color: #fff;
        background-image: none;
        border: 1px solid #e5e9ef;
        border-radius: 6px;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

    .profile-date-info .check-input {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        margin-top: 25px;
        margin-bottom: 25px;
    }

.filter-section.normal-filter {
    display: block;
}

    .filter-section.normal-filter .form-controls {
        background-color: transparent;
        margin-bottom: 16px;
    }

        .filter-section.normal-filter .form-controls input {
            display: block;
            width: 100%;
            max-height: 40px;
            padding: 11px 12px;
            font-size: 14px;
            line-height: 1;
            color: #4b4b4b;
            background-color: #fff;
            background-image: none;
            border: 1px solid #e5e9ef;
            border-radius: 6px;
            transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        }

ul.tabs li {
    background: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    ul.tabs li {
        margin-top: 12px;
    }
}

ul.tabs li.current {
    border-bottom: 2px solid #000;
}

.tab-content {
    display: none;
}

    .tab-content.current {
        display: inherit;
    }

.flex-100 {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

@media (max-width: 767px) {
    .filter-section.print-section.invoice-data {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .date-invoice {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 24px;
    }
}

.date-invoice .section-text1 {
    color: #8C929D;
    font-size: 15px;
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 5px;
}

.date-invoice .section-text2 {
    color: #393B3D;
    font-size: 32px;
    font-weight: bold;
    margin-top: 0px;
    line-height: 1;
}

    .date-invoice .section-text2 span {
        color: #8C929D;
    }

.wrapper {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

    .wrapper:before, .wrapper:after {
        content: " ";
        display: table;
    }

    .wrapper:after {
        clear: both;
    }

.layout-boxed .wrapper {
    max-width: 1250px;
    margin: 0 auto;
    min-height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.layout-boxed {
    background: url("../img/boxed-bg.jpg") repeat fixed;
}

.content-wrapper, .right-side, .main-footer {
    transition: transform .3s ease-in-out,margin .3s ease-in-out;
    margin-left: 96px;
    z-index: 820;
}

.layout-top-nav .content-wrapper, .layout-top-nav .right-side, .layout-top-nav .main-footer {
    margin-left: 0;
}

@media (max-width: 767px) {
    .content-wrapper, .right-side, .main-footer {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .sidebar-collapse .content-wrapper, .sidebar-collapse .right-side, .sidebar-collapse .main-footer {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .sidebar-open .content-wrapper, .sidebar-open .right-side, .sidebar-open .main-footer {
        transform: translate(375px, 0);
    }
}

.content-wrapper, .right-side {
    min-height: 100%;
    background-color: #f4f7fa;
    z-index: 800;
}

.content-wrapper {
    border-top: solid 1px #e5e9ef;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .content-wrapper {
        border-top: solid 0px #e5e9ef;
        padding-top: 130px;
    }
}

.main-footer {
    background: #fff;
    padding: 15px;
    color: #444;
    border-top: 1px solid #d2d6de;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.fixed .main-header, .fixed .main-sidebar, .fixed .left-side {
    position: fixed;
}

.fixed .main-header {
    top: 0;
    right: 0;
    left: 0;
}

.fixed .content-wrapper, .fixed .right-side {
    padding-top: 50px;
}

@media (max-width: 767px) {
    .fixed .content-wrapper, .fixed .right-side {
        padding-top: 100px;
    }
}

.fixed.layout-boxed .wrapper {
    max-width: 100%;
}

body.hold-transition .content-wrapper, body.hold-transition .right-side, body.hold-transition .main-footer, body.hold-transition .main-sidebar, body.hold-transition .left-side, body.hold-transition .main-header > .navbar, body.hold-transition .main-header .logo {
    transition: none;
}

.content-main {
    min-height: 250px;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 70px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Source Sans Pro',sans-serif;
}

a {
    color: #3c8dbc;
    cursor: pointer;
}

    a:hover, a:active, a:focus {
        outline: none;
        text-decoration: none;
        color: #72afd2;
    }

.page-header {
    margin: 10px 0 20px 0;
    font-size: 22px;
}

    .page-header > small {
        color: #666;
        display: block;
        margin-top: 5px;
    }

.main-header {
    position: fixed;
    max-height: 100px;
    z-index: 1030;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    background-color: white;
}

    .main-header > .navbar {
        transition: margin-left .3s ease-in-out;
        margin-bottom: 0;
        border: none;
        min-height: 50px;
        border-radius: 0;
        -ms-flex: 1;
        flex: 1;
    }

.layout-top-nav .main-header > .navbar {
    margin-left: 0;
}

.main-header #navbar-search-input.form-control {
    background: rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

    .main-header #navbar-search-input.form-control:focus, .main-header #navbar-search-input.form-control:active {
        border-color: rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.9);
    }

    .main-header #navbar-search-input.form-control::-moz-placeholder {
        color: #ccc;
        opacity: 1;
    }

    .main-header #navbar-search-input.form-control:-ms-input-placeholder {
        color: #ccc;
    }

    .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
        color: #ccc;
    }

.main-header .navbar-custom-menu, .main-header .navbar-right {
    float: right;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .main-header .navbar-custom-menu a, .main-header .navbar-right a {
        color: inherit;
        background: transparent;
    }
}

@media (max-width: 767px) {
    .main-header .navbar-right {
        float: none;
    }

    .navbar-collapse .main-header .navbar-right {
        margin: 7.5px -15px;
    }

    .main-header .navbar-right > li {
        color: inherit;
        border: 0;
    }
}

.header-right.admin-header {
    min-width: 420px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .header-right.admin-header {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .header-right.admin-header .user-menu .dropdown-toggle .user-drop {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .header-right.admin-header .user-name {
        display: none;
    }
}

.header-right.admin-header .form-control {
    margin: 0px 10px;
}

.skin-blue.sidebar-mini .sidebar-toggle i {
    transform: rotate(180deg);
}

.skin-blue.sidebar-mini.sidebar-collapse .sidebar-toggle i {
    transform: rotate(0deg);
}

.main-header .sidebar-toggle {
    float: left;
    position: absolute;
    background: #fff;
    padding: 10px;
    width: 30px;
    height: 30px;
    line-height: initial;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 2px #e0e0e0;
    left: -15px;
    color: #393b3d;
}

    .main-header .sidebar-toggle:hover {
        color: #333 !important;
    }

@media (max-width: 767px) {
    .main-header .sidebar-toggle {
        padding: 8px 0px;
    }
}

.main-header .sidebar-toggle:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .sidebar-mini .main-header {
        -ms-flex-pack: end;
        justify-content: flex-end;
        box-shadow: 0 1px 0 0 #ebf0f5;
    }
}

@media (max-width: 767px) {
    .sidebar-mini .main-header .navbar {
        max-width: 160px;
    }
}

@media (max-width: 767px) {
    .sidebar-mini .main-header .logo {
        text-align: left;
        padding: 0 7px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 74px;
        top: 8px;
    }
}

@media (max-width: 767px) {
    .sidebar-mini .main-header .sidebar-toggle {
        padding: 0px;
        box-shadow: none;
        left: 16px;
        margin-top: 10px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .sidebar-mini .main-header .sidebar-toggle .fa-bars {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .sidebar-mini .main-header .sidebar-toggle .fa-times {
        display: none;
    }
}

@media (max-width: 767px) {
    .sidebar-mini.sidebar-open .sidebar-toggle .fa-bars {
        display: none;
    }
}

@media (max-width: 767px) {
    .sidebar-mini.sidebar-open .sidebar-toggle .fa-times {
        display: inline-block;
    }
}

.sidebar-mini.sidebar-collapse .sidebar-menu .treeview .treeview-menu .main-menu-heading {
    display: block;
    padding-left: 15px;
}

.sidebar-mini.sidebar-collapse .sidebar-menu .treeview .treeview-menu li {
    padding-left: 0px;
    margin-bottom: 1px;
}

.sidebar-mini .sidebar-menu .treeview .treeview-menu .main-menu-heading {
    display: none;
}

.sidebar-mini .sidebar-menu .treeview .treeview-menu li {
    padding-left: 30px;
}

.skin-blue .sidebar-menu > li .treeview-menu {
    margin: 0;
    background: #fff;
    padding-left: 0px;
    margin-top: 10px;
}

.main-header .sidebar-toggle:active {
    background: transparent;
}

.main-header .sidebar-toggle:focus {
    background: #fff;
}

.main-header .sidebar-toggle .icon-bar {
    display: none;
}

.main-header .navbar .nav > li.user > a > .fa, .main-header .navbar .nav > li.user > a > .glyphicon, .main-header .navbar .nav > li.user > a > .ion {
    margin-right: 5px;
}

.main-header .navbar .nav > li > a > .label {
    position: absolute;
    top: 9px;
    right: 7px;
    text-align: center;
    font-size: 9px;
    padding: 2px 3px;
    line-height: .9;
}

.main-header .logo {
    transition: width .3s ease-in-out;
    display: block;
    float: left;
    height: 60px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    width: 375px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0 15px;
    font-weight: 300;
    overflow: hidden;
}

    .main-header .logo .logo-lg {
        display: block;
    }

    .main-header .logo .logo-mini {
        display: none;
    }

.main-header .navbar-brand {
    color: #fff;
}

.content-header {
    position: relative;
    padding: 15px 15px 0 15px;
}

    .content-header > h1 {
        margin: 0;
        font-size: 24px;
    }

        .content-header > h1 > small {
            font-size: 15px;
            display: inline-block;
            padding-left: 4px;
            font-weight: 300;
        }

    .content-header > .breadcrumb {
        float: right;
        background: transparent;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 12px;
        padding: 7px 5px;
        position: absolute;
        top: 15px;
        right: 10px;
        border-radius: 2px;
    }

        .content-header > .breadcrumb > li > a {
            color: #444;
            text-decoration: none;
            display: inline-block;
        }

            .content-header > .breadcrumb > li > a > .fa, .content-header > .breadcrumb > li > a > .glyphicon, .content-header > .breadcrumb > li > a > .ion {
                margin-right: 5px;
            }

        .content-header > .breadcrumb > li + li:before {
            content: '>\00a0';
        }

@media (max-width: 991px) {
    .content-header > .breadcrumb {
        position: relative;
        margin-top: 5px;
        top: 0;
        right: 0;
        float: none;
        background: #d2d6de;
        padding-left: 10px;
    }

        .content-header > .breadcrumb li:before {
            color: #97a0b3;
        }
}

.navbar-toggle {
    color: #fff;
    border: 0;
    margin: 0;
    padding: 15px 15px;
}

@media (max-width: 991px) {
    .navbar-custom-menu .navbar-nav > li {
        float: left;
    }

    .navbar-custom-menu .navbar-nav {
        margin: 0;
        float: left;
    }

        .navbar-custom-menu .navbar-nav > li > a {
            padding-top: 15px;
            padding-bottom: 15px;
            line-height: 20px;
        }
}

@media (max-width: 767px) {
    .main-header {
        position: fixed;
        background: #fdfeff;
    }

        .main-header .logo, .main-header .navbar {
            width: auto;
            float: none;
        }

        .main-header .navbar {
            margin: 0;
            display: -ms-flexbox;
            display: flex;
        }

        .main-header .navbar-custom-menu {
            float: none;
            -ms-flex: 1;
            flex: 1;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
            margin-top: 0;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }
}

@media (max-width: 991px) {
    .navbar-collapse.pull-left {
        float: none !important;
    }

        .navbar-collapse.pull-left + .navbar-custom-menu {
            display: block;
            position: absolute;
            top: 0;
            right: 40px;
        }
}

.main-sidebar, .left-side {
    position: fixed;
    top: 80px;
    left: 0;
    padding-top: 20px;
    width: 375px;
    z-index: 1051;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
    background-color: #fdfeff;
    overflow-y: scroll;
    bottom: 0;
}

    /* width */
    .main-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    /* Track */
    .main-sidebar::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 10px;
        background-color: #e9e9e9;
    }

    /* Handle */
    .main-sidebar::-webkit-scrollbar-thumb {
        background: #cdcdcd;
        border-radius: 10px;
    }




@media (max-width: 767px) {
    .main-sidebar, .left-side {
        padding-top: 20px;
        top: 69px;
        position: fixed;
        overflow-y: scroll;
        bottom: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .main-sidebar, .left-side {
        transform: translate(-375px, 0);
    }
}

@media (min-width: 768px) {
    .sidebar-collapse .main-sidebar, .sidebar-collapse .left-side {
        transform: translate(-375px, 0);
    }

    .sidebar-collapse .main-sidebar, .sidebar-collapse .left-side {
        position: absolute;
        overflow-y: inherit;
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .sidebar-open .main-sidebar, .sidebar-open .left-side {
        transform: translate(0, 0);
    }
}



.sidebar-form input:focus {
    border-color: transparent;
}

.user-panel {
    position: relative;
    width: 100%;
    padding: 10px;
    overflow: hidden;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sidebar-menu > li {
        position: relative;
        margin: 0;
        padding: 0;
    }

        .sidebar-menu > li > a {
            padding: 12px 5px 12px 15px;
            display: block;
        }

            .sidebar-menu > li > a > .fa, .sidebar-menu > li > a > .glyphicon, .sidebar-menu > li > a > .ion {
                width: 20px;
            }

        .sidebar-menu > li .label, .sidebar-menu > li .badge {
            margin-top: 3px;
            margin-right: 5px;
        }

    .sidebar-menu li.header {
        padding: 10px 25px 10px 15px;
        font-size: 12px;
    }

    .sidebar-menu li ul li a {
        font-weight: normal;
    }

    .sidebar-menu li a img {
        margin-right: 10px;
    }

    .sidebar-menu li > a > .fa-angle-left {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        margin-top: 3px;
    }

    .sidebar-menu li.active > a > .fa-angle-left {
        transform: rotate(-90deg);
    }



    .sidebar-menu .treeview-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-left: 5px;
    }

        .sidebar-menu .treeview-menu .treeview-menu {
            padding-left: 20px;
        }

        .sidebar-menu .treeview-menu > li {
            margin: 0;
        }

            .sidebar-menu .treeview-menu > li.main-menu-heading {
                font-weight: bold;
                color: #8C929D;
                padding-left: 15px;
                margin-bottom: 8px;
            }

@media (max-width: 767px) {
    .sidebar-menu .treeview-menu > li.main-menu-heading {
        display: none !important;
    }
}

.sidebar-menu .treeview-menu > li > a {
    padding: 5px 5px 5px 15px;
    display: block;
    font-size: 14px;
}

    .sidebar-menu .treeview-menu > li > a > .fa, .sidebar-menu .treeview-menu > li > a > .glyphicon, .sidebar-menu .treeview-menu > li > a > .ion {
        width: 20px;
    }

.sidebar-menu > li > a {
    padding: 0px;
}

.sidebar-menu .treeview-menu > li > a > .fa-angle-left, .sidebar-menu .treeview-menu > li > a > .fa-angle-down {
    width: auto;
}

.skin-blue.sidebar-mini.sidebar-collapse .main-header .logo {
    text-align: left;
    padding: 0 7px;
}

    .skin-blue.sidebar-mini.sidebar-collapse .main-header .logo img {
        width: 60px;
    }

@media (max-width: 767px) {
    .skin-blue.sidebar-mini.sidebar-collapse .main-header .logo img {
        width: 54px;
    }
}

@media (min-width: 768px) {
    .sidebar-mini.sidebar-collapse .content-wrapper, .sidebar-mini.sidebar-collapse .right-side, .sidebar-mini.sidebar-collapse .main-footer {
        margin-left: 118px !important;
        z-index: 840;
    }

    .sidebar-mini.sidebar-collapse .main-sidebar {
        transform: translate(0, 0);
        width: 118px !important;
        z-index: 850;
    }

    .sidebar-mini.sidebar-collapse .sidebar-menu > li {
        position: relative;
    }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
            margin-right: 0;
        }

            .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
                border-top-right-radius: 4px;
            }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
            border-bottom-right-radius: 4px;
        }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
            padding-top: 5px;
            padding-bottom: 5px;
            border-bottom-right-radius: 4px;
        }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right), .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
            display: block !important;
            position: absolute;
            /*width: 300px;*/
            width: auto;
            left: 98px;
            background-color: #fff;
            padding: 16px;
            padding: 16px;
            border-radius: 20px;
            box-shadow: 0 4px 18px 0 #7d859f21;
            background-color: #fdfeff;
        }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
            top: 0;
            margin-left: 0px;
            padding: 12px 5px 12px 20px;
            background-color: inherit;
        }

        .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
            top: 0px;
            margin-left: 0;
        }

        .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info, .sidebar-mini.sidebar-collapse .sidebar-form, .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span, .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu, .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right, .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
            display: none !important;
            -webkit-transform: translateZ(0);
        }

    .sidebar-mini.sidebar-collapse .main-header .logo {
        width: 118px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
            display: block;
            margin-left: -15px;
            margin-right: -15px;
            font-size: 18px;
        }

        .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
            display: none;
        }

    .sidebar-mini.sidebar-collapse .main-header .navbar {
        margin-left: 0px;
    }
}

.skin-blue .sidebar-mini li > .treeview-menu {
    margin: 0;
    background: #fff;
    padding-left: 40px;
}

    .skin-blue .sidebar-mini li > .treeview-menu .main-menu-heading {
        padding-left: 15px;
        display: none;
    }

.skin-blue .sidebar-mini.sidebar-collapse > li > .treeview-menu .main-menu-heading {
    display: block;
}

.sidebar-menu li a {
    color: #393b3d;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.sidebar-mini .sidebar-menu > li.segment-section {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #8c929d;
    margin: 20px 0;
    line-height: 1;
}

@media (max-width: 767px) {
    .sidebar-mini .sidebar-menu > li.segment-section {
        margin: 20px 0;
    }
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li.segment-section {
    display: none;
}

@media (max-width: 767px) {
    .sidebar-mini.sidebar-collapse .sidebar-menu > li.segment-section {
        display: block;
    }
}

.sidebar-menu > li > a > .fa {
    width: 25px !important;
    height: auto !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 0px;
    margin-right: 12px;
}


.sidebar-collapse .sidebar-menu > li > a > .fa {
    margin-right: 0px;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right) {
    display: none !important;
}

@media (max-width: 767px) {
    .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right) {
        display: block !important;
    }

    .sidebar-collapse .sidebar-menu > li > a > .fa {
        margin-right: 12px;
    }
}

.input01 {
    min-width: 200px;
}

.input02 {
    min-width: 103px;
}

.sidebar-mini .sidebar-menu > li {
    margin-bottom: 8px;
    padding: 0px 30px;
}

    .sidebar-mini .sidebar-menu > li .fa-angle-down {
        width: 0px;
        height: 0px;
        margin: 0;
        right: 15px;
    }

    .sidebar-mini .sidebar-menu > li .treeview-menu li a {
        padding: 14px 5px 14px 15px;
        border-radius: 14px;
    }

    .sidebar-mini .sidebar-menu > li.dashboard.active .fa {
        border-radius: 20px;
        background-color: #ebf4ff;
        color: #147afc;
    }

    .sidebar-mini .sidebar-menu > li.dashboard.active a {
        background: #ebf4ff;
        border-radius: 10px;
        color: #147afc;
    }

    .sidebar-mini .sidebar-menu > li.manage-student.active .treeview-menu li a {
        background: #fff;
        color: #393b3d;
    }

        .sidebar-mini .sidebar-menu > li.manage-student.active .treeview-menu li a:hover {
            background: #fdebe3;
            color: #393b3d;
        }

        .sidebar-mini .sidebar-menu > li.manage-student.active .treeview-menu li a.active {
            background-color: #fdebe3;
            color: #dd683e;
        }

    .sidebar-mini .sidebar-menu > li.manage-student.active .fa {
        border-radius: 20px;
        background-color: #fdebe3;
        color: #dd683e;
    }

    .sidebar-mini .sidebar-menu > li.manage-student.active a {
        background: #fdebe3;
        border-radius: 10px;
        color: #dd683e;
    }

    .sidebar-mini .sidebar-menu > li.staff-account-management.active .treeview-menu li a {
        background: #fff;
        color: #393b3d;
    }

        .sidebar-mini .sidebar-menu > li.staff-account-management.active .treeview-menu li a:hover {
            background: #fcebff;
            color: #393b3d;
        }

        .sidebar-mini .sidebar-menu > li.staff-account-management.active .treeview-menu li a.active {
            background-color: #fcebff;
            color: #c36cd3;
        }

    .sidebar-mini .sidebar-menu > li.staff-account-management.active .fa {
        border-radius: 20px;
        background-color: #fcebff;
        color: #c36cd3;
    }

    .sidebar-mini .sidebar-menu > li.staff-account-management.active a {
        background: #fcebff;
        border-radius: 10px;
        color: #c36cd3;
    }

    .sidebar-mini .sidebar-menu > li.manage-website-lms.active .treeview-menu li a {
        background: #fff;
        color: #393b3d;
    }

        .sidebar-mini .sidebar-menu > li.manage-website-lms.active .treeview-menu li a:hover {
            background: #e0f5ff;
            color: #393b3d;
        }

        .sidebar-mini .sidebar-menu > li.manage-website-lms.active .treeview-menu li a.active {
            background-color: #e0f5ff;
            color: #578faa;
        }

    .sidebar-mini .sidebar-menu > li.manage-website-lms.active .fa {
        border-radius: 10px;
        background-color: #e0f5ff;
        color: #578faa;
    }

    .sidebar-mini .sidebar-menu > li.manage-website-lms.active a {
        background: #e0f5ff;
        border-radius: 10px;
        color: #578faa;
    }

    .sidebar-mini .sidebar-menu > li.master-administration.active .treeview-menu li a {
        background: #fff;
        color: #393b3d;
    }

        .sidebar-mini .sidebar-menu > li.master-administration.active .treeview-menu li a:hover {
            background: #e1e0ff;
            color: #393b3d;
        }

        .sidebar-mini .sidebar-menu > li.master-administration.active .treeview-menu li a.active {
            background-color: #e1e0ff;
            color: #6f6cbc;
        }

    .sidebar-mini .sidebar-menu > li.master-administration.active .fa {
        border-radius: 20px;
        background-color: #e1e0ff;
        color: #6f6cbc;
    }

    .sidebar-mini .sidebar-menu > li.master-administration.active a {
        background: #e1e0ff;
        border-radius: 10px;
        color: #6f6cbc;
    }

.sidebar-menu, .main-sidebar .user-panel, .sidebar-menu > li.header {
    white-space: nowrap;
    overflow: hidden;
}

    .sidebar-menu:hover {
        overflow: visible;
    }

    .sidebar-form, .sidebar-menu > li.header {
        overflow: hidden;
        text-overflow: clip;
    }

    .sidebar-menu li > a {
        position: relative;
        padding: 15px;
    }

        .sidebar-menu li > a > .pull-right {
            position: absolute;
            right: 10px;
            top: 50%;
            margin-top: -7px;
            transform: translateY(-50%);
        }

.info2-section {
    background-color: #fdfeff;
    padding: 32px;
    border-radius: 18px;
    margin-bottom: 18px;
}

    .info2-section h4 {
        margin: 0px;
    }

    .info2-section .per-info .form-control {
        padding: 0px;
        border: none;
        max-height: none;
        margin-top: 24px;
    }

        .info2-section .per-info .form-control label {
            margin-bottom: 12px;
            display: block;
        }

        .info2-section .per-info .form-control input {
            padding: 12px 15px;
            border-radius: 6px;
            background-color: #ebf0f5;
            border: none;
            outline: none;
            width: 100%;
            color: #393b3d;
            background: rgba(235, 240, 245, 0.4);
        }

.w-100 {
    width: 100%;
}

@media (max-width: 767px) {
    .w-100 {
        width: auto;
    }
}

@media (max-width: 767px) {
    .mobile-search-btns {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .search-container {
        -ms-flex-order: 2;
        order: 2;
        margin-top: 24px;
    }
}

.drop-container {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .drop-container {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .drop-container .dropdown-select {
        padding: 11px 21px 11px 12px;
    }
}

.filter-section.cc-type {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .filter-section.cc-type .section-container:nth-child(2) {
        margin-right: 0px;
    }

@media (max-width: 767px) {
    .filter-section.cc-type .dropdown-select {
        padding: 11px 21px 11px 12px;
    }
}

.filter-section.cc-type .date-invoice {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 24px;
}

    .filter-section.cc-type .date-invoice .date-section {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        max-width: 240px;
        border-right: 1px solid #ebf0f5;
        padding-right: 60px;
    }

@media (max-width: 767px) {
    .filter-section.cc-type .date-invoice .date-section {
        max-width: none;
        border-right: none;
        padding-right: 0px;
    }
}

.filter-section.cc-type .date-invoice .date-section img {
    margin-right: 13px;
}

.filter-section.cc-type .date-invoice .date-section .section-text2 {
    width: 100%;
    padding-left: 45px;
    padding-top: 10px;
    /*text-align: center;*/
}

@media (max-width: 767px) {
    .filter-section.cc-type .date-invoice .date-section .section-text2 {
        padding-left: 0px;
    }
}

.filter-section.cc-type .date-invoice .invoice-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    max-width: 240px;
    padding-left: 60px;
}

@media (max-width: 767px) {
    .filter-section.cc-type .date-invoice .invoice-section {
        max-width: none;
        border-right: none;
        padding-left: 0px;
    }
}

.filter-section.cc-type .date-invoice .invoice-section img {
    margin-right: 13px;
}

.filter-section.cc-type .date-invoice .invoice-section .section-text2 {
    width: 100%;
    padding-left: 41px;
}

@media (max-width: 767px) {
    .filter-section.cc-type .date-invoice .invoice-section .section-text2 {
        padding-left: 0px;
    }
}

.filter-btns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .filter-btns {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.filter-btns a {
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    margin-left: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .filter-btns a {
        margin-left: 0px;
    }
}

.filter-btns a.payinvoice {
    background-color: #147afc;
}

.filter-btns a.editpaid {
    background-color: #ecf1f8;
    color: #393b3d;
}

.filter-btns a img {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .filter-btns a img {
        margin-right: 4px;
    }
}

@media (max-width: 767px) {
    .breadcrumb > li {
        display: inline;
    }
}

.mobile-select-box {
    padding: 12px 0px;
}

    .mobile-select-box .col-xs-12 {
        display: -ms-flexbox;
        display: flex;
        border-bottom: solid 1px #e5e9ef;
        margin-bottom: 24px;
    }

        .mobile-select-box .col-xs-12 .dropdown-select {
            border: solid 1px #e5e9ef;
            background-color: transparent;
            margin-bottom: 12px;
            padding: 11px;
        }

            .mobile-select-box .col-xs-12 .dropdown-select:nth-child(2) {
                max-width: 100px;
                margin-left: 8px;
            }

@media (max-width: 767px) {
    .admin-table .table-heading {
        padding: 12px 0px;
        margin-bottom: 0px;
        display: block;
    }
}

@media (max-width: 767px) {
    .admin-table .table-heading div {
        display: none;
    }
}

@media (max-width: 767px) {
    .admin-table .table-heading div.table-student {
        display: block;
    }
}

@media (max-width: 767px) {
    .admin-table .table-pagination {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .admin-table .accordion-container .accordion-data:nth-last-child(1) {
        border-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .admin-table .accordion-container .accordion-data .accord-heading .desktop-data div {
        display: none;
    }
}

.admin-table .accordion-container .accordion-data .accord-heading .desktop-data div.table-student {
    display: block;
}

    .admin-table .accordion-container .accordion-data .accord-heading .desktop-data div.table-student div {
        display: inline-block;
    }

    .admin-table .accordion-container .accordion-data .accord-heading .desktop-data div.table-student i {
        margin-right: 20px;
        color: #147afc;
        display: none;
    }

@media (max-width: 767px) {
    .admin-table .accordion-container .accordion-data .accord-heading .desktop-data div.table-student i {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .admin-table .accordion-container .accordion-data .accord-heading .desktop-data.active + .mobile-table {
        display: block;
    }
}

.admin-table .accordion-container .accordion-data .accord-heading .desktop-data.active div.table-student i {
    color: #f74b50;
}

.admin-table .accordion-container .accordion-data .accord-heading .mobile-table {
    margin-top: 14px;
    display: none;
}

.d-none {
    display: none !important;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 1100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px #ddd solid;
    border-top: 6px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.checkbg-input {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    width: 100%;
}

.create-batch-files {
    text-align: center;
    margin: 30px 0;
}

.createbatch {
    max-width: 330px;
    height: 320px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 60% 39% 36% 58%/51% 55% 45% 45%;
    box-shadow: 0px 6px 8px -2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
}

    .createbatch.createbatch0 {
        background: #ffe9e4;
    }

    .createbatch a {
        color: #000 !important;
    }

    .createbatch.createbatch0 .numbernbox {
        background: #ff6c47;
    }

    .createbatch.createbatch1 {
        background: #e3f4fb;
    }

        .createbatch.createbatch1 .numbernbox {
            background: #41b2e3;
        }

    .createbatch.createbatch2 {
        background: #fff3d1;
    }

        .createbatch.createbatch2 .numbernbox {
            background: #fbb907;
        }

    .createbatch h2 {
        font-size: 15px !important;
        line-height: 13px;
        padding-top: 0;
        color: #000;
        margin-top: 5px;
    }

    .createbatch .numbernbox {
        position: absolute;
        right: 20px;
        top: -6px;
        width: 60px;
        height: 60px;
        color: #fff;
        line-height: 60px;
        border-radius: 50%;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
    }

    .createbatch.createbatch2 .custom_inpu .client-img button {
        top: 176px;
        font-size: 14px;
        line-height: 18px;
    }

    .createbatch.createbatch2 .client-img {
        margin-bottom: 60px;
    }

.btn-red {
    background: #ff6c47;
    color: #fff;
    padding: 0 20px 2px;
    border-radius: 25px;
}

.btn-blue {
    background: #41b2e3;
    color: #fff;
    padding: 0 20px 2px;
    border-radius: 25px;
}

.btn-yellow {
    background: #fab807;
    color: #fff;
    padding: 0 20px 2px;
    border-radius: 25px;
}

.create-main span {
    font-size: 12px;
    font-weight: 600;
    padding-top: 10px;
    display: inherit;
    text-align: center;
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .createbatch {
        height: 231px;
    }
}

@media (max-width: 767px) {
    .createbatch {
        max-width: 300px;
        height: 250px;
        margin-bottom: 50px;
    }
}

.student-accord-text1 {
    margin-top: 13px;
    margin-bottom: 28px;
}

.radio-form-margin {
    margin-top: 34px;
}

.container-data {
    margin-top: 16px;
}

    .container-data .table.shrink th {
        padding: 4px 8px;
        border-color: #eff2f7;
        background-color: #f8f9fa;
        font-size: 13px;
        color: #495057;
    }

    .container-data .table > tbody > tr > td {
        font-size: 13px;
    }

        .container-data .table > tbody > tr > td p {
            margin: 0px;
        }

        .container-data .table > tbody > tr > td a {
            color: #556ee6;
        }



.ecourse_class {
    background: #c1e0b5 !important;
    border-bottom: 1px solid #fff;
}

.virtual_class {
    border-bottom: 1px solid #fff;
}

.classroom_class {
    border-bottom: 2px solid #fff;
}

.ecourse_class td {
    border: none !important;
}

    .ecourse_class td br {
        display: none !important;
    }

@media (max-width: 767px) {

    .radio-form-margin {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    ul.back_color_info {
        padding: 18px 1px 10px 0px;
    }

        ul.back_color_info li {
            min-width: 150px;
            margin-bottom: 6px;
        }

    .filter-section.normal-filter.mobile-accord-info {
        padding: 0px;
        margin-top: 20px;
    }

        .filter-section.normal-filter.mobile-accord-info .accordion.active1 + .panel {
            padding: 18px 0px;
        }
}

.accordion {
    background: transparent;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
}

    .accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.active1:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #444;
    cursor: pointer;
    padding: 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: none;
    background: transparent;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: -10px;
}

.accordion.active1 + .panel {
    padding: 5px;
}

.text-end {
    text-align: right;
}

.accordion {
    margin-bottom: 0px;
    box-shadow: 0px 0px 5px #ccc;
}

/*.accordion.active1 + .panel {
        margin-bottom: 30px;
    }*/

.upload-photo-lic {
    margin-top: 0px;
}

.four-btn-mt {
    margin-top: 30px;
}

#mInclassDataTable.table > tbody > tr > td {
    border: none;
    padding: 12px 8px;
}

.EditEnrollStudent_form label {
    font-size: 13px;
    min-height: 21.43px;
}

.EditEnrollStudent_form .price-breakup-tbl {
    background: #f4f7fa;
    padding: 20px;
    border-radius: 10px;
}

    .EditEnrollStudent_form .price-breakup-tbl .table .bt-0 {
        border-top: none;
    }

#mInclassDataTable.table > thead > tr > th {
    border-bottom: 1px solid #f3f3f3;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

#divPay1 label {
    font-size: 12px;
}

.font-weight-semibold {
    font-weight: 600;
}

lable#lblExtraLessons {
    font-size: 12px;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.payment-details-info {
    margin-bottom: 16px;
    display: block;
    margin-top: 4px;
}

.payment_btn {
    display: flex;
    margin-top: 12px;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    font-size: 14px;
    border-top: 1px solid #f2f2f2;
}

.EditEnrollStudent_form .mobile-data-control {
    padding-right: 8px;
}

.col-lg-12.road_test {
    height: 165px;
    overflow-y: scroll;
    margin-bottom: 20px;
}

.input-group.extra-box {
    position: relative;
    border-collapse: separate;
    background: #e1f8fe;
    padding: 2px 11px !important;
    border-radius: 20px;
    padding-left: 14px;
}

.input-group.extra-box {
    position: relative;
    border-collapse: separate;
    background: #e1f8fe;
    padding: 2px 11px !important;
    border-radius: 20px;
}

    .input-group.extra-box input {
        border: none;
        background-color: #e1f8fe;
        text-align: center;
    }

    .input-group.extra-box span {
        padding: 0px;
    }

        .input-group.extra-box span a {
            border: none;
            background: transparent;
            padding: 0px 10px;
            display: inline-block;
            margin-top: -4px;
        }

            .input-group.extra-box span a:hover {
                border: none;
                background: transparent;
            }

ul.back_color_info {
    margin: 10px 0 0 0;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

#lnkAdd.four-btn-mt {
    margin-top: 28px;
}

.mt-28 {
    margin-top: 28px;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

@media (min-width: 768px) {
    .col-md-2-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 17.88888%;
    }
}

.col-md-2-5 .card {
    -webkit-box-shadow: 0px 0px 3px #ccc;
    box-shadow: 0px 0px 3px #ccc;
    margin: 5px 10px;
    border-radius: 10px;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.pt-3 {
    padding-top: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.fw-medium {
    font-weight: 500;
}

.font-size-20 {
    font-size: 20px !important;
}

.text-center {
    text-align: center !important;
}

.text-darkgreen {
    color: #048101 !important;
}

.text-darkred {
    color: #f46a6a !important;
}

.m-t-28 {
    margin-top: 28px;
}

@media (max-width: 767px) {
    .fd-column {
        flex-direction: column;
    }

    .col-mob {
        width: 100%;
    }

    .table-responsive {
        margin-top: 20px;
    }

    .form-group.col-xs-6.col-md-6.text-center.mb-0 h3 {
        font-size: 15px;
    }

    #ddlBatchType, #ddlType {
        margin: 10px 0px;
    }

    tr.shrink-wrapper > td div.shrinked-row br {
        display: none;
    }

    .EditEnrollStudent_form .mobile-data-control {
        text-align: center;
        padding-right: 0px;
    }

    .custom-img-upload-lic.img-fulid {
        height: auto !important;
        width: 290px !important;
        margin-bottom: 16px;
    }

    .mob-gap {
        margin-bottom: 8px;
    }

        .mob-gap a {
            margin: 0px 4px;
        }

    .EditEnrollStudent_form .price-breakup-tbl {
        margin-top: 20px;
    }

    .row.mt-2 .checkbg-input {
        flex-direction: column;
    }
}

.filter-section.cc-type .date-invoice.royalty-web {
    margin-top: 0px;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .filter-section.cc-type .date-invoice.royalty-web {
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .filter-section.cc-type .date-invoice.royalty-web .section-text2 {
            margin-top: 20px;
            padding-left: 90px;
        }
}

.filter-section.cc-type .date-invoice.royalty-web .date-section.royalty-box {
    max-width: none;
    border-right: 1px solid #ebf0f5;
    padding: 0px 30px;
    flex: 1;
}

.filter-section.cc-type .date-invoice.royalty-web .date-section.royalty-box-last {
    max-width: none;
    border-right: 0px solid #ebf0f5;
    padding: 0px 30px;
}

.filter-section.cc-type.royalty-web-top {
    padding: 0px;
}

    .filter-section.cc-type.royalty-web-top .date-invoice.royalty-web {
        border-radius: 18px;
        overflow: hidden;
        min-height: 160px;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 767px) {
    .filter-section.cc-type.royalty-web-top .date-invoice.royalty-web {
        padding: 20px 0px 0px;
    }
}

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web .date-section.royalty-box {
    padding: 0 28px 0 28px;
}

@media (max-width: 767px) {
    .filter-section.cc-type.royalty-web-top .date-invoice.royalty-web .date-section.royalty-box {
        padding: 20px 30px;
        border: none;
        min-width: 100%;
    }
}

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web .date-section.royalty-box-last {
    padding: 40px 0px 40px 0px;
    background-color: #ffeaea;
    min-height: 160px;
}

.totaldifference {
    background-color: #ffeaea !important;
}

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web .date-section.royalty-box-last .section-text2 {
    color: #f74b50;
}

@media (max-width: 767px) {
    .filter-section.cc-type.royalty-web-top .date-invoice.royalty-web .date-section.royalty-box-last {
        padding: 20px 60px;
        min-height: auto;
    }

    .text-end .btn-primary {
        margin-bottom: 4px;
    }
}

.mt-2 {
    margin-top: 10px !important;
}

.mt-3 {
    margin-top: 16px !important;
}

.mb-3 {
    margin-bottom: 16px !important;
}

.mt-4 {
    margin-top: 24px !important;
}

.card-title {
    font-size: 15px;
    margin: 0 0 7px 0;
    font-weight: 600;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 20px;
}

.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.px-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}


.card {
    margin-bottom: 24px;
    -webkit-box-shadow: 0 12px 24px rgb(18 38 63 / 3%);
    box-shadow: 0 12px 24px rgb(18 38 63 / 3%);
}

input[type="file"].form-control {
    max-height: 40px;
    padding: 8px 12px;
}

.m-1 {
    margin: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.border {
    border: 1px solid #eff2f7 !important;
}

.mx-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid #f6f6f6;
    border-radius: 4px;
}

.p-1 {
    padding: 4px !important;
}

.card-title h6 {
    color: #495057;
    font-size: 12px;
    font-weight: 500;
}

.form-check {
    display: block;
    min-height: 18px;
    padding-left: 24px;
    margin-bottom: 2px;
}

.form-check-inline {
    display: inline-block;
    margin-right: 16px;
}

.form-check {
    position: relative;
    text-align: left;
}

.form-label {
    margin-bottom: 8px;
}

.form-check .form-check-input {
    float: left;
    margin-left: -20px;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

textarea.form-control {
    min-height: 55px;
}

.file-up .form-control[type=file] {
    overflow: hidden;
    padding: 0px;
}

.file-up input[type=file]::file-selector-button {
    border: 0px;
    border-right: 0px solid #eff2f7;
    padding: 8px 16px;
    background-color: #eff2f7;
    transition: 1s;
    min-height: 40px -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.btn-light {
    color: #000;
    background-color: #eff2f7;
    border-color: #eff2f7;
}

    .btn-light img {
        margin-right: 4px;
    }

.left-folder .text-warning {
    color: #f1b44c !important;
}

.left-folder li a {
    display: block;
    padding: 8px 12px;
    color: #495057;
    font-weight: 500;
}

.text-danger {
    color: #ff0500 !important;
    font-size: 18px !important;
    margin-left: 5px;
}

.text-success {
    color: #34c38f !important;
    font-size: 18px !important;
    margin-left: 5px;
}

/* header fixing  */
@media (max-width: 767px) {
    .sidebar-mini .main-header {
        margin-bottom: 100px;
    }

    .header-right.admin-header .form-control.select.mb-0.input01 {
        position: absolute;
        top: 70px;
        left: -254px;
        width: 95vw;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            top: 120px;
            position: absolute;
            left: -254px;
            width: 95vw;
        }
}

@media (max-width: 700px) {
}

@media (max-width: 600px) {
}

@media (max-width: 500px) {
}

@media (max-width: 420px) {
    .header-right.admin-header .form-control.select.mb-0.input01 {
        left: -308px;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            left: -308px;
        }
}

@media (max-width: 395px) {
    .header-right.admin-header .form-control.select.mb-0.input01 {
        left: -285px;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            left: -285px;
        }
}

@media (max-width: 380px) {
    .header-right.admin-header .form-control.select.mb-0.input01 {
        left: -270px;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            left: -270px;
        }
}

@media (min-width:0px) and (max-width: 320px) {

    .header-right.admin-header .form-control.select.mb-0.input01 {
        left: -218px;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            left: -218px;
        }
}

@media (min-width:321px) and (max-width: 330px) {

    .header-right.admin-header .form-control.select.mb-0.input01 {
        left: -218px;
    }

        .header-right.admin-header .form-control.select.mb-0.input01 + .form-control.select.mb-0.input02 {
            left: -218px;
        }
}

@media (max-width: 1500px) {
    .filter-section.cc-type.royalty-web-top.royalty-box-value .date-invoice.royalty-web .date-section.royalty-box, .filter-section.cc-type.royalty-web-top.royalty-box-value .date-invoice.royalty-web .date-section.royalty-box-last {
        padding: 0 15px 0 15px;
        align-content: center;
    }
}

@media (max-width: 1400px) {
}

@media (max-width: 1300px) {
    .filter-section.cc-type.royalty-web-top.royalty-box-value .date-invoice .section-text1 {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
}

@media (max-width: 1100px) {
}

.royalty-txt-box input.form-control {
    padding: 11px 5px;
    font-size: 13px;
    height: 28px;
    text-align: center !important;
}

p.inoutboxnew {
    padding: 0 10px;
    padding-top: 5px;
}

.royalty-txt-box td, .royalty-txt-box th {
    padding: 0;
    vertical-align: text-top;
}


.inoutboxnew label {
    padding: 11px 5px;
    font-size: 12px;
    height: 28px;
    line-height: 1px;
}

.royalty-box-value.filter-section.cc-type .date-invoice .section-text2 {
    font-size: 25px;
}

remaininglocationchk {
    display: inline-block !important;
}

.mainnamedivhovername {
    position: relative;
}

    .mainnamedivhovername .mainshowbox {
        display: none;
        position: absolute;
        top: 50px;
        left: 0px;
        z-index: 1010;
        font-style: normal;
        font-weight: 400;
        letter-spacing: normal;
        line-break: auto;
        line-height: 1.5;
        text-align: left;
        text-decoration: none;
        text-shadow: none;
        text-transform: none;
        white-space: normal;
        word-break: normal;
        word-spacing: normal;
        word-wrap: normal;
        box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
        padding-bottom: 5px;
        width: 350px;
    }

    .mainnamedivhovername:hover .mainshowbox {
        display: block;
    }

.quick-info .imgbox {
    float: left;
    background-color: #fdfdfd;
    text-align: center;
    padding: 5px;
    width: 130px;
}

.card img {
    border-radius: 0.25rem 0.25rem 0 0;
}

.modal-lg {
    width: 90% !important;
}

.crapproved {
    color: #398439 !important;
}

.crrejected {
    color: #ac2925 !important;
}

.crpending {
    color: #d58512 !important;
}



.quick-info .imgbox img {
    width: 100%;
    max-width: 120px;
}

.quick-info .card-body {
    float: left;
    padding: 10px 10px 10px 2px !important;
    max-width: 216px;
}


.quick-info h5 {
    font-size: 13px !important;
    text-align: left;
    color: #135d9a;
    padding-left: 5px;
    max-width: 100%;
    word-break: break-all;
}

.quick-info .card-body .card-text {
    font-size: 12px !important;
    margin-bottom: 5px;
    word-break: break-all;
    max-width: 100%;
    clear: left;
}

.quick-info .card-body .fa {
    margin-right: 4px;
}

.quick-info span.fa {
    margin-left: 5px;
    margin-right: 5px;
}

.table-pagination-update {
    margin-top: 0px !important;
    padding-top: 0px !important;
    border-top: none !important;
}

.table-pagination-update-border {
    border-top: 1px solid #ebf0f5 !important;
}

.totalpayment {
    margin-top: 20px !important;
}



/*Hiren css star 20-01*/

.maindashboardheader {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    margin: 10px;
}

    .maindashboardheader h4.page-title {
        margin: 0;
        margin-bottom: 4px;
    }

    .maindashboardheader .breadcrumb {
        padding: 8px 15px;
        margin-bottom: 20px;
        list-style: none;
        border-radius: 4px;
        padding-left: 0;
        margin: 0;
        padding: 0;
    }


.mainnewfiltertop {
    display: flex;
    justify-content: space-between;
}

.mainrightsidetopbar {
    display: flex;
    justify-content: end;
    align-items: end;
}

.contaentmain {
    display: flex;
    /* align-items: center; */
}

.commondashboardbox {
    border: 1px solid #1b7cf9;
    border-radius: 20px;
    background-color: #ebf4ff;
    padding: 20px;
}

.contaentmain img {
    width: 32px;
    margin-right: 10px;
}

.contaentmain .section-text1 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    color: black;
}


.contaentmain .section-text2 {
    font-size: 21px;
    margin-bottom: 0;
    font-weight: 700;
}

.newacordiandasboard {
    margin-bottom: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin-top: 10px;
}

    .newacordiandasboard .card {
        padding: 20px;
        border-radius: 20px;
    }

    .newacordiandasboard h2 {
        margin: 0;
    }


    .newacordiandasboard .acordiantitle {
        text-align: left;
        font-size: 17px;
        color: #454545 !important;
        padding: 0;
        font-weight: 600;
    }



    .newacordiandasboard button:hover {
        color: #23527c;
        text-decoration: none;
        outline: 0;
        background-color: transparent;
    }

    .newacordiandasboard .card-body {
        padding: 0;
        margin-top: 20px;
    }

.mainaccordiannewtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-20 {
    margin-top: 20px;
}

.accordion.newacordiandasboard:after {
    display: none;
}

.mainheaderrow {
    display: flex;
    align-items: center;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-sm-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-sm-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-sm-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-sm-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-sm-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-sm-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-md-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-md-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-md-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-md-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-md-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-md-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .offset-md-2 {
        margin-left: 16.666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-lg-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-lg-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-lg-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-lg-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-lg-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-lg-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-xl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-xl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

@media (max-width:576px) {

    .commondashboardbox {
        margin-bottom: 20px;
    }
}





/*responsive start*/

@media (max-width:992px) {

    .totalpayment {
        margin-top: 5px !important;
        margin-bottom: 0;
        text-align: left !important;
    }

    .mainrightsidetopbar {
        margin-top: 20px;
    }

    .mainheaderrow {
        display: block;
        align-items: center;
    }

    .mainnewfiltertop {
        justify-content: space-between;
    }

    .commondashboardbox {
        margin-bottom: 20px;
    }

    .mainrightsidetopbar {
        display: flex;
        justify-content: start;
        align-items: end;
    }
}



.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


#lblAddonsDetail {
    font-weight: unset !important;
    font-size: 13px !important;
}

#lblExtraLessonDetail {
    font-weight: unset !important;
}

.mainnamedivhovername h5 {
    margin-top: 2px !important;
}


#staticBackdrop .modal-header {
    display: flex;
    justify-content: space-between;
}

    #staticBackdrop .modal-header:after {
        display: none;
    }


    #staticBackdrop .modal-header:before {
        display: none;
    }

#lblstuimg {
    /*width: 150% !important;*/
    margin-left: -1pc;
}

#lblInsimg {
    width: 100% !important;
    margin-left: 0pc;
}

.demo {
    width: 100% !important;
}

.btn-info {
    color: #fff !important;
}

.btn-success {
    color: #fff !important;
}

.btn-danger {
    color: #fff !important;
}

.input01mobile {
    position: absolute;
    width: 160px;
    right: 314px;
    top: 16px;
    z-index: 1012;
}

.input02mobile {
    position: absolute;
    width: 160px;
    right: 142px;
    top: 16px;
    z-index: 1012;
}

.editback_color_info {
    padding: 0;
}


@media (max-width: 767px) {

    .mainnewresponsivepanel .col-md-3 {
        width: 100%;
    }

    .mainnamedivhovername:hover .mainshowbox {
        display: none;
    }

    .mainnewresponsivepanel .contenthide {
        display: none;
    }

    .mainnewresponsivepanel .col-md-2 {
        width: 100%;
    }

    .btn-info {
        margin-bottom: 5px;
        width: 30% !important;
    }

    .text-end .btn-primary {
        margin-bottom: 0;
    }

    .btn-success {
        margin-bottom: 0px;
        margin-left: 3px !important;
        width: auto !important;
        margin-right: 3px;
        padding: 2px 10px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .btn-danger {
        margin-left: 3px !important;
        width: auto !important;
        margin-right: 3px;
        padding: 2px 10px;
        font-size: 11px;
    }

    .btn-dangeredit {
        margin-left: 3px !important;
        width: auto !important;
        margin-right: 3px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .four-btn-mt a {
        width: auto !important;
    }

    tr.shrink-wrapper > td div.shrinked-row div {
        display: inherit !important;
    }

        tr.shrink-wrapper > td div.shrinked-row div a {
            margin-bottom: 0 !important;
            margin-right: 15px !important;
        }

    .col-md-12 {
        width: 100%;
    }

    .mainnamedivhovername .mainshowbox {
        display: none;
        position: absolute;
        top: 50px;
        right: -3px;
        z-index: 1010;
        font-style: normal;
        font-weight: 400;
        letter-spacing: normal;
        line-break: auto;
        line-height: 1.5;
        text-align: left;
        text-decoration: none;
        text-shadow: none;
        text-transform: none;
        white-space: normal;
        word-break: normal;
        word-spacing: normal;
        word-wrap: normal;
        box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
        padding-bottom: 5px;
        width: 260px;
        left: inherit;
    }

    .quick-info .imgbox {
        float: left;
        background-color: #fdfdfd;
        text-align: center;
        padding: 5px;
        width: 67px;
    }

    .input01mobile {
        position: absolute;
        width: 93%;
        top: 82px !important;
        right: 0;
        left: 12px;
        margin-right: 19px;
        top: 16px;
        z-index: 1;
    }

    .input02mobile {
        position: absolute;
        width: 93%;
        top: 130px !important;
        right: 0;
        left: 12px;
        margin-right: 19px;
        top: 16px;
        z-index: 1;
    }
}

@media (min-width:768px) and (max-width:991px) {

    #btnDownloadPDF {
        margin-top: 10px;
    }

    #lnkNotifyStudent {
        margin-top: 10px;
    }

    .main-header .logo {
        width: 100px;
    }

    .main-header .sidebar-toggle {
        left: 46px;
        top: 12px;
    }
}
/*responsive end*/
header .header-right {
    justify-content: flex-end;
}

.mainnewresponsivepanel {
    min-height: 0;
}

#btnReattemptTest {
    line-height: 1.3 !important;
    padding: 2px 4px !important;
}


.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.p-0 {
    padding: 0 !important;
}



.newtableresponsiveclasscollops td {
    vertical-align: middle !important;
}

.newtableresponsiveclasscollops tr.collapsed {
    background-color: rgb(227 227 227 / 30%);
}

.downloadtextbtnedit {
    display: flex;
    align-items: center;
    padding-top: 21px !important;
}


.newtableresponsiveclasscollops .shrink-toggle-all {
    display: none !important;
}

.newtableresponsiveclasscollops .shrink-toggle {
    display: none !important;
}


.four-btn-mtneww {
    margin-top: 10px;
}



.mainnewcardedit {
    border: 1px solid #cccc;
    border-radius: 10px;
    padding: 10px;
    display: none;
    margin-bottom: 10px;
}

    .mainnewcardedit .countnew {
        background-color: #e9e9e9;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        height: 30px;
        /* margin-right: 15px; */
    }

    .mainnewcardedit .col-6 {
        width: 50%;
    }

    .mainnewcardedit.in-class .col-4 {
        width: 33%;
    }

    .mainnewcardedit.in-class .row {
        margin: 0;
        margin-left: 0px;
    }

    .mainnewcardedit .row {
        width: auto;
        margin: 0;
        margin-left: 14px;
    }

    .mainnewcardedit h6.title {
        font-size: 12px;
        color: gray;
        font-weight: 600;
        margin: 0;
    }

    .mainnewcardedit h6.Discription {
        font-size: 12px;
        color: black;
        font-weight: 600;
        margin-top: 5px;
        margin-bottom: 0;
    }


/*.newdahbordfixheight {
    height: 627px;
    overflow-y: scroll;
}*/

.newdahbordfixheight::-webkit-scrollbar {
    width: 3px;
}

.newdahbordfixheight::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.newdahbordfixheight::-webkit-scrollbar-thumb {
    background: #ccc;
}

    .newdahbordfixheight::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

#spandatatable {
    font-size: 18px;
    font-weight: 600;
}




.btnrightsidetop {
    display: flex;
    justify-content: flex-end;
}


.last-total-difference {
    display: flex;
    padding-left: 30px;
    padding-right: 40px;
}


    .last-total-difference img {
        width: 32px;
        height: 32px;
    }

    .last-total-difference .section-text2 {
        padding-left: 0 !important;
    }





.mainnewheadertop {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

    .mainnewheadertop .first {
        display: flex;
        align-items: center;
    }

.amountnewbox {
    border-right: 1px solid #c5c5c5;
    padding-right: 7px;
    margin-right: 7px;
    text-align: right;
}

    .amountnewbox:last-child {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

.mainnewheadertop .second {
    display: flex;
}

.amountnewbox .title {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 5px !important;
    color: #939393;
    margin: 0 !important;
}

.amountnewbox .amount {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: black;
    display: block;
}

.mainnewheadertop .count {
    margin: 0 9px;
}

@media (max-width:1023px) {
    .mainnewheadertop {
        display: block;
    }

        .mainnewheadertop .second {
            display: flex;
            margin-top: 5px;
            margin-left: 43px;
        }
}

@media (max-width:767px) {
    .mobile-search-btnsnewedit .title {
        margin-bottom: 5px !important;
        display: block;
    }

    .mobile-search-btnsnewedit {
        width: 100%;
    }

        .mobile-search-btnsnewedit .btn-info {
            margin-bottom: 5px;
            width: auto !important;
            margin-top: 10px;
        }

    .filter-btns {
        display: block;
    }

    .accordion-data .accord-drop {
        width: 25px;
        height: 25px;
    }

    .mainnewheadertop {
        display: block;
        position: relative;
    }

        .mainnewheadertop .first a {
            position: absolute;
            right: 0;
        }

        .mainnewheadertop .second {
            display: flex;
            margin-top: 10px;
            margin-left: 29px;
        }

    .amountnewbox .title {
        font-size: 11px;
    }

    .amountnewbox .amount {
        display: block;
    }
}

.d-nonenew.visible-xs {
    display: none !important;
}


.mobile-search-btnsnewedit .title {
    white-space: nowrap;
    margin-right: 10px;
}




.royalty-box-value-new .date-section.royalty-box {
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}

.royalty-box-value-new .section-text2 {
    padding-left: 0 !important;
}

.royalty-box-value-new .date-invoice .section-text1 {
    font-size: 13px;
}

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web {
    align-items: flex-start !important;
}

.filter-section.cc-type.royalty-web-top.royalty-box-value-new .date-invoice.royalty-web .date-section.royalty-box {
    padding: 20px 12px 20px 12px !important;
    min-height: auto !important;
    flex: 0 0 16.66%;
    max-width: 16.66%;
}


.filter-section.cc-type.royalty-web-top.royalty-box-value-new .date-invoice.royalty-web {
    min-height: 100%;
    flex-wrap: wrap;
}

.royalty-box-value-new .date-invoice .section-text1 {
    font-size: 13px;
    height: 37.13px;
}

.filter-section.cc-type.royalty-web-top.royalty-box-value-new .date-invoice.royalty-web .date-section.royalty-box:last-child {
    background-color: #ffeaea;
}

@media (max-width: 1330px) {
    .filter-section.cc-type.royalty-web-top.royalty-box-value-new .date-invoice.royalty-web .date-section.royalty-box {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        border-bottom: 1px solid #ebf0f5;
    }
}

@media (min-width:576px) and (max-width: 767px) {
    .filter-section.cc-type.royalty-web-top.royalty-box-value-new .date-invoice.royalty-web .date-section.royalty-box {
        flex: 0 0 50%;
        max-width: 50%;
        border-bottom: 1px solid #ebf0f5;
    }
}


.royalty-box-value.filter-section.cc-type .date-invoice .section-text2 {
    font-size: 20px;
}





@media (max-width: 767px) {
    .borderdividernew {
        border-bottom: 1px solid #ccc;
    }
}

.divnorecord {
    margin-top: 60px !important;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

#mDataTable {
    margin-bottom: -35px !important;
}

.new-with {
    max-width: 25% !important;
    flex: 0 0 25% !important;
}


.singal_text_main input {
    margin-left: 0 !important;
    margin-right: 9px;
}

/*.form-control {
    padding: 0px 12px !important;
}*/

/*.form-control.form-control-new-edit {
        padding: 8px 12px !important;
    }*/

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}


.cashstudentlist a {
    word-break: break-all;
    color: #3c8dbc !important;
}

.mainatagcolor {
    color: #3c8dbc !important;
}

.newtableresponsiveclasscollopsnew td.icontablecollopse {
    width: 50px;
    padding-right: 0;
    padding-left: 25px !important;
    position: relative;
}

    .newtableresponsiveclasscollopsnew td.icontablecollopse::after {
        left: 5px;
        background-color: #ffffff;
    }

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web.royalty-web-box-new .date-section.royalty-box {
    padding: 20px 30px;
}

@media (max-width:767px) {
    .butonsenrolnoww {
        text-align: start;
    }

    .new_small_btn {
        width: auto !important;
        margin-right: 3px;
        padding: 2px 10px;
        font-size: 11px;
    }

    tr.shrink-wrapper > td div.shrinked-row .button-items-tobe a {
        padding: 2px 10px !important;
        font-size: 11px !important;
        width: auto !important;
        margin-right: 5px !important;
    }

    .main_top_card_ces {
        margin-top: 15px;
    }

    .filter-section.cc-type.royalty-web-top .date-invoice.royalty-web.royalty-web-box-new .date-section.royalty-box {
        padding: 10px 10px;
        border-bottom: 1px solid #cccc;
    }
}

.royalty-web-box-new {
    min-height: auto !important;
}



.maincashstudentbox {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

    .maincashstudentbox .newcommondashboardbox {
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 12px;
    }

    .maincashstudentbox .regularcashpayment {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 12px;
    }

    .maincashstudentbox .commondashboardbox {
        height: 100%;
    }


@media (max-width:767px) {
    .maincashstudentbox .newcommondashboardbox {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 12px;
        margin-bottom: 20px;
    }

    .regularcashpayment {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .breadcrumb {
        margin-bottom: 5px;
    }

    .page-title {
        margin-bottom: 0px;
    }

    .royalty-box-value-new .date-invoice.LocationPayrollSummarybox .section-text1 {
        height: auto;
    }

    .filter-section.cc-type .date-invoice.royalty-web.LocationPayrollSummarybox .section-text2 {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .maincashstudentbox .commondashboardbox {
        height: auto;
        margin-bottom: 0;
    }

    .aldbtnmain {
        margin-left: 0 !important;
    }

        .aldbtnmain a {
            padding: 6px 12px;
            font-size: 14px;
            margin: 11px 0;
            width: 100% !important;
        }
}

@media (min-width:768px) and (max-width:991px) {
    .maincashstudentbox .newcommondashboardbox {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 12px;
        margin-bottom: 20px;
    }
}

@media (min-width:767px) {
    .d-md-flex {
        display: flex;
    }
}


.mainnewresponsivepanel {
    min-height: 0;
    margin: 0 !important;
    box-shadow: none;
    border: 0 !important;
    padding-bottom: 0 !important;
}

    .mainnewresponsivepanel .card {
        box-shadow: none;
        border: 0 !important;
        margin: 0 !important;
    }

.accordion.active1 + .panel.mainnewresponsivepanel {
    max-height: inherit !important;
}

.mainnewresponsivepanel .card-body {
    box-shadow: none;
    border: 0 !important;
    padding: 0 !important;
}

.mainnewresponsivepanel form {
    margin: 0 !important;
}

.collectedby {
    margin-top: 5px;
    margin-bottom: 5px;
}



.main_box_modal_head {
    align-items: center;
    padding: 10px 0px;
}

    .main_box_modal_head h3 {
        margin: 0;
        font-size: 23px;
        font-weight: 500;
        color: black;
    }

    .main_box_modal_head h4 {
        margin: 0;
        text-align: end;
    }


    .main_box_modal_head label {
        margin: 0;
    }

.pagination-right {
    margin-top: 15px;
}

@media (max-width:767px) {

    .pagination-right {
        margin-top: 0px;
    }

    .newtableresponsiveclasscollops th {
        font-size: 12px !important;
    }

    .newtableresponsiveclasscollops td {
        font-size: 12px !important;
    }

    .newtableresponsiveclasscollops h5 {
        font-size: 12px !important;
    }

    .newtableresponsiveclasscollops p {
        font-size: 12px !important;
    }

    .icontablelock i {
        font-size: 12px !important;
    }

    .table-pagination-update-border .form-group {
        width: 100%;
    }

    .newtableresponsiveclasscollopsnew input[type="checkbox"] {
        margin: 4px 0 0;
        margin-top: 1px \9;
        line-height: normal;
        position: relative;
        top: 2px;
    }

    .newtableresponsiveclasscollopsnew th input[type="checkbox"] {
        position: relative;
        top: -4px;
    }
}



.main-form-detailslocation {
    margin-top: 0;
}

@media (max-width:767px) {
    .main-form-detailslocation {
        margin-top: 30px;
    }

    .mainfilterdivheader {
        position: fixed;
        width: 100%;
        top: 70px;
        padding-top: 9px;
        height: 61px;
        background-color: #f4f7fa;
        gap: 0;
        padding: 15px;
        justify-content: space-between;
        display: flex;
    }

        .mainfilterdivheader .form-control.select {
            padding: 0px;
            max-height: max-content;
            position: initial;
            width: 48%;
            min-width: 48%;
            margin: 0;
            height: fit-content;
        }
}



.ui-state-default {
    box-shadow: none !important;
    padding: 12px !important;
}

.accordion {
    box-shadow: none !important;
    padding: 12px !important;
}

#StudentOldCarSheetModel .modal-header {
    justify-content: flex-start;
}

    #StudentOldCarSheetModel .modal-header h5 {
        font-size: 16px;
        font-weight: 500;
    }

@media (max-width:767px) {
    .ui-state-default {
        box-shadow: none !important;
        padding: 12px !important;
        font-size: 14px !important;
    }

    .accordion {
        box-shadow: none !important;
        padding: 12px !important;
        font-size: 14px !important;
    }
}

.mainbuttonviewmoregroup {
    display: flex;
    align-items: center;
}

    .mainbuttonviewmoregroup a {
        margin-right: 10px;
    }

.main_new_amount_boxes .main_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-right: 50px;
    cursor: pointer;
}

    .main_new_amount_boxes .main_head .total_heading {
        font-size: 19px;
        font-weight: 600;
    }


    .main_new_amount_boxes .main_head .total_amount {
        font-size: 14px;
        font-weight: 600;
        color: #00aa00;
        padding: 5px 17px;
        border: 1px solid #00aa00;
        border-radius: 5px;
    }

    .main_new_amount_boxes .main_head .maindown_arrow {
        font-size: 14px;
        background-color: whitesmoke;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        position: absolute;
        right: 0;
    }



.main_summary_amount_box {
    display: flex;
}

.table_head_bg {
    background-color: whitesmoke;
}

.table_footer_bg {
    background-color: #ebf4ff;
}

.main_amount_table {
    padding-top: 10px;
}

.main_new_amount_boxes tbody tr td:first-child {
    font-weight: 600;
}

.main_new_amount_boxes thead th {
    border: none !important;
}

.main_title_table_new {
    width: auto !important;
}


.main_new_amount_boxes tr.shrink-wrapper > td div.shrinked-row > div > div:nth-child(odd) {
    width: 100%;
    font-weight: 800;
    font-size: 12px;
    padding-bottom: 0;
}

.main_new_amount_boxes tr.shrink-wrapper > td div.shrinked-row > div > div:nth-child(even) {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
    margin-bottom: 4px;
    padding-top: 0;
    color: gray;
}

@media (max-width:767px) {
    .main_new_amount_boxes .main_head {
        display: block;
    }

    .main_summary_amount_box {
        display: block;
    }

    .amountnewbox {
        border-right: none;
        padding-right: 7px;
        margin-right: 7px;
        text-align: left;
        margin-top: 10px;
    }

    .main_new_amount_boxes .main_head .maindown_arrow {
        top: 0;
    }

    .main_new_amount_boxes .main_head .total_heading {
        font-size: 15px;
    }
}

.amountnewbox .amount span {
    display: block;
    font-size: 11px;
    color: black;
}

.mainbuttonviewmoregroup {
    display: flex;
    align-items: center;
}

#MPProgramScheduleTiming {
    display: none;
}

.mainbuttonviewmoregroup a {
    margin-right: 10px;
}

.classroomtype {
    display: block;
    margin-bottom: 13px;
}

.sessionall {
    margin-left: -18px !important;
}

.sessionmain {
    margin-left: -5px !important;
}

.includedwithprogram {
    margin-left: 24px !important;
    margin-bottom: -5px;
    padding-left: 0;
    margin-right: 0;
}

.cityOfroadtestsave {
    margin-top: 30px;
}

#lnkDeleteRow {
    padding: 1px 10px;
}

#lnkEditRow {
    padding: 1px 10px;
    margin: 0px 5px;
}

.programnameclass {
    display: none;
    color: black;
    font-weight: 600;
    font-size: 10px;
}

.registrationnumberclass {
    color: black;
    font-weight: 600;
    font-size: 12px;
}

@media (max-width:767px) {
    .content p {
        padding: 10px 15px;
        margin: 0;
        font-size: 11px;
        color: #333;
        height: 52px;
    }

    .programnameclass {
        display: block;
    }

    .registrationnumberclass {
        display: none;
    }

    .royalty-txt-box input.form-control {
        padding: 5px 5px;
        font-size: 10px;
        height: 24px;
        text-align: center !important;
    }

    .royalty-txt-box td, .royalty-txt-box th {
        padding: 0;
        vertical-align: text-top;
        width: 97px !important;
    }

    .royaltytable {
        table-layout: fixed;
    }
}

.chkisactive {
    margin-top: 34px;
}

#lnkSend {
    margin-top: 25px;
}

span.badge.badge-pill.badge-soft-success.font-size-12 {
    background-color: #ffd86e70 !important;
    color: #d98c6a !important;
    font-size: 10px;
    border-radius: 5px !important;
    padding: 4px 5px 5px !important;
}

span.badge.badge-pill.badge-soft-danger.font-size-12 {
    background-color: #b3c6e569 !important;
    color: #3984ff !important;
    font-size: 10px;
    border-radius: 3px !important;
    padding: 4px 5px 5px !important;
}

.badge {
    padding: 5px 10px !important;
}



.justify-content-end-new-test {
    justify-content: end;
}

.carsheetmodalgrid .row {
    width: 86%;
    word-break: break-all;
}

.carsheetmodalgrid {
    display: none;
}

@media (max-width:767px) {
    .carsheetmodalgrid {
        display: block;
    }

    .carsheetmodallist {
        display: none;
    }

    .justify-content-end-new-test {
        justify-content: start;
    }

    .chkisactive {
        margin-top: 5px;
    }

    .newcheckroadtest {
        padding-left: 0;
    }

    .cityOfroadtestsave {
        margin-top: 10px;
    }
}



.content-wrapper {
    min-height: auto !important;
}

@media (min-width: 1200px) {

    .fivegrid .col-xl-2 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}


.programfeeslayoutmain h3 {
    font-size: 18px;
    margin: 10px 0;
}

    .programfeeslayoutmain h3 label {
        font-weight: 500;
    }

span.hexa {
    margin-left: 31px;
    font-size: 9px;
}

#signaturePad {
    font-size: 12px;
    padding: 0px 10px 0px 10px;
    font-weight: 800;
    margin-bottom: 2px;
    color: black;
    position: absolute;
}

.signaturepad {
    border: 2px solid #737373;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.selectsignaturenew label.fontF1 {
    font-size: 42px;
    font-weight: 100;
}


#signaturePad.fontF1 {
    font-size: 42px !important;
    top: -4px;
}

.selectsignaturenew label.fontF2 {
    font-size: 42px;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: black !important;
        font-weight: 200;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #1b82ec;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }




#signaturePad.fontF2 {
    font-size: 42px !important;
    top: -4px;
}

.selectsignaturenew label.fontF3 {
    font-size: 40px;
}


#signaturePad.fontF3 {
    font-size: 40px !important;
    top: 3px;
}

.selectsignaturenew label.fontF4 {
    font-size: 20px;
}


#signaturePad.fontF4 {
    font-size: 20px !important;
    top: 14px;
}


.selectsignaturenew label.fontF5 {
    font-size: 34px;
}


#signaturePad.fontF5 {
    font-size: 34px !important;
    top: 4px;
}


.selectsignaturenew label.fontF6 {
    font-size: 38px;
}


#signaturePad.fontF6 {
    font-size: 38px !important;
    top: -2px;
}

.selectsignaturenew label.fontF7 {
    font-size: 25px;
}


#signaturePad.fontF7 {
    font-size: 25px !important;
    left: 13px;
    top: 10px;
}

.selectsignaturenew label.fontF7 {
    font-size: 28px;
}


#signaturePad.fontF7 {
    font-size: 28px !important;
    top: 9px;
}

.selectsignaturenew label.fontF7 {
    font-size: 24px;
}


#signaturePad.fontF7 {
    font-size: 24px !important;
    top: 11px;
}

.selectsignaturenew label.fontF8 {
    font-size: 32px;
}


#signaturePad.fontF8 {
    font-size: 32px !important;
    top: 8px;
}

.selectsignaturenew label.fontF9 {
    font-size: 23px;
}


#signaturePad.fontF9 {
    font-size: 23px !important;
    top: 13px;
    left: 13px;
}



.selectsignaturenew label.fontF10 {
    font-size: 39px;
}


#signaturePad.fontF10 {
    font-size: 39px !important;
    top: -1px;
}

.selectsignaturenew label.fontF11 {
    font-size: 24px;
}


#signaturePad.fontF11 {
    font-size: 24px !important;
    top: 13px;
}

.signature-box-radio-main {
    border: 1px solid #dfe5f2;
    border-radius: 5px;
    height: 221px;
    overflow-y: scroll;
}

    .signature-box-radio-main .form-check.pl-0 {
        border-bottom: 1px solid #dfe5f2;
        padding: 13px 13px !important;
    }

    .signature-box-radio-main input {
        outline: none;
        position: absolute !important;
        /* left: 22px; */
        margin: 0;
        top: 2px;
        border: none;
        padding: 0;
        opacity: 0;
        z-index: -1 !important;
    }

.sin_contact_fild {
    margin-bottom: 20px;
}


    .sin_contact_fild label {
        width: 100%;
        font-size: 14px;
        text-align: left;
        margin-bottom: 0.5rem;
        font-family: 'tahoma-bold';
        color: #233579;
    }




.signature-box-radio-main::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.signature-box-radio-main::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.signature-box-radio-main::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    .signature-box-radio-main::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.m-t-20 {
    margin-top: 20px;
}

#divSignaturePad {
    margin-top: 40px;
}

.modal-dialog.modelwithsign {
    width: 80%;
}

@media (max-width:767px) {
    .modal-dialog.modelwithsign {
        width: auto;
    }
}

.inssrno {
    padding-left: 9px;
}




.step_img img {
    width: 300px;
    height: 558px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 -8px 12px gray;
}

.stepdivmain p.titlestep {
    font-size: 15px;
    font-weight: 700;
    color: black;
    margin-bottom: 5px;
}

.stepdivmain p.descriptionstep {
    color: gray;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.stepdivmain {
    border-bottom: 1px solid #cccc;
    margin-right: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}


.mainbodystep {
    padding: 25px;
}

    .mainbodystep .close {
        position: absolute;
        top: -12px;
        right: -13px;
        width: 30px;
        height: 30px;
        background-color: red;
        opacity: 1;
        color: white;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 4px;
    }

    .mainbodystep h3 {
        font-family: 'Lato', sans-serif;
        font-weight: 600;
        font-size: 21px;
        margin-top: 0;
        margin-bottom: 15px;
        color: black;
    }

    .mainbodystep .swiper {
        width: 300px;
        height: 100%;
    }

    .mainbodystep .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .mainbodystep .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        font-size: 12px;
        color: #000;
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
    }

    .mainbodystep .swiper-pagination-bullet-active {
        color: #fff;
        background: #007aff;
    }

    .mainbodystep .swiper-button-next:after, .mainbodystep .swiper-button-prev:after {
        font-family: swiper-icons;
        font-size: 28px;
        text-transform: none !important;
        letter-spacing: 0;
        font-variant: initial;
        line-height: 1;
    }



a.evalutionstatustext {
    font-size: 14px;
    color: gray;
}

    a.evalutionstatustext .fa-circle-check {
        color: #34a853;
        font-size: 16px;
        margin-right: 7px;
        position: relative;
        top: 0px;
    }

.mainstatuslable {
    display: flex;
    justify-content: space-between;
}

a.evalutionstatustext .la-info-circle {
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

    a.evalutionstatustext .la-info-circle.missed {
        color: red;
    }



@media (max-width: 767px) {
    .mainbodystep .swiper {
        width: 270px;
        height: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .mainbodystep {
        padding: 15px;
    }

    .step_img img {
        width: 270px;
    }
}



#main_bonus_deduction .modal-body {
    height: 72vh;
    overflow-y: scroll;
}

#main_bonus_deduction ul {
    display: flex;
    align-items: center;
}

    #main_bonus_deduction ul .fa-edit {
        font-size: 18px;
    }

    #main_bonus_deduction ul .fa-trash {
        font-size: 16px;
    }

#main_bonus_deduction .modal-header {
    align-items: center;
}

    #main_bonus_deduction .modal-header .close span {
        font-size: 31px;
    }

.lnkchangefa {
    width: 28px;
    height: 28px;
    border-radius: 30px;
    color: white;
    background-color: #3c8dbc;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -5px;
    margin-right: 9px;
}


.main_payment_box {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}

.maintitle_pynew {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 15px;
}


.new_py_card {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.new_py_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_btn_py_success {
    width: 30px;
    height: 30px;
    display: inline-flex;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4CAF50;
    margin-left: 7px;
}

.main_btn_py_danger {
    width: 30px;
    height: 30px;
    display: inline-flex;
    border: 1px solid #F44336;
    border-radius: 4px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #F44336;
    margin-left: 7px;
}



.new_py_card .font-weight-semibold {
    font-weight: 600;
    color: black;
}

.new_py__btn {
    background-color: #f1f1f1;
    font-size: 14px;
    padding: 3px 5px;
    border-radius: 3px;
    color: #888888;
    font-weight: 600;
    white-space: nowrap;
}

.payment_installment_box {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    position: relative;
}

    .payment_installment_box a {
        width: 30px;
        height: 30px;
        border: 1px solid #438ebb;
        border-radius: 4px;
        font-size: 20px;
        color: #438ebb;
        margin-left: 7px;
        padding-left: 4px;
        padding-top: 4px;
    }

.f-title {
    font-size: 14px !important;
    font-weight: 500;
    color: gray;
    margin-bottom: 0;
}

.f-description {
    font-size: 13px !important;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
    margin-top: 5px;
}

.payment_installment_box .payment_btn {
    display: flex;
    margin-top: 12px;
    position: absolute;
    top: -2px;
    right: 11px;
}


.payment_table_new th {
    font-size: 14px;
    color: gray;
    font-weight: 400;
}

.bg_new_table {
    background-color: #f1f1f1;
}

.payment_table_new .bg_new_table th {
    font-size: 14px;
    color: black;
    font-weight: 600;
}

.payment_table_new td.titletexttable {
    font-size: 14px;
    color: black;
    font-weight: 600;
}

.payment_table_new td label {
    font-size: 14px;
    color: black;
    font-weight: 600;
}

.payment_table_new img {
    width: 18px;
}

.payment_table_new i {
    font-size: 20px;
}

@media (max-width:767px) {
    .main_payment_box {
        background-color: #f1f1f1;
        padding: 10px;
        border-radius: 10px;
    }

    .maintitle_pynew {
        font-size: 13px;
        margin: 0;
        font-weight: 600;
        border-bottom: 1px solid gainsboro;
        padding-bottom: 15px;
        padding-top: 7px;
    }

    .main_btn_py_success {
        width: 20px;
        height: 20px;
        font-size: 15px;
    }

    .main_btn_py_danger {
        width: 20px;
        height: 20px;
        font-size: 15px;
    }

    .payment_installment_box a {
        width: 20px;
        height: 20px;
        border: 1px solid #438ebb;
        border-radius: 4px;
        font-size: 15px;
        color: #438ebb;
        margin-left: 7px;
        padding-left: 1.5px;
        padding-top: 2px;
    }
}

.error_message_new_div {
    text-align: center;
    height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .error_message_new_div img {
        width: 100px;
    }

    .error_message_new_div h5 {
        font-size: 21px;
        font-weight: 600;
        margin-top: 34px;
        margin-bottom: 10px;
    }

    .error_message_new_div p {
        font-size: 15px;
        width: 28%;
    }

@media (max-width:767px) {
    .error_message_new_div p {
        width: 100%;
    }
}

.filter-section-students-details {
    background-color: transparent;
    padding: 0;
}


    .filter-section-students-details .tabs {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }

    .filter-section-students-details h3.ui-accordion-header {
        background-color: white;
        padding: 12px 20px !important;
        border: none;
        margin: 0;
        border-radius: 10px;
        margin-top: 20px;
    }

    .filter-section-students-details h3.ui-accordion-header-active {
        border-radius: 10px 10px 0 0;
    }

    .filter-section-students-details .ui-accordion-content {
        background-color: white;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid #cccc;
    }

.maintimelogheade {
    position: relative;
}

    .maintimelogheade a {
        position: absolute;
        padding: 3px 6px;
        font-size: 11px;
        line-height: 14px;
        right: 44px;
        top: 9px;
    }

.supedingtd {
    padding-left: 39px !important;
}

.text-align-right {
    text-align: right !important;
}

.supedingtdpadding {
    padding-right: 20px !important;
}

#lblStudentExamSignature {
    width: 100%;
}

.extendexpirationhr {
    margin-top: 10px;
    margin-bottom: 0px;
}

#txtExtendComment {
    height: 36px !important;
    min-height: 36px !important;
}


.mainnewcardedit_new {
    display: block !important;
}


    .mainnewcardedit_new .row {
        width: 92%;
        margin-left: 0;
    }

#MPExtendExpirationDate .modal-body {
    background-color: #f4f7fa;
}

#MPExtendExpirationDate .modal-header {
    align-items: center;
    padding: 15px;
}

    #MPExtendExpirationDate .modal-header:after {
        display: none;
    }

    #MPExtendExpirationDate .modal-header:before {
        display: none;
    }


#MPExtendExpirationDate .close {
    padding: 0;
    margin: 0;
    font-size: 21px;
}

#lnkExtendExpirationDateofCourse {
    padding: 2px 10px;
    font-size: 11px;
    margin-left: 10px;
}

.filter-section.cc-type.royalty-web-top .date-invoice.royalty-web.royalty-web-mwse {
    align-items: center !important;
}

@media (max-width: 767px) {
    #lnkPrint {
        margin-top: 10px;
        width: 100%;
    }

    #ddlMonthwiseReportType {
        margin-bottom: 10px;
        margin-top: 5px;
    }
}

table.shrink tr:not(.shrink-wrapper):not(.blank-row) {
    cursor: initial !important;
}

#lnkRateInfoAdd {
    margin-top: 25px;
}

.monthlytotalamount {
    font-size: 17px !important;
    margin: 0 0 0px !important;
}


.commondashboardboxnew .commondashboardbox {
    border: 1px solid #1b7cf9;
    border-radius: 20px;
    background-color: #ebf4ff;
    padding: 8px;
}

.commondashboardboxhight .commondashboardbox {
    height: 90px;
}




.card_cp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* padding: 10px; */
    border-radius: 10px;
    margin-bottom: 30px;
}

.private_cash {
    border: 1px solid #fd7e1475;
}

    .private_cash .left_cp {
        padding: 0;
        background-color: #fd7e1414;
        display: flex;
        justify-content: space-between;
    }

    .private_cash .tagnew {
        position: absolute;
        top: -12px;
        left: 15px;
        margin: 0;
        padding: 3px 8px;
        background-color: #fd7e14;
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
    }


.private_prepaid {
    border: 1px solid #1b7cf95e;
}

    .private_prepaid .left_cp {
        padding: 0;
        background-color: #1b7cf914;
        display: flex;
        justify-content: space-between;
    }

    .private_prepaid .tagnew {
        position: absolute;
        top: -12px;
        left: 15px;
        margin: 0;
        padding: 3px 8px;
        background-color: #1b7cf9;
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
    }


.course_prepaid {
    border: 1px solid #20c9975e;
}

    .course_prepaid .left_cp {
        padding: 0;
        background-color: #20c99714;
        display: flex;
        justify-content: space-between;
    }

    .course_prepaid .tagnew {
        position: absolute;
        top: -12px;
        left: 15px;
        margin: 0;
        padding: 3px 8px;
        background-color: #20c997;
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
    }



.main_student_info_cp {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.number_cp {
    width: 25px;
    height: 25px;
    background-color: #0000001c;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 3px;
}

.main_student_info_cp p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 10px;
}



.card_cp .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.card_cp .form-group label {
    position: relative;
    cursor: pointer;
}

    .card_cp .form-group label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 1px solid #217ef6;
        /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05); */
        padding: 0;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 0;
        border-radius: 3px;
        width: 23px;
        height: 23px;
    }

.card_cp .form-group input:disabled + label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #e7e7e7;
    border: 1px solid #bbbbbb;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05); */
    padding: 0;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 0;
    border-radius: 3px;
    width: 23px;
    height: 23px;
}

.card_cp .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #217ef6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

p.program_name_cp {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 0;
    color: gray;
    margin-top: -3px;
    line-height: 15px;
}

p.title_date_content {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 1px;
}

.right_content_cp {
    padding: 15px;
    border: 1px solid #cccc;
    border-top: none;
    border-bottom: none;
    white-space: nowrap;
    padding-top: 20px;
}

.left_content_cp {
    padding: 15px;
    position: relative;
    padding-top: 20px;
}

p.label_cp {
    font-size: 13px;
    font-weight: 500;
    color: gray;
    margin-bottom: 0;
}

.label_cp_content {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 13px;
    display: flex;
    flex-direction: column;
    /* font-size: 1; */
    margin-top: 0;
    color: black;
    width: max-content;
}

    .label_cp_content.statustext {
        font-size: 13px;
        width: auto;
    }

    .label_cp_content span {
        font-size: 11px;
        border-top: 1px solid #cccc;
        padding-top: 2px;
        color: #5f5f5f;
    }

.right_cp {
    padding: 15px 30px;
    padding-top: 20px;
}

.program_info {
    display: flex;
}

    .program_info .form-group {
        margin-bottom: 0;
        margin-right: 10px;
    }

@media (max-width:991px) {
    .card_cp {
        grid-template-columns: 1.8fr 1fr;
    }
}

@media (max-width:767px) {
    .card_cp {
        display: block;
    }

    .left_cp {
        display: block !important;
    }

    .left_content_cp {
        padding-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .right_content_cp {
        padding: 12px;
        border: 1px solid #cccc;
        border-top: 1px solid #cccc;
        border-bottom: none;
        border-left: none;
        border-right: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        white-space: nowrap;
        padding-top: 15px;
        gap: 30px;
    }

    .right_cp {
        padding: 12px;
    }
}


@media (min-width: 0) {
    .card_cp .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mian_card_view_Cp {
    padding-top: 15px;
}



.main_statistics_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}

    .main_statistics_top.active_slide {
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid #cccc;
    }

    .main_statistics_top p {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: black;
    }

.commondashboardboxnew_slide .commondashboardboxnew {
    margin-bottom: 20px;
}



.commondashboardboxnew_slide {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width:1400px) {
    .commondashboardboxnew_slide {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width:1200px) {
    .commondashboardboxnew_slide {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:1100px) {
    .commondashboardboxnew_slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:767px) {
    .commondashboardboxnew_slide {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width:576px) {
    .commondashboardboxnew_slide {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:767px) {
    .commondashboardboxnew_slide {
        display: none;
    }
}

.mt-25 {
    margin-top: 25px;
}


.lessonpaymentypeonline {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 11px;
    background-color: #DBF1FF;
    color: #009BFC;
    border: 1px solid #A7DDFF;
    padding: 3px 5px;
    margin-left: 6px;
}


    .lessonpaymentypeonline .online_icon {
        width: 14px;
        height: 14px;
        object-fit: contain;
        position: relative;
        top: -1px;
        margin-right: 4px;
    }

    .lessonpaymentypeonline .cash_icon {
        display: none;
    }

.lessonpaymentypecash {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 11px;
    background-color: #E5F7EC;
    color: #00B147;
    border: 1px solid #AEE6C5;
    padding: 3px 5px;
    margin-left: 6px;
}

    .lessonpaymentypecash .online_icon {
        display: none;
    }

    .lessonpaymentypecash .cash_icon {
        width: 20px;
        height: 14px;
        object-fit: contain;
        position: relative;
        top: -1px;
        margin-right: 4px;
    }

.lessonpaymentypeonlinedue {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 11px;
    background-color: #F6F6F6;
    color: #7F7F7F;
    border: 1px solid #D6D6D6;
    padding: 3px 5px;
    margin-left: 6px;
}


    .lessonpaymentypeonlinedue .online_icon {
        width: 14px;
        height: 14px;
        object-fit: contain;
        position: relative;
        top: -1px;
        margin-right: 4px;
    }

    .lessonpaymentypeonlinedue .cash_icon {
        display: none;
    }

    .lessonpaymentypeonlinedue:hover {
        color: #7F7F7F !important;
    }

.lessonpaymentypecashdue {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 11px;
    background-color: #F6F6F6;
    color: #7F7F7F;
    border: 1px solid #D6D6D6;
    padding: 3px 5px;
    margin-left: 6px;
    width: 70px;
    display: inline-block;
}

    .lessonpaymentypecashdue .online_icon {
        display: none;
    }

    .lessonpaymentypecashdue .cash_icon {
        width: 20px;
        height: 14px;
        object-fit: contain;
        position: relative;
        top: -1px;
        margin-right: 4px;
    }

    .lessonpaymentypecashdue:hover {
        color: #7F7F7F !important;
    }

.mainnewcardedit .row.new_row_edit {
    width: auto;
    margin: 0;
    margin-left: 0;
    margin-top: 14px;
}

.main_new_lesson_payment_modal {
    font-family: "Poppins", sans-serif !important;
}

    .main_new_lesson_payment_modal .modal-dialog-centered {
        margin: 0 auto;
        width: 500px;
        justify-content: center;
    }

@media(max-width:767px) {
    .main_new_lesson_payment_modal .modal-dialog-centered {
        width: 90%;
    }
}

.main_new_lesson_payment_modal .modal-content {
    width: 100%;
}

.main_new_lesson_payment_modal .modal-header {
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

    .main_new_lesson_payment_modal .modal-header img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .main_new_lesson_payment_modal .modal-header::before {
        display: none;
    }

    .main_new_lesson_payment_modal .modal-header::after {
        display: none;
    }


.main_new_lesson_payment_modal .modal-title {
    font-family: "Poppins", sans-serif !important;
    color: black;
    font-weight: 600;
    font-size: 16px;
}

@media(max-width:767px) {
    .main_new_lesson_payment_modal .modal-title {
        font-size: 14px;
        line-height: 20px;
    }
}

.main_new_lesson_payment_modal .modal-body {
    position: relative;
    padding: 15px 20px;
}

    .main_new_lesson_payment_modal .modal-body h4 {
        font-family: "Poppins", sans-serif !important;
        color: black;
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 0;
    }

@media(max-width:767px) {
    .main_new_lesson_payment_modal .modal-title {
        font-size: 14px;
        line-height: 20px;
    }

    .main_new_lesson_payment_modal .modal-body h4 {
        font-size: 14px;
        line-height: 20px;
    }
}

.main_new_lesson_payment_modal .modal-body .form-check-label {
    margin-right: 20px;
}

    .main_new_lesson_payment_modal .modal-body .form-check-label span {
        margin-left: 0px !important;
    }

.main_new_lesson_payment_modal .main_check_cash_online {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width:767px) {

    .main_new_lesson_payment_modal .main_check_cash_online {
        display: block;
    }
}

.main_new_lesson_payment_modal .check_cash_online {
    display: flex;
}

.main_new_lesson_payment_modal .check_cash_online {
    display: flex;
}

.main_new_lesson_payment_modal .lessonpaymentypecash {
    padding: 5px 10px;
    white-space: nowrap;
}

.main_new_lesson_payment_modal .lessonpaymentypeonline {
    padding: 5px 10px;
    white-space: nowrap;
}

.main_new_lesson_payment_modal .savnew_btn_modal {
    background-color: #23BC60;
    border: 1px solid #23BC60;
    margin: 0;
    position: relative;
    top: -3px;
}

    .main_new_lesson_payment_modal .savnew_btn_modal:hover {
        background-color: #23BC60;
        border: 1px solid #23BC60;
    }

@media(max-width:767px) {
    .main_new_lesson_payment_modal .savnew_btn_modal {
        margin: 0;
        margin-top: 17px;
        padding: 5px 10px;
        top: 0px;
    }
}

.alert_last_updated {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif !important;
    color: black;
    background-color: #FEF0D6;
    margin-top: 20px;
}

/* width */
.incar_table_responsive::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

/* Track */
.incar_table_responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.incar_table_responsive::-webkit-scrollbar-thumb {
    background: #b1b1b1;
}

    /* Handle on hover */
    .incar_table_responsive::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.main_save_pay_new {
    background-color: #445DBA;
    border: none !important;
    padding: 7px 15px !important;
    line-height: normal;
    font-size: 14px !important;
    color: white !important;
    font-weight: 600;
    display: inline-block;
    width: max-content !important;
    height: max-content !important;
}

.main_cancel_pay_new {
    background-color: #F74B50;
    border: none !important;
    padding: 7px 15px !important;
    line-height: normal;
    font-size: 14px !important;
    color: white !important;
    font-weight: 600;
    display: inline-block;
    width: max-content !important;
    height: max-content !important;
}



.align-items-end-new {
    align-items: flex-end;
}

.d-block-new {
    display: block;
}

.payment_installment_box_new .f-title {
    font-family: "Poppins", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400;
}

.payment_installment_box_new .f-description {
    font-family: "Poppins", sans-serif !important;
}

.payment_installment_box_new .head_top_box_p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment_installment_box_new .count_box_p {
    background-color: #e7e7e7;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.new_edit_icon_squre, .new_email_icon_squre {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block;
    margin-left: 10px !important;
    width: 30px !important;
    height: 30px !important;
}

@media (max-width:767px) {
    .main_save_pay_new, .main_cancel_pay_new, .new_edit_icon_squre, .new_email_icon_squre {
        margin-top: 15px;
    }
}

.comment_Show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #cccc;
    border-radius: 2px;
    margin-left: 10px;
    color: black;
    cursor: pointer;
}

    .comment_Show i {
        transition: all 0.5s;
    }

.activecoment i {
    transform: rotate(180deg);
}



.main_new_manage_addon_modal {
    font-family: "Poppins", sans-serif !important;
}

    .main_new_manage_addon_modal .modal-dialog {
        margin: 0 auto;
        width: 500px;
        justify-content: center;
        margin-top: 50px;
    }

@media(max-width:767px) {
    .main_new_manage_addon_modal .modal-dialog {
        width: 90%;
    }
}

.main_new_manage_addon_modal .modal-content {
    width: 100%;
    border-radius: 15px !important;
    overflow: hidden;
}

.main_new_manage_addon_modal label {
    font-weight: 400;
    color: black;
    opacity: 0.7;
    margin-bottom: 2px;
    margin-top: 3px;
}

.main_new_manage_addon_modal .form-check-label {
    font-weight: 400 !important;
    color: black !important;
    opacity: 1;
    font-size: 14px;
    position: relative !important;
    margin-bottom: 0 !important;
    line-height: 19px !important;
    margin-right: 10px;
    font-family: "Poppins", sans-serif !important;
}



.main_new_manage_addon_modal .modal-header {
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background-color: #EEF6FF;
}

    .main_new_manage_addon_modal .modal-header img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .main_new_manage_addon_modal .modal-header::before {
        display: none;
    }

    .main_new_manage_addon_modal .modal-header::after {
        display: none;
    }


.main_new_manage_addon_modal .modal-title {
    font-family: "Poppins", sans-serif !important;
    color: black;
    font-weight: 600;
    font-size: 16px;
}


.proceedbtn {
    background-color: #445DBA;
    display: block;
    text-align: center;
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-family: "Poppins", sans-serif !important;
    margin-top: 20px;
    font-weight: 600;
}

    .proceedbtn:hover {
        color: white;
    }

.main_new_manage_addon_modal .sidebycheck {
    display: flex;
}

@media(max-width:575px) {
    .main_new_manage_addon_modal .sidebycheck {
        display: block;
    }
}

.main_new_manage_addon_modal .hour {
    font-size: 13px !important;
    color: black !important;
    margin-left: 10px;
}

    .main_new_manage_addon_modal .hour label {
        font-size: 13px !important;
        color: black !important;
        opacity: 1;
        margin-bottom: 0;
    }

.main_new_manage_addon_modal .input-group.extra-box input {
    border: none;
    background-color: #F3F7FA;
    text-align: center;
    margin: 0 !important;
    display: inline-block;
    width: 75%;
}

    .main_new_manage_addon_modal .input-group.extra-box input:hover {
        box-shadow: none;
        outline: 0;
    }

    .main_new_manage_addon_modal .input-group.extra-box input:focus {
        box-shadow: none;
        outline: 0;
    }

.main_new_manage_addon_modal .input-group.extra-box {
    position: relative;
    border-collapse: separate;
    background: #F3F7FA;
    padding: 2px 11px !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_new_manage_addon_modal .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
    background-color: #57A9FB;
    color: white;
    width: 25px;
    height: 25px;
    overflow: hidden;
    display: inline-block;
    border-radius: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 25px !important; */
    padding-left: 2px !important;
}

.main_new_manage_addon_modal .input-group.extra-box span a {
    border: none;
    background: transparent;
    padding: 0;
    display: inline-block;
    margin-top: 3px;
    color: white;
    margin-right: 0 !important;
    font-size: 22px !important;
}

.main_new_manage_addon_modal .total_amount_text {
    background-color: #FEEFE5;
    width: max-content;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #FCDFC9;
    font-family: "Poppins", sans-serif !important;
    color: black;
    font-weight: 500;
}

.main_new_manage_addon_modal .roadtest_error {
    font-size: 11px;
    color: #DD683E;
    margin-top: 5px;
}

.pendingforsubmittedsearch {
    width: auto !important;
}

.bgrowChkexam {
    margin: 0px 0 0 !important;
}

.submissioncompleted {
    top: 19px;
    left: 0px;
    margin: 0;
    padding: 7px 10px;
    color: #5cb85c;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #5cb85c1f;
}

.submissionpending {
    top: 19px;
    left: 0px;
    margin: 0;
    padding: 7px 10px;
    color: #dc3545;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #dc354512;
}

#lnkSwitchCourseTobe {
    color: #fff !important;
    margin-left: 5px;
}

.sortbuttonright {
    margin-left: 10px;
    font-size: 20px;
}

#mDataTable {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: auto;
}

.table-wrappernew {
    max-height: 400px;
    overflow-y: auto;
    display: block;
}

#mDataTable td {
    position: relative;
}

#mDataTable th {
    position: sticky;
    top: 0;
    z-index: 1; /* Ensure the header stays on top */
    background-color: white;
    font-size: 13px !important;
}

.main_up_down_arrow {
    position: relative;
    padding-right: 17px !important;
}

.uparrow {
    margin: 0;
    position: absolute;
    top: 20px;
    right: 0;
}

    .uparrow i {
        font-size: 16px;
    }

.downarrow {
    margin: 0;
    position: absolute;
    top: 30px;
    right: 0;
}

    .downarrow i {
        font-size: 16px;
    }

@media (max-width:767px) {

    .main_sort_dropdown {
        display: block !important;
    }

    .uparrow {
        display: none;
    }

    .downarrow {
        display: none;
    }

    .newacordiandasboard .card {
        padding: 0;
    }
}


.fileUpload.btn-red {
    /*background: #ff6c4757;*/
    color: #fff;
    padding: 0 20px 2px;
    border-radius: 25px;
}



.main_time_log_div:after, .main_time_log_div:before {
    display: none;
}

.main_time_log_div {
    padding: 0 20px;
    justify-content: space-between;
}

.modal-header {
    padding: 10px 10px 10px 15px !important;
}
td.align-center.main-header {
    background-color: transparent !important;
}

.number {
    padding-left: 18px;
}