/*@import url('mclear-style.css');*/

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

/* Login-Pages */
.login-wrapper {
    background-image: url('../images/login bg.png');
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.login-container {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 494px;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 160px 72px;
    box-shadow: -6px -1px 20px 6px rgba(0, 0, 0, 0.03);
    background-color: #fff;
}

    .login-container form {
        width: 100%;
        height: 100%;
    }

.login__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form__images {
    /* width: 208px; */
    margin: 0 auto 40px;
}

.login-form__error-message {
    color: #C32F27;
    font-size: 12px;
    padding: 16px;
    background-color: #c32f2729;
    border-radius: 8px;
    display: none;
}

.login__form.error .login-form__error-message {
    display: block;
}

.login-form-group {
    margin: 20px 0;
    width: 100%;
}

    .login-form-group label {
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: bold;
        color: #6A6A6A;
    }

    .login-form-group input {
        display: block;
        width: 100%;
        height: unset;
        padding: 8px 36px 8px 12px;
        font-size: 16px;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #C7C7C7;
        border-radius: 8px;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .login-form-group input::placeholder {
            color: #A9A9A9;
            font-size: 14px;
        }

.login-form-group--password {
    position: relative;
}

    .login-form-group--password img {
        cursor: pointer;
        position: absolute;
        right: 10px;
        bottom: 13px;
    }

.login-container .login__form button {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    background-color: #cb141c;
    color: #fff;
    box-shadow: 0 3px 6px #00000029;
    border-radius: 10px;
    border: none;
    font-size: 19px;
    font-weight: 100;
    padding: 8px 10px;
    cursor: pointer;
}
    .login-container .login__form button:disabled {
        width: 100%;
        height: 40px;
        margin-top: 20px;
        background-color: #cccccc;
        color: #fff;
        box-shadow: 0 3px 6px #00000029;
        border-radius: 10px;
        border: none;
        font-size: 19px;
        font-weight: 100;
        padding: 8px 10px;
        cursor: not-allowed;
    }

/* breadcrumb */
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 8px 0;
    margin: 30px 0 28px 0;
    list-style: none;
}

    .breadcrumb a {
        text-decoration: none;
        color: #A9A9A9;
        font-size: 14px;
    }

.breadcrumb-item {
    cursor: pointer;
}

    .breadcrumb-item.active {
        color: #A9A9A9;
        font-size: 14px;
    }

    .breadcrumb-item + .breadcrumb-item {
        padding-left: .5rem;
    }

        .breadcrumb-item + .breadcrumb-item:hover::before {
            text-decoration: none;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            display: inline-block;
            padding-right: .5rem;
            color: #A9A9A9;
            content: "/";
            text-decoration: none;
        }

/* Modal */
#modalDelete.modal {
    overflow: hidden;
    padding-top: 200px;
}

#modalAdd.modal--role, #modalEdit.modal--role {
    overflow: hidden;
    padding-top: 10%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    padding-top: 110px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-container {
    margin: 0 auto 60px;
    width: 475px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.modal-container--dashboard {
    width: 464px;
}

.modal-container__header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #70707040;
}

.modal-container-header__title {
    width: 90%;
    font-size: 16px;
    font-weight: bold;
    color: #cb141c;
    margin: 0;
    line-height: 1.3;
}

.modal-container__content {
    padding: 12px 50px 34px;
}

.modal-container--dashboard .modal-container__content {
    padding: 12px 40px 34px;
    overflow: auto;
    max-height: 396px;
}

