/* Global Defaults
=====================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }
b, strong, th { font-weight: bold; }
em, i { font-style: italic; }
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }


a, a:active, a:visited { color: #34891b;  }
a:hover { color: #544930; }

/* Global Elements
=====================================================================*/

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size:16px;
    color:#333;
	background:#f8f4ed;
	min-height: 100vh;
	position: static;
    transition: background-color 0.3s, color 0.3s;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:none;
}
html {
    scroll-behavior: smooth;
}
.skiplink{
	display:none;
}
.clear {
	clear: both;
}
img {
	max-width: 100%;
    height:auto;
    font-style:italic;
    background-repeat: no-repeat;
    background-size:cover;
    vertical-align: middle;
}

/* Start CSS Coding
=====================================================================*/
.open-menu, .close-menu, .close-menu-big {
    display: none;
    cursor: pointer;
}
#menu-toggle {
    display: none;
}
.menu-button-container {
    display: none;
    cursor: pointer;
}
.mobile {
    display: none;
    position: relative;
}
#sidebar {
    width:250px;
    position: fixed;
    background: #fff;
    height: 100vh;
    overflow-y: auto;
    border-right:1px solid #e0d5c2;
    top:0;
    left:0;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
#logo {
    min-height:60px;
    padding:0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#scrollbox {
    height: 100%;
    overflow-y: auto;
}
#scrollbox-inner {
    padding:20px;
}
#nav-sidebar {
    list-style: none;
    margin:0;
}
#nav-sidebar li a {
    font-size:16px;
    color:#333;
    text-decoration: none;
    display: block;
    padding:9px 10px;
}
#nav-sidebar li.active a {
    background: #34891b;
    color:#fff;
}
#nav-sidebar li.active a:hover {
    color: #fff;
}
#nav-sidebar li a i {
    width:23px;
    text-align: center;
}
#nav-sidebar li a:hover {
    color:#34891b;
}
#main-content {
    position: relative;
    left:250px;
    width:calc(100% - 250px);
    height:100vh;
    z-index: 1;
}
#main-content.full {
    left:auto;
    width:100%;
    text-align: center;
}
#sep {
    height:60px;
}
#header {
    width:calc(100% - 250px);
    height:60px;
    border-bottom:1px solid #e0d5c2;
    position: fixed;
    top:0;
    right:0;
    z-index: 5;
    background: rgba(255,255,255,.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
#header h1 {
    color:#111;
    font-weight: bold;
    font-size:22px;
    margin:16px 0 0 20px;
    float:left;
}
#header h1 span {
    font-weight: 300;
    color:#666;
}
#list-branch {
    position: absolute;
    z-index: 1;
    left:0;
    list-style: none;
    top:60px;
    background: #fff;
    border:1px solid #e0d5c2;
    border-top:none;
    border-radius:0 0 5px 0;
    width:250px;
    padding:0;
    margin:0;
    display: none;
}
#list-branch.show {
    display: block;
}
#link-branch i {
    font-size:15px;
}
#link-branch {
    color:#111;
    text-decoration: none;
}
#link-branch:hover {
    color:#2d99c9;
}
#list-branch li {
    font-size:15px;
}
#list-branch li a {
    display: block;
    padding:15px;
    line-height: 1.4;
    text-decoration: none;
}
#list-branch li:last-child a {
    border-radius:0 0 5px 0;
}
#list-branch li a:hover {
    background: #f1f7f9;
}
.icon-branch {
    transition: transform 0.3s ease;
}
.rotated {
    transform: rotate(180deg);
}
#header-right {
    float:right;
    margin:0 20px 0 0;
}
#nav-header {
    list-style: none;
    margin:20px 0 0 0;
    float:left;
}
#nav-header li {
    font-size:14px;
    color:#333;
    float:left;
    margin:0 0 0 5px;
    position: relative;
}
#nav-header li i {
    font-size:18px;
}
#nav-header li a {
    color:#111;
    padding:4px;
}
#nav-header li a:hover {
    color:#2d99c9;
}
#nav-header li.user {
    margin:2px 4px 0 6px;
}
#nav-header li.logout a {
    color:#b41f1f;
}
#nav-header li a span {
    position: absolute;
    z-index: 1;
    top:-3px;
    right:0;
    width:10px;
    height:10px;
    border-radius:30px;
    background: #b41f1f;
    border:1px solid #fff;
}
#content-area {
    padding:20px;
    position: relative;
    z-index: 1;
}
.main-title {
    font-size:20px;
    color:#111;
    font-weight: bold;
    margin:11px 0 25px 0;
    display: inline-block;
}
#nav-contact {
    list-style: none;
    margin:-2px 0 0 5px;
    display: inline-block;
}
#nav-contact li {
    width:30px;
    height:30px;
    margin:0 2px;
    display: inline-block;
}
#nav-contact li a {
    font-size:14px;
    color:#fff;
    background: #2d99c9;
    text-decoration: none;
    display: block;
    width:30px;
    height:30px;
    text-align: center;
    line-height: 30px;
    border-radius:5px;
}
#nav-contact li a:hover {
    opacity: 0.8;
}
#nav-contact li.whatsapp a {
    background: #25D366;
}
.group-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin:0 0 20px 0;
}
.row-box {
    background: #fff;
    border-radius:5px;
    border:1px solid #e0d5c2;
    padding:20px;
    position: relative;
}
.row-box.active {
    border:1px solid #80b03b;
}
.row-box.active .number-member {
    color:#80b03b;
}
.row-box.expired {
    border:1px solid #b41f1f;
}
.row-box.expired .number-member,
.row-box.expired .number-member strong {
    color:#b41f1f;
}
.button-detail {
    position: absolute;
    z-index: 1;
    right:20px;
    bottom:20px;
    font-size:16px;
}
.title-box {
    font-size:18px;
    color:#333;
    font-weight: bold;
    margin:0 0 20px 0;
}
.number-member {
    font-size:28px;
    color:#111;
}
.number-member span {
    font-size:15px;
    color:#666;
}
.number-member.package {
    font-size:22px;
}
.red {
    color:#b41f1f;
}
.green {
    color:#80b03b;
}
#nav-button {
    list-style: none;
    margin:0 0 20px 0
}
#nav-button li {
    margin:0 0 10px 0;
}
.button-checkin, .button-checkin:link, .button-checkin:visited {
    display: block;
    border-radius:5px;
    background: #80b03b;
    text-align: center;
    color:#fff;
    padding:20px 0;
    text-decoration: none;
    font-size:16px;
    font-weight: bold;
    border:1px solid #80b03b;
}
.button-checkin:hover {
    background: none;
    color:#80b03b;
}
.button-checkout, .button-checkout:link, .button-checkout:visited {
    display: block;
    border-radius:5px;
    background: #b41f1f;
    text-align: center;
    color:#fff;
    padding:20px 0;
    text-decoration: none;
    font-size:16px;
    font-weight: bold;
    border:1px solid #b41f1f;
}
.button-checkout:hover {
    background: none;
    color:#b41f1f;
}
.button-auto, .button-auto:link, .button-auto:visited {
    display: block;
    border-radius:5px;
    background: #2d99c9;
    text-align: center;
    color:#fff;
    padding:20px 0;
    text-decoration: none;
    font-size:16px;
    font-weight: bold;
    border:1px solid #2d99c9;
}
.button-auto:hover {
    background: none;
    color:#2d99c9;
}
.button-other, .button-other:link, .button-other:visited {
    display: block;
    border-radius:5px;
    text-align: center;
    color:#115f7a;
    padding:10px 0;
    text-decoration: none;
    font-size:16px;
    font-weight: bold;
    border:1px solid #115f7a;
}
.button-other:hover {
    background: #115f7a;
    color:#fff;
}
.group-box-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin:0 0 20px 0;
}

