:root {
    --accent: #22AAC9;
    /*#90d4e4*/
}

/* ----------------------------------- General ----------------------------------- */
    /*@-webkit-keyframes animationLoadContent {
        0% { opacity: 0; -webkit-transform: translateX(100px); }
        100% { opacity: 1; -webkit-transform: translateX(0); }
    }
         
    @keyframes animationLoadContent {
        0% { opacity: 0; transform: translateX(100px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    .content-wrapper {
        animation: animationLoadContent ease 1.2s;
        animation-iteration-count: 1; 
        animation-fill-mode: forwards;
    }*/
    
    .opacity-1 { opacity: 0.1; }
    .opacity-2 { opacity: 0.2; }
    .opacity-3 { opacity: 0.3; }
    .opacity-4 { opacity: 0.4; }
    .opacity-5 { opacity: 0.5; }
    .opacity-6 { opacity: 0.6; }
    .opacity-7 { opacity: 0.7; }
    .opacity-8 { opacity: 0.8; }
    .opacity-9 { opacity: 0.9; }

    .font-10 { font-size: 10px !important; }
    .font-11 { font-size: 11px !important; }
    .font-12 { font-size: 12px !important; }
    .font-13 { font-size: 13px !important; }
    .font-14 { font-size: 14px !important; }
    .font-15 { font-size: 15px !important; }
    .font-16 { font-size: 16px !important; }
    .font-17 { font-size: 17px !important; }
    .font-18 { font-size: 18px !important; }
    .font-19 { font-size: 19px !important; }
    .font-20 { font-size: 20px !important; }
    .font-21 { font-size: 21px !important; }
    .font-22 { font-size: 22px !important; }
    .font-23 { font-size: 23px !important; }
    .font-24 { font-size: 24px !important; }
    .font-25 { font-size: 25px !important; }

    .font-weight-light { font-weight: 300 !important; }
    .font-weight-lighter { font-weight: lighter !important; }
    .font-weight-normal { font-weight: 400 !important; }
    .font-weight-500 { font-weight: 500 !important; }
    .font-weight-600 { font-weight: 600 !important; }
    .font-weight-bold { font-weight: 800 !important; }
    .font-weight-900 { font-weight: 900 !important; }
    .font-weight-bolder { font-weight: bolder !important; }
    .font-italic { font-style: italic !important; }

    .text-black { color: #212529; }
    .p-absolute { position: absolute; }
    .p-relative { position: relative; }

    .list-unstyled { padding-left: 0; list-style: none; }
    .list-inline { padding-left: 0; list-style: none; }
    .list-inline-item { display: inline-block; }
    .list-inline-item:not(:last-child) { margin-right: 0.5rem; }

    .elevation-0 { box-shadow: none !important; }
    .elevation-1 { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important; }
    .elevation-2 { box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important; }
    .elevation-3 { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important; }
    .elevation-4 { box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important; }
    .elevation-5 { box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important; }

    .content-header { padding: 15px 0.5rem; }
    .content-header h1 { font-size: 1.5rem !important; margin: 0; }
    .content-wrapper { background: #ffffff !important; }

    .trans_200 {
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }
    .trans_300 {
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }
    .trans_400 {
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
    }
    .trans_500 {
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .shadow-box { box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); }
    .line-shadow { border-bottom: 1px solid #C4C4C4; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }

    .small-box {
        border: none;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 1);
    }
    .small-box:hover { transition: all 0.3s linear; }

    .small-box > .inner {
        padding: 20px;
    }

    .small-box h3 { font-size: 2.2rem; color: #ffffff; }
    .small-box p { font-size: 1rem; color: #ffffff; }
    .small-box .icon > i {
        color: rgba(255, 255, 255, 0.6);
        font-size: 70px;
        position: absolute;
        right: 15px;
        top: 15px;
        transition: none;
    }
    .small-box:hover .icon > i { font-size: 70px; }

    .btn-delete-record { left: 12rem; }

    .user-avatar { background-size: cover; background-position: center; background-repeat: no-repeat; }

    .not-found { height: 250px; }
    .not-found .icon { font-size: 6rem; }
/* ----------------------------------- End General ----------------------------------- */


/* ----------------------------------- Sidebar ----------------------------------- */
    [class*='sidebar-light-'] .nav-sidebar > .nav-item.menu-open > .nav-link {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        color: #2D2D2D;
        -webkit-transition: all 0.6s ease; 
        -o-transition: all 0.6s ease; 
        transition: all 0.6s ease;
    }
    [class*='sidebar-light-'] .nav-sidebar > .nav-item:hover > .nav-link { background: none; color: #2D2D2D; }

    .sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 1) 20%, rgba(144, 212, 228, 1) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 1) 20%, rgba(144, 212, 228, 1) 90%);
        color: #ffffff;
    }

    [class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link { color: #2D2D2D; }
    [class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link:hover {
        background: none; color: #2D2D2D;
        /*background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        color: #2D2D2D;
        -webkit-transition: all 0.6s ease; 
        -o-transition: all 0.6s ease; 
        transition: all 0.6s ease;*/
    }
    [class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link.active, [class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link.active:hover {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 0.2) 20%, rgba(144, 212, 228, 0.2) 90%);
        color: #2D2D2D;
    }
/* ----------------------------------- End Sidebar ----------------------------------- */


/* ----------------------------------- Login ----------------------------------- */
    .login { width: 100%; margin: 0 auto; }
    .login .container-login {
        width: 100%;  
        min-height: 100vh;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }
    .login .box-login {
        width: 350px;
        padding: 40px 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.6);
        box-shadow: 8px 8px 20px 10px rgba(0, 0, 0, 0.3);
    }
    .login .box-login .header-box-login { align-items: center; display: flex; flex-wrap: wrap; flex-direction: column; padding: 20px 0; margin-bottom: 20px; }
    .login .box-login .header-box-login img { max-width: 160px; } 
/* ----------------------------------- End Login ----------------------------------- */


/* ----------------------------------- Form Custome ----------------------------------- */
    .custom-checkbox input[type="checkbox"] {
        position: relative;
        width: 18px;
        height: 18px;
        border-radius: 3px;
        color: black;
        border: 1px solid #22AAC9 !important;
        appearance: none;
        outline: 0;
        cursor: pointer;
        transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
        -webkit-transition: all;
        -moz-transition: all;
        -ms-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
    }
    .custom-checkbox input[type="checkbox"]:before {
        position: absolute;
        content: '';
        display: block;
        top: 0px;
        left: 4.5px;
        width: 7px;
        height: 12px;
        border-style: solid;
        border-color: white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        opacity: 0;
        -webkit-transition: all;
        -moz-transition: all;
        -ms-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
    }
    .custom-checkbox input[type="checkbox"]:checked { color: #ffffff; border-color: #22AAC9; background: #22AAC9; }
    .custom-checkbox input[type="checkbox"]:checked::before { opacity: 1; }


    .has-error { color: /*#DC3545*/rgba(232, 83, 71, 1) !important; font-weight: normal !important; font-size: 12px !important; }
    .has-error > input { border: 1px solid rgba(232, 83, 71, 1) !important; }
    .has-error > select { border: 1px solid rgba(232, 83, 71, 1) !important; }
    .has-error > textarea { border: 1px solid rgba(232, 83, 71, 1) !important; }
    .has-error > .select2-container .select2-selection--single { border: 1px solid rgba(232, 83, 71, 1) !important; }

    .form-style { width: 100%; }
    .form-style .form-group { width: 100%; position: relative; margin-bottom: 10px; }
    .form-style .form-group .form-label { font-weight: bold; font-size: 13px; line-height: 1.2; }
    .form-style .form-group .form-control {
        font-size: 14px;
        line-height: 1.1;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }
    .select2-container .select2-selection--single {
        cursor: pointer;
        display: block;
        user-select: none;
        -webkit-user-select: none;
        height: calc(1.875rem + 2px);
        font-size: 0.8125rem; 
        font-weight: 400; 
        line-height: 1.125rem;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }
    .form-style .form-group .form-control::placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style .form-group .form-control::-webkit-input-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style .form-group .form-control::-moz-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style .form-group .form-control:-ms-input-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style .form-group .form-control:-moz-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    /*.form-style .form-group textarea.form-control { height: inherit !important; }*/
    .form-style .block-bottom { margin-top: 2rem; }

    .form-style a.lupa-password { font-size: 12px; line-height: 20px; }
    .eye-icon-secret { position: absolute; bottom: 10px; right: 10px; color: #151515; }


    .form-style-2 { width: 100%; }
    .form-style-2 .form-group { /*width: 100%;*/ position: relative; margin-bottom: 0; }
    .form-style-2 .form-group .form-control {
        font-size: 14px;
        line-height: 16px;
        color: #2D2D2D;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
        border-radius: 5px;
        border: 1px solid #dee2e6 !important;
        background: rgba(255, 255, 255, 1);
    }
    .form-style-2 .form-group .form-control::placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style-2 .form-group .form-control::-webkit-input-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style-2 .form-group .form-control::-moz-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style-2 .form-group .form-control:-ms-input-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }
    .form-style-2 .form-group .form-control:-moz-placeholder { font-weight: normal; font-size: 12px; color: rgba(0, 0, 0, 0.5); }

    .form-style-2 .form-group .form-control option { font-size: 14px; color: #2D2D2D; }

    .form-style-2.form-filter .form-group { margin-right: 10px; }
    .form-style-2.form-filter .form-group:last-child { margin-right: 0px; }
    .form-style-2.form-filter .form-group .form-control { width: 150px; }
    .form-style-2.form-filter .btn-sm { width: 80px; }
/* ----------------------------------- End Form Custome ----------------------------------- */


/* ----------------------------------- Table Style ----------------------------------- */
    .table-style thead tr th { font-weight: bold; font-size: 14px; line-height: 16px; margin-bottom: 0; }
    .table-style tbody tr td { font-weight: normal; font-size: 14px; line-height: 16px; margin-bottom: 0; }
/* ----------------------------------- End Table Style ----------------------------------- */


/* ----------------------------------- Card Style ----------------------------------- */
    /*.card-style { border: 0 !important; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16) !important; }*/
    .card-style .card-body { /*padding: 10px !important;*/ }
/* ----------------------------------- End Card Style ----------------------------------- */


/* ----------------------------------- Profil Style ----------------------------------- */
    .profil-style {  }
    .profil-style .profile-user-img { background-size: cover; background-position: center; background-repeat: no-repeat; width: 120px; height: 120px; border-radius: 50%; }
    .profil-style .profile-user-name { font-size: 30px; line-height: 38px; color: #2D2D2D; }
    .profil-style p { font-size: 15px; line-height: 24px; color: #2D2D2D; }


    .row-list { margin-bottom: 20px; }
    .row-list .text-1 { font-weight: bold; margin-bottom: 0; }
    .row-list .text-2 { margin-bottom: 0; }


    .card-style { background: #ffffff; box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1); }
    .card-style .card-body { padding: 15px; }
/* ----------------------------------- End Profil Style ----------------------------------- */


/* ----------------------------------- Nav Tabs ----------------------------------- */
    .nav-tabs-style { margin-bottom: 50px; }
    .nav-tabs-style .nav-item {  }
    .nav-tabs-style .nav-item .nav-link {
        font-weight: bold;
        font-size: 16px; 
        line-height: 16px;
        letter-spacing: 0.03em;
        color: #2D2D2D;
        padding: 10px 30px;
        background: #ffffff;
        border: 0;
        border-bottom: 1px solid #dee2e6;
    }
    .nav-tabs-style .nav-item .nav-link.active { 
        color: var(--accent);
        border-bottom: 2px solid var(--accent);
        -webkit-transition: 0.6s; 
        -o-transition: 0.6s; 
        transition: 0.6s;
    }

    @media only screen and (max-width: 767px) {
        .nav-tabs-style .nav-item .nav-link { padding: 10px 10px; }
    }


    /*.nav-tabs.link-list-menu { padding: .75rem 0 !important; }

    .nav-tabs.link-list-menu .divider { margin: .5rem 0; }

    .nav-tabs.link-list-menu a { position: relative !important; display: flex !important; align-items: center !important; padding: .75rem 1.25rem !important; font-weight: 500 !important; color: #526484 !important; transition: all .4s; line-height: 1.3rem; }

    .nav-tabs.link-list-menu a:after { display: none !important; }

    .nav-tabs.link-list-menu a .icon { font-size: 1.125rem !important; width: 1.75rem !important; opacity: .8 !important; color: #8094ae !important; margin-top: -2px !important; }

    .nav-tabs.link-list-menu li.active > a, .nav-tabs.link-list-menu a.active, .nav-tabs.link-list-menu a:hover, .nav-tabs.link-list-menu li.active > a .icon, .nav-tabs.link-list-menu a.active .icon, .nav-tabs.link-list-menu a:hover .icon, .nav-tabs.link-list-menu li.active > a:after, .nav-tabs.link-list-menu a.active:after, .nav-tabs.link-list-menu a:hover:after { color: #6576ff; }

    @media (min-width: 576px) { .link-list-menu a { padding: 1rem 1.5rem !important; } }*/
/* ----------------------------------- End Nav Tabs Style ----------------------------------- */


/* ----------------------------------- Button ----------------------------------- */
    .btn {
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        -webkit-transition: 0.6s;
        -moz-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    .btn:focus { -webkit-box-shadow: none !important; box-shadow: none !important; }
    .btn:hover { -webkit-transition: 0.6s !important; -moz-transition: 0.6s !important; -o-transition: 0.6s !important; transition: 0.6s !important; }

    .btn-accent { font-size: 14px; color: #ffffff !important; background-color: var(--accent); border-color: var(--accent) }
    .btn-accent:hover { color: var(--accent) !important; background: transparent; border-color: var(--accent); transition: 0.6s; }

    .btn-outline-accent { color: #6A6A6A; border-color: var(--accent); }
    .btn-outline-accent:hover { color: #ffffff !important; background-color: var(--accent); border-color: var(--accent); transition: 0.6s; }

    .btn-filter { color: var(--accent); border-color: #b4b4b4; background: #ffffff; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15); }
    .btn-filter:hover { color: #ffffff; background: var(--accent); border-color: var(--accent); transition: 0.6s; }
/* ----------------------------------- End Button ----------------------------------- */


/* ----------------------------------- Modal ----------------------------------- */
    .modal-style {  }
    .modal-style .modal-dialog .modal-content { 
        border: 0; 
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 8px 8px 20px 10px rgba(0, 0, 0, 0.3);
        /*backdrop-filter: blur(1px);
        -webkit-filter: blur(1px);
        -moz-filter: blur(1px);
        -o-filter: blur(1px);
        -ms-filter: blur(1px);
        filter: blur(1px);*/
    }
    .modal-style .modal-dialog .modal-content .modal-body { padding: 20px 15px; }
    .modal-style .modal-dialog .modal-content .modal-body .modal-title { 
        font-size: 20px; 
        line-height: 28px;
        font-weight: 600;
        letter-spacing: -0.02em; 
        color: #2D2D2D;
        margin-bottom: 20px;
    }
    .modal-style .modal-dialog .modal-content .modal-body .block-bottom { margin-top: 40px; }
/* ----------------------------------- End Modal ----------------------------------- */


/* ----------------------------------- Background ----------------------------------- */
    .bg-primary-style {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 1) 40%, rgba(144, 212, 228, 1) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 1) 40%, rgba(144, 212, 228, 1) 90%);
    }

    .bg-success-style {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(0, 196, 80, 1) 40%, rgba(0, 252, 103, 1) 90%);
        background: linear-gradient(20deg, rgba(0, 196, 80, 1) 40%, rgba(0, 252, 103, 1) 90%);
    }

    .bg-warning-style {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(255, 153, 8, 1) 40%, rgba(255, 185, 87, 1) 90%);
        background: linear-gradient(20deg, rgba(255, 153, 8, 1) 40%, rgba(255, 185, 87, 1) 90%);
    }

    .bg-danger-style {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(255, 67, 67, 1) 40%, rgba(255, 106, 106, 1) 90%);
        background: linear-gradient(20deg, rgba(255, 67, 67, 1) 40%, rgba(255, 106, 106, 1) 90%);
    }

    .bg-orange-style {
        background: -webkit-linear-gradient(legacy-direction(20deg), rgba(34, 170, 201, 1) 40%, rgba(255, 255, 255, 1) 90%);
        background: linear-gradient(20deg, rgba(34, 170, 201, 1) 40%, rgba(255, 255, 255, 1) 90%);
    }
/* ----------------------------------- End Background ----------------------------------- */


/* ----------------------------------- rounded ----------------------------------- */
    .rounded-sm { border-radius: 0.2rem !important; }

    .rounded { border-radius: 0.25rem !important; }

    .rounded-top { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; }

    .rounded-right { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }

    .rounded-bottom { border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }

    .rounded-left { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }

    .rounded-lg { border-radius: 0.3rem !important; }

    .rounded-circle { border-radius: 50% !important; }

    .rounded-pill { border-radius: 50rem !important; }

    .rounded-0 { border-radius: 0 !important; }
    .rounded-5 { border-radius: 5px !important; }
    .rounded-10 { border-radius: 10px !important; }
    .rounded-15 { border-radius: 15px !important; }
    .rounded-20 { border-radius: 20px !important; }
    .rounded-50 { border-radius: 50% !important; }
/* ----------------------------------- end rounded ----------------------------------- */



    .invoice-container {
        background-color: #ffffff;
        /*margin: 15px auto;
        padding: 70px;
        max-width: 850px;
        border: 1px solid #ccc;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        -o-border-radius: 6px;
        border-radius: 6px;*/
    }
    .invoice-container header img { max-height: 40px; }

    @media (max-width: 767px) {
        .invoice-container {
            /*padding: 35px 20px 70px 20px;
            margin-top: 0px;
            border: none;
            border-radius: 0px;*/
        }
    }