@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@300;400;500;600;700;800&display=swap');

:root {
    /*  Warna AJR */
        --color-primary:#a14141;
        --color-primary-variant:#682a2a;
    
    /* 
        Warna AbieSoft
        --color-primary:#4163a1;
        --color-primary-variant:#2b2a68;
    */

    --color-danger:#b72424;
    --color-success:#3DBD2A;
    --color-warning:#F2D40E;
    --color-white:#fff;
    --color-info-dark:#626a75;
    --color-info-light:#DCE1EB;
    --color-dark:#252733;
    --color-light:rgba(164, 169, 206, 0.18);
    --color-dark-variant:#677483;
    --color-background:#F6F6F9;
    --color-background-2:#F0F0F9;

    --color-primary-hover:rgba(183, 36, 36, 0.95);


    --color-danger-clear:rgba(181, 36, 36, .2);
    --color-success-clear:rgba(61, 189, 42,.2);
    --color-warning-clear:rgba(242, 212, 14,.2);

    --card-border-radius:0.8rem;
    --border-radius-1:0.4rem;
    --border-radius-2:0.8rem;
    --border-radius-3:1.2rem;

    --card-padding:1.8rem;
    --padding-1:1.2rem;

    --border-input: #eee;

    --white-hover: #fafafa;

    --box-shadow: 0 2rem 3rem var(--color-light);
}

.dark-theme-variables {
    --color-background: #181A1E;
    --color-white: #202528;
    --color-dark: #fcfcfc;
    --color-dark-variant: #b7c6ce;
    --color-light: rgba(0,0,0,0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
    --border-input: rgba(237, 239, 253,.2);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html {font-size: 14px;}

body {
    width: 100vw;
    height: 100vh;
    font-family: poppins, sans-serif;
    font-size: 0.95rem;
    background-color: var(--color-background);
    overflow-x: hidden;
    color: var(--color-dark);
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

#refresh {
    transform: rotate(0deg);
    transition: all .5s;
}

.bold-400 {
    font-weight: 400;
}
.bold-500 {
    font-weight: 500;
}
.bold-600 {
    font-weight: 600;
}
.bold-700 {
    font-weight: 700;
}
.bold-800 {
    font-weight: 800;
}

.display-1{ font-size: 6rem; }
.display-2{ font-size: 5rem; }
.display-3{ font-size: 4rem; }
.display-4{ font-size: 3rem; }

.min-h-1{ min-height: 100px; }
.min-h-15{ min-height: 150px; }
.min-h-2{ min-height: 200px; }
.min-h-25{ min-height: 250px; }
.min-h-3{ min-height: 300px; }
.min-h-35{ min-height: 350px; }
.min-h-4{ min-height: 400px; }
.min-h-45{ min-height: 450px; }
.min-h-5{ min-height: 500px; }
.min-h-55{ min-height: 550px; }

.max-h-1{ max-height: 100px; }
.max-h-15{ max-height: 150px; }
.max-h-2{ max-height: 200px; }
.max-h-25{ max-height: 250px; }
.max-h-3{ max-height: 300px; }
.max-h-35{ max-height: 350px; }
.max-h-4{ max-height: 400px; }
.max-h-45{ max-height: 450px; }
.max-h-5{ max-height: 500px; }
.max-h-55{ max-height: 550px; }

.fix-h-1{ height: 100px; }
.fix-h-15{ height: 150px; }
.fix-h-2{ height: 200px; }
.fix-h-25{ height: 250px; }
.fix-h-3{ height: 300px; }
.fix-h-35{ height: 350px; }
.fix-h-4{ height: 400px; }
.fix-h-45{ height: 450px; }
.fix-h-5{ height: 500px; }
.fix-h-55{ height: 550px; }

.w-1 { width: 10%; }
.w-2 { width: 20%; }
.w-3 { width: 30%; }
.w-4 { width: 40%; }
.w-5 { width: 50%; }
.w-6 { width: 60%; }
.w-7 { width: 70%; }
.w-8 { width: 80%; }
.w-9 { width: 90%; }
.w-10 { width: 100%; }

display-1, display-2, display-3, display-4 {
    font-weight: 800;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }

.mw-1{ max-width: 100px; }
.mw-2 { max-width: 200px; }
.mw-3 { max-width: 300px; }

.mh-2 { max-height: 200px; }
.mh-25 { max-height: 250px; }

.relative{ position: relative; }
.absolute{ position: absolute; }

.auto { overflow: auto; }

.auto::-webkit-scrollbar {
    width: 0.2rem;
    background-color: var(--color-white);
}

.auto::-webkit-scrollbar-thumb {
    width: 0.2rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.2rem;
}

.auto::-webkit-scrollbar-track {
    width: 0.2rem;
    background-color: var(--color-white); 
}

.badge {
    display: block;
    padding: 2px 8px;
    font-size: 10pt;
    font-weight: 400;
}

.badge .pil {
    border-radius: 8px;
}

.badge .danger {
    background-color: var(--color-danger);
    color: var(--color-white);
}

.badge .success {
    background-color: var(--color-success);
    color: var(--color-white);
}

.cover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 250px;
    background-color: var(--color-background-2);
    z-index: 0;
}

.cover.image {
    background-repeat: no-repeat; 
    object-fit: cover; 
    filter: blur(4px); 
    margin-left: 120px; 
    top: -4px;
    background-size: 100%;
}

.container {
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 0;
    left: 290px;
    transition: all .5s;
    z-index: 99;
    padding-right: 110px;
    overflow: auto;
}

.map {
    width: 100%; 
    height: 100%; 
    margin-left: 120px;
}


.mappage {
    position: relative;
    background-color: var(--color-dark);
    width: 100%;
    height: 200px;
}

.container.show {
    left: 290px;
}

.container.hide {
    left: 180px;
}

.center-of-page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    padding: 0px;
}