.modal-container-content__detail-list {
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

    .modal-container-content__detail-list li {
        margin-top: 16px;
        border-radius: 4px;
        border: solid 2px #7bbc46;
    }

.modal-container-content-detail-list__item {
    display: flex;
    justify-content: space-between;
    padding: 28px 16px;
}

    .modal-container-content-detail-list__item p {
        margin: 0;
        font-size: 14px;
        color: #6a6a6a;
        font-weight: bold;
        letter-spacing: normal;
    }

.modal-container-content__form-group {
    margin: 20px 0;
    color: #6A6A6A;
}

    .modal-container-content__form-group h3 {
        margin: 0;
        font-size: 14px;
        color: #6A6A6A;
        font-weight: normal;
    }

    .modal-container-content__form-group.error {
        color: #C32F27;
    }

        .modal-container-content__form-group.error span {
            display: block;
        }

    .modal-container-content__form-group span {
        display: none;
        margin-top: 4px;
        font-size: 12px;
        margin-left: 4px;
    }

    .modal-container-content__form-group.disable input {
        background-color: #E0E0E0;
        color: #6A6A6A;
        border-color: #C7C7C7;
        pointer-events: none;
    }

.modal-container-content-form-group--button {
    margin-top: 62px;
    margin-bottom: 0;
    text-align: right;
}

    .modal-container-content-form-group--button button {
        background-color: #7BBC46;
        border: none;
        border-radius: 8px;
        padding: 10px 22px;
        font-size: 14px;
        color: #ffffff;
        cursor: pointer;
    }

.modal-container-content-form-group--button-option {
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

    .modal-container-content-form-group--button-option button {
        box-shadow: 0px 2px 6px #00000029;
        cursor: pointer;
        border: unset;
        border-radius: 4px;
        line-height: unset;
        font-weight: normal;
    }

        .modal-container-content-form-group--button-option button:nth-child(1) {
            padding: 12px 16px;
            color: #A8A8A8;
            font-size: 12px;
            background-color: white;
        }

        .modal-container-content-form-group--button-option button:nth-child(2) {
            padding: 10px 38px;
            color: #FFFFFF;
            font-size: 14px;
            background-color: #7BBC46
        }

.modal-container-content__form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
}

.modal-container-content__form-group input {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
}

    .modal-container-content__form-group input:disabled {
        background: #dddddd;
    }

.form-control:focus {
    border-color: #7BBC46;
    outline: none;
    -webkit-box-shadow: 0px 0px 3px rgba(102, 175, 233, .6);
    box-shadow: 0px 0px 3px rgba(102, 175, 233, .6);
}

.modal-container-content__form-group input::placeholder {
    color: #C7C7C7;
}

.modal-container-content__form-group select {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
}

    .modal-container-content__form-group select::placeholder {
        color: #C7C7C7;
    }

.modal-container-content__form-group textarea {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
}

    .modal-container-content__form-group textarea::placeholder {
        font-family: Arial, Helvetica, sans-serif;
        opacity: 0.5;
    }


.close {
    width: 12px;
    height: 12px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    opacity: 1;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

    .close:hover,
    .close:focus {
        background-image: url(../images/icon-closeHover.svg);
        opacity: 1;
    }

.close-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Dropdown */
.dropdown {
    position: relative;
    width: 72px;
}

.dropdown-notifications {
    width: 30px;
}

.dropdown-button {
    display: block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 8px 0;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: unset;
    border: unset;
    color: #7BBC46;
}

    .dropdown-button::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid\9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .dropdown-button:active:focus,
    .dropdown-button:focus,
    .dropdown-button:active,
    .dropdown-button:hover {
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
        color: #7BBC46;
        text-decoration: none;
    }

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    left: unset;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 116px;
    padding: 12px 0;
    margin: 0 !important;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .dropdown-menu li {
        height: 30px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 8px 12px;
        font-weight: 400;
        line-height: 1.42857143;
        color: #6A6A6A;
        font-size: 12px;
        white-space: nowrap;
        text-decoration: none;
        width: 100%;
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            background-image: unset !important;
            background-color: #7BBC463F;
            color: inherit !important;
        }
/* .open>.dropdown-menu {
display: block;
} */

.profil {
    position: relative;
}

.profil-button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 8px 0;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: unset;
    border: unset;
    color: #7BBC46;
}

    .profil-button::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid\9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .profil-button:active:focus,
    .profil-button:focus,
    .profil-button:active,
    .profil-button:hover {
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
        color: #7BBC46;
        text-decoration: none;
    }

.profil-toggle:focus {
    outline: 0;
}

.profil-menu {
    position: absolute;
    top: 110%;
    right: 0;
    left: unset;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 116px;
    padding: 12px 0;
    margin: 0 !important;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .profil-menu li {
        height: 30px;
        display: flex;
        align-items: center;
    }

    .profil-menu > li > a {
        display: block;
        padding: 8px 12px;
        font-weight: 400;
        line-height: 1.42857143;
        color: #6A6A6A;
        font-size: 12px;
        white-space: nowrap;
        text-decoration: none;
        width: 100%;
    }

        .profil-menu > li > a:hover, .profil-menu > li > a:focus {
            background-image: unset !important;
            background-color: #7BBC463F;
            color: inherit !important;
        }

/*----- Navigation Bar (sidebar and header) ----- */
.app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F9F9F9;
    z-index: 100;
    justify-content: space-between;
    padding: 0 80px 0 380px;
    transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
}

.app-sidebar__toggle {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 18px;
    margin-top: 22px;
    font-family: fontAwesome;
    color: #7BBC46;
    line-height: 1.5;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

    .app-sidebar__toggle:before {
        content: "-";
        font-size: 30px;
    }

    .app-sidebar__toggle:focus, .app-sidebar__toggle:hover {
        color: #fff;
        background-color: #7BBC46;
        text-decoration: none;
    }

.app-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 20px 0;
    width: 300px;
    overflow: auto;
    z-index: 200;
    background-color: #fff;
    background-image: url('../images/background-sidebar.svg');
    background-size: cover;
    -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.2);
    -webkit-transition: left 0.3s ease, width 0.3s ease;
    -o-transition: left 0.3s ease, width 0.3s ease;
    transition: left 0.3s ease, width 0.3s ease;
    overflow-x: hidden;
}

    .app-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .app-sidebar::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
    }