.static-page table {
    margin:0 0 10px 0;
    border-collapse: collapse;
    width: 100%;
}
.static-page table td, .static-page table th {
    border: 1px solid #ddd;
    padding: 10px;
}
.static-page table tr:nth-child(even){
    background-color: #f2f2f2;
}
.static-page table tr:hover {
    background-color: #ddd;
}
.static-page table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #1c8185;
    color: #fff;
}

/* Standard Tables */
.colheaders {
    overflow: auto;
}
table {
    border-collapse: collapse;
    border: none;
    table-layout: auto;
    width:100%;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

caption {
    text-align: left;
    font-style: italic;
    padding: 0.25em 0.5em 0.5em 0.5em;
}

th,
td {
    padding: 12px 10px;
    vertical-align: middle;
    text-align: left;
    font-size:15px;
    border-bottom:1px solid #c7d9df;
}

th {
    vertical-align: middle;
    background-color: #f1f7f9;
    color: #111;
    line-height: 1.3;
    font-size:16px;
}
tr td {
    font-size:15px;
    color:#333;
    position: relative;
}
tr td.center {
    text-align: center;
}
table tr:last-child td {
    border:none;
}
table tfoot tr th span {
    font-weight: normal;
}
.man i {
    font-size:14px;
    color:#03a3ff;
    margin:0 4px 0 0;
    position: absolute;
    z-index: 1;
    left:0;
}
.woman i {
    font-size:14px;
    color:#ec49a7;
    margin:0 4px 0 0;
    position: absolute;
    z-index: 1;
    left:0;
}
.man a, .woman a {
    display: block;
    padding-left:7px;
}
.button-refresh, .button-refresh:link, .button-refresh:visited {
    position: absolute;
    z-index: 1;
    top:20px;
    right:20px;
    font-size:14px;
    text-decoration: none;
    color:#fff;
    background: #2d99c9;
    display: inline-block;
    padding:5px 10px;
    border:1px solid #2d99c9;
}
.button-refresh:hover {
    background: none;
    color:#2d99c9;
}

/* Login
=====================================================================*/
#form-login-container {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}
#form-login-content {
    width: 300px;
    background: #fff;
    border: 1px solid #e0d5c2;
    border-radius:5px;
    padding:20px;
}
.link-forget {
    float:right;
    margin:15px 0 0 0;
}
#form-login-content figure {
    margin:0 0 20px 0;
    text-align: center;
}
#form-login-content figure img {
    width:80%;
}
#form-login-content p {
    font-size:13px;
    color:#666;
    text-align: center;
    line-height: 1.3;
    margin-top:25px;
}
#form-login-content p#text-account {
    font-size:16px;
    color:#333;
}

