    body {
        padding: 0;
        margin: 0;
        font-family: 'Roboto', sans-serif;
        overflow-x: hidden;
        background-color: #F5F6F9;
        color: #282A3A;
    }
    
    * {
        font-family: 'Roboto', sans-serif;
    }
    /* login page */
    
    .login-section {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F5F6F9;
    }
    
    .login-box {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        width: 335px;
        box-shadow: 0px 3px 6px rgba(14, 49, 77, 0.1);
    }
    
    .login-box>img {
        width: 80px;
        margin-bottom: 15px;
    }
    
    .login-box h2 {
        color: #282a3a;
        font-size: 18px;
        font-weight: bold;
        line-height: 22px;
        margin-bottom: 15px;
    }
    
    .login-box a {
        display: block;
        color: rgba(40, 42, 58, 1);
        font-size: 12px;
        font-weight: 400;
        text-align: center;
        margin-top: 20px;
    }
    
    .login-box p {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 16px;
    }
    
    .input-item {
        background-color: #F6F2F8;
        padding: 0 13px;
        font-size: 13px;
        color: rgba(40, 42, 58, 1);
        border: 0;
        height: 40px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .textarea-item {
        background-color: rgba(246, 242, 248, 1);
        padding: 10px;
        font-size: 13px;
        color: rgba(40, 42, 58, 1);
        width: 100%;
        height: 110px;
        resize: none;
        margin-bottom: 8px;
        border: 0;
    }
    
    .input-item::placeholder,
    .textarea-item::placeholder {
        color: rgba(40, 42, 58, 0.8);
    }
    
    .DSA_btn {
        width: 100%;
        height: 40px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        background-color: rgba(244, 152, 127, 1);
        color: #fff;
        border: 0;
        border-radius: 10px;
    }
    /* login page end */
    /* layout */
    
    #close-sidebar button {
        background-color: rgba(245, 246, 249, 1);
        border: 0;
        border-radius: 5px;
        margin-left: auto;
        display: flex;
        align-items: center;
        height: 30px;
    }
    
    #close-sidebar button img {
        width: 15px;
    }
    
    @keyframes swing {
        0% {
            transform: rotate(0deg);
        }
        10% {
            transform: rotate(10deg);
        }
        30% {
            transform: rotate(0deg);
        }
        40% {
            transform: rotate(-10deg);
        }
        50% {
            transform: rotate(0deg);
        }
        60% {
            transform: rotate(5deg);
        }
        70% {
            transform: rotate(0deg);
        }
        80% {
            transform: rotate(-5deg);
        }
        100% {
            transform: rotate(0deg);
        }
    }
    
    @keyframes sonar {
        0% {
            transform: scale(0.9);
            opacity: 1;
        }
        100% {
            transform: scale(2);
            opacity: 0;
        }
    }
    
    .page-wrapper .sidebar-wrapper,
    .sidebar-wrapper .sidebar-brand>a,
    .sidebar-wrapper .sidebar-dropdown>a:after,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
    .sidebar-wrapper ul li a i,
    .page-wrapper .page-content,
    .sidebar-wrapper .sidebar-search input.search-menu,
    .sidebar-wrapper .sidebar-search .input-group-text,
    .sidebar-wrapper .sidebar-menu ul li a,
    #show-sidebar,
    #close-sidebar {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    /*----------------toggeled sidebar----------------*/
    
    .page-wrapper.toggled .sidebar-wrapper {
        left: -250px;
    }
    
    .page-wrapper.toggled main {
        width: 100%;
        margin-left: 0;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    @media screen and (min-width: 768px) {
        .page-wrapper.toggled .page-content {
            padding-left: 300px;
        }
    }
    /*----------------show sidebar button----------------*/
    
    #show-sidebar {
        border-radius: 0 4px 4px 0px;
        width: 20px;
        transition-delay: 0.3s;
        padding: 0;
    }
    
    .page-wrapper.toggled #show-sidebar {
        left: -40px;
    }
    
    .page-wrapper.toggled #show-sidebar:focus {
        outline: 0;
        box-shadow: none !important;
    }
    /*----------------sidebar-wrapper----------------*/
    
    .sidebar-wrapper {
        width: 180px;
        height: 100%;
        max-height: 100%;
        position: fixed;
        top: 0;
        background-color: #fff;
        left: 0px;
        z-index: 999;
    }
    
    .sidebar-wrapper ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-wrapper a {
        text-decoration: none;
    }
    /*----------------sidebar-content----------------*/
    /* .sidebar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
  } */
    
    .sidebar-content.desktop {
        overflow-y: hidden;
    }
    /*--------------------sidebar-brand----------------------*/
    
    .sidebar-wrapper .sidebar-brand {
        padding: 10px 20px;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .sidebar-wrapper .sidebar-brand>a {
        display: block;
        width: 75px;
        height: 75px;
        margin: 0 auto;
    }
    
    .sidebar-wrapper .sidebar-brand>a>img {
        width: 100%;
    }
    
    .sidebar-wrapper .sidebar-brand #close-sidebar {
        cursor: pointer;
        font-size: 20px;
        display: none;
        right: 10px;
        top: 10px;
        position: absolute;
    }
    /*--------------------sidebar-header----------------------*/
    
    .sidebar-header:hover {
        cursor: pointer;
    }
    
    .sidebar-wrapper .sidebar-header {
        padding: 20px;
        display: flex;
        overflow: hidden;
    }
    
    .user-picture {
        position: relative;
    }
    
    .user-grade {
        position: absolute;
        border: 2px solid #E9883D;
        background-color: #F2AA4C;
        display: flex;
        height: 21px;
        width: 21px;
        right: 10px;
        top: 6px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .sidebar-wrapper .sidebar-header .user-pic {
        float: left;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        margin-right: 10px;
        overflow: hidden;
    }
    
    .sidebar-wrapper .sidebar-header .user-pic img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-role {
        font-size: 12px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status i {
        font-size: 8px;
        margin-right: 4px;
        color: #5cb85c;
    }
    /*-----------------------sidebar-search------------------------*/
    
    .sidebar-wrapper .sidebar-search>div {
        padding: 10px 20px;
    }
    /*----------------------sidebar-menu-------------------------*/
    
    .sidebar-wrapper .sidebar-menu {
        padding-bottom: 10px;
    }
    
    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        position: relative;
        line-height: 29px;
        padding: 0;
        /* padding: 8px 30px 8px 20px; */
    }
    
    .sidebar-wrapper .sidebar-menu ul li {
        padding: 0 15px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a i {
        margin-right: 10px;
        font-size: 12px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 4px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
        display: inline-block;
        animation: swing ease-in-out 0.5s 1 alternate;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
        content: '';
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        background: 0 0;
        position: absolute;
        right: 15px;
        top: 14px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 5px 0;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 25px;
        font-size: 13px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
        transform: rotate(90deg);
        right: 17px;
    }
    
    .sidebar-dropdown.current .sidebar-submenu {
        display: block !important;
    }
    
    .badge {
        height: 16px;
        width: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #EE992A;
        color: rgba(255, 255, 255, 0.9);
        font-size: 10px;
        line-height: 16px;
    }
    /*--------------------------side-footer------------------------------*/
    
    .sidebar-footer {
        position: absolute;
        width: 100%;
        bottom: 0;
        display: flex;
    }
    
    .sidebar-footer>a {
        flex-grow: 1;
        text-align: center;
        height: 30px;
        line-height: 30px;
        position: relative;
    }
    
    .sidebar-footer>a .notification {
        position: absolute;
        top: 0;
    }
    
    .badge-sonar {
        display: inline-block;
        background: #980303;
        border-radius: 50%;
        height: 8px;
        width: 8px;
        position: absolute;
        top: 0;
    }
    
    .badge-sonar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border: 2px solid #980303;
        opacity: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        animation: sonar 1.5s infinite;
    }
    
    .sidebar-wrapper .sidebar-brand #close-sidebar {
        cursor: pointer;
        font-size: 20px;
        width: 100%;
    }
    /*--------------------sidebar-header----------------------*/
    
    .sidebar-wrapper .sidebar-header {
        padding: 15px;
        overflow: hidden;
        width: 100%;
        padding-right: 25px;
    }
    
    .sidebar-header:after {
        content: '';
        width: 10px;
        height: 10px;
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: rotate(90deg);
        background-image: url(../images/svg/left-arrow.svg);
        background-size: 10px;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .sidebar-footer.show .sidebar-header:after {
        transform: rotate(270deg);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .sidebar-wrapper .sidebar-header .user-info p {
        font-size: 12px;
        color: rgba(40, 42, 58, 1);
        line-height: 19px;
        border-bottom: 0;
        font-weight: 500;
        margin-bottom: 0;
        font-weight: 500;
    }
    
    .sidebar-wrapper .sidebar-header .user-info>span {
        display: block;
        color: rgba(40, 42, 58, 1);
        font-size: 10px;
        line-height: 13px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-role {
        font-size: 12px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status i {
        font-size: 8px;
        margin-right: 4px;
        color: #5cb85c;
    }
    
    button:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    /*-----------------------sidebar-search------------------------*/
    
    .sidebar-wrapper .sidebar-search>div {
        padding: 10px 20px;
    }
    /*----------------------sidebar-menu-------------------------*/
    
    .sidebar-wrapper .sidebar-menu {
        padding-bottom: 10px;
        height: calc(100vh - 171px);
    }
    
    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }
    
    .sidebar-wrapper .sidebar-menu>ul>li {
        margin-bottom: 10px;
    }
    
    .sidebar-wrapper .sidebar-menu>ul>li>a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        font-size: 14px;
        line-height: 40px;
        position: relative;
        padding-left: 23px;
        color: #4A265A;
        font-weight: 400;
    }
    
    .sidebar-wrapper .sidebar-menu>ul>li>a img {
        margin-right: 15px;
    }
    
    .sidebar-wrapper .sidebar-menu>ul>li.active>a {
        background-color: rgba(255, 255, 255, 0.10);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .sidebar-wrapper .sidebar-menu ul li a i {
        margin-right: 10px;
        font-size: 12px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 4px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
        display: inline-block;
        animation: swing ease-in-out 0.5s 1 alternate;
    }
    /* .sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    content: "";
    background-image: url(../images/svg/left-arrow.svg);
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 14px;
} */
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 0;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 0;
        background-color: rgba(255, 255, 255, 0.05);
        font-weight: 400;
        border-bottom: 1px solid #664872;
        font-size: 13px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
        color: rgba(255, 255, 255, 0.9);
        padding: 8px 30px 8px 50px;
        font-weight: 400;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li.current {
        /* border-left: 2px solid #F2AA4C; */
        background-color: rgba(255, 255, 255, 0.10) !important;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li.current a {
        color: rgba(255, 255, 255, 0.9);
    }
    /* .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
} */
    
    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
        transform: rotate(180deg);
        right: 17px;
    }
    
    .sidebar-wrapper .sidebar-menu .current>a,
    .sidebar-wrapper .sidebar-menu .current .sidebar-submenu li {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .sidebar-wrapper .sidebar-menu .current>a {
        border-radius: 20px;
        background-color: rgba(233, 220, 239, 0.5);
    }
    
    .sidebar-wrapper .sidebar-menu li>a {
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .sidebar-wrapper .sidebar-menu li:hover>a {
        border-radius: 20px;
        background-color: rgba(233, 220, 239, 0.5);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .sidebar-wrapper .sidebar-menu .current.sidebar-dropdown>a {
        border-left: 0;
    }
    
    .sidebar-dropdown>a:after {
        content: '';
        height: 14px;
        width: 14px;
        position: absolute;
        right: 15px;
        top: 14px;
        background-image: url(../images/svg/down-arrow.svg) !important;
        background-repeat: no-repeat;
        background-size: 14px;
        background-position: right 14px center;
    }
    /*--------------------------side-footer------------------------------*/
    
    .sidebar-footer {
        position: absolute;
        width: 100%;
        bottom: 0;
        display: flex;
    }
    
    .sidebar-footer .dropdown-menu.show {
        left: -10px !important;
    }
    
    .sidebar-footer>a {
        flex-grow: 1;
        text-align: center;
        height: 30px;
        line-height: 30px;
        position: relative;
    }
    
    .sidebar-footer>a .notification {
        position: absolute;
        top: 0;
    }
    
    .badge-sonar {
        display: inline-block;
        background: #980303;
        border-radius: 50%;
        height: 8px;
        width: 8px;
        position: absolute;
        top: 0;
    }
    
    .badge-sonar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border: 2px solid #980303;
        opacity: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        animation: sonar 1.5s infinite;
    }
    
    .icon {
        display: inline-block;
        height: 17px;
        margin: auto;
        margin-right: 10px;
        width: 17px;
        mask-position: center;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        opacity: 0.5;
        background-color: rgba(255, 255, 255, 0.85);
    }
    
    .sidebar-wrapper .sidebar-menu ul li.active .icon {
        background-color: rgba(255, 255, 255, 1);
    }
    
    .icon-dashboard {
        mask-image: url(../images/svg/dashboard-icon.svg);
        -webkit-mask-image: url(../images/svg/dashboard-icon.svg);
    }
    
    .icon-purchase {
        mask-image: url(../images/svg/purchase.svg);
        -webkit-mask-image: url(../images/svg/purchase.svg);
    }
    
    .icon-meeting {
        mask-image: url(../images/svg/meeting.svg);
        -webkit-mask-image: url(../images/svg/meeting.svg);
    }
    
    .icon-follwup {
        mask-image: url(../images/svg/followup-icon.svg);
        -webkit-mask-image: url(../images/svg/followup-icon.svg);
    }
    
    .icon-order {
        mask-image: url(../images/svg/orders-icon.svg);
        -webkit-mask-image: url(../images/svg/orders-icon.svg);
    }
    
    .icon-content {
        mask-image: url(../images/svg/content-icon.svg);
        -webkit-mask-image: url(../images/svg/content-icon.svg);
    }
    
    .icon-notification {
        mask-image: url(../images/svg/notification-icon.svg);
        -webkit-mask-image: url(../images/svg/notification-icon.svg);
    }
    
    .icon-contacts {
        mask-image: url(../images/svg/);
        -webkit-mask-image: url(../images/svg/notification-icon.svg);
    }
    
    .icon-chat {
        mask-image: url(../images/svg/chat-icon.svg);
        -webkit-mask-image: url(../images/svg/chat-icon.svg);
    }
    
    .icon-info {
        mask-image: url(../images/svg/my-info-icon.svg);
        -webkit-mask-image: url(../images/svg/my-info-icon.svg);
    }
    
    .sidebar-footer ul {
        width: 100%;
    }
    
    .sidebar-footer ul li>label {
        font-size: 13px;
        color: rgba(238, 153, 42, 1);
        line-height: 18px;
        margin-bottom: 0;
    }
    
    .sidebar-footer ul li>p {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        line-height: 18px;
        margin-left: auto;
        display: inline-block;
    }
    
    .sidebar-footer ul li {
        display: flex;
        padding: 6px 15px 6px 25px;
        background-color: rgba(54, 23, 68, 1);
        border-bottom: 1px solid #664872;
    }
    /* layout end */
    /* dashboard page */
    
    main {
        width: calc(100% - 180px);
        margin-left: 180px;
        padding: 0 20px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .DSA-head {
        padding: 15px 0;
        display: flex;
        flex-wrap: wrap;
        height: 70px;
        align-items: center;
    }
    
    .DSA-head h2 {
        color: #282A3A;
        display: inline-block;
        font-size: 18px;
        line-height: 24px;
        margin-left: 13px;
        font-weight: bold;
        margin-bottom: 0;
    }
    
    .DSA-subhead {
        height: unset;
        padding-top: 25px;
    }
    
    .DSA-subhead h2 {
        margin-left: 0;
    }
    
    .DSA-head .btn img {
        width: 18px;
    }
    
    .dashboard-row {
        margin: 0 !important;
        display: flex;
        flex-wrap: wrap;
    }
    
    .card-col [class*='col-'] {
        padding: 35px 0;
    }
    
    .dashboard-detail {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 3px 6px #0E314D1A;
    }
    
    .dashboard-card {
        text-align: center;
        margin-bottom: 7px;
        border-right: 1px solid #EBE7EE;
    }
    
    .brdr-0 {
        border: 0 !important;
    }
    
    .dashboard-card>img {
        width: 45px;
        margin-bottom: 7px;
    }
    
    .dashboard-card>p {
        color: rgba(40, 42, 58, 0.7);
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .dashboard-card h2 {
        color: #282A3A;
        font-size: 37px;
        font-weight: bold;
        margin-bottom: 0;
        line-height: 49px;
    }
    
    .sync-detail {
        text-align: center;
        background-color: #6D3187;
        height: 100%;
        padding-bottom: 15px;
    }
    
    .sync-detail>img {
        margin: 23px 0 20px 0;
    }
    
    .sync-detail>p {
        font-size: 12px;
        line-height: 16px;
        color: #fff;
        margin-bottom: 5px;
    }
    
    .sync-detail>h2 {
        font-size: 20px;
        color: #fff;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .sync-detail .DSA_btn {
        max-width: 180px;
    }
    
    .status-tag {
        height: 17px;
        padding: 2px 9px;
        line-height: 17px;
        border-radius: 8px;
        font-size: 10px;
    }
    
    .tag-orange {
        background-color: rgba(238, 153, 42, 0.2);
        color: rgba(238, 153, 42, 1);
    }
    
    .tag-violet {
        background-color: rgba(109, 49, 135, 0.2);
        color: rgba(109, 49, 135, 1);
    }
    
    .tag-green {
        background-color: rgba(103, 172, 33, 0.2);
        color: rgba(78, 151, 48, 1);
    }

.tag-red {
    background-color: red;
    color: red;
}
    
    .action-btn {
        background-color: transparent;
        border: 0;
        padding: 0;
    }
    
    .product-img {
        width: 35px;
    }
    
    .action-btn img {
        width: 15px;
    }
    
    .table {
        box-shadow: 0px 0px 6px rgba(14, 49, 77, 0.1);
        background-color: #fff;
        border: 0;
        border-radius: 10px;
        overflow: visible;
    }
    
    .table thead tr th {
        background-color: rgba(245, 246, 249, 1);
        font-size: 12px;
        line-height: 16px;
        color: rgba(11, 32, 70, 1);
        font-weight: 500;
        white-space: nowrap;
        border-bottom: 0;
        vertical-align: middle;
    }
    
    .table thead th {
        background-image: url(../images/icons/shoting_arrow.png);
        background-size: 6px;
        background-position: right 0px center;
        background-repeat: no-repeat;
    }
    
    .noshort {
        background-image: unset !important;
    }
    
    .table tbody tr td,
    .table tbody tr td p {
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
        white-space: nowrap;
        vertical-align: middle;
        margin-bottom: 0;
    }
    
    .shoppe-link {
        height: 23px;
        width: 23px;
        border-radius: 50%;
        background-color: rgba(109, 49, 135, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .viewall-link {
        color: rgba(244, 152, 127, 1);
        font-size: 12px;
        line-height: 16px;
        margin-left: auto;
    }
    
    .table-set {
        width: 100%;
        box-shadow: 0px 0px 6px rgba(14, 49, 77, 0.1);
        border-radius: 10px;
        background-color: #fff;
        overflow: hidden;
        background-color: #fff;
    }
    
    .table-set .table {
        margin-bottom: 0;
    }
    
    .text-ellipsis {
        white-space: normal !important;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .dropdown-menu.show {
        display: block;
        border: 0;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        min-width: 106px;
        padding: 0;
    }
    
    .dropdown-item {
        font-size: 12px;
        color: rgba(11, 32, 70, 1);
        border-bottom: 1px solid rgba(112, 112, 112, 0.01);
        line-height: 16px;
        padding: 8px 12px !important;
    }
    
    @media (max-width: 1024px) {
        main {
            width: 100%;
            margin-left: 0;
        }
        .sidebar-wrapper .sidebar-brand #close-sidebar {
            display: block;
        }
    }
    
    @media(max-width:640px) {
        .dashboard-card {
            border-right: 0;
        }
        .card-col [class*='col-'] {
            border-bottom: 1px solid #EBE7EE;
        }
    }
    
    @media(max-width:450px) {
        .table-set {
            overflow-x: auto;
        }
    }
    /* dashboard page end */
    /* product page */
    
    .dataTables_wrapper {
        background-color: #fff;
        border-radius: 10px;
        width: 100%;
        /* overflow-x: auto; */
        box-shadow: 0px 0px 6px rgba(14, 49, 77, 0.1);
    }
    
    .dataTables_wrapper .action-btn {
        margin-right: 10px;
    }
    
    .dataTables_wrapper .table {
        border-radius: 0;
        box-shadow: none;
    }
    
    .product-info {
        text-align: center;
    }
    
    .product-info {
        margin-bottom: 20px;
    }
    
    .product-info img {
        width: 115px;
    }
    
    .product-info p {
        color: rgba(11, 32, 70, 1);
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 4px;
    }
    
    .product-info h2 {
        font-size: 14px;
        line-height: 19px;
        color: rgba(11, 32, 70, 1);
        font-size: 500;
    }
    
    .form-content {
        margin-bottom: 15px;
    }
    
    .form-content label {
        font-size: 10px;
        line-height: 13px;
        color: rgba(40, 42, 58, 1);
        margin: 0;
    }
         label {
            font-size: 10px;
            line-height: 13px;
            color: rgba(40, 42, 58, 1);
            margin: 0;
        }
    
    .form-content p {
        font-size: 13px;
        margin-bottom: 0;
    }
    
    @media(max-width:767px) {
        .dataTables_wrapper {
            overflow-x: auto;
        }
    }
    /* product page end */
    
    .box-overlay {
        height: 100vh;
        width: 100vw;
        background-color: rgba(40, 42, 58, 0.2);
        position: fixed;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .box-overlay.open {
        opacity: 1;
        z-index: 99;
        visibility: visible;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
    
    .box-info,
    .box-info1 {
        width: 450px;
        background-color: #fff;
        right: 15px;
        position: fixed;
        z-index: 100;
        height: calc(100vh - 30px);
        border-radius: 10px;
        overflow: hidden;
        top: 15px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .box-info .form-row,
    .box-info1 .form-row {
        margin-left: -7px;
        margin-right: -7px;
    }
    
    .box-info .form-row [class*=col-],
    .box-info1 .form-row [class*=col-] {
        padding-left: 7px;
        padding-right: 7px;
    }
    
    .box-info.collapsed-box,
    .box-info1.collapsed-box {
        right: -500px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .box-2 {
        opacity: 0;
        background-color: #fff;
        visibility: hidden;
        z-index: -10;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .open-box .box-2 {
        opacity: 1;
        background-color: #fff;
        visibility: visible;
        z-index: 101;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .open-box .box-1 {
        opacity: 0;
        display: none;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .box-info-head {
        padding: 15px 15px;
        height: 50px;
        display: flex;
        align-items: center;
    }
    
    .box-info-head h2 {
        font-size: 16px;
        font-weight: bold;
        line-height: 21px;
        margin-bottom: 0;
    }
    
    .box-close-btn,
    .box-close-btn1 {
        background-color: transparent;
        border: 0;
        width: 12px;
        padding: 0;
        margin-left: auto;
    }
    
    .box-close-btn img,
    .box-close-btn1 img {
        width: 100%;
    }
    
    .box-info-body,
    .box-info-body1 {
        padding: 10px 15px;
        height: calc(100vh - 110px);
    }
    
    .without-footer-body {
        height: calc(100vh - 70px);
    }
    
    .box-info-footer {
        height: 40px;
        text-align: right;
        background-color: rgba(244, 152, 127, 1);
        position: fixed;
        bottom: 15px;
        width: 450px;
        justify-content: flex-end;
        display: flex;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    .box-info-footer .clear-btn {
        opacity: 0.5;
    }
    
    .box-info-footer button {
        float: right;
        border: 0;
        background-color: transparent;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        margin-right: 20px;
    }
    
    .box-info-sm,
    .box-info-sm .box-info-footer {
        width: 350px !important;
    }
    
    @media(max-width:450px) {
        .box-info,
        .box-info1,
        .box-info-sm,
        .box-info-sm .box-info-footer,
        .box-info-footer {
            width: 100% !important;
        }
        .box-info {
            right: 0;
        }
    }


label.error {
    float: right;
    line-height: 0px;
    font-size: 10px !important;
    color: #fd8a13 !important;
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    display: block;
}

    input[type=checkbox]:before {
        content: "";
        display: block;
        position: absolute;
        width: 17px;
        height: 17px;
        top: 0;
        left: 0;
        border: 1px solid #F2F3F5;
        border-radius: 0;
        background-color: #F2F3F5;
    }

    input[type=checkbox]:checked:after {
        content: "";
        display: block;
        width: 5px;
        height: 10px;
        border: solid #0B2046;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 2px;
        left: 6px;
    }
.formActive {
    height: 57px;
}
    /* box end */




/*Loader Start*/

.lds-ellipsis, .lds-ellipsis-frm {
    display: inline-block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(68, 68, 68, 0.1);
    z-index: 99999;
}

.lds_box {
    position: absolute;
    background-color: #5c2972;
    z-index: 999999;
    top: 48%;
    right: 48%;
    width: 75px;
    height: 50px;
}

.lds-ellipsis .lds_box div {
    position: absolute;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f2f3f5;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

    .lds-ellipsis .lds_box div:nth-child(1) {
        left: 12px;
        animation: lds-ellipsis1 0.6s infinite;
    }

    .lds-ellipsis .lds_box div:nth-child(2) {
        left: 12px;
        animation: lds-ellipsis2 0.6s infinite;
    }

    .lds-ellipsis .lds_box div:nth-child(3) {
        left: 32px;
        animation: lds-ellipsis2 0.6s infinite;
    }

    .lds-ellipsis .lds_box div:nth-child(4) {
        left: 55px;
        animation: lds-ellipsis3 0.6s infinite;
    }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

.alert-success {
    background-color: rgba(103, 172, 33, 0.2);
    color: rgba(78, 151, 48, 1);
    border: 0;
    font-size: 14px;
}

    .alert-success .close {
        /* color: #282A3A; */
        color: rgba(78, 151, 48, 1);
        opacity: 1;
        font-weight: 400;
        text-shadow: unset;
    }

.alert-danger {
    border: 0;
    background-color: rgb(255 229 231 / 0.8);
    font-size: 14px;
}

    .alert-danger .close {
        opacity: 1;
        color: #721c24;
        font-weight: 400;
        text-shadow: unset;
    }


.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.4;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.fw-500 {
    font-weight: 600 !important;
}

/*.input-item {
    color: rgba(40, 42, 58, 1);
    font-size: 13px;
    background-color: rgba(246, 242, 248, 1);
    height: 40px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
}*/

.add-btn {
    background-color: rgba(248, 127, 14, 1);
    border-radius: 0;
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    border: 0;
    text-transform: uppercase;
    margin-left: auto;
    padding: 7px 15px;
    box-shadow: 0 3px 6px rgba(14, 49, 77, .1);
    transition: all 0.2s ease;
}

.box-btn {
    float: right;
    position: absolute;
    top: 3%;
    /* transform: translateY(-50%); */
    right: 2%;
    z-index: 10;
}

/* for modal */

.modal-delete .modal-title {
    font-size: 18px;
}

.modal-body {
    color: #212529;
    font-size: 14px;
    padding: 15px 20px;
}

.modal-delete .modal-content {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1) !important;
    border: 0 !important;
}

.modal-delete .modal-header {
    border-bottom: 1px solid #EEF1F6;
    padding: 10px 20px;
}

.modal-delete .modal-footer {
    justify-content: center;
    border: 0;
}

    .modal-delete .modal-footer button {
        font-size: 14px;
        height: 35px;
        width: 90px;
        border: 0 !important;
    }

    .modal-delete .modal-footer .btn-primary {
        background-color: rgba(248, 127, 14, 1);
    }

    .modal-delete .modal-footer .btn-secondary {
        background-color: #a7afb5;
    }