.app-sidebar__images {
    display: block;
    margin: 52px auto;
}

.app-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 42px;
    border-right: 7px solid transparent;
    -webkit-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

    .app-menu__item.active, .app-menu__item:hover, .app-menu__item:focus {
        background: #ffffffd9;
        border-right-color: #7BBC46;
        text-decoration: none;
    }

.treeview .app-menu__item.active, .treeview .app-menu__item:hover, .treeview .app-menu__item:focus {
    background: unset;
    border-right-color: #7bbc4600;
    text-decoration: none;
}

.treeview-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    -webkit-transition: max-height 0.3s ease;
    -o-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
}

.treeview.is-expanded .treeview-menu {
    max-height: 100vh;
}

.treeview-menu li {
    position: relative;
    padding: 18px 0;
    padding-left: 90px;
    border-right: 7px solid transparent;
    font-size: 14px;
    font-weight: bold;
    color: #6A6A6A;
}

    .treeview-menu li a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .treeview-menu li.active, .treeview-menu li:hover, .treeview-menu li:focus {
        background: #ffffffd9;
        border-right-color: #7BBC46;
    }

.app-menu__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.app-menu-icon--dashboard {
    background-image: url('../images/icon-dashboard.svg');
}

.app-menu-icon--user-management {
    background-image: url('../images/icon-userManagement.svg');
}

.app-menu-icon--anggota-kliring {
    background-image: url('../images/icon-ak.svg');
}

.app-menu-icon--content {
    background-image: url('../images/icon-content.svg');
}

.app-menu-icon--paket {
    background-image: url('../images/icon-package.svg');
}

.app-menu-icon--mclears {
    background-image: url('../images/icon-mclears.png');
}

.app-menu-icon--payment-history {
    background-image: url('../images/icon-payment-history.svg');
}

.app-menu-icon--setting {
    background-image: url('../images/icon-setting.svg');
}

.app-menu-icon--approval {
    background-image: url('../images/icon-content-approval.png');
}

.app-menu-icon--approvalrule {
    background-image: url('../images/icon-content-approval-setting.png');
}

.icon--notification {
    background-image: url('../images/icon-notification.svg');
}

.app-menu-icon--arrow {
    position: absolute;
    right: 0;
    background-image: url('../images/arrow-active.svg');
    width: 14px;
    height: 14px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.treeview.is-expanded .app-menu-icon--arrow {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.app-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: bold;
    color: #6A6A6A;
}


@media (min-width: 768px) {
    .sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 300px;
        overflow: hidden;
    }

        .sidebar-mini.sidenav-toggled .app-sidebar:hover {
            overflow: visible;
        }

    .sidebar-mini.sidenav-toggled .app-menu__item {
        overflow: hidden;
    }

        .sidebar-mini.sidenav-toggled .app-menu__item:hover {
            overflow: visible;
        }

            .sidebar-mini.sidenav-toggled .app-menu__item:hover .app-menu__label {
                opacity: 1;
            }
    /* .sidebar-mini.sidenav-toggled .app-menu__item:hover + .treeview-menu {
      visibility: visible;
    } */
    /* .sidebar-mini.sidenav-toggled .app-menu__label {
      display: block;
      position: absolute;
      top: 0;
      left: 50px;
      min-width: 180px;
      padding: 12px 5px 12px 20px;
      margin-left: -3px;
      line-height: 1;
      opacity: 0;
      background: #fff;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      box-shadow: 8px 0px 10px -2px rgba(0, 0, 0, 0.2);
    } */
    /* .sidebar-mini.sidenav-toggled .treeview:hover .app-menu__item {
      overflow: visible;
      background: #0d1214;
      border-left-color: #009688;
      color: #fff;
    }
    .sidebar-mini.sidenav-toggled .treeview:hover .app-menu__label {
      opacity: 1;
    }
    .sidebar-mini.sidenav-toggled .treeview .app-menu__label {
      border-bottom-right-radius: 0;
    } */
    .app.sidenav-toggled .app-sidebar {
        left: -300px;
    }

    .app.sidenav-toggled .app-sidebar__overlay {
        visibility: hidden;
    }
}