/* Member
=====================================================================*/
#nav-subcontent {
    list-style: none;
    margin:0;
    right:20px;
    top:20px;
    position: absolute;
}
#nav-subcontent li {
    float:left;
    margin:0 0 0 10px;
}
#nav-subcontent li a {
    font-weight: 300;
    font-size:14px;
    background: #2d99c9;
    padding:10px 20px;
    border-radius:5px;
    color:#fff;
    text-decoration: none;
    border:1px solid #2d99c9;
    display: block;
}
#nav-subcontent li a:hover {
    opacity: 0.8;
}
#nav-subcontent li.active a {
    background: #fff;
    color:#2d99c9;
    font-weight: bold;
}
.main-title i {
    font-size:14px;
    margin:0 5px;
}
.group-box-full {
    display: block;
    margin:0 0 20px 0;
}
.alert {
    margin:0 0 20px 0;
    background: rgba(241,65,168,0.1);
    color:#de506e;
    font-size:16px;
    border:1px solid #de506e;
    border-radius:5px;
    padding:10px 20px;
    font-weight: 300;
}
.success {
    margin:0 0 20px 0;
    background: rgba(128,176,59,0.1);
    color:#80b03b;
    font-size:16px;
    border:1px solid #80b03b;
    border-radius:5px;
    padding:10px 20px;
    font-weight: 300;
}
.gender-total {
    margin-top:20px;
    font-size:18px;
}
.gender-total i {
    font-size:16px;
}
.gender-total .man i, .gender-total .woman i {
    position: relative;
    top:auto;
    left:auto;
    margin:0;
}
.gender-total strong {
    margin-right:5px;
}
tr.expired td {
    background: rgba(241,65,168,0.1);
}
tr.warning td {
    background: rgba(255,199,0,0.1);
}

.tab {
    overflow: hidden;
    margin:0 0 20px 0;
}
.tab button {
    background: none;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 14px;
    transition: 0.3s;
    border-radius:5px;
    margin:0 10px 0 0;
    font-size:16px;
}
.tab button:hover {
    color:#2d99c9;
}
.tab button.active {
    background-color: #2d99c9;
    color:#fff;
}
.tabcontent {
    display: none;
    padding: 0;
    border:none;
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
#button-order {
    background: #2d99c9;
    display: block;
    padding:20px 0;
    text-align: center;
    color:#fff;
    vertical-align: middle;
    font-size:18px;
    text-decoration: none;
}
#button-order:hover {
    opacity: 0.8;
}
#text-couple-info {
    margin:10px 0;
    font-size:16px;
}
.dt-button {
    border:1px solid #2d99c9;
    background: #fff;
    color:#2d99c9;
    font-size:14px;
    padding:4px 7px;
    cursor: pointer;
    border-radius:5px;
}
.dt-button:hover {
    background: #2d99c9;
    color:#fff;
}