.auth-page .card {
    width: 350px;
}

.art {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.art .desain-1 {
    position: fixed;
    margin-top: -200px;
    margin-left: -80px;
    background: linear-gradient(0deg, rgba(61, 189, 42,.2) 0%, rgba(61, 189, 42,0) 60%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
}

.art .desain-2 {
    position: absolute;
    right: 100px;
    top: -50px;
    background: linear-gradient(20deg, rgba(181, 36, 36, .2) 0%, rgba(181, 36, 36, 0) 70%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    position: fixed;
}


.art .desain-3 {
    position: absolute;
    left: 200px;
    top: 100px;
    background: linear-gradient(130deg, rgba(242, 212, 14,.2) 0%, rgba(242, 212, 14,0) 70%);
    width: 750px;
    height: 750px;
    border-radius: 50%;
    position: fixed;
}

.art .desain-4 {
    position: absolute;
    right: -50px;
    bottom: -100px;
    background: linear-gradient(250deg, rgba(125, 141, 161, .2) 0%, rgba(125, 141, 161, 0) 70%);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    position: fixed;
}


.art .desain-5 {
    position: absolute;
    left: 50px;
    bottom: 10px;
    background: linear-gradient(270deg, rgba(109, 65, 161, .2) 0%, rgba(109, 65, 161, 0) 70%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: fixed;
}

.flex { display: flex; }
.flex-between { justify-content: space-between; }
.flex-center { justify-content: center; }
.items-center{ align-items: center; }

.text-semibold{ font-weight: 600; }
.text-bold{ font-weight: 800; }
.text-center{ width: 100%; text-align: center; }

.overflow-hidden { overflow: hidden; }

.radius-0{ border-radius: 0; }
.radius-05{ border-radius: 0.5rem; }
.radius-1{ border-radius: 1rem; }
.radius-2{ border-radius: 2rem; }

.mt-01{ margin-top: 0.1rem; }
.mt-05{ margin-top: 0.5rem; }
.mt-1{ margin-top: 1rem; }
.mt-2{ margin-top: 2rem; }
.mt-3{ margin-top: 3rem; }
.mt-4{ margin-top: 4rem; }
.mt-5{ margin-top: 5rem; }

.mb-2{ margin-bottom: 2rem; }

.ml-05{ margin-left: 0.5rem; }
.ml-1{ margin-left: 1rem; }
.ml-2{ margin-left: 2rem; }

.pa-05{ padding: 0.5rem; }
.pa-1{ padding: 1rem; }
.pa-2{ padding: 2rem; }

.bg-primary { background-color: var(--color-primary); color: var(--color-white); }
.bg-light { background-color: var(--color-light); }
.bg-info-light { background-color: var(--color-info-light); color: var(--color-dark); }
.bg-background { background-color: var(--color-background); }
.bg-background-2 { background-color: var(--color-background-2); }
.bg-white { background: var(--color-white); }

.full { width: 100%; }
.center{ display:flex; justify-content: center; align-items: center; }
.between { display:flex; justify-content: space-between; align-items: center; }

.absolute { position: absolute; }
.z0 { z-index: 0; }
.z99 { z-index: 99; }

a { 
    text-decoration: none; 
    color: var(--color-dark); 
    font-weight: 600;
}

a:hover { 
    text-decoration: underline; 
    color: var(--color-primary);
}

/*
    CARD
*/

.shadow {
    box-shadow: 0.1rem 0.1rem 0.2rem var(--color-light);
}

.no-shadow {
    box-shadow: none;
}

.card {
    position: relative;
    background-color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.2rem var(--color-light);
    overflow: hidden;
}

.card a:hover {
    background-color: var(--white-hover);
    color: var(--color-dark);
    text-decoration: none;
}

.card-list {
    position: relative;
    background-color: var(--color-white);
    border-radius: none;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.card-list a:hover {
    text-decoration: none;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-list-search input{
    padding: 10px 25px 10px 65px;
    border-left: 0;
    border-right: 0;
}

.card-list-search span{
    position: absolute;
    left: 25px;
    margin-top: 10px;
    font-size: 14pt;
}

.card-list:hover {
    background-color: var(--white-hover);
}

.card-form {
    position: relative;
    background-color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.2rem var(--color-light);
    /* overflow: hidden; */
}

.card.fullscreen {
    position: absolute;
    top: 73px;
    right: 110px;
    left: 0;
    z-index: 999;
}

.card-label {
    position: absolute;
    padding: 5px 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 0 0 0.2rem 0.2rem;
    font-size: 0.8rem;
    margin-top: -1.3rem;
    right: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.card-header .label {
    position: relative;
    display: flex;
    align-items: center;
}

.card-header .label div {
    position: absolute;
    width: 5px;
    height: 40px;
    background-color: var(--color-primary);
}

.card-header-photo {
    width: 50px;
    height: 50px;
    margin-top: -40px;
    margin-right: 25px;
    overflow: hidden;
}

.card-header-photo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.card-header .option {
    padding-right: 15px;
}

.card-header .label h2,
.card-header .label h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 25px;
    font-weight: 400;
    color: var(--color-primary);
}

.card-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem 2rem;
}

.card .card-body,
.card-form .card-body {
    padding: 1rem 2rem;
}

.card .card-table {
    padding: 3rem 2rem 2rem 2rem;
    overflow-x: auto;
}

.card .card-footer,
.card-form .card-footer {
    margin-top: 1rem;
    padding: 1rem 2rem;
}



/*
    Grid
*/

.grid{
    display: grid;
    grid-template-columns: auto;
}

.col-50{ grid-template-columns: 50% 50%; }
.col-2{ grid-template-columns: auto auto; }
.col-3{ grid-template-columns: auto auto auto; }
.col-4{ grid-template-columns: auto auto auto auto; }
.col-5{ grid-template-columns: auto auto auto auto auto; }
.col-6{ grid-template-columns: auto auto auto auto auto auto; }
.col-7{ grid-template-columns: auto auto auto auto auto auto auto; }
.col-8{ grid-template-columns: auto auto auto auto auto auto auto auto; }
.col-9{ grid-template-columns: auto auto auto auto auto auto auto auto auto; }
.col-10{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto; }
.col-11{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto; }
.col-12{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto; }

.gap-1{ gap: 1rem; }
.gap-2{ gap: 2rem; }
.gap-3{ gap: 3rem; }
.gap-4{ gap: 4rem; }


/*
    Form
*/

form {
    margin: 20px 0;
}

.r3 {
    border-radius: 3px;
}

.form-control {
    border: 1px solid var(--border-input);
    padding: 7px;
    font-family: poppins, sans-serif;
    background-color: var(--color-white);
    color: var(--color-info-dark);
}

input[name='password'],
input[name='psw'],
input[name='pswbaru'],
input[name='konfirmasipassword'] {
    padding-right: 40px;
}

.form-control:hover {
    transition: all 1s;
    background-color: var(--color-white);
}

.form-control:focus {
    transition: all 1s;
    background-color: var(--color-white);
}

a,
select,
button,
input[type='submit'],
input[type='button'],
div.form-control {
    cursor: pointer;
}

button {
    outline: none;
    border: none;
    padding: 10px 10px;
    font-weight: 600;
}

button.btn-delete {
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    background: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 3px;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
}

.form-grup {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.form-grup.search,
.form-grup.select {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-grup.search .form-control,
.form-grup.select .form-control {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    padding: 10px 10px 10px 45px;
    box-shadow: 0.1rem 0.1rem 0.2rem var(--color-light);
}

.form-grup.search span,
.form-grup.select span {
    position: absolute;
    width: 30px;
    background-color: none;
    left: 10px;
    margin-top: 18px;
    z-index: 99;
    color: var(--color-info-dark);
}

.form-grup.select .form-control {
    padding-left: 15px;
    padding-right: 45px;
}

.form-grup.select span {
    left: auto;
    right: 5px;
}

.form-grup .error {
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    background-color: rgba(181, 36, 36,.04);
}

.form-grup .error::placeholder {
    color: rgba(181, 36, 36,.4);
}

.form-grup span.lihatpassword {
    position: absolute;
    right: 10px;
    font-size: 13pt;
    margin-top: 10px;
    cursor: pointer;
}

.form-grup span {
    position: absolute;
    margin-top: -20px;
    right: 5px;
}

.form-grup .msg-err {
    display: block;
    color: var(--color-danger);
    margin-top: 5px;
    font-size: 8pt;
}

.form-grup ul.hidden {
    display: none;
}

.form-grup ul.show {
    position: absolute;
    width: 100%;
    border: 1px solid var(--color-info-light);
    max-height: 300px;
    overflow: auto;
    z-index: 99;
    background-color: var(--color-white);
}

.form-grup ul.show div {
    padding: 5px;
}

.form-grup ul.show li {
    padding: 7px;
    background-color: var(--color-white);
    cursor: pointer;
}

.form-grup ul.show li:hover {
    background-color: var(--color-info-light);
}

.form-grup ul.show::-webkit-scrollbar {
    width: 0.2rem;
    background-color: var(--color-white);
}

.form-grup ul.show::-webkit-scrollbar-thumb {
    width: 0.2rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.2rem;
}

.form-grup ul.show::-webkit-scrollbar-track {
    width: 0.2rem;
    background-color: var(--color-white); 
}

.form-grup label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-info-dark);
}

.form-grup input,
.form-grup textarea,
.form-grup select {
    width: 100%;
}

.form-button {
    margin-top: 0px;
}

.block-label {
    position: relative;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid var(--color-info-light);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.block-label span {
    position: absolute;
    padding-top: 0px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: var(--color-white);
}

.box-round-photo {
    width: 110px;
    height: 110px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.round-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.round-photo img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}


/*
    Message
*/
#message {
    position: fixed;
    z-index: 99999;
    right: 0;
    left: 0;
    bottom: 0;
}

.flash {
    margin-left: -100%;
    position: absolute;
    background-color: var(--color-primary-variant);
    color: white;
    z-index: 999;
    left: 25px;
    bottom: 25px;
    padding: 15px;
    animation-name: kekanan;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    border-radius: 4px;
    box-shadow: 0 2rem 3rem var(--color-light);
}

.flash .body-message {
    position: relative;
}

.success {
    color: var(--color-white);
    background-color: var(--color-success);
}

.danger {
    color: var(--color-white);
    background-color: var(--color-danger);
}

.warning {
    color: var(--color-white);
    background-color: var(--color-warning);
}

.flash .body-message div {
    padding-left: 10px;
    padding-right: 30px;
}

.flash .body-message span{
    position: absolute;
    display: block;
    padding: 5px;
    cursor: pointer;
    color: var(--color-white);
    right: 0;
    top: 0;
    border-radius: 50%;
    font-size: 10pt;
}

.flash .body-message span:hover{
    color: var(--color-info-light);
}


@keyframes kekanan {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 0;
    }
}







/*
    Sidebar
*/

.sidebar {
    position: fixed;
    width: 230px;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--color-white);
    box-shadow: 0 2rem 3rem var(--color-light);
    transition: all .5s;
    z-index: 9999;
}

.sidebar-logo .logo-area {
    width: 100%;
    position: absolute;
    padding: 2rem;
    text-align: center;
    z-index: 999;
    object-fit:cover;
}

.sidebar-logo .logo-area img {
    width: 4rem;
}

.white-gradasi {
    width: 98%;
    height: 5rem;
    position: absolute;
    z-index: 99;
    display: block;
    margin-top: 2rem;
    background: var(--color-white);
}

.sidebar-menu {
    width: 100%;
    position: absolute;
    background-color: var(--color-white);
    top: 50px;
    left: 0;
    bottom: 30px;
    overflow: hidden;
    padding-top: 50px;
}

.sidebar-menu:hover {
    overflow: auto;
}

.sidebar-menu::-webkit-scrollbar {
    width: 0.2rem;
    background-color: var(--color-white);
}

.sidebar-menu::-webkit-scrollbar-thumb {
    width: 0.2rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.2rem;
}

.sidebar-menu::-webkit-scrollbar-track {
    width: 0.2rem;
    background-color: var(--color-white); 
}

.sidebar-menu ul {
    padding: 0 1.5rem;
}

.sidebar-menu ul div {
    position: relative;
    display: block;
    height: 4rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.sidebar-menu ul div span:nth-child(1){
    position: absolute;
    display: block;
    width: 60px;
    height: 0.08rem;
    margin-top: 1rem;
    margin-left: -1.5rem;
    background-color: var(--color-info-dark);
}

.sidebar-menu ul div span:nth-child(2){
    position: absolute;
    font-weight: 600;
    background-color: var(--color-white);
    color: var(--color-info-dark);
    z-index: 0;
    padding: 0.3rem 1.2rem;
}

.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    color: var(--color-info-dark);
    text-decoration: none;
    padding: 0.7rem 1rem;
}

.sidebar-menu ul li a:hover {
    background-color: var(--color-background);
}

.sidebar-menu ul li a span:nth-child(1) {
    padding-right: 1rem;
}

.sidebar-menu ul li a span:nth-child(3) {
    position: absolute;
    right: 2rem;
    font-size: 1.1rem;
}

.sidebar-menu ul li ul.hide {
    display: none;
}

.sidebar-menu ul li a.hide {
    background-color: var(--color-white);
}

.sidebar-menu ul li a.show {
    background-color: var(--color-background);
}

.sidebar-menu ul li ul.show {
    background-color: var(--color-background);
    padding-left: 0;
    padding-right: 0;
}

.sidebar-menu ul li ul.show li a{
    background-color: var(--color-background);
}

.sidebar-menu ul li ul.show li a:hover{
    background-color: var(--color-info-light);
}

.sidebar-menu ul li ul.show li a span:nth-child(1) {
    font-size: 10pt;
    padding: 0 1.3rem 0 .5rem;
}

.sidebar.hide {
    width: 120px;
}

.sidebar.show {
    width: 230px;
}

.sidebar.hide .sidebar-menu ul li a span:nth-child(2){
    display: none;
}


/*
    Navbar
*/

nav {
    position: fixed;
    top: 0;
    left: 230px;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: all .5s;
}

nav.show {
    left: 230px;
}

nav.hide {
    left: 120px;
}

nav .optional {
    display: flex;
    align-items: center;
    z-index: 9999;
}

nav .optional div button {
    display: flex;
    align-items: center;
    color: var(--color-info-dark);
    background-color: var(--color-white);
    border-radius: 50%;
}

nav .optional div button span {
    font-size: 14pt;
}

nav .profile {
    background-color: var(--color-white);
    width: 90px;
    height: 55px;
    margin: 10px 0 10px 10px;
    border-radius: 25px 0 0 25px;
    box-shadow: 0 2rem 3rem var(--color-light);
    display: flex;
    align-items: center;
    cursor: pointer;
}

nav .profile .foto-cropper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-white);
    margin-left: 5px;
    overflow: hidden;
}

nav .profile .foto-cropper img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

nav .profile div span {
    margin-left: -10px;
    color: var(--color-info-dark);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    background-color: var(--color-white);
}

.popup-profile {
    width: 150px;
    position: absolute;
    top: 70px;
    background-color: var(--color-white);
    box-shadow: 0 2rem 3rem var(--color-light);
    z-index: 999;
    transition: all .5s;
}

.popup-profile.hide {
    right: -250px;
}

.popup-profile.show {
    right: 0;
}

.popup-profile .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-info-dark);
    padding: 1rem 2rem;
}