@media (max-width: 767px) {
    .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .app {
        overflow-x: hidden;
    }

        .app .app-sidebar {
            left: -300px;
        }

        .app .app-sidebar__overlay {
            visibility: hidden;
        }

    .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }

    .app.sidenav-toggled .app-sidebar {
        left: 0;
    }

    .app.sidenav-toggled .app-sidebar__overlay {
        visibility: visible;
        background: #0d0d0d17;
        z-index: 150;
    }

    .app .app-header, .app .app-content {
        padding-left: 66px;
        padding-right: 26px;
    }

    .app-content .app-content__header {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }
}

@media (max-width: 1240px) {
    .app-content .app-content__header {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    .app-content-header__tabs a {
        margin-top: 12px;
    }

        .app-content-header__tabs a:nth-child(1) {
            margin-left: 0;
        }
}

.app-sidebar__profil {
    margin: 30px 0 28px;
    display: flex;
    align-items: center;
}

.slide-notification {
    outline: 0;
}

.app-sidebar-notification {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: unset;
    border: unset;
}

    .app-sidebar-notification:active:focus,
    .app-sidebar-notification:focus,
    .app-sidebar-notification:active,
    .app-sidebar-notification:hover {
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
        color: #7BBC46;
        text-decoration: none;
    }

    .app-sidebar-notification span {
        position: absolute;
        top: -6px;
        right: -6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 8px;
        background-color: #3b98c7eb;
        width: 16px;
        height: 16px;
        border-radius: 50px;
    }

.slide-notification-menu {
    position: absolute;
    top: -38px;
    right: -142px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 360px;
    /*min-height: 700px;*/
    height: 100vh;
    padding: 60px 22px;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.slide-notification-menu__button {
    display: block;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #7bbc46;
    opacity: 0.8;
    cursor: pointer;
}

    .slide-notification-menu__button:hover, .slide-notification-menu__button:focus {
        text-decoration: none;
        color: #7bbc46;
    }

.slide-notification-menu__header {
    margin: 0;
    margin-bottom: 18px;
    font-size: 24px;
    color: #7BBC46;
    font-weight: bold;
}

.slide-notification-menu__notification {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 80%;
    overflow-y: auto;
    margin-bottom: 30px;
}

    .slide-notification-menu__notification::-webkit-scrollbar {
        width: 6px;
    }

    .slide-notification-menu__notification::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        margin-left: 10px;
    }

.slide-notification-menu-notification__list {
    position: relative;
    margin-bottom: 20px;
}

    .slide-notification-menu-notification__list:last-child {
        margin-bottom: 0;
    }

.slide-notification-menu-notification-list__item {
    padding: 16px 20px;
    background-color: #E0E0E069;
    border-radius: 4px;
}

.slide-notification-menu-notification-list-item--error {
    background-color: #ff000026;
}

.slide-notification-menu-notification-list__item h3,
.slide-notification-menu-notification-list__item p {
    margin: 0;
}

.slide-notification-menu-notification-list__item h3 {
    font-size: 14px;
    color: #6A6A6A;
    margin-bottom: 6px;
    font-weight: bold;
}

.slide-notification-menu-notification-list__item p {
    font-size: 12px;
    color: #6A6A6A;
}

/*.slide-notification-menu-notification-list__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}*/
.app-content {
    padding: 96px 80px 80px 380px;
}

.app-content__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.app-content-header__add {
    position: relative;
    padding: 10px 20px 10px 44px;
    background-color: #7BBC46;
    box-shadow: 0 2px 6px #00000029;
    border: unset !important;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

    .app-content-header__add::before {
        content: '+';
        position: absolute;
        font-size: 25px;
        left: 16px;
        top: 12px;
        line-height: 0.6;
    }

    .app-content-header__add span {
        font-size: 14px;
    }

.app-content-header__download {
    position: relative;
    padding: 10px 20px 10px 20px;
    background-color: #7BBC46;
    box-shadow: 0 2px 6px #00000029;
    border: unset !important;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}
    .app-content-header__add span {
        font-size: 14px;
    }

.app-content-header__tabs a {
    display: inline-block;
    font-size: 12px;
    color: #A8A8A8;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0px 2px 6px #00000029;
    background-color: #ffffff;
    margin-left: 12px;
    text-decoration: none;
}

    .app-content-header__tabs a:hover, .app-content-header__tabs a:focus {
        text-decoration: none;
        color: #A8A8A8;
    }

    .app-content-header__tabs a.active {
        background-color: #7BBC46;
        color: #ffffff;
    }




.app-content__body {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 0px 6px #00000029;
    padding: 20px 40px;
}

.app-content-body--without-top {
    margin-top: 0;
}

.app-content-body__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.app-content-body-header--modified {
    padding-bottom: 24px;
    border-bottom: 1px solid #C7C7C7;
}

.app-content-body-header__navigation {
    display: flex;
    align-items: center;
}

.app-content-body-header-navigation__search {
    position: relative;
    margin-right: 16px;
}

    .app-content-body-header-navigation__search::after {
        content: '';
        background-image: url(../images/search-solid.svg);
        background-repeat: no-repeat;
        position: absolute;
        right: 10px;
        top: 12px;
        color: #7BBC46;
        width: 16px;
        height: 16px;
    }

.app-content-body-header-navigation-search__input {
    padding: 12px 30px 12px 12px;
    font-size: 14px;
    height: 40px !important;
    width: 180px;
}

    .app-content-body-header-navigation-search__input::placeholder {
        color: #C7C7C7;
    }

input, textarea, select {
    border: 1px solid #C7C7C7;
    color: #6A6A6A;
    border-radius: 8px;
    outline: none;
}

/*input:not(:placeholder-shown), input:focus {
        border-color: #7BBC46;
        margin-bottom: 0px;
        margin-left: 15px;
    }*/

.modal-container-content__form-group.error input:not(:placeholder-shown), .modal-container-content__form-group.error input:focus,
.login__form.error .login-form-group input:not(:placeholder-shown), .login__form.error .login-form-group input:focus {
    border-color: #C32F27;
}

textarea:not(:placeholder-shown), textarea:focus {
    border-color: #7BBC46;
}

.modal-container-content__form-group.error textarea:not(:placeholder-shown), .modal-container-content__form-group.error textarea:focus {
    border-color: #C32F27;
}
/* select:focus{
    border-color: #7BBC46;
} */
.app-content-body-header-navigation__select select {
    width: 100px;
    height: 40px;
    border-radius: 8px;
    outline: none;
    padding: 12px 30px 12px 12px;
    color: #6A6A6A;
}

.app-content-body-header-navigation__btn-back {
    margin-right: 20px;
    width: 50px;
    height: 36px;
}

    .app-content-body-header-navigation__btn-back a {
        display: block;
        width: 100%;
        height: 100%;
        background-image: url('../images/Group 419.svg');
        background-repeat: no-repeat;
    }

.app-content-body-header-navigation__title {
    width: 75%;
}

    .app-content-body-header-navigation__title h2 {
        margin: 0;
        color: #6A6A6A;
        font-size: 21px;
    }

.app-content-body-header__action, .app-content-body-header__pagination {
    display: flex;
    align-items: center;
}

.app-content-body-header-action__button {
    padding: 8px 16px;
    border: 1px solid #7BBC46;
    border-radius: 4px;
    box-shadow: 0px 2px 6px #00000029;
    margin-right: 8px;
    background-color: #ffffff;
    font-size: 12px;
    color: #7BBC46;
    cursor: pointer;
    line-height: 1.5;
}

    .app-content-body-header-action__button:last-child {
        margin-right: unset;
    }

/*.app-content-body-header-action__button span {
    font-size: 12px;
    color: #7BBC46;
}*/

.app-content-body-content {
    padding: 22px 106px;
}

.app-content-body-content-item {
    display: flex;
    margin-bottom: 20px;
}

.app-content-body-content-item--double {
    justify-content: space-between;
}

    .app-content-body-content-item--double .app-content-body-content-item__group:first-child {
        text-align: left;
    }

    .app-content-body-content-item--double .app-content-body-content-item__group:last-child {
        text-align: right;
    }

.app-content-body-content-item__group h3 {
    margin: 0;
    font-size: 14px;
    color: #6A6A6A;
    margin-bottom: 6px;
}

.app-content-body-content-item__group p {
    margin: 0;
    font-size: 14px;
    color: #6A6A6A;
}

.app-content-body-content-item__group table {
    width: 100%;
    background-color: transparent;
    max-width: none !important;
    border-spacing: 0;
    /*table-layout: fixed;*/
    border-bottom: unset !important;
    border-collapse: collapse !important;
}

    .app-content-body-content-item__group table thead tr {
        border-top: 1px solid #00000029;
        border-bottom: 1px solid #00000029;
    }

        .app-content-body-content-item__group table thead tr th, .app-content-body-content-item__group table tbody tr td {
            padding: 10px;
            vertical-align: bottom;
            text-align: left;
            font-size: 12px;
            color: #6a6a6a;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: unset !important;
        }

    .app-content-body-content-item__group table tbody tr {
        border-top: 1px solid #00000029;
        border-bottom: 1px solid #00000029;
        border-collapse: collapse;
    }

    .app-content-body-content-item__group table thead tr th {
    }

.app-content-body-header-pagination__text {
    display: flex;
}

    .app-content-body-header-pagination__text p {
        color: #6A6A6A;
        font-size: 14px;
        margin: 0 2px;
    }

.app-content-body-header-pagination__arrow {
    display: flex;
    align-items: center;
}

    .app-content-body-header-pagination__arrow a {
        display: inline-block;
        text-decoration: none;
        width: 32px;
        height: 32px;
        background-color: #ffffff;
        border: 1px solid #C7C7C7;
        border-radius: 4px;
        padding: 8px 10px;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 10px;
        background-image: url(../images/arrow-disable.svg);
        cursor: default;
        pointer-events: none;
    }

        .app-content-body-header-pagination__arrow a:nth-child(1).active {
            border: 1px solid #7BBC46;
            background-image: url(../images/arrow-active.svg);
            transform: rotate(180deg);
            cursor: pointer;
            pointer-events: auto;
        }

        .app-content-body-header-pagination__arrow a:nth-child(2) {
            transform: rotate(180deg);
        }

            .app-content-body-header-pagination__arrow a:nth-child(2).active {
                border: 1px solid #7BBC46;
                background-image: url(../images/arrow-active.svg);
                cursor: pointer;
                pointer-events: auto;
                transform: rotate(0);
            }


.dataTables_wrapper {
    width: 100%;
    margin: 0 auto;
}

    .dataTables_wrapper .row:nth-child(1), .dataTables_wrapper .row:nth-child(3), .dataTables_wrapper table tfoot {
        display: none;
    }

.dataTables_scrollBody table.table thead tr th {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

    .dataTables_scrollBody table.table thead tr th:after {
        content: unset;
    }
/* Table */
table {
    border-collapse: collapse;
}

.table {
    width: 100%;
    min-height: 400px;
    margin-bottom: 1rem;
    background-color: transparent;
    clear: both;
    max-width: none !important;
    border-spacing: 0;
    /*table-layout: fixed;*/
    border-bottom: unset !important;
    border-collapse: collapse !important;
}

    .table td {
        padding: 16px 4px 16px 20px !important;
        vertical-align: middle !important;
        font-size: 12px;
        color: #6A6A6A;
        /*white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;*/
        border-top: unset !important;
        border-bottom: unset !important;
    }

    .table td, .table th {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

        .table td:last-child {
            overflow: inherit;
        }

    .table thead th {
        position: relative;
        padding: 10px 15px 10px 20px !important;
        vertical-align: bottom;
        text-align: left;
        font-size: 14px;
        color: #BBBBBB;
        font-weight: 600;
        white-space: unset;
        overflow: hidden;
        text-overflow: ellipsis;
        border-bottom: unset !important;
    }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6;
    }

    .table tbody tr {
        border: 1px solid #E0E0E0 !important;
        border-collapse: collapse;
    }

table.dataTable thead .sorting_asc {
    background-image: unset !important;
}

    table.dataTable thead .sorting_asc:after {
        content: '';
        position: absolute;
        margin-left: 4px;
        margin-top: 2px;
        /*top: 32%;*/
        width: 12px;
        height: 14px;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../images/sort-up.svg);
    }

table.dataTable thead .sorting_desc {
    background-image: unset !important;
}

    table.dataTable thead .sorting_desc:after {
        content: '';
        position: absolute;
        margin-left: 4px;
        margin-top: 2px;
        /*top: 32%;*/
        width: 12px;
        height: 14px;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../images/sort-down.svg);
    }

table.dataTable thead .sorting {
    background-image: unset !important;
}

    table.dataTable thead .sorting:after {
        content: '';
        position: absolute;
        margin-left: 4px;
        margin-top: 2px;
        /*top: 32%;*/
        width: 12px;
        height: 14px;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../images/sort.svg);
    }

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background-position: 0 center !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #FFFFFF;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #F3F3F3;
}