/* Setting
=====================================================================*/
.form-edit label {
    display: block;
    margin:0 0 5px 0;
    color:#111;
    font-size:15px;
}
.form-edit .input {
    height: 38px;
    line-height: 38px;
    width: 100%;
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 0 10px;
    outline: none;
    font-size: 14px;
    border-radius:5px;
    box-sizing: border-box;
}
.form-edit .input.small,
.form-edit .input.small.password {
    width:47%;
}
.form-edit .input.small.height {
    height:60px;
    line-height:60px;
    font-size:22px;
}
.form-edit .input.tiny {
    width:70px;
}
.form-edit .input.password {
    width:90%;
}
.form-edit .input:read-only {
    background-color: #ddd;
    cursor:no-drop;
}
.form-edit .input.date:read-only {
    background-color: #fff;
    cursor:auto;
}
.form-edit .input.datebirthday:read-only {
    background-color: #fff;
    cursor:auto;
}
.form-edit .input:read-only:focus {
    outline: none;
    box-shadow:none;
    border: 1px solid #d0d0d0;
}
.link-upgrade {
    font-size:15px;
    display: block;
    margin-top:5px;
}
.box-form {
    margin:0 0 20px 0;
    clear:both;
}
.box-form h4 {
    font-size:20px;
    color:#111;
    font-weight: bold;
    margin:0 0 20px 0;
}
.form-edit .input.textarea {
    line-height: auto;
    height:100px;
    margin:0 0 5px 0;
}
#wordCount {
    font-size:15px;
    color:#666;
}
.checkbox-container {
    
}
.radio-container {
    margin:12px 0 43px 0;
}
.radio-container.disabled label {
    color:#888;
}
.form-edit .checkbox-container checkbox,
.form-edit .radio-container radio {
    margin:0 5px 0 0;
}
.form-edit .checkbox-container label,
.form-edit .radio-container label {
    display: inline-block;
    float:none;
    font-size:16px;
}
.form-edit .checkbox-container label span {
    color:#777;
}
.form-edit .checkbox-container div,
.form-edit .radio-container div {
    margin:0 0 2px 0;
    position: relative;
}
.form-edit .checkbox-container div.child-checkbox {
    margin-left:15px;
}
.form-edit .checkbox-container.program .checkbox {
    position: absolute;
    z-index: 1;
    left:0;
    top:0;
}
.form-edit .checkbox-container.program label {
    margin-left:27px;
}
.box-form-left {
    width:calc(50% - 10px);
    float:left;
    margin:0;
}
.box-form-right {
    width:calc(50% - 10px);
    float:right;
    margin:0;
}
.box-form-right figure {
    cursor: pointer;
}
.form-edit .file {
    width: 96%;
    color: #666;
    padding: 2%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    margin:0 0 20px 0;
}
.form-edit .file[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #2d99c9;
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    border:1px solid #2d99c9;
}
.form-edit .file[type=file]::file-selector-button:hover {
    background: #fff;
    color:#073e68;
}
.form-edit label .asterisk,
#form-contact .asterisk {
    color:#e84d73;
}
.link-help {
    position: relative;
    margin-left:5px;
}
.popup-help {
    position: absolute;
    z-index: 10;
    background: #f6f6f6;
    width:300px;
    padding:20px;
    border-radius:5px;
    left:30px;
    top:-10px;
    font-size:14px;
    line-height: 1.4;
    color:#888;
    display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    height:35px;
}
.select2-search--dropdown {
    padding:10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #115f7a transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #115f7a transparent;
}
.select2-container--open .select2-dropdown--below {
    border:1px solid #9c9593;
    border-radius: 5px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #115f7a;
}
.select2-results__option {
    padding:10px;
}

.form-edit .select2-container {
    width:40% !important;
}
.form-edit .select.address + .select2-container {
    width:49% !important;
}
.form-edit .select.timeline + .select2-container {
    width:150px !important;
}
.form-edit .select.small + .select2-container {
    width:15% !important;
}
.form-edit .row-number .input {
    width:30%;
}
.form-edit .select2-container--default .select2-selection--single {
    border-radius:5px;
    border:1px solid #e1e1e1;
}
.form-edit .select2-container .select2-selection--single {
    height:40px;
}
.form-edit .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}
.form-edit .select2-container--default .select2-selection--single .select2-selection__arrow {
    height:40px;
}
.form-edit .select2-container--default .select2-selection--single .select2-selection__rendered {
    color:#666;
    font-size:16px;  
    font-weight: 300;
}
.group-address {
    margin:0 0 10px 0;
}
.text-linkwebsite {
    float:left;
    font-size:16px;
    width:200px;
    margin:10px 0 0 0;
}
.link-website {
    font-size:16px;
    float:left;
    background: #ffedaf;
    padding:5px 10px;
    color:#111;
    margin:0 0 5px 0;
}
.link-website span {
    font-weight: bold;
    display: inline-block;
    padding:2px 4px;
    background: #fff7da;
    border-radius:5px;
    border:1px solid #ecd68b;
}
.button-check {
    padding:5px 8px;
    background:#fff;
    border:1px solid #115f7a;
    border-radius:3px;
    cursor: pointer;
}
.box-form .available {
    font-size:16px;
    color:#29ccad;
}
.box-form .not-available {
    font-size:16px;
    color:#e84d73;
}
.form-edit .input:focus,
#form-contact .input:focus,
#form-login .input:focus {
    border-color: rgba(211, 211, 5, 0.8);
    box-shadow: 0 1px 1px rgba(211, 211, 5, 0.075) inset, 0 0 8px rgba(211, 211, 5, 0.6);
    outline: 0 none;
}
.form-edit .button {
    height:50px;
    border-radius:5px;
    border:none;
    background: #34891b;
    color:#fff;
    padding:0 30px;
    font-size:18px;
    cursor: pointer;
}
.form-edit .button:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
.form-edit .button:disabled:hover {
    opacity: 0.5;
}
.form-edit .button.small {
    height:40px;
    padding:0 20px;
    font-size:16px;
}
.form-edit .button.checkout {
    background: #b41f1f;
}
.form-edit .button:hover {
    opacity: 0.8;
}
.form-edit .checkbox-container checkbox,
.form-edit .radio-container radio {
    margin:0 5px 0 0;
}
.form-edit .checkbox-container label,
.form-edit .radio-container label {
    display: inline-block;
    float:none;
    font-size:15px;
}
.form-edit .checkbox-container label span {
    color:#777;
}
.form-edit .checkbox-container div,
.form-edit .radio-container div {
    margin:0 10px 0 0;
    position: relative;
    float:left;
}