.popup-profile .top a {
    background: none;
    outline: none;
    padding: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-decoration: none;
    color: var(--color-info-dark);
    right: 1rem;
}

.popup-profile .top a:hover {
    background: var(--color-background);
    color: var(--color-white);
    border-radius: 50%;
}

.popup-profile .top a span {
    font-size: 12pt;
    color: var(--color-info-dark);
}

.popup-profile .photo-cropper{
    background-color: var(--color-info-dark);
    width: 250px;
    height: 180px;
    overflow: hidden;
}

.popup-profile .photo-cropper img{
    width: 250px;
    height: 180px;
    object-fit: cover;
}

.popup-profile .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-info-dark);
}

.popup-profile .footer div button{
    background-color: var(--color-light);
}

.popup-profile .footer div button span{
    color: var(--color-dark-variant);
}

.popup-profile .footer a {
    background-color: var(--color-white);
    color: var(--color-info-dark);
    display: flex;
    align-items: center;
    padding: 1.2rem;
    text-decoration: none;
}

.popup-profile .footer a:hover {
    background-color: var(--color-background);
}

.popup-profile .footer span:nth-child(1) {
    font-size: 11pt;
    margin-right: 0.3rem;
}

.popup-profile .footer span:nth-child(2) {
    font-size: 10pt;
    font-weight: 500;
}