.table .dropdown-button {
    padding: 0;
}

.table tbody td span.ellipsis {
    width: 100%;
    display: block;
}

.table tbody td:last-child {
    /*padding: 16px 10px 16px 9px !important;*/
    padding: 16px 4px 16px 20px !important;
}

    .table tbody td:last-child .dropdown {
        border: 1px solid #7BBC46;
        border-radius: 4px;
        padding: unset;
    }

        .table tbody td:last-child .dropdown button {
            font-size: 12px;
            font-weight: normal;
            padding: 0 6px;
            margin: 6px auto;
        }

        .table tbody td:last-child .dropdown .dropdown-menu {
            padding: 12px 0;
            min-width: 100px;
            left: -2px;
        }

            .table tbody td:last-child .dropdown .dropdown-menu li a {
                padding: 8px 12px;
                font-weight: normal;
                line-height: 1.428571432;
                font-size: 12px;
                color: #6A6A6A;
            }

                .table tbody td:last-child .dropdown .dropdown-menu li a:hover {
                    background-color: #7BBC4640;
                }

/* Table With Treeview */
.table.treeview-table thead th:first-child {
    padding-left: 60px !important;
}

.table.treeview-table thead th:last-child {
    padding: 16px 20px 16px 0 !important;
}

.table.treeview-table td:first-child {
    padding-left: 60px !important;
}