/* Package
=====================================================================*/
.link-edit i {
    font-size:18px;
}
.link-edit {
    display: inline-block;
    padding:3px;
}
.link-delete i {
    font-size:18px;
}
.link-delete, .link-delete:link, .link-delete:visited {
    display: inline-block;
    padding:3px;
    color:#b41f1f;
}

/* Transaction
=====================================================================*/
#result-member .box-result p {
    line-height: 1.4;
}
.form-edit .select-packet {
    height: 38px;
    line-height: 38px;
    width: 100%;
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 0 10px;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
}
#form-transaction {
    display: none;
}
#form-transaction.show {
    display: block;
}
#tanggal-indonesia {
    margin:5px 0 0 10px;
    font-size:14px;
    color:#888;
}
.expired .active-until {
    color:#b41f1f;
}
.number-member.transaction {
    margin:0 0 20px 0;
}
.box-form.no-margin {
    margin:0;
}

/* Checkin
=====================================================================*/
#last-checkin {
    margin-bottom:20px;
}
/* Checkout
=====================================================================*/
#last-checkout {
    margin-top:20px;
}
#chart-loading {
    display: none;
    margin-left:5px;
}
.link-checkout, .link-checkout:link, .link-checkout:visited {
    font-size:14px;
    background: #b41f1f;
    border-radius:5px;
    padding:8px 12px;
    color:#fff;
    text-decoration: none;
    display: inline-block;
    margin:3px 0;
}
.link-checkout:hover {
    color:#fff;
    opacity: 0.8;
}
#logo-check {
    width:350px;
    margin:20px auto 40px auto;
}

/* Member
=====================================================================*/
#reason-box {
    display: none;
}

/* Chart
=====================================================================*/
#chart-loading img {
    width:20px;
}
#chart-member {
    max-width:100%; 
    height:400px
}
#totalTime {
    margin-top: 10px; 
    font-weight: bold; 
    font-size: 16px;
}
.piechart-container {
    max-width: 100%;
    height:400px;
    margin: auto;
    widtg:100%;
}
.tooltip-chart {
    padding:10px;
    font-size:14px;
    line-height: 1.4;
}

/* News
=====================================================================*/
.date {
    font-size:14px;
    color:#999;
    display: block;
    margin:0 0 20px 0;
}
.news-box {
    border-bottom:1px solid #e0d5c2;
    margin:0 0 20px 0;
}
#list-page {
    list-style: none;
    margin:0;
}
#list-page li {
    height:40px;
    float:left;
    margin:0 5px 0 0;
    line-height: 38px;
    font-size:16px;
}
#list-page li.first {
    margin-right:10px;
}
#list-page li a {
    width:38px;
    height:38px;
    display: block;
    border:1px solid #e0d5c2;
    text-align: center;
    font-size:16px;
    text-decoration: none;
}
#list-page li.active a {
    border:1px solid #29ccad;
    color:#29ccad;
}
#list-page li a:hover {
    color:#29ccad;
    border:1px solid #29ccad;
}