.txt-nama {
    width: 170px;
    height: 23px;
    overflow: hidden;
}





/*
    Konten
*/

.footer-fixed {
    position: fixed;
    height: 50px;
    width: 0.1rem;
    background-color: rgba(125, 141, 161, .2);
    bottom: 0;
    right: 4rem;
}

.footer-label {
    position: fixed;
    padding: 0px 20px;
    font-family: Anton, 'sans-serif';
    font-size: 40pt;
    color: rgba(125, 141, 161, .2);
    transform-origin:bottom right;
    right: 1.4rem;
    bottom:50px;
    transform: rotate(-90deg) translateX(100%);
}

.konten-area {
    width: 100%;
    background-color: none;
    margin-bottom: 50px;
}

.breadcrumb-fixed {
    position: fixed;
    height: 20%;
    width: 0.1rem;
    background-color: rgba(125, 141, 161, .2);
    top: 0;
    left: 250px;
    transition: all .5s;
}

.breadcrumb-fixed.hide {
    left: 140px;
}

.breadcrumb-fixed.show {
    left: 250px;
}

.konten-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.konten-title {
    font-weight: 600;
    font-size: 20pt;
}

.konten-title-center {
    width: 100%;
    font-weight: 600;
    font-size: 25pt;
    text-align: center;
    color: var(--color-white);
    line-height: 35px;
    margin-top: .5rem;
}