.treeview-row-table__button {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50px;
}

/*.treeview-row-table.is-expanded .treeview-row-table__button {
    bottom: 116px;
}*/

.treeview-row-table {
    position: relative;
}

.treeview-row-table__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.treeview-row-table-icon--arrow {
    position: absolute;
    left: 30px;
    background-image: url(../images/arrow-active.svg);
    width: 14px;
    height: 14px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.treeview-row-table.is-expanded .treeview-row-table-icon--arrow {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.treeview-row-table-menu {
    /* max-height: 0; */
    display: none;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    margin-top: 6px;
    border-collapse: separate !important;
    -webkit-transition: max-height 0.3s ease;
    -o-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
}

.treeview-row-table.is-expanded .treeview-row-table-menu {
    /* max-height: 100vh; */
    display: table;
}

.treeview-row-table-menu tbody tr {
    border: unset;
}

    .treeview-row-table-menu tbody tr td {
        padding: 10px 4px 10px 20px !important;
    }

.treeview-table .treeview-row-table-menu tbody td:last-child {
    padding: 16px 0;
}

.treeview-table .treeview-row-table-menu tbody tr td:first-child {
    padding-left: 20px !important;
    width: 58%;
}

.treeview-table .treeview-row-table-menu tbody tr td:nth-child(2) {
    padding-left: 14px;
}

.treeview-table .treeview-row-table-menu tbody tr td:last-child {
    width: 80px;
}

.treeview-table .treeview-row-table-menu tbody tr {
    background: inherit;
}

.button-detail {
    font-size: 12px;
    color: #7BBC46;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
}

    .button-detail:hover, .button-detail:focus {
        color: #7BBC46;
        text-decoration: none;
        outline: 0;
        outline-offset: unset;
    }



/* @media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
} */

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .table-responsive > .table-bordered {
        border: 0;
    }


/*** Tambahan Css ****/
.app-content-header__tabs a:first-child {
    margin-left: 0px;
}

.app-content-header__tabs a.current {
    border: 1px solid #7BBC46;
    color: #7BBC46;
}
/*** Text Editor Css ****/

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

#counter {
    height: 400px;
    overflow-y: auto;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}

#heading {
    cursor: pointer;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
    padding-right: 8px;
}