/* Dark Mode
=====================================================================*/
body.dark-mode a, a:active, a:visited { color: #d3d305;  }
body.dark-mode a:hover { color: #34891b; }
body.dark-mode {
    background: #0b0b0b;
}
body.dark-mode #sidebar {
    background: #1e1e1e;
    border-right:1px solid #353535;
}
body.dark-mode #nav-sidebar li a {
    color:#f4f4f4;
}
body.dark-mode #nav-sidebar li a:hover {
    color:#d3d3d3;
}
body.dark-mode #header {
    background: rgba(30,30,30,.75);
    border-bottom:1px solid #353535
}
body.dark-mode #header h1 {
    color:#fff;
}
body.dark-mode #header h1 span {
    color:#ccc;
}
body.dark-mode #nav-header li a {
    color:#f4f4f4;
}
body.dark-mode #nav-header li a:hover {
    color:#d3d3d3;
}
body.dark-mode #nav-header li {
    color:#d3d3d3;
}
body.dark-mode #nav-header li a span {
    background:#d13f3f;
    border:1px solid #1e1e1e;
}
body.dark-mode #nav-header li.logout a {
    color:#d13f3f;
}
body.dark-mode .main-title {
    color:#fff;
}
body.dark-mode .button-checkout {
    background:#d13f3f;
    border:1px solid #d13f3f;
}
body.dark-mode .button-checkout:hover {
    background: none;
    color:#d13f3f;
}
body.dark-mode .button-other {
    border:1px solid #fff;
    color:#fff;
}
body.dark-mode .red,
body.dark-mode .number-member.red {
    color:#d13f3f;   
}
body.dark-mode .green,
body.dark-mode .number-member.green {
    color:#80b03b;   
}
body.dark-mode .row-box {
    background: #1e1e1e;
    border:1px solid #353535;
}
body.dark-mode .title-box {
    color:#ccc;
}
body.dark-mode .number-member {
    color:#fff;
}
body.dark-mode .number-member span {
    color:#ccc;
}
body.dark-mode th {
    background: #2d2d2d;
    color:#fff;
}
body.dark-mode th,
body.dark-mode td {
    border-bottom:1px solid #525252;
}
body.dark-mode tr td {
    color:#eee;
}
body.dark-mode .gender-total strong {
    color:#eee;
}
body.dark-mode .static-page p {
    color:#ccc;
}
body.dark-mode .dt-search,
body.dark-mode .dt-length,
body.dark-mode div.dt-container .dt-info,
body.dark-mode div.dt-container .dt-paging {
    color:#ccc;
}
body.dark-mode div.dt-container .dt-search input,
body.dark-mode div.dt-container .dt-input {
    border:1px solid #525252;
}
body.dark-mode div.dt-container .dt-paging .dt-paging-button.disabled {
    color:#999 !important;
}
body.dark-mode #nav-subcontent li.active a {
    background: none;
    color:#fff;
    border:1px solid #fff;
}
body.dark-mode table.dataTable.dtr-inline.collapsed > tbody > tr.dtr-expanded > td.dtr-control::before {
    border-top-color:#ccc;
    border-left-color:transparent;
}
body.dark-mode table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before {
    border-left-color:#ccc;
}
body.dark-mode .tab button {
    color:#ccc;
}
body.dark-mode .tab button.active {
    color:#fff;
}
body.dark-mode .tab button:hover {
    color:#2d99c9;
}
body.dark-mode .tab button.active:hover {
    color:#fff;
}
body.dark-mode .form-edit label {
    color:#fff;
}
body.dark-mode .form-edit .input,
body.dark-mode .form-edit .file {
    background: #0b0b0b;
    border:1px solid #353535;
    color:#eee;
}
body.dark-mode .form-edit .input:read-only {
    background: none;
    color:#ccc;
}
body.dark-mode .form-edit .select2-container--default .select2-selection--single {
    background: #0b0b0b;
    border:1px solid #353535;
    color:#eee;
}
body.dark-mode .form-edit .select-packet {
    background: #0b0b0b;
    border:1px solid #353535;
    color:#eee;
}
body.dark-mode #link-branch {
    color:#fff;
}
body.dark-mode #list-branch {
    background: #1e1e1e;
    border-color:#353535;
}
body.dark-mode #list-branch li a {
    color:#ccc;
}
body.dark-mode #list-branch li a:hover {
    background: #2d2d2d;
    color:#fff;
}
body.dark-mode .radio-container.disabled label {
    color:#999;
}
body.dark-mode #last-checkin {
    color:#ccc;
}
body.dark-mode #last-checkout {
    color:#999;
}
body.dark-mode .dt-button {
    border:1px solid #2d99c9;
    background: #2d99c9;
    color:#fff;
}
body.dark-mode:hover {
    opacity: 0.8;
}
body.dark-mode .ql-toolbar .ql-stroke {
    stroke: #ccc; /* Default icon stroke color */
}
body.dark-mode .ql-toolbar .ql-fill {
    fill: #ccc; /* Default icon fill color */
}
body.dark-mode .ql-toolbar button:hover .ql-stroke {
    stroke: #2d99c9; /* Icon stroke on hover */
}
body.dark-mode .ql-toolbar button.ql-active .ql-stroke {
    stroke: #fff; /* Icon stroke when active */
}
body.dark-mode .ql-snow .ql-picker {
    color:#ccc;
}
body.dark-mode .ql-editor.ql-blank::before {
    color:#999;
}
body.dark-mode #text-isi .ql-editor {
    color:#fff;
}
body.dark-mode .news-box {
    border-bottom: 1px solid #353535;
}
body.dark-mode .static-page ul,
body.dark-mode .static-page ol {
    color:#ccc;
}
body.dark-mode #list-page li.first {
    color:#ccc;
}