.konten-title-center div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.konten-title-center div span {
    max-width: 600px;
    color: var(--color-white);
    font-size: 12pt;
    margin-top: 1rem;
    line-height: 20px;
    font-weight: 400;
}

.btn-opsi-grup {
    display: flex;
    align-items: center;
    background-color: none;
    transform: rotate(0deg); 
}

.btn-opsi-grup div a {
    text-decoration: none;
}

.btn-opsi-grup div span {
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-info-dark);
    padding: 0.5rem;
    border-radius: 50%;
    margin: 0 0.2rem;
    cursor: pointer;
    margin: 0.2rem;
    font-size: 14pt;
    transition: all .5s;
}

.btn-opsi-grup div.delete span {
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-info-dark);
    padding: 0.5rem;
    border-radius: 50%;
    margin: 0 0.2rem;
    cursor: pointer;
    margin: 0.2rem;
    font-size: 14pt;
    transition: all .5s;
}

.btn-opsi-grup div:hover span {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-opsi-grup div.delete:hover span {
    background: var(--color-danger);
    color: var(--color-white);
}

.btn-opsi-grup.tabel div span {
    font-size: 11pt;
    margin: 0 0.1rem;
}


#theme-toggler {
    width: 100%;
    position: absolute;
    z-index: 999;
    cursor: pointer;
    bottom: 20px;
    color: var(--color-info-dark);
}