.box-shadow {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Firefox 3.5 - 3.6 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}


.app-content-dashboard {
}

.app-content-dashboard-numberof {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.app-content-dashboard-numberof-box {
    width: calc(100% / 3 - 20px);
    height: 144px;
    border-radius: 8px;
    padding: 20px 2.3%;
    color: #FFFFFF;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 6px #00000029;
}
 
    /*.app-content-dashboard-numberof-box: {
    width: 268px;
    height: 144px;
    border-radius: 8px;
    padding: 20px;
    color: #FFFFFF;
    font-weight: bold;
    background-size: auto;
    background-position: center;
    box-shadow: 0 0 6px #00000029;
}*/

    .app-content-dashboard-numberof-box:nth-child(1) {
        background-image: url(../images/backgroundof-Subscriber.png);
        /*background: linear-gradient(90deg, rgba(4,139,168,1) 0%, rgba(86,179,199,1) 100%);*/
    }

    .app-content-dashboard-numberof-box:nth-child(2) {
        margin: 0 24px;
        background-image: url(../images/backgroundof-Register.png);
        /*background: linear-gradient(90deg, rgba(209,17,73,1) 0%, rgba(239,112,149,1) 100%);*/
    }

    .app-content-dashboard-numberof-box:nth-child(3) {
        background-image: url(../images/backgroundof-Login.png);
        /*background: linear-gradient(90deg, rgba(255,119,0,1) 0%, rgba(255,174,101,1) 100%);*/
    }

.app-content-dashboard-numberof-box__title {
    margin: 0;
    margin-bottom: 26px;
    font-size: 16px;
    opacity: 0.8;
}

.app-content-dashboard-numberof-box__count {
    margin: 0;
    font-size: 56px;
}

.app-content-dashboard-mclears {
}

.app-content-dashboard-mclears-title {
    margin: 0;
    color: #6A6A6A;
    font-size: 20px;
    font-weight: bold;
}

.app-content-dashboard-mclears-menu {
    display: flex;
    flex-wrap: wrap;
}

.app-content-dashboard-mclears-menu-list {
    width: calc(100% / 3 - 20px);
    height: 100%;
    min-height: 112px;
    background-color: #ffffff;
    box-shadow: 0 0 6px #00000029;
    border-radius: 8px;
    margin-top: 24px !important;
    display: flex;
}

    .app-content-dashboard-mclears-menu-list:nth-child(2),
    .app-content-dashboard-mclears-menu-list:nth-child(5),
    .app-content-dashboard-mclears-menu-list:nth-child(8) {
        margin: 0 24px;
    }

.app-content-dashboard-mclears-menu-list-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    background-color: #71AD40;
    /*width: 106px;*/
    width: 40%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.app-content-dashboard-mclears-menu-list:nth-child(1) .app-content-dashboard-mclears-menu-list-image {
    background-image: url('../images/icon-hph.svg');
}

.app-content-dashboard-mclears-menu-list:nth-child(2) .app-content-dashboard-mclears-menu-list-image {
    background-image: url('../images/icon-riskcharge.svg');
}

.app-content-dashboard-mclears-menu-list:nth-child(3) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-borrowing.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(4) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-haircut.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(5) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-lendable.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(6) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-lending-borrowing.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(7) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-derivative.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(8) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-ecs.svg);
}

.app-content-dashboard-mclears-menu-list:nth-child(9) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-risk-management.svg);
}

app-content-dashboard-mclears-menu-list:nth-child(10) .app-content-dashboard-mclears-menu-list-image {
    background-image: url(../images/icon-eipo.svg);
}

.app-content-dashboard-mclears-menu-list-content {
    /*width: 180px;*/
    width: 62%;
    padding: 24px 7.3%;
    position: relative;
}

.app-content-dashboard-mclears-menu-list-content-withdetail {
    position: absolute;
    right: 20px;
    bottom: 14px;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-detail.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.app-content-dashboard-mclears-menu-list-content-title {
    margin: 0;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #7BBC46;
    opacity: 0.8;
}

    .app-content-dashboard-mclears-menu-list-content-title span {
        margin-left: 4px;
    }

.app-content-dashboard-mclears-menu-list-content-count {
    margin: 0;
    font-size: 32px;
    color: #6A6A6A;
    line-height: 1;
}