/* Typography
=====================================================================*/
.static-page img {
    margin:5px 0 0 0;
    height:auto;
    width:110%;
    max-width:110%;
    margin-left:-5%;
}
.static-page img.imgframe {
    max-width:97.5%;
    border:5px solid #f3f6f8;
}
img.alignleft, .static-page img.alignleft {
    margin-right:35px;
    float:left;
}
img.alignright, .static-page img.alignright {
    margin-left:35px;
    float:right;
}
.static-page h1,
.static-page h2,
.static-page h3,
.static-page h4,
.static-page h5,
.static-page h6 {
    line-height: 1.3;
    color:#111;
}
.static-page h1 {
    font-size: 36px;
    margin: 30px 0;
}
.static-page h2 {
    font-size: 30px;
    margin: 25px 0;
}
.static-page h3 {
    font-size: 26px;
    margin: 22px 0;
}
.static-page h4 {
    font-size: 22px;
    margin: 25px 0;
}
.static-page h5 {
    font-size: 20px;
    margin: 30px 0;
}
.static-page h6 {
    font-size: 18px;
    margin: 36px 0;
}
.static-page p {
    margin: 0 0 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
.static-page hr {
    border: 0;
    text-align: center;
    margin:40px 0;
}
.static-page hr:before {
    content: "\2022   \2022   \2022   \2022";
    font-size: 44px;
    color: #cf3a52;
}
.align-center {
    text-align: center;
}
.static-page ul, .static-page ol {
    margin: 0 0 24px 30px;
    line-height: 1.5;
    font-size: 16px;
    color:#333;
}
.static-page ul {
    list-style-position: outside;
}
.static-page ul li {
    position: relative;
    padding-left: 0;
    text-indent: 0;    
}
.static-page ul li::marker {
    color:#2d99c9;
}
.static-page blockquote {
    margin: 0 0 24px;
    line-height: 1.5;
    font-size: 20px;
    color:#111;
    font-weight: 300;
    padding:0 0 0 40px;
    position: relative;
    overflow:hidden;
}
.static-page blockquote:before {
    content:'\201C';
    font-size:90px;
    color:#fb94ae;
    line-height: 1.2;
    position: absolute;
    height:50px;
    left:0;
    top:-15px;
}
.static-page blockquote p {
    font-size:20px;
    line-height: 1.5;
    font-weight: 300;
}
.static-page blockquote cite {
    text-align: right;
    font-size: 16px;
    display: block;
}
pre {
    font-size: 16px;
    padding: 0 0 0 10px;
    margin: 0;
    background: #e7e7e7;
    border-left: 1px solid #b8b8b8;
    overflow: auto;
    overflow-y: hidden;
    line-height:1.6em;
    margin-top:1.6em;
    margin-bottom:1.6em;
    color:#686868;
    font-family: 'Courier New', 'Courier', serif;
}
pre code {
    margin: 0 0 0 20px; 
    padding: 18px 0;
    display: block;
}
.wp-block-embed-youtube .wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } 
.wp-block-embed-youtube .wp-block-embed__wrapper  iframe, .wp-block-embed-youtube .wp-block-embed__wrapper  object, .wp-block-embed-youtube .wp-block-embed__wrapper  embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.wp-block-embed {
    margin: 0 0 40px 0;
}
.wp-block-image {
    margin: 0 0 40px 0;
    clear:both;
}
.wp-block-image img {
    margin-bottom:8px;
}
.wp-block-image figcaption {
    font-size: 14px;
    color: #333;
    text-align: center;
    font-weight: 300;
}
.wp-block-image .alignleft {
    width:40%;
    margin-right:60px;
}
.wp-block-image .alignright {
    width:40%;
    margin-left:60px;
}
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a, .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
    margin:0;
}
.static-page .wp-block-columns img {
    width:100%;
    max-width:100%;
    margin-left:0;
}
.static-page table {
    margin:0 0 10px 0;
    border-collapse: collapse;
    width: 100%;
}
.static-page table td, .static-page table th {
    border: 1px solid #ddd;
    padding: 10px;
}
.static-page table tr:nth-child(even){
    background-color: #f2f2f2;
}
.static-page table tr:hover {
    background-color: #ddd;
}
.static-page table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #1c8185;
    color: #fff;
}
.wp-block-table thead {
    border-bottom:1px solid #ddd !important;
}
.wp-block-file *+.wp-block-file__button {
    display: inline-block;
    padding:5px 10px;
}
.wp-block-file *+.wp-block-file__button:hover {
    color:#fff;
}
.static-page figcaption {
    font-size:16px;
    position: relative;
    color:#999;
    margin:20px 0 20px 0;
    padding:15px 0 0 0;
    font-weight: 300;
}
/*.static-page figcaption:before {
    content:"";
    height:1px;
    background: #d0d0d0;
    width:60px;
    position:absolute;
    top:0;
    left:0;
}*/