.theme-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-toggler span {
    padding: 5px;
    font-size: 14pt;
}

.theme-toggler span.active {
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
}





/*
    Loader AJR
*/
.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hide {
    display: none;
}

.loader div:nth-child(1) {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: var(--color-background-2);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.loader div:nth-child(1) div:nth-child(1) {
    position: absolute;
    width: 150px;
    height: 150px;
    margin-left: -150px;
    background: linear-gradient(90deg, var(--color-danger), var(--color-warning));
    border-radius: 50%;
    animation-name: animRedYellow;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

@keyframes animRedYellow {
    from { margin-left: -150px; }
    to { margin-left: 0px; }
}

/* Blank Putih Dibelakang Peta membbentuk Cincin */
.loader div:nth-child(2) {
    position: absolute;
    width: 130px;
    height: 140px;
    background-color: var(--color-white);
    border-radius: 50%;
    margin-top: 20px;
    z-index: 3;
}


.loader div:nth-child(4) {
    background-color: var(--color-background-2);
    width: 130px;
    height: 160px;
    position: absolute;
    border-radius: 50%;
    clip-path: polygon(12% 75%, 40% 20%, 90% 85%, 40% 40%);
    z-index: 5;
}

.loader div:nth-child(4) div:nth-child(1) {
    background-color: #181A1E;
    width: 130px;
    height: 160px;
    margin-left: -130px;
    animation-name: animHurufA;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes animHurufA {
    from { margin-left: -130px; }
    to { margin-left: 0px; }
}


.loader div:nth-child(5) {
    background-color: var(--color-background-2);
    width: 130px;
    height: 160px;
    position: absolute;
    border-radius: 50%;
    clip-path: polygon(30% 52%, 35% 46%, 75% 46%, 80% 47%, 81% 48%, 82% 49%, 84% 51%, 84% 54%, 84% 56%, 82% 60%, 79% 62%, 72% 62%, 68% 57%, 76% 57%, 77% 55%, 77% 53%, 75% 51%, 60% 51%, 60% 80%, 58% 82%, 56% 84%, 54% 84%, 52% 84%, 46% 82%, 30% 73%, 50% 80%, 51% 80%, 52% 78%, 52% 52%,               50% 52%);
    z-index: 6;
}

.loader div:nth-child(5) div:nth-child(1) {
    background-color: var(--color-danger);
    width: 130px;
    height: 160px;
    margin-left: -130px;
    animation-name: animHurufJR;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes animHurufJR {
    from { margin-left: -130px; }
    to { margin-left: 0px; }
}

.loader div:nth-child(6) {
    position: absolute;
    width: 0px;
    height: 0px;
    background: rgba(240, 240, 249, 0);
    border-radius: 50%;
    animation-name: animBackLoad;
    animation-duration: 1.5s;
    animation-delay: 2s;
    animation-timing-function: ease;
    animation-iteration-count:infinite;
    z-index: 0;
}

@keyframes animBackLoad {
    from {
        width: 400px;
        height: 400px;
        background: rgba(240, 240, 249, .4);
    }
    to {
        width: 800px;
        height: 800px;
        background: rgba(240, 240, 249, 0);
    }
}

.loader div:nth-child(7) {
    position: absolute;
    font-weight: 500;
    margin-top: 180px;
    font-size: 17pt;
}







/*
    list
*/

.list-block {
    padding: 0;
}

.item-list {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid var(--color-info-light);
    display: flex;
    justify-content: space-between;
    align-items: top;
    clear: both;
    color: var(--color-dark-variant);
}

.item-list .option,
.item-list .option.off {
    position: relative;
    width: 40px;
    height: 20px;
    margin: 10px 0;
    border-radius: 20px;
    cursor: pointer;
}


.item-list .option {
    background-color: var(--color-primary-variant);
}

.item-list .option .thumb{
    width: 20px;
    height: 20px;
    margin-left: 20px;
    background-color: var(--color-primary);
    border-radius: 20px;
    transition: all .3s;
}

.item-list .option.off {
    background-color: var(--color-dark);
}

.item-list .option.off .thumb{
    width: 20px;
    height: 20px;
    margin-left: 0px;
    background-color: var(--color-dark-variant);
    border-radius: 20px;
}

.item-list div span {
    position: absolute;
    margin: 10px;
}

.item-list div div {
    float: left;
    margin-left: 40px;
    margin-right: 80px;
}

.item-list div div div:nth-child(1){
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12pt;
}

.item-list div div div:nth-child(2){
    width: 100%;
    display: block;
    font-size: 10pt;
}

.list-title {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    font-weight: 400;
    background-color: var(--color-info-light);
    margin-bottom: 30px;
}

.list-title span{
    position: absolute;
    padding: 0px 20px 0px 0px;
    background-color: var(--color-background);
    margin-top: -10px;
    font-weight: 600;
}

.clear {
    clear: both;
}



/* 
    List
*/

.listbox {
    display: block;
}




.labelflexmap {
    max-width: 400px;
    overflow: hidden;
    height: 20px;
}


/*
    Chart
*/

.charMarnifest {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto ;
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.charMarnifest .item{
    height: 120px;
    position: relative;
}

.charMarnifest .item .label{
    border-top: 1px solid var(--color-info-light);
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.charMarnifest .item .chart {
    position: absolute;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    height: 0px;
    bottom: 20px;
    transition: all .5s;
}


.warna1 {
    background-color: rgba(255, 99, 132, 0.2);
    border: 1px solid rgba(255, 99, 132, 1);
}

.warna2 {
    background-color: rgba(54, 162, 235, 0.2);
    border: 1px solid rgba(54, 162, 235, 1);
}

.warna3 {
    background-color: rgba(255, 206, 86, 0.2);
    border: 1px solid rgba(255, 206, 86, 1);
}

.warna4 {
    background-color: rgba(75, 192, 192, 0.2);
    border: 1px solid rgba(75, 192, 192, 1);
}

.warna5 {
    background-color: rgba(153, 102, 255, 0.2);
    border: 1px solid rgba(153, 102, 255, 1);
}

.warna6 {
    background-color: rgba(255, 159, 64, 0.2);
    border: 1px solid rgba(255, 159, 64, 1);
}





/*
    Media 
*/


@media only screen and (max-width: 680px) {
    .sidebar,
    .sidebar.hide {
        overflow: hidden;
        left: -230px;
    }

    .breadcrumb-fixed.hide {
        left: 20px;
        height: 10%;
    }

    .sidebar.show {
        position: fixed;
        left: 0;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--color-white);
    }

    nav.hide {
        left: 0;
    }

    .container  {
        position: fixed;
        top: 90px;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
        overflow: auto;
    }

    .container.hide  {
        position: fixed;
        top: 90px;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
    }

    .container.show  {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
    }
    
    .footer-fixed, 
    .footer-label{
        display: none;
    }

    .col-50, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11,
    .col-12 {
        grid-template-columns: auto;
    }

    .card.fullscreen {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 999;
        overflow: auto;
    }

    .card.fullscreen::-webkit-scrollbar {
        width: 0.2rem;
        background-color: var(--color-white);
    }
    
    .card.fullscreen::-webkit-scrollbar-thumb {
        width: 0.2rem;
        background-color: var(--color-primary-hover);
        border-radius: 0.2rem;
    }
    
    .card.fullscreen::-webkit-scrollbar-track {
        width: 0.2rem;
        background-color: var(--color-white); 
    }

    .list-block{
        overflow: hidden;
    }

    .item-list div:nth-child(1) div {
        margin-left: 30px;
        margin-right: 90px;
    }

    .item-list div:nth-child(2) .option {
        position: absolute;
        right: 20px;
    }

    .cover.image {
        background-repeat: no-repeat; 
        object-fit: cover; 
        filter: blur(4px); 
        margin-left: 0; 
        top: -4px;
        background-size: 100%;
    }

    .labelflexmap {
        max-width: 70%;
        overflow: hidden;
        height: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .sidebar,
    .sidebar.hide {
        overflow: hidden;
        left: -230px;
    }

    .sidebar.show {
        position: fixed;
        left: 0;
    }

    .breadcrumb-fixed.hide {
        left: 20px;
        height: 10%;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--color-white);
    }

    nav.hide {
        left: 0;
    }

    .container  {
        position: fixed;
        top: 90px;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
        overflow: auto;
    }

    .container.hide  {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
    }

    .container.show  {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px;
    }

    .map {
        margin-left: 0;
    }

    .footer-fixed, 
    .footer-label{
        display: none;
    }

    .col-50, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11,
    .col-12 {
        grid-template-columns: auto;
    }

    .card.fullscreen {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 999;
        overflow: auto;
    }

    .card.fullscreen::-webkit-scrollbar {
        width: 0.2rem;
        background-color: var(--color-white);
    }
    
    .card.fullscreen::-webkit-scrollbar-thumb {
        width: 0.2rem;
        background-color: var(--color-primary-hover);
        border-radius: 0.2rem;
    }
    
    .card.fullscreen::-webkit-scrollbar-track {
        width: 0.2rem;
        background-color: var(--color-white); 
    }

    .list-block{
        overflow: hidden;
    }

    .item-list div:nth-child(1) div {
        margin-left: 30px;
        margin-right: 90px;
    }

    .item-list div:nth-child(2) .option {
        position: absolute;
        right: 20px;
    }

    .cover.image {
        background-repeat: no-repeat; 
        object-fit: cover; 
        filter: blur(4px); 
        margin-left: 0; 
        top: -4px;
        background-size: 100%;
    }

    .labelflexmap {
        max-width: 70%;
        overflow: hidden;
        height: 20px;
    }

}