/* Footer
=====================================================================*/
#main-footer {
    padding:20px;
}
#footer-left {
    float:left;
}
#footer-left p {
    font-size:13px;
    color:#666;
}
#footer-left p span {
    border-left:1px solid #999;
    padding:0 0 0 10px;
    margin:0 0 0 8px;
}

/* CSS for Small laptop
=====================================================================*/
@media screen and (max-width: 1400px) {
    
}
/* CSS for Small laptop
=====================================================================*/
@media screen and (max-width: 1200px) {
    #main-content {
        width:100%;
        left:0;
        height: auto;
    }
    #header {
        width:100%;
        position: absolute;
    }
    #header h1 {
        margin-left:55px;
    }
    .menu-button-container {
        display: block;
    }
    #menu-toggle:checked ~ #sidebar {
        display: block;
    }
    #menu-toggle:checked ~ .menu-button-container .menu-button {
        left:260px;
        position: fixed;
    }
    #menu-toggle ~ #sidebar {
        display: none;
    }
    #sidebar {
        position: fixed;
        left:0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.8);
        overflow: hidden;
        transition: width 0.3s ease;
        -moz-transition: width 0.3s ease;
        -webkit-transition: width 0.3s ease;
        -o-transition: width 0.3s ease;
        z-index:5;
        margin:0;
        padding:0;
        display: none;
    }
    #nav-container {
        width:250px;
        height: 100%;
        overflow: scroll;
        background: #fff;
        border-right:1px solid #e0d5c2;
        left:0;
        top: 0;
        z-index:5;
        position: absolute;
    }
    .close-menu-big {
        text-indent: -9999px;
        display: block;
        height: 100%;
    }
    #nav:target {
        width: 100%;
    }
    .menu-button {
        text-decoration: none;
        display: block;
        width:50px;
        height: 50px;
        padding:0;
        position: absolute;
        z-index:2100;
        left:0;
        top:3px;
        text-align: center;
        color:#111;
        font-size:28px;
        background: none;
        border:none;
        line-height: 55px;
    }
    body.dark-mode .menu-button {
        color:#fff;
    }
    body.dark-mode #nav-container {
        background: #1e1e1e;
        border-right: 1px solid #353535;
    }
}
/* CSS for iPad Landscape
=====================================================================*/
@media screen and (max-width: 1024px) {
    .group-box-large {
        grid-template-columns: 1fr;
    }
    #header h1 {
        font-size:20px;
        margin-top:20px;
    }
}

/* CSS for iPad Portrait
=====================================================================*/
@media screen and (max-width: 800px) {
    .group-box-grid {
        grid-template-columns: 1fr 1fr;
    }
    #header h1 {
        font-size:18px;
    }
    #nav-header li.user {
        display: none;
    }
    #nav-subcontent {
        position: relative;
        top:auto;
        right:auto;
        margin:0 0 20px 0;
    }
    #nav-subcontent li {
        margin:0 10px 0 0;
    }
}

/* CSS for Smartphone, ex: iPhone, Android, Blackberry
=====================================================================*/
@media screen and (max-width: 650px) {
    #header h1 span {
        display: none;
    }
    #header h1 {
        margin-left:50px;
        font-weight: normal;
    }
    #header h1 strong {
        display: none;
    }
    .main-title {
        font-size:18px;
    }
    .group-box-grid {
        grid-template-columns: 1fr;
    }
    .title-box {
        font-size:16px;
    }
    .group-box-large {
        display: block;
        grid-gap:0;
    }
    .group-box-large .row-box {
        margin-bottom:20px;
    }
    th {
        font-size:15px;
    }
    tr td {
        font-size:14px;
    }
    #nav-subcontent li {
        float:none;
        margin:0 0 10px 0;
        display: block;
    }
    .tab button {
        font-size:15px;
        padding:10px 12px;
        float:none;
        margin:0 5px 10px 5px;
    }
    .tab {
        text-align: center;
    }
    .form-edit .input.small {
        width:100%;
    }
    .form-edit .input.password.small,
    .form-edit .input.password {
        width:90%;
    }
    .box-form-left {
        width:100%;
        float:none;
    }
    .box-form-right {
        width:100%;
        float:none;
    }
    .form-edit .select.address + .select2-container {
        width:100% !important;
        margin:0 0 10px 0;
    }
    .group-address {
        margin:0;
    }
    .form-edit .select.small + .select2-container {
        width:100% !important;
        margin:0 0 10px 0;
    }
    .form-edit .button {
        width:100%;
        margin-top:0;
    }
    #form-login-content {
        width:calc(90% - 40px);
    }
    #footer-left {
        float:none;
        text-align: center;
    }
    #footer-left p {
        line-height: 1.3;
    }
    #footer-left p span:last-child {
        display: block;
        float:none;
        border:none;
        margin:0;
    }
}