/*
Copyright (C) CHIN WEI PING <wp.chin@xantec.com.my>
This file is part of XANTEC, cannot be copied and/or
distributed without the express permission of Xantec Solutions Sdn. Bhd.
*/
/*
    Created on : 22 Aug 2019, 16:07:21
    Author     : CHIN WEI PING
*/

/******************************
    1 : ANIMATION
    2 : INITIALIZE
    3 : NAVIGATION
    4 : FOOTER
    5 : MAIN
    6 : LOGIN
    7 : CUSTOMIZE
    8 : RESPONSIVE
 ******************************/

/******************************
    1 : ANIMATION
 ******************************/
@-webkit-keyframes atom {
    0% {
        color: var(--c-dark);
        transform: rotate(1440deg);
        -moz-transform: rotate(1440deg);
        -ms-transform: rotate(1440deg);
        -webkit-transform: rotate(1440deg);
    }

    25% {
        color: var(--r-dark);
        transform: rotate(1080deg);
        -moz-transform: rotate(1080deg);
        -ms-transform: rotate(1080deg);
        -webkit-transform: rotate(1080deg);
    }

    50% {
        color: var(--u-dark);
        transform: rotate(720deg);
        -moz-transform: rotate(720deg);
        -ms-transform: rotate(720deg);
        -webkit-transform: rotate(720deg);
    }

    75% {
        color: var(--d-dark);
        transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }

    100% {
        color: var(--c-dark);
        transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes fade {
    0% {
        position: relative;
        margin-top: 0;
        opacity: 0;
        visibility: visible;
        transform: translate(54px, 0);
        -moz-transform: translate(54px, 0);
        -ms-transform: translate(54px, 0);
        -webkit-transform: translate(54px, 0);
    }

    9% {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }

    90% {
        position: relative;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    99% {
        position: relative;
        margin-top: -57px;
        opacity: 0;
        visibility: visible;
    }

    100% {
        position: absolute;
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes flash {
    0% {
        opacity: .6;
        transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -webkit-transform: scale(.5);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes loading {
    0% {
        left: 0;
        right: 100%;
    }

    50% {
        left: 50%;
        right: 25%;
    }

    100% {
        left: 100%;
        right: 0;
    }
}

@-webkit-keyframes ring {
    0% {
        transform: rotate(0deg) scale(1);
        -moz-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -webkit-transform: rotate(0deg) scale(1);
    }

    10% {
        transform: rotate(30deg) scale(1.5);
        -moz-transform: rotate(30deg) scale(1.5);
        -ms-transform: rotate(30deg) scale(1.5);
        -webkit-transform: rotate(30deg) scale(1.5);
    }

    15% {
        transform: rotate(-30deg) scale(1.5);
        -moz-transform: rotate(-30deg) scale(1.5);
        -ms-transform: rotate(-30deg) scale(1.5);
        -webkit-transform: rotate(-30deg) scale(1.5);
    }

    20% {
        transform: rotate(30deg) scale(1.5);
        -moz-transform: rotate(30deg) scale(1.5);
        -ms-transform: rotate(30deg) scale(1.5);
        -webkit-transform: rotate(30deg) scale(1.5);
    }

    25% {
        transform: rotate(-30deg) scale(1.5);
        -moz-transform: rotate(-30deg) scale(1.5);
        -ms-transform: rotate(-30deg) scale(1.5);
        -webkit-transform: rotate(-30deg) scale(1.5);
    }

    30% {
        transform: rotate(30deg) scale(1.5);
        -moz-transform: rotate(30deg) scale(1.5);
        -ms-transform: rotate(30deg) scale(1.5);
        -webkit-transform: rotate(30deg) scale(1.5);
    }

    35% {
        transform: rotate(0deg) scale(1);
        -moz-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -webkit-transform: rotate(0deg) scale(1);
    }

    100% {

        transform: rotate(0deg) scale(1);
        -moz-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -webkit-transform: rotate(0deg) scale(1);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translate(15px, 0);
        -moz-transform: translate(15px, 0);
        -ms-transform: translate(15px, 0);
        -webkit-transform: translate(15px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}

@-webkit-keyframes timer {
    0% {
        transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

/******************************
    2 : INITIALIZE
 ******************************/
:root {
    background: #f1f1f1;
    color: #333;
    color-scheme: light;
    --c-dark: #29bc9a;
    --c-light: #dff5f0;
    --r-dark: #fd9828;
    --r-light: #fff0df;
    --u-dark: #007aff;
    --u-light: #d9ebff;
    --d-dark: #ff3b2f;
    --d-light: #ffe2e0;
}

:before,
:after {
    position: relative;
    transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

* {
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

html {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100%;
    overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1.25;
}

h1,
h2,
h3 {
    color: #000;
}

h4,
h5,
h6 {
    color: var(--theme);
}

h1 {
    font-size: 175%;
}

h2 {
    font-size: 175%;
}

h3 {
    font-size: 175%;
}

h4 {
    font-size: 175%;
}

h5 {
    font-size: 150%;
}

h6 {
    font-size: 125%;
}

hr {
    margin: 18px 0;
    height: 1px;
    background: #000;
    opacity: .2;
}

.dark hr {
    background: #fff;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

/*a:focus {
    outline: 1px dashed var(--theme);
    outline-offset: -1px;
}*/
p>a {
    color: var(--theme);
    display: inline-block;
    text-decoration: underline;
    vertical-align: baseline;
}

b,
strong {
    font-weight: 700;
}

code {
    color: var(--d-dark);
    display: inline-block;
    vertical-align: bottom;
}

pre {
    background: #dcdcdc;
    font-size: 75%;
    max-height: 300px;
    overflow: auto;
    padding: 15px;
}

img {
    display: block;
    width: 100%;
}

small {
    font-size: 75%;
}

blockquote {
    background: #f6f6f6;
    display: flex;
    align-items: center;
    padding: 15px;
}

blockquote.error {
    background: var(--d-light);
    color: var(--d-dark);
}

blockquote.warning {
    background: var(--r-light);
    color: var(--r-dark);
}

blockquote.pending {
    background: var(--u-light);
    color: var(--u-dark);
}

blockquote.success {
    background: var(--c-light);
    color: var(--c-dark);
}

blockquote>i {
    color: inherit;
    display: block;
    font-size: 150%;
    margin-right: 15px;
}

ol,
ul {
    margin: 0 0 0 24px;
}

p+ol,
p+ul {
    margin-top: 6px;
}

ol>li+li,
ul>li+li {
    margin-top: 3px;
}

.listing {
    list-style: none;
    margin-left: -9px;
}

*+.listing {
    margin-top: 6px;
}

.listing>li {
    display: flex;
}

.listing>li>* {
    display: block;
    margin-left: 9px;
    text-align: left;
}

.listing>li>ul {
    list-style: none;
}

.listing>li>ul+ul {
    margin-left: 15px;
}

.listing>li i {
    color: var(--theme);
    line-height: 24px;
    padding-top: 0;
    text-align: center;
}

.listing>li i:first-child {
    align-self: self-start;
    min-width: 24px;
}

.listing>li .la-check {
    background: var(--c-light);
    color: var(--c-dark);
    margin-right: 6px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.listing>li .la-times {
    background: var(--d-light);
    color: var(--d-dark);
    margin-right: 6px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.listing .currency,
.listing .last {
    margin-left: auto;
    padding-left: 9px;
    text-align: right;
}

.balance {
    border-top: 1px solid #ccc;
    font-size: 125%;
    margin-top: 6px;
    padding-top: 6px;
}

.balance b {
    margin-left: auto;
}

.balance.success b {
    color: var(--c-dark);
}

.balance.warning b {
    color: var(--r-dark);
}

.balance.pending b {
    color: var(--u-dark);
}

.balance.error b {
    color: var(--d-dark);
}

.datatable {
    background: #f9f9f9;
    margin: 0 -30px;
    overflow-y: auto;
}

.datatable:before,
.datatable:after {
    top: 6px;
}

.datatable.loaded:before,
.datatable.loaded:after {
    display: none;
}

.dataTables_wrapper {
    width: fit-content;
    min-width: 100%;
}

.dataTables_length,
.dataTables_filter {
    display: none;
}

.dataTables_info {
    position: absolute;
    top: 6px;
    left: 30px;
    color: #f9f9f9;
    display: flex;
    align-items: center;
    font-size: 75%;
    line-height: 17px;
    white-space: nowrap;
    opacity: .6;
    overflow: hidden;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.dataTables_info * {
    position: relative;
    background: var(--theme);
    display: block;
    padding: 1px 12px 0;
}

.dataTables_info span {
    margin-right: 1px;
}

.dataTables_info em {
    font-style: normal;
}

.dataTables_info em:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #f9f9f9;
    width: 1px;
    transform: skew(-15deg);
    -moz-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    -webkit-transform: skew(-15deg);
}

.dataTables_paginate {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
}

.dataTables_paginate a {
    position: absolute;
    top: 0;
    color: var(--theme);
    text-align: center;
}

.dataTables_paginate a.previous {
    left: 0;
}

.dataTables_paginate a.next {
    right: 0;
}

.dataTables_paginate a.disabled {
    color: #000;
    opacity: .3;
}

.dataTables_paginate a i {
    display: block;
    font-size: 125%;
    width: 30px;
    line-height: 39px;
}

.dataTables_paginate span {
    display: none;
}

table {
    border-spacing: 0 1px;
    width: 100% !important;
}

table.fixed {
    table-layout: fixed;
}

table thead tr+tr {
    border: none;
}

table tr>* {
    padding: 15px 9px;
    vertical-align: top;
}

table tr>*[align=right] {
    text-align: right;
}

table tr>*:first-child {
    padding-left: 30px;
}

table tr>*:last-child {
    padding-right: 30px;
}

table tr>*.dataTables_empty {
    text-align: center;
    font-size: 175%;
    opacity: .3;
    padding: 30px;
}

table tr>*.dataTables_empty:before,
table tr>*.dataTables_empty:after {
    display: none;
}

table th {
    font-weight: normal;
    text-align: left;
}

table thead th {
    padding-top: 18px;
    padding-bottom: 0;
    vertical-align: bottom;
}

.dataTables_wrapper table thead th {
    padding-top: 30px;
}

table thead td {
    padding-top: 0;
    padding-bottom: 16px;
}

table thead th * {
    line-height: 1;
}

table thead span {
    display: flex;
    align-items: center;
    font-size: 75%;
    opacity: .6;
    white-space: nowrap;
}

table thead th:hover span,
table .sorting_asc span,
table .sorting_desc span {
    opacity: 1;
}

table thead th.sorting span:after {
    color: var(--theme);
    display: block;
    font-family: 'Line Awesome Free';
    font-weight: bold;
    font-size: 125%;
    margin-left: 6px;
}

table thead th.sorting span:after {
    content: '\f0dc';
}

table thead th.sorting_asc span:after {
    content: '\f0de';
}

table thead th.sorting_desc span:after {
    content: '\f0dd';
}

table thead *[align=right] span {
    justify-content: right;
}

table tbody {
    background: #fff;
}

table tbody th {
    color: #ccc;
    border-top: 1px solid #eee;
}

table tbody td:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 1px;
    background: var(--theme);
    opacity: 0;
}

table tbody tr.expired>*:not(.excluded),
table tbody tr td.expired>*:not(.excluded) {
    opacity: .3;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

table tbody tr.success td:before,
table tbody tr td.success:before {
    background: var(--c-dark);
    opacity: .06;
}

table tbody tr.warning td:before,
table tbody tr td.warning:before {
    background: var(--r-dark);
    opacity: .06;
}

table tbody tr.pending td:before,
table tbody tr td.pending:before {
    background: var(--u-dark);
    opacity: .06;
}

table tbody tr.error td:before,
table tbody tr td.error:before {
    background: var(--d-dark);
    opacity: .06;
}

table tbody tr:hover td:before,
table tbody tr td.sorting_1:before {
    opacity: .03;
}

table tbody tr:hover td.sorting_1:before {
    opacity: .06;
}

table tbody tr>td:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 6px solid transparent;
}

table tbody tr.expired>td:first-child:after,
table tbody tr>td.expired:after {
    border-top: 6px solid #666;
    border-left: 6px solid #666;
}

table tbody tr.success>td:first-child:after,
table tbody tr>td.success:after {
    border-top: 6px solid var(--c-dark);
    border-left: 6px solid var(--c-dark);
}

table tbody tr.warning>td:first-child:after,
table tbody tr>td.warning:after {
    border-top: 6px solid var(--r-dark);
    border-left: 6px solid var(--r-dark);
}

table tbody tr.pending>td:first-child:after,
table tbody tr>td.pending:after {
    border-top: 6px solid var(--u-dark);
    border-left: 6px solid var(--u-dark);
}

table tbody tr.error>td:first-child:after,
table tbody tr>td.error:after {
    border-top: 6px solid var(--d-dark);
    border-left: 6px solid var(--d-dark);
}

table tfoot td {
    background: #fff;
}

table .divider {
    width: 5px;
    min-width: 5px;
    padding: 0;
}

table .divider:after {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    bottom: 0;
    background: #000;
    border: none;
    display: block;
    width: 1px;
    opacity: .1;
}

table label {
    padding-bottom: 0;
}

table label>span {
    font-size: 75%;
}

table label.icon input {
    padding-left: 39px;
}

table label.icon select {
    padding-left: 35px;
}

table label.icon.right input {
    padding-left: 0;
    padding-right: 39px;
}

table label.icon i {
    bottom: 0;
    width: 39px;
    line-height: 39px;
}

table input,
table select {
    padding: 6px 9px;
    min-width: 45px;
}

table *[align=right] input,
table *[align=right] select {
    text-align: right;
}

table *[align=right]>.profile {
    float: right;
}

table .range {
    align-items: center;
}

table .range>i {
    line-height: normal;
    padding-bottom: 0;
}

table .checkbox label,
table .radio label,
table .switch label {
    min-height: 37px;
}

table .buttonholder {
    justify-content: right;
}

table .range+.range {
    margin-top: 3px;
}

table .range>small {
    min-width: 75px;
    padding-right: 15px;
}

table .range .buttonholder {
    padding-bottom: 7px;
}

table .buttonholder+.buttonholder {
    margin-top: 9px;
}

table button,
table .button {
    background: none !important;
    padding: 0;
}

table tr>*[align=right]>button,
table tr>*[align=right]>.button {
    justify-content: right;
}

table button:before,
table .button:before {
    display: none;
}

table button i,
table .button i {
    color: inherit !important;
    font-size: 21px;
    min-width: 24px;
    line-height: 24px;
    text-align: right;
}

.middle table tr>* {
    vertical-align: middle;
}

.hide {
    display: none !important;
}

label,
.label {
    display: block;
    padding-bottom: 24px;
}

label>span,
.label>span {
    display: block;
    padding-bottom: 3px;
    text-align: left;
}

label.required>span:after,
.label.required>span:after {
    content: '*';
    color: var(--d-dark);
    font-style: normal;
    margin-left: 6px;
}

label .optional>span:after,
.label .optional>span:after {
    content: '(optional)';
    color: #999;
    font-style: italic;
    margin-left: 6px;
}

label.icon i,
.label.icon i {
    position: absolute;
    left: 0;
    bottom: 24px;
    color: var(--theme);
    font-style: normal;
    line-height: 45px;
    width: 45px;
    text-align: center;
    z-index: 2;
    border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
}

label.icon.right i,
.label.icon.right i {
    left: auto;
    right: 1px;
}

label.icon i:before,
.label.icon i:before {
    display: block;
    font-size: 150%;
}

label.narrow,
.label.narrow {
    padding-bottom: 3px;
}

label.narrow i,
.label.narrow i {
    bottom: 3px;
}

::placeholder {
    color: #ccc;
    opacity: 1;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #ccc;
    font-weight: 400;
}

::-ms-input-placeholder {
    color: #ccc;
    font-weight: 400;
}

input,
select,
textarea {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    direction: ltr;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 100%;
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 45px;
    outline: none;
    padding: 0 0 0 15px;
    z-index: 1;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid transparent;
    box-shadow: 0 0 0 2px var(--theme);
    -webkit-box-shadow: 0 0 0 2px var(--theme);
}

input[type="text"]+input[type="text"] {
    margin-top: 3px;
}

input[type='file'] {
    height: 45px;
}

input[type='number'],
.digit input,
.number input,
.quantity input {
    text-align: right;
    padding-left: 0;
    padding-right: 15px;
}

input[type='date'] {
    padding-right: 11px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[readonly],
select[readonly],
textarea[readonly] {
    background: #f1f1f1;
    border: 1px solid #ccc;
}

input[readonly]:focus,
select[readonly]:focus,
textarea[readonly]:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

input[disabled],
select[disabled],
textarea[disabled] {
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    color: #ccc;
}

select {
    padding-left: 11px;
}

textarea {
    height: 141px;
    line-height: 24px;
    overflow-y: auto;
    padding: 8px 15px;
    resize: none;
}

label.icon input {
    padding-left: 45px;
}

label.icon select {
    padding-left: 41px;
}

label.icon.right input {
    padding-left: 0;
    padding-right: 45px;
    text-align: right;
}

.accepted input,
.accepted select,
.accepted textarea {
    border: 1px solid var(--c-dark);
}

.rejected input,
.rejected select,
.rejected textarea {
    border: 1px solid var(--d-dark);
}

.authcode input {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.checkbox,
.radio,
.switch {
    background: #fff;
    border: 1px solid #ccc;
}

.checkbox .datatable,
.radio .datatable,
.switch .datatable {
    margin: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.checkbox label,
.radio label,
.switch label {
    display: flex;
    align-items: center;
    min-height: 43px;
    padding: 0 15px;
}

.checkbox label+label,
.radio label+label,
.switch label+label {
    border-top: 1px solid #ddd;
}

.checkbox input,
.radio input,
.switch input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.checkbox input,
.radio input,
.switch input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.checkbox label>*,
.radio label>*,
.switch label>* {
    opacity: .6;
}

.checkbox label input:checked~*,
.radio label input:checked~*,
.switch label input:checked~* {
    color: #000;
    opacity: 1;
}

.checkbox label span,
.radio label span,
.switch label span {
    font-size: 100%;
    margin-left: 15px;
    padding: 6px 0;
}

.switch label span.active {
    display: none;
}

.switch label span.inactive {
    opacity: 1;
}

.switch label input:checked~span.active {
    display: block;
}

.switch label input:checked~span.inactive {
    display: none;
}

.checkbox label i,
.radio label i,
.switch label i {
    display: block;
}

.checkbox label i,
.radio label i {
    margin: 0 3px;
}

.checkbox label i:before,
.radio label i:before,
.switch label i:before {
    content: '';
    display: block;
}

.checkbox label i:before {
    background: #ccc;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.radio label i:before {
    border: 2px solid #ccc;
    width: 14px;
    height: 14px;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.switch label i:before {
    background: #ccc;
    width: 24px;
    height: 16px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.checkbox label input:checked~i:before {
    background: var(--theme);
}

.radio label input:checked~i:before {
    border: 2px solid var(--theme);
}

.switch label input:checked~i:before {
    background: var(--theme);
}

.checkbox label i:after,
.radio label i:after,
.switch label i:after {
    content: '';
    position: absolute;
    display: block;
}

.checkbox label i:after {
    top: 2px;
    left: 2px;
    background: #fff;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkbox label input:checked~i:after {
    top: 3px;
    background: transparent;
    height: 4px;
    transform: rotate(135deg);
}

.radio label i:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    opacity: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.radio label input:checked~i:after {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    opacity: 1;
}

.switch label i:after {
    top: 2px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    width: 12px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.switch label input:checked~i:after {
    left: 10px;
}

.clean:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.clean:hover:after {
    visibility: hidden;
}

.clean label {
    display: none;
}

.clean:hover label,
.clean label:has(input:checked) {
    display: flex;
}

.label>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

.label>ul>li {
    background: #eee;
    display: block;
    line-height: 21px;
    padding: 6px 15px;
    margin: 0 3px 3px 0;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.filter {
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.filter ul {
    list-style: none;
    margin: 0;
}

.filter>ul {
    max-height: 193px;
    border: 1px solid #ccc;
    margin-top: -1px;
    overflow: auto;
}

.filter>ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.filter>ul::-webkit-scrollbar-track {
    background: transparent;
}

.filter>ul::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.filter ul ul {
    padding-left: 36px;
}

.filter ul ul ul {
    padding-left: 36px;
}

.filter li {
    border-top: 1px solid #eee;
    background: #fff;
    margin: 0;
}

.filter li.success {
    background: var(--c-light);
}

.filter li.warning {
    background: var(--r-light);
}

.filter li.pending {
    background: var(--u-light);
}

.filter li.error {
    background: var(--d-light);
}

.filter li.expired {
    opacity: .3;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.filter>ul>li:first-child {
    border-top: none;
}

.filter ul ul li {
    border-left: 1px solid #eee;
}

.filter a {
    display: flex;
    align-items: center;
    line-height: 1.25;
    min-height: 47px;
}

.filter a>* {
    margin-left: 9px;
    padding: 6px 0 5px;
}

.filter a b,
.filter a span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter a em {
    display: block;
    font-size: 75%;
    font-style: normal;
    font-weight: 400;
    opacity: .6;
}

.filter a figure {
    display: block;
    min-width: 36px;
    max-width: 36px;
}

.filter a figure+figure {
    margin-left: -6px;
}

.filter a figure em {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 36px;
    opacity: 1;
}

.filter a figure i {
    background: #fff;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 36px;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 0 1px #fff;
    -webkit-box-shadow: 0 0 0 1px #fff;
}

.filter a figure i.la {
    color: var(--theme);
}

.filter a figure.dark i {
    color: #fff;
}

.filter a figure.light i {
    color: #000;
}

.filter a figure .success {
    color: var(--c-dark);
}

.filter a figure .pending {
    color: var(--r-dark);
}

.filter a figure .warning {
    color: var(--u-dark);
}

.filter a figure .error {
    color: var(--d-dark);
}

.filter a figure i.la:before {
    font-size: 18px;
}

.filter a figure i.la:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    opacity: .2;
}

.filter a figure .expired:after {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.filter a figure .success:after {
    background: var(--c-dark);
}

.filter a figure .pending:after {
    background: var(--r-dark);
}

.filter a figure .warning:after {
    background: var(--u-dark);
}

.filter a figure .error:after {
    background: var(--d-dark);
}

.filter a figure.dark i:after,
.filter a figure.light i:after {
    display: none;
}

.filter a figure img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.filter a>i {
    display: block;
    min-width: 54px;
    max-width: 54px;
    margin-left: auto;
    opacity: .6;
}

.filter a.active>i {
    opacity: 1;
}

.filter a>i:before,
.filter a>i:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
}

.filter a>i:before {
    left: 15px;
    right: 15px;
    background: #ccc;
    height: 16px;
    margin-top: -8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.filter a>i:after {
    left: 17px;
    background: #fff;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.filter a.active>i:before {
    background: var(--theme);
}

.filter a.active>i:after {
    left: 25px;
}

.filter.single a>i {
    min-width: 48px;
    max-width: 48px;
}

.filter.single a.active>i {
    opacity: 1;
}

.filter.single a>i:before {
    background: #fff;
    border: 2px solid #ccc;
    height: 14px;
    margin-top: -9px;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.filter.single a.active>i:before {
    border: 2px solid var(--theme);
}

.filter.single a>i:after {
    left: 15px;
    background: var(--theme);
    width: 18px;
    height: 18px;
    margin-top: -9px;
    opacity: 0;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.filter.single a.active>i:after {
    left: 19px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    opacity: 1;
}

button,
.button {
    cursor: pointer;
    overflow: hidden;
    background: var(--theme);
    border: none;
    color: var(--theme);
    direction: ltr;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 100%;
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    line-height: 27px;
    outline: none !important;
    padding: 9px;
    white-space: nowrap;
}

button i,
.button i {
    display: block;
    font-size: 150%;
    font-style: normal;
    min-width: 27px;
    line-height: 27px;
    margin-left: auto;
    text-align: center;
}

button span,
.button span {
    display: block;
    margin-right: auto;
    overflow: hidden;
    padding: 0 6px;
}

button:focus i,
.button:focus i,
button:focus span,
.button:focus span,
button:hover i,
.button:hover i,
button:hover span,
.button:hover span {
    color: #fff;
}

button:before,
.button:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #f1f1f1;
    width: 100%;
    opacity: .6;
}

button:focus:before,
.button:focus:before,
button:hover:before,
.button:hover:before {
    width: 0;
    opacity: 0;
}

button.add,
.button.add {
    background: var(--c-dark);
    color: var(--c-dark);
}

button.edit,
.button.edit {
    background: var(--u-dark);
    color: var(--u-dark);
}

button.view,
.button.view {
    background: var(--r-dark);
    color: var(--r-dark);
}

button.delete,
.button.delete {
    background: var(--d-dark);
    color: var(--d-dark);
}

button.disable,
.button.disable {
    background: #ccc;
    color: #ccc;
}

button.narrow span,
.button.narrow span {
    padding: 0;
    width: 0;
}

button.narrow:hover span,
.button.narrow:hover span {
    padding: 0 6px;
    width: auto;
}

.buttonholder {
    display: flex;
    align-items: center;
    justify-content: right;
}

.buttonholder input[type='file'] {
    display: none;
}

.buttonholder>p {
    margin-right: auto;
    padding-right: 15px;
}

.buttonholder button,
.buttonholder .button {
    width: auto;
}

.buttonholder button+button,
.buttonholder button+.button,
.buttonholder .button+button,
.buttonholder .button+.button {
    margin-left: 6px;
}

.pagebutton {
    height: 60px;
    padding-bottom: 0 !important;
    z-index: 2;
}

.pagebutton .buttonholder {
    justify-content: right;
    transition: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
}

.rightnav .pagebutton .buttonholder {
    justify-content: left;
}

.pagebutton button,
.pagebutton .button {
    line-height: 30px;
    padding: 15px;
}

.pagebutton button i,
.pagebutton .button i {
    min-width: 30px;
    line-height: 30px;
}

.floatbtn .pagebutton .buttonholder {
    position: fixed;
    right: 120px;
    bottom: 0;
    z-index: 1;
}

.rightnav.floatbtn .pagebutton .buttonholder {
    left: 120px;
    right: auto;
}

.uploadimage {
    margin: -3px 0 0 -3px;
    overflow: hidden;
}

.uploadimage ul {
    list-style: none;
    margin: 0;
}

.uploadimage li {
    display: block;
    float: left;
    margin: 3px 0 0 3px;
    width: 75px;
    transition: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
}

.uploadimage.full li {
    width: auto;
    min-height: 75px;
}

.uploadimage li figure {
    display: block;
    overflow: hidden;
}

.uploadimage li figure a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
}

.uploadimage li figure a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    opacity: 0;
}

.uploadimage li figure a:hover:before {
    opacity: .6;
}

.uploadimage li figure a i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 200%;
    width: 60px;
    line-height: 60px;
    margin: -30px 0 0 -30px;
    text-align: center;
    opacity: 0;
}

.uploadimage li figure a:hover i {
    opacity: 1;
}

.uploadimage li>a {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--d-dark);
    color: #fff;
    display: block;
    font-size: 75%;
    line-height: 18px;
    z-index: 2;
}

.uploadimage li>a i {
    display: block;
    line-height: 18px;
    text-align: center;
    width: 18px;
}

.uploadimage li>a i:before {
    display: block;
}

.uploadimage label {
    cursor: pointer;
    float: left;
    margin: 3px 0 0 3px;
    overflow: hidden;
    padding: 0;
}

.uploadimage label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    opacity: .2;
}

.uploadimage label i {
    color: var(--theme);
    display: block;
    font-size: 150%;
    line-height: 75px;
    width: 75px;
    text-align: center;
    z-index: 1;
}

.uploadimage label input {
    display: none;
}

.rangelabel {
    padding-bottom: 3px;
}

.range {
    display: flex;
    align-items: end;
    margin: 0 -3px;
}

.range p {
    display: flex;
    align-items: center;
    min-height: 45px;
    margin-right: auto;
    padding-right: 15px;
}

.range>label,
.range>.label {
    flex: 1;
    width: 100%;
}

.range>label.x2 {
    flex: 2;
}

.range>label.x3 {
    flex: 3;
}

.range>* {
    margin: 0 3px;
}

.range>i {
    display: block;
    font-style: normal;
    line-height: 45px;
    padding: 0 0 24px;
}

.range>i:before {
    font-size: 150%;
}

.range>.buttonholder {
    padding-bottom: 24px;
    width: auto;
}

.ui-datepicker {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border: 2px solid var(--theme);
    display: none;
    margin: 0 0 0 -2px;
    padding: 0 0 15px;
    z-index: 4 !important;
}

.ui-datepicker-header>a {
    position: absolute;
    top: 50%;
    font-size: 125%;
    margin-top: -18px;
    z-index: 1;
}

.ui-datepicker-header>a.ui-state-disabled {
    display: none;
}

.ui-datepicker-header>.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-header>.ui-datepicker-next {
    right: 0;
}

.ui-datepicker-header>a:before {
    display: block;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    line-height: 36px;
    width: 45px;
    text-align: center;
}

.ui-datepicker-header>.ui-datepicker-prev:before {
    content: '\f104';
}

.ui-datepicker-header>.ui-datepicker-next:before {
    content: '\f105';
}

.ui-datepicker-header>a>span {
    display: none;
}

.ui-datepicker-title {
    display: flex;
    justify-content: center;
    margin: 0 45px;
    padding: 15px 0;
}

.ui-datepicker-title select {
    background: #f1f1f1;
    border: none;
    color: #000;
    font-size: 75%;
    padding-top: 6px;
    padding-bottom: 6px;
}

.ui-datepicker-title select+select {
    margin-left: 6px;
}

.ui-datepicker-title span.ui-datepicker-month {
    color: #333;
    display: block;
    font-weight: 700;
}

.ui-datepicker-title span.ui-datepicker-year {
    display: block;
    opacity: .6;
}

.ui-datepicker-title span.ui-datepicker-year:before {
    content: ', ';
}

.ui-datepicker table tr {
    border: none;
}

.ui-datepicker table th,
.ui-datepicker table td {
    border: none;
    padding: 0;
    text-align: center;
}

.ui-datepicker table tr>*:first-child {
    padding-left: 9px;
}

.ui-datepicker table tr>*:last-child {
    padding-right: 9px;
}

.ui-datepicker table {
    border: none;
}

.ui-datepicker table thead {
    background: #f1f1f1;
}

.ui-datepicker table thead th {
    font-weight: 400;
    width: 36px;
}

.ui-datepicker table thead span {
    display: block;
    opacity: 1;
    line-height: 36px;
}

.ui-datepicker table tbody tr:first-child>td {
    padding-top: 9px;
}

.ui-datepicker table tbody tr:nth-child(even)>* {
    background: transparent;
}

.ui-datepicker table tbody tr:hover>* {
    background: transparent !important;
}

.ui-datepicker-calendar tbody span {
    display: block;
    width: 36px;
    line-height: 36px;
    opacity: .3;
}

.ui-datepicker-calendar a {
    display: block;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.ui-datepicker-today a {
    background: #ccc;
}

.ui-datepicker-calendar a:hover {
    background: var(--theme);
    color: #fff;
}

.ui-datepicker-calendar a.ui-state-active {
    background: var(--theme);
    color: #fff;
}

.editor button:before {
    display: none;
}

.editor .content {
    background: #fff;
    color: #333;
    border: 1px solid #ccc !important;
    height: 500px;
    margin-top: -1px;
    padding: 30px !important;
}

.editor .content h2 {
    color: var(--theme);
    line-height: 1.25;
    margin: 0 0 12px !important;
}

.editor .content h3 {
    color: var(--theme);
    line-height: 1.25;
    margin: 0 0 12px !important;
}

.editor .content h4 {
    color: var(--theme);
    line-height: 1.25;
    margin: 0 0 12px !important;
    padding: 0;
}

.editor .content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.editor .content ul,
.editor .content ol {
    margin-left: 20px;
}

.editor .content p+ul,
.editor .content p+ol {
    margin-top: -16px;
}

.editor .content li {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 8px;
}

.editor .customUpload {
    width: 29.89px !important;
    line-height: 29.89px !important;
    text-align: center !important;
}

.editor .customUpload:hover {
    background: var(--ck-color-button-default-hover-background);
}

.editor .customUpload input {
    display: none;
}

.gap {
    height: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.middle {
    align-items: center;
}

.row>div {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.row .row {
    padding-top: 1px;
}

.row .row>div {
    margin-top: -1px;
    padding-bottom: 0;
}

.grid1 {
    width: 8.333333%;
}

.grid2 {
    width: 16.666666%;
}

.grid3 {
    width: 25%;
}

.grid4 {
    width: 33.333333%;
}

.grid5 {
    width: 41.666666%;
}

.grid6 {
    width: 50%;
}

.grid7 {
    width: 58.333333%;
}

.grid8 {
    width: 66.666666%;
}

.grid9 {
    width: 75%;
}

.grid10 {
    width: 83.333333%;
}

.grid11 {
    width: 91.666666%;
}

.grid12 {
    width: 100%;
}

.loading:before,
.loading:after,
.datatable:before,
.datatable:after {
    content: '';
    position: absolute;
    top: 15px;
    background: var(--theme);
    display: block;
    height: 4px;
    margin-top: -2px;
    z-index: 7;
    animation: loading 1s infinite linear;
    -moz-animation: loading 1s infinite linear;
    -webkit-animation: loading 1s infinite linear;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.loading:before,
.datatable:before {
    animation-delay: .5s;
    -moz-animation-delay: .5s;
    -webkit-animation-delay: .5s;
}

body.loading:before,
body.loading:after {
    position: fixed;
}

.uploadimage .loading:before {
    display: none;
}

.uploadimage .loading:after {
    top: 50%;
    left: 50%;
    background: transparent;
    border-top: 3px solid var(--theme);
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    animation: timer .6s infinite linear;
    -moz-animation: timer .6s infinite linear;
    -webkit-animation: timer .6s infinite linear;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.loading>* {
    filter: blur(15px) grayscale(1);
    -webkit-filter: blur(15px) grayscale(1);
}

.uploadimage .loading i:before {
    opacity: 0;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    padding: 0 90px;
}

.listnav .page,
.shownav .page {
    padding-left: 270px;
}

.rightnav.listnav .page,
.rightnav.shownav .page {
    padding-left: 90px;
    padding-right: 270px;
}

.main {
    margin: 0 auto;
    padding: 0 30px 60px;
    animation: slide .3s;
    -moz-animation: slide .3s;
    -webkit-animation: slide .3s;
}

.la:before {
    display: block;
}

.currency,
.weight {
    white-space: nowrap;
}

.currency:before {
    content: 'RM ';
}

.weight:after {
    content: ' g';
}

.pax:after {
    content: ' pax';
}

.flag {
    height: 37px;
}

.flag:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 13px;
    background: url(../img/flags.png);
    width: 16px;
    height: 11px;
}

.flag.AD:before {
    background-position: 0 0;
}

.flag.AE:before {
    background-position: 0 -11px;
}

.flag.AF:before {
    background-position: 0 -22px;
}

.flag.AG:before {
    background-position: 0 -33px;
}

.flag.AI:before {
    background-position: 0 -44px;
}

.flag.AL:before {
    background-position: 0 -55px;
}

.flag.AM:before {
    background-position: 0 -66px;
}

.flag.AN:before {
    background-position: 0 -77px;
}

.flag.AO:before {
    background-position: 0 -88px;
}

.flag.AR:before {
    background-position: 0 -99px;
}

.flag.AS:before {
    background-position: 0 -110px;
}

.flag.AT:before {
    background-position: 0 -121px;
}

.flag.AU:before {
    background-position: 0 -132px;
}

.flag.AW:before {
    background-position: 0 -143px;
}

.flag.AX:before {
    background-position: 0 -154px;
}

.flag.AZ:before {
    background-position: 0 -165px;
}

.flag.BA:before {
    background-position: 0 -176px;
}

.flag.BB:before {
    background-position: 0 -187px;
}

.flag.BD:before {
    background-position: 0 -198px;
}

.flag.BE:before {
    background-position: 0 -209px;
}

.flag.BF:before {
    background-position: 0 -220px;
}

.flag.BG:before {
    background-position: 0 -231px;
}

.flag.BH:before {
    background-position: 0 -242px;
}

.flag.BI:before {
    background-position: 0 -253px;
}

.flag.BJ:before {
    background-position: 0 -264px;
}

.flag.BM:before {
    background-position: 0 -275px;
}

.flag.BN:before {
    background-position: 0 -286px;
}

.flag.BO:before {
    background-position: 0 -297px;
}

.flag.BR:before {
    background-position: 0 -308px;
}

.flag.BS:before {
    background-position: 0 -319px;
}

.flag.BT:before {
    background-position: 0 -330px;
}

.flag.BV:before {
    background-position: 0 -341px;
}

.flag.BW:before {
    background-position: 0 -352px;
}

.flag.BY:before {
    background-position: 0 -363px;
}

.flag.BZ:before {
    background-position: 0 -374px;
}

.flag.CA:before {
    background-position: 0 -385px;
}

.flag.Catalonia:before {
    background-position: 0 -396px;
}

.flag.CC:before {
    background-position: 0 -407px;
}

.flag.CD:before {
    background-position: 0 -418px;
}

.flag.CF:before {
    background-position: 0 -429px;
}

.flag.CG:before {
    background-position: 0 -440px;
}

.flag.CH:before {
    background-position: 0 -451px;
}

.flag.CI:before {
    background-position: 0 -462px;
}

.flag.CK:before {
    background-position: 0 -473px;
}

.flag.CL:before {
    background-position: 0 -484px;
}

.flag.CM:before {
    background-position: 0 -495px;
}

.flag.CN:before {
    background-position: 0 -506px;
}

.flag.CO:before {
    background-position: 0 -517px;
}

.flag.CU:before {
    background-position: 0 -528px;
}

.flag.CR:before {
    background-position: 0 -539px;
}

.flag.CS:before {
    background-position: 0 -550px;
}

.flag.CV:before {
    background-position: 0 -561px;
}

.flag.CX:before {
    background-position: 0 -572px;
}

.flag.CY:before {
    background-position: -16px 0;
}

.flag.CZ:before {
    background-position: -16px -11px;
}

.flag.DE:before {
    background-position: -16px -22px;
}

.flag.DJ:before {
    background-position: -16px -33px;
}

.flag.DK:before {
    background-position: -16px -44px;
}

.flag.DM:before {
    background-position: -16px -55px;
}

.flag.DO:before {
    background-position: -16px -66px;
}

.flag.DZ:before {
    background-position: -16px -77px;
}

.flag.EC:before {
    background-position: -16px -88px;
}

.flag.EE:before {
    background-position: -16px -99px;
}

.flag.EG:before {
    background-position: -16px -110px;
}

.flag.EH:before {
    background-position: -16px -121px;
}

.flag.England:before {
    background-position: -16px -132px;
}

.flag.ER:before {
    background-position: -16px -143px;
}

.flag.ES:before {
    background-position: -16px -154px;
}

.flag.ET:before {
    background-position: -16px -165px;
}

.flag.EU:before {
    background-position: -16px -176px;
}

.flag.FAM:before {
    background-position: -16px -187px;
}

.flag.FI:before {
    background-position: -16px -198px;
}

.flag.FJ:before {
    background-position: -16px -209px;
}

.flag.FK:before {
    background-position: -16px -220px;
}

.flag.FM:before {
    background-position: -16px -231px;
}

.flag.FO:before {
    background-position: -16px -242px;
}

.flag.FR:before {
    background-position: -16px -253px;
}

.flag.GA:before {
    background-position: -16px -264px;
}

.flag.GB:before {
    background-position: -16px -275px;
}

.flag.GD:before {
    background-position: -16px -286px;
}

.flag.GE:before {
    background-position: -16px -297px;
}

.flag.GF:before {
    background-position: -16px -308px;
}

.flag.GH:before {
    background-position: -16px -319px;
}

.flag.GI:before {
    background-position: -16px -330px;
}

.flag.GL:before {
    background-position: -16px -341px;
}

.flag.GM:before {
    background-position: -16px -352px;
}

.flag.GN:before {
    background-position: -16px -363px;
}

.flag.GP:before {
    background-position: -16px -374px;
}

.flag.GQ:before {
    background-position: -16px -385px;
}

.flag.GR:before {
    background-position: -16px -396px;
}

.flag.GS:before {
    background-position: -16px -407px;
}

.flag.GT:before {
    background-position: -16px -418px;
}

.flag.GU:before {
    background-position: -16px -429px;
}

.flag.GW:before {
    background-position: -16px -440px;
}

.flag.GY:before {
    background-position: -16px -451px;
}

.flag.HK:before {
    background-position: -16px -462px;
}

.flag.HM:before {
    background-position: -16px -473px;
}

.flag.HN:before {
    background-position: -16px -484px;
}

.flag.HR:before {
    background-position: -16px -495px;
}

.flag.HT:before {
    background-position: -16px -506px;
}

.flag.HU:before {
    background-position: -16px -517px;
}

.flag.ID:before {
    background-position: -16px -528px;
}

.flag.IE:before {
    background-position: -16px -539px;
}

.flag.IL:before {
    background-position: -16px -550px;
}

.flag.IN:before {
    background-position: -16px -561px;
}

.flag.IO:before {
    background-position: -16px -572px;
}

.flag.IQ:before {
    background-position: -32px 0;
}

.flag.IR:before {
    background-position: -32px -11px;
}

.flag.IS:before {
    background-position: -32px -22px;
}

.flag.IT:before {
    background-position: -32px -33px;
}

.flag.JM:before {
    background-position: -32px -44px;
}

.flag.JO:before {
    background-position: -32px -55px;
}

.flag.JP:before {
    background-position: -32px -66px;
}

.flag.KE:before {
    background-position: -32px -77px;
}

.flag.KG:before {
    background-position: -32px -88px;
}

.flag.KH:before {
    background-position: -32px -99px;
}

.flag.KI:before {
    background-position: -32px -110px;
}

.flag.KM:before {
    background-position: -32px -121px;
}

.flag.KN:before {
    background-position: -32px -132px;
}

.flag.KP:before {
    background-position: -32px -143px;
}

.flag.KR:before {
    background-position: -32px -154px;
}

.flag.KW:before {
    background-position: -32px -165px;
}

.flag.KY:before {
    background-position: -32px -176px;
}

.flag.KZ:before {
    background-position: -32px -187px;
}

.flag.LA:before {
    background-position: -32px -198px;
}

.flag.LB:before {
    background-position: -32px -209px;
}

.flag.LC:before {
    background-position: -32px -220px;
}

.flag.LI:before {
    background-position: -32px -231px;
}

.flag.LR:before {
    background-position: -32px -242px;
}

.flag.LK:before {
    background-position: -32px -253px;
}

.flag.LS:before {
    background-position: -32px -264px;
}

.flag.LT:before {
    background-position: -32px -275px;
}

.flag.LU:before {
    background-position: -32px -286px;
}

.flag.LV:before {
    background-position: -32px -297px;
}

.flag.LY:before {
    background-position: -32px -308px;
}

.flag.MA:before {
    background-position: -32px -319px;
}

.flag.MC:before {
    background-position: -32px -330px;
}

.flag.MD:before {
    background-position: -32px -341px;
}

.flag.ME:before {
    background-position: -32px -352px;
}

.flag.MG:before {
    background-position: -32px -363px;
}

.flag.MH:before {
    background-position: -32px -374px;
}

.flag.MK:before {
    background-position: -32px -385px;
}

.flag.ML:before {
    background-position: -32px -396px;
}

.flag.MM:before {
    background-position: -32px -407px;
}

.flag.MN:before {
    background-position: -32px -418px;
}

.flag.MO:before {
    background-position: -32px -429px;
}

.flag.MP:before {
    background-position: -32px -440px;
}

.flag.MQ:before {
    background-position: -32px -451px;
}

.flag.MR:before {
    background-position: -32px -462px;
}

.flag.MS:before {
    background-position: -32px -473px;
}

.flag.MT:before {
    background-position: -32px -484px;
}

.flag.MU:before {
    background-position: -32px -495px;
}

.flag.MV:before {
    background-position: -32px -506px;
}

.flag.MW:before {
    background-position: -32px -517px;
}

.flag.MX:before {
    background-position: -32px -528px;
}

.flag.MY:before {
    background-position: -32px -539px;
}

.flag.MZ:before {
    background-position: -32px -550px;
}

.flag.NA:before {
    background-position: -32px -561px;
}

.flag.NC:before {
    background-position: -32px -572px;
}

.flag.NE:before {
    background-position: -48px 0;
}

.flag.NF:before {
    background-position: -48px -11px;
}

.flag.NG:before {
    background-position: -48px -22px;
}

.flag.NI:before {
    background-position: -48px -33px;
}

.flag.NL:before {
    background-position: -48px -44px;
}

.flag.NO:before {
    background-position: -48px -55px;
}

.flag.NP:before {
    background-position: -48px -66px;
}

.flag.NR:before {
    background-position: -48px -77px;
}

.flag.NU:before {
    background-position: -48px -88px;
}

.flag.NZ:before {
    background-position: -48px -99px;
}

.flag.OM:before {
    background-position: -48px -110px;
}

.flag.PA:before {
    background-position: -48px -121px;
}

.flag.PE:before {
    background-position: -48px -132px;
}

.flag.PF:before {
    background-position: -48px -143px;
}

.flag.PG:before {
    background-position: -48px -154px;
}

.flag.PH:before {
    background-position: -48px -165px;
}

.flag.PK:before {
    background-position: -48px -176px;
}

.flag.PL:before {
    background-position: -48px -187px;
}

.flag.PM:before {
    background-position: -48px -198px;
}

.flag.PN:before {
    background-position: -48px -209px;
}

.flag.PR:before {
    background-position: -48px -220px;
}

.flag.PS:before {
    background-position: -48px -231px;
}

.flag.PT:before {
    background-position: -48px -242px;
}

.flag.PW:before {
    background-position: -48px -253px;
}

.flag.PY:before {
    background-position: -48px -264px;
}

.flag.QA:before {
    background-position: -48px -275px;
}

.flag.RE:before {
    background-position: -48px -286px;
}

.flag.RO:before {
    background-position: -48px -297px;
}

.flag.RS:before {
    background-position: -48px -308px;
}

.flag.RU:before {
    background-position: -48px -319px;
}

.flag.RW:before {
    background-position: -48px -330px;
}

.flag.SA:before {
    background-position: -48px -341px;
}

.flag.SB:before {
    background-position: -48px -352px;
}

.flag.SC:before {
    background-position: -48px -363px;
}

.flag.Scotland:before {
    background-position: -48px -374px;
}

.flag.SD:before {
    background-position: -48px -385px;
}

.flag.SE:before {
    background-position: -48px -396px;
}

.flag.SG:before {
    background-position: -48px -407px;
}

.flag.SH:before {
    background-position: -48px -418px;
}

.flag.SI:before {
    background-position: -48px -429px;
}

.flag.SJ:before {
    background-position: -48px -440px;
}

.flag.SK:before {
    background-position: -48px -451px;
}

.flag.SL:before {
    background-position: -48px -462px;
}

.flag.SM:before {
    background-position: -48px -473px;
}

.flag.SN:before {
    background-position: -48px -484px;
}

.flag.SO:before {
    background-position: -48px -495px;
}

.flag.SR:before {
    background-position: -48px -506px;
}

.flag.ST:before {
    background-position: -48px -517px;
}

.flag.SV:before {
    background-position: -48px -528px;
}

.flag.SY:before {
    background-position: -48px -539px;
}

.flag.SZ:before {
    background-position: -48px -550px;
}

.flag.TC:before {
    background-position: -48px -561px;
}

.flag.TD:before {
    background-position: -48px -572px;
}

.flag.TF:before {
    background-position: -64px 0;
}

.flag.TG:before {
    background-position: -64px -11px;
}

.flag.TH:before {
    background-position: -64px -22px;
}

.flag.TJ:before {
    background-position: -64px -33px;
}

.flag.TK:before {
    background-position: -64px -44px;
}

.flag.TL:before {
    background-position: -64px -55px;
}

.flag.TM:before {
    background-position: -64px -66px;
}

.flag.TN:before {
    background-position: -64px -77px;
}

.flag.TO:before {
    background-position: -64px -88px;
}

.flag.TR:before {
    background-position: -64px -99px;
}

.flag.TT:before {
    background-position: -64px -110px;
}

.flag.TV:before {
    background-position: -64px -121px;
}

.flag.TW:before {
    background-position: -64px -132px;
}

.flag.TZ:before {
    background-position: -64px -143px;
}

.flag.UA:before {
    background-position: -64px -154px;
}

.flag.UG:before {
    background-position: -64px -165px;
}

.flag.UM:before {
    background-position: -64px -176px;
}

.flag.US:before {
    background-position: -64px -187px;
}

.flag.UY:before {
    background-position: -64px -198px;
}

.flag.UZ:before {
    background-position: -64px -209px;
}

.flag.VA:before {
    background-position: -64px -220px;
}

.flag.VC:before {
    background-position: -64px -231px;
}

.flag.VE:before {
    background-position: -64px -242px;
}

.flag.VG:before {
    background-position: -64px -253px;
}

.flag.VI:before {
    background-position: -64px -264px;
}

.flag.VN:before {
    background-position: -64px -275px;
}

.flag.VU:before {
    background-position: -64px -286px;
}

.flag.Wales:before {
    background-position: -64px -297px;
}

.flag.WF:before {
    background-position: -64px -308px;
}

.flag.WS:before {
    background-position: -64px -319px;
}

.flag.YE:before {
    background-position: -64px -330px;
}

.flag.YT:before {
    background-position: -64px -341px;
}

.flag.ZA:before {
    background-position: -64px -352px;
}

.flag.ZM:before {
    background-position: -64px -363px;
}

.flag.ZW:before {
    background-position: -64px -374px;
}

.showpopup {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.showpopup .overlay {
    opacity: 1;
    visibility: visible;
}

.overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    display: block;
    opacity: .3;
}

.popup {
    content: '';
    position: fixed;
    top: 50%;
    left: 30px;
    right: 30px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    z-index: 6;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.showpopup .popup {
    opacity: 1;
    visibility: visible;
}

.popup pre {
    display: none;
}

.showpopup .popup pre {
    display: block;
}

/******************************
    3 : NAVIGATION
******************************/
.header {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 120px;
    z-index: 4;
}

.rightnav .header {
    left: 0;
    right: auto;
}

.header a {
    display: block;
    font-size: 125%;
    text-align: center;
}

.header a i {
    width: 100%;
    max-width: 60px;
    line-height: 60px;
    margin: 0 auto;
    opacity: .6;
}

.header a:hover i {
    opacity: 1;
}

.header a .la-atom {
    font-size: 300%;
    animation: atom 13s infinite linear;
    -moz-animation: atom 13s infinite linear;
    -webkit-animation: atom 13s infinite linear;
}

.header a .la-atom+.la-atom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    animation: atom 17s infinite linear;
    -moz-animation: atom 17s infinite linear;
    -webkit-animation: atom 17s infinite linear;
}

.header a i:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    opacity: 0;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.header a i:hover:after {
    animation: flash .3s;
    -moz-animation: flash .3s;
    -webkit-animation: flash .3s;
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 120px;
    height: 120px;
    z-index: 3;
}

.listnav .logo,
.shownav .logo {
    width: 300px;
}

.rightnav .logo {
    left: auto;
    right: 0;
}

.logo>b,
.logo>strong {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.logo>b {
    width: 60px;
    margin: 0 auto;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.logo>strong {
    opacity: 0;
}

.listnav .logo>b,
.shownav .logo>b {
    opacity: 0;
}

.listnav .logo>strong,
.shownav .logo>strong {
    opacity: 1;
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

#profile {
    position: fixed;
    top: 30px;
    right: 0;
    width: 120px;
}

.rightnav #profile {
    left: 0;
    right: auto;
}

#profile figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

#profile figure figcaption {
    background: var(--theme);
    color: #fff;
    line-height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 15px;
}

#profile figure img {
    background: #fff;
}

#profile small {
    position: absolute;
    top: -6px;
    left: 50%;
    background: #1f1f1f;
    color: #fff;
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 24px;
    margin-left: -12px;
    padding-left: 1px;
    width: 54px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

#callnav {
    display: none;
    height: 60px;
}

#callnav span {
    position: absolute;
    top: 30px;
    left: 50%;
    background: #333;
    width: 16px;
    height: 1px;
    margin-left: -8px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

#callnav span:before,
#callnav span:after {
    content: '';
    position: absolute;
    left: 50%;
    background: inherit;
    width: 16px;
    height: 1px;
    margin-left: -8px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

#callnav span:before {
    top: -4px;
}

#callnav span:after {
    top: 4px;
}

.shownav #callnav span {
    width: 0;
    margin-left: 0;
}

.shownav #callnav span:before,
.shownav #callnav span:after {
    top: 0;
}

.shownav #callnav span:before {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.shownav #callnav span:after {
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

#callnav b {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    background: var(--theme);
    color: #fff;
    font-size: 50%;
    font-weight: normal;
    width: 30px;
    line-height: 30px;
    margin: 0 auto;
    padding: 0 6px;
    text-align: center;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.shownav #callnav b {
    transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
}

.nav {
    position: fixed;
    top: 120px;
    left: 0;
    bottom: 0;
    width: 107px;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 3;
}

.listnav .nav,
.shownav .nav {
    width: 287px;
}

.rightnav .nav {
    left: auto;
    right: 13px;
}

.nav::-webkit-scrollbar {
    width: 4px;
}

.nav::-webkit-scrollbar-track {
    background: transparent;
}

.nav::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0 13px 0 30px;
}

.nav ul ul {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    visibility: hidden;
}

.nav li.active ul,
.nav li:hover ul {
    height: auto;
    opacity: 1;
    padding-bottom: 15px;
    visibility: visible;
}

.nav ul ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 15px;
    background: var(--theme);
    width: 1px;
}

.nav li {
    margin: 0 0 3px;
}

.nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: .1;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.nav li.active:before,
.nav li:hover:before {
    background: var(--theme);
}

.nav li:hover:before {
    opacity: .2;
}

.nav li li {
    margin: 0;
}

.nav li li:before {
    display: none;
}

.nav a {
    display: flex;
    align-items: center;
}

.nav .active>a {
    color: var(--theme);
}

.listnav .nav a,
.shownav .nav a {
    margin-left: 0;
}

.nav ul ul a {
    padding: 6px 0 6px 60px;
}

.nav ul ul a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 29px;
    bottom: 50%;
    opacity: 1;
    width: 3px;
    background: var(--theme);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.nav ul ul li:hover>a:before,
.nav ul ul li.active>a:before {
    top: 0;
    bottom: 0;
    opacity: 1;
}

.nav a i {
    font-size: 150%;
    min-width: 60px;
    max-width: 60px;
    line-height: 60px;
    text-align: center;
}

.nav a i:before {
    opacity: .6;
}

.nav li:hover a i:before,
.nav .active a i:before {
    color: var(--theme);
    opacity: 1;
}

.nav a span {
    opacity: 0;
    white-space: nowrap;
}

.listnav .nav a span,
.shownav .nav a span {
    opacity: 1;
}

.nav a em {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--theme);
    color: #fff;
    display: block;
    font-size: 75%;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    line-height: 1.25;
    min-height: 120px;
    padding: 30px;
}

.breadcrumb .link {
    display: flex;
    overflow: hidden;
    padding-right: 30px;
}

.breadcrumb .link>* {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumb .link i {
    opacity: .3;
    min-width: 45px;
    max-width: 45px;
    text-align: center;
}

.breadcrumb .link h1 i {
    opacity: 1;
    font-size: 125%;
    text-align: left;
}

.breadcrumb .link a {
    display: block;
    opacity: .6;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb .link h1 a,
.breadcrumb .link a:hover {
    opacity: 1;
}

.breadcrumb .link a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    width: 0;
    height: 1px;
    margin: 0 auto;
}

.breadcrumb .link a:hover:before {
    width: 100%;
}

.breadcrumb .buttonholder {
    margin-left: auto;
}

/******************************
    4 : FOOTER
******************************/
.footer {
    position: absolute;
    right: 90px;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 75%;
    height: 60px;
    padding: 0 30px;
}

.rightnav .footer {
    left: 90px;
    right: auto;
}

.footer p {
    opacity: .6;
    margin-right: auto;
    text-align: center;
}

.footer p span {
    display: inline-block;
    padding: 0 6px;
}

/******************************
    5 : MAIN
******************************/
.message {
    position: fixed;
    top: 3px;
    right: 0;
    list-style: none;
    max-width: 100%;
    overflow: hidden;
    z-index: 8;
}

.message>li {
    position: absolute;
    display: flex;
    opacity: 0;
    padding: 3px 6px 0;
    visibility: hidden;
    animation: fade 3s;
    -moz-animation: fade 3s;
    -webkit-animation: fade 3s;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

.message blockquote {
    align-items: center;
    color: #fff;
    margin-left: auto;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
}

.message blockquote.success {
    background: var(--c-dark);
}

.message blockquote.warning {
    background: var(--r-dark);
}

.message blockquote.pending {
    background: var(--u-dark);
}

.message blockquote.error {
    background: var(--d-dark);
}

.message blockquote>i {
    font-size: 150%;
}

.message blockquote>i.la-hand-paper,
.message blockquote>i.la-trash {
    animation: ring 3s;
    -moz-animation: ring 3s;
    -webkit-animation: ring 3s;
}

.message blockquote>i.la-hand-paper {
    margin-bottom: -30px;
    padding-bottom: 30px;
}

.message blockquote>i.la-trash {
    margin-bottom: -15px;
    padding-bottom: 15px;
}

.message blockquote a {
    color: inherit;
}

.message blockquote>a {
    position: absolute;
    top: 0;
    right: 0;
}

.message blockquote a i {
    display: block;
    width: 21px;
    line-height: 21px;
    padding: 0;
    text-align: center;
}

.message blockquote p strong {
    display: block;
    font-size: 21px;
}

.content {
    background: #fff;
    height: 100%;
    padding: 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.content.expired {
    opacity: .3;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.content.success:before,
.content.warning:before,
.content.pending:before,
.content.error:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: .1;
}

.content.success:before {
    background: var(--c-dark);
}

.content.warning:before {
    background: var(--r-dark);
}

.content.pending:before {
    background: var(--u-dark);
}

.content.error:before {
    background: var(--d-dark);
}

.autoheight .content {
    height: auto;
}

.autoheight .content+.content {
    margin-top: 30px;
}

.content h4,
.content h5,
.content h6 {
    margin-bottom: 24px;
    padding: 10px 0;
}

.content b.success {
    color: var(--c-dark);
}

.content b.warning {
    color: var(--r-dark);
}

.content b.pending {
    color: var(--u-dark);
}

.content b.error {
    color: var(--d-dark);
}

.setting blockquote {
    margin-bottom: 6px;
}

.setting label+blockquote {
    margin-top: -6px;
    padding-top: 21px;
    overflow: hidden;
    z-index: -1;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.setting label+blockquote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    display: block;
    height: 12px;
    opacity: .05;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    filter: blur(6px);
    -webkit-filter: blur(6px);
}

.setting blockquote i {
    color: inherit;
    font-size: 150%;
    min-width: 0;
    max-width: none;
    height: auto;
    line-height: 1;
}

.setting label {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.setting label+label {
    margin-top: 6px;
}

.setting input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.setting i {
    color: var(--theme);
    display: block;
    font-size: 240%;
    min-width: 90px;
    max-width: 90px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.setting .active {
    display: none;
}

.setting .inactive {
    display: initial;
}

.setting input:checked~.active,
.setting input:checked~p .active {
    display: initial;
}

.setting input:checked~.inactive,
.setting input:checked~p .inactive {
    display: none;
}

.setting i.leftpanel:before,
.setting i.rightpanel:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--theme);
    display: block;
    width: 26px;
    height: 26px;
    margin: -15px 0 0 -15px;
}

.setting i.leftpanel:after,
.setting i.rightpanel:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--theme);
    width: 2px;
    height: 26px;
    margin-top: -13px;
}

.setting i.leftpanel:after {
    margin-left: -9px;
}

.setting i.rightpanel:after {
    margin-left: 7px;
}

.setting p strong {
    display: block;
}

.setting p strong span {
    color: var(--theme);
}

.setting label>span {
    display: block;
    margin-left: auto;
    min-width: 90px;
    max-width: 90px;
    height: 24px;
    padding: 0;
}

.setting label>span:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 18px;
    right: 36px;
    bottom: 3px;
    background: var(--theme);
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.setting label>span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    background: #fff;
    border: 2px solid var(--theme);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.setting label input:checked~span:after {
    left: 33px;
}

.setting section {
    background: #fff;
    display: flex;
    margin-top: 6px;
    padding: 15px 15px 15px 0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.setting section>* {
    flex: 1;
}

.setting section i {
    color: var(--theme);
    display: block;
    font-size: 240%;
    min-width: 90px;
    max-width: 90px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.setting section strong {
    display: block;
    padding-top: 6px;
}

.setting section ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 6px -3px 30px 0;
    padding-right: 15px;
}

.setting section li {
    width: 5%;
    margin: 0;
    padding: 3px 3px 0 0;
}

.setting section a {
    display: block;
    padding-top: 100%;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.setting section a.active {
    display: block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.blocktitle {
    font-weight: 300;
    color: var(--theme);
    display: flex;
    left: -30px;
    margin-bottom: 30px;
    transform: translate(-6px, 0);
    -moz-transform: translate(-6px, 0);
    -ms-transform: translate(-6px, 0);
    -webkit-transform: translate(-6px, 0);
}

.blocktitle i {
    background: var(--theme);
    color: #fff;
    display: block;
    line-height: 39px;
    font-size: 24px;
    float: left;
    min-width: 45px;
    max-width: 45px;
    height: 39px;
    text-align: center;
    margin-right: 15px;
    border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
}

.blocktitle i:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 6px solid var(--theme);
    border-left: 6px solid transparent;
    display: block;
    width: 0;
    opacity: .6;
}

.headerform {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 45px;
    margin: 0 0 0 -6px;
}

.headerform+* {
    margin-top: 24px;
}

.headerform>* {
    margin-left: 6px;
}

.headerform>h4,
.headerform>h5,
.headerform>h6,
.headerform>.profile {
    margin: 0 auto 0 0;
    padding: 0 9px 0 6px;
}

.headerform>.profile h4,
.headerform>.profile h5,
.headerform>.profile h6 {
    margin: 0;
    padding: 0;
}

.headerform label {
    display: flex;
    align-items: center;
    padding: 0;
}

.headerform .checkbox label,
.headerform .radio label,
.headerform .switch label {
    padding: 0 15px;
}

.headerform label>span {
    font-size: 75%;
    margin-right: 6px;
}

.headerform label.icon i {
    bottom: 0;
}

.headerform .range>* {
    padding-bottom: 0;
}

.headerform>figure {
    color: var(--theme);
    min-width: 60px;
    max-width: 60px;
    margin-left: auto;
}

.headerform>figure:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    opacity: .1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform>figure i {
    width: 100%;
    line-height: 60px;
    font-size: 180%;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform>figure img {
    background: #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage {
    min-width: 90px;
    max-width: 90px;
    height: 90px;
    margin: -45px -12px 0 9px;
}

.headerform .uploadimage>i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: var(--theme);
    font-size: 300%;
    line-height: 90px;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage>i:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--theme);
    opacity: .2;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage li {
    width: 90px;
    margin: 0;
}

.headerform .uploadimage li>a {
    top: 5px;
    right: 5px;
    opacity: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage:hover li>a {
    opacity: 1;
}

.headerform .uploadimage li figure a {
    display: none;
}

.headerform .uploadimage li figure img {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage label {
    position: absolute;
    top: 3px;
    right: 3px;
    margin: 0;
    opacity: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.headerform .uploadimage:hover label {
    opacity: 1;
}

.headerform .uploadimage label:before {
    opacity: .6;
}

.headerform .uploadimage label i {
    color: #fff;
    width: 84px;
    line-height: 84px;
}

.headerform .uploadimage label i:before {
    z-index: 1;
}

.linkholder {
    padding-bottom: 24px;
}

.linkholder h4,
.linkholder h5,
.linkholder h6 {
    margin-bottom: 15px;
}

.linkholder .headerform {
    margin-bottom: 15px;
}

.linkholder .headerform h4,
.linkholder .headerform h5,
.linkholder .headerform h6 {
    margin-bottom: 0;
}

.linkholder .link {
    margin-left: -3px;
    margin-right: -3px;
}

.linkholder .link>div {
    padding: 0 3px 6px;
}

.linkholder .link>div>* {
    background: #fff;
    display: block;
    min-height: 100%;
    line-height: 1.25;
    padding: 30px 15px;
    text-align: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.linkholder .link>div>a:hover {
    background: var(--theme);
    z-index: 1;
    transform: translate(0, -3px);
    -moz-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
    -webkit-transform: translate(0, -3px);
}

.linkholder .link>div>a:hover * {
    color: #fff;
}

.linkholder .link>div>.expired {
    opacity: .3;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.linkholder .link>div>* .tag {
    margin: -27px 0 0 -18px;
    z-index: 1;
}

.linkholder .link>div>* i {
    color: var(--theme);
    display: block;
    font-size: 24px;
    overflow: hidden;
    padding-bottom: 15px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.linkholder .link>div>a:hover i.la {
    color: #fff;
}

.linkholder .link>div>* figure {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding-bottom: 15px;
}

.linkholder .link>div>* figure *+* {
    margin-left: -6px;
}

.linkholder .link>div>* figure em {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    flex: 1;
    height: 48px;
}

.linkholder .link>div>* figure i {
    background: #f1f1f1;
    color: #111;
    font-size: 100%;
    width: 48px;
    line-height: 48px;
    overflow: hidden;
    padding-bottom: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.linkholder .link>div>* figure i.la {
    background: transparent;
}

.linkholder .link>div>a:hover figure i {
    color: #111;
}

.linkholder .link>div>* figure i:before {
    font-size: 30px;
}

.linkholder .link>div>* figure i:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    opacity: .2;
}

.linkholder .link>div>* figure i.success:after {
    background: var(--c-dark);
}

.linkholder .link>div>* figure i.warning:after {
    background: var(--r-dark);
}

.linkholder .link>div>* figure i.pending:after {
    background: var(--u-dark);
}

.linkholder .link>div>* figure i.error:after {
    background: var(--d-dark);
}

.linkholder .link>div>* figure img {
    background: #fff;
    width: 48px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 0 1px var(--theme);
    -webkit-box-shadow: 0 0 0 1px var(--theme);
}

.linkholder .link>div>* figure figcaption {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.linkholder .link>div>* figure *+figcaption {
    margin-left: 6px;
}

.linkholder .link>div>* p * {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.linkholder .link>div>* p small {
    padding-top: 6px;
}

.linkholder .link .dark,
.linkholder .link .dark i,
.linkholder .link .dark:hover * {
    color: #fff !important;
}

.linkholder .link .light,
.linkholder .link .light i,
.linkholder .link .light:hover * {
    color: #000 !important;
}

.linkholder .link .light .tag li>* {
    color: #fff !important;
}

.linkholder .link .dark figure i:after,
.linkholder .link .light figure i:after {
    background: transparent;
}

.rowcheck {
    display: block;
    height: 100%;
    overflow: hidden;
}

.rowcheck:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border: 2px solid #000;
    width: 32px;
    opacity: .1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.rowcheck.checked:before {
    background: var(--c-dark);
    border: 2px solid var(--c-dark);
    opacity: .3;
}

.rowcheck i {
    color: var(--c-dark);
    display: block;
    font-size: 24px;
    width: 36px;
    line-height: 36px;
    opacity: 0;
    text-align: center;
    z-index: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
}

.rowcheck.checked i {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.rowinclude input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.rowinclude i {
    display: block;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    overflow: hidden;
}

.rowinclude i:before {
    color: var(--c-dark);
    display: block;
    font-size: 24px;
    width: 36px;
    line-height: 36px;
    opacity: 0;
    text-align: center;
    z-index: 1;
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
}

.rowinclude i.la-star:before {
    color: var(--r-dark);
}

.rowinclude input:checked~i:before {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.rowinclude i:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #000;
    opacity: .1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.rowinclude input:checked~i:after {
    background: var(--c-dark);
    border: 2px solid var(--c-dark);
    opacity: .3;
}

.rowinclude input:checked~i.la-star:after {
    background: var(--r-dark);
    border: 2px solid var(--r-dark);
}

.profile {
    color: inherit;
    display: flex;
    align-items: center;
}

.listing>li>.profile {
    display: flex;
}

*:not(.hide)+.profile {
    margin-top: 6px;
}

.profile+.profile {
    margin-top: 3px;
}

table thead td .profile {
    margin-top: 3px;
}

.profile figure {
    min-width: 48px;
    max-width: 48px;
    margin-right: 9px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profile figure+figure {
    margin-left: -18px;
}

.profile figure em,
.profile figure i {
    color: var(--theme);
    display: block;
    font-style: normal;
    line-height: 47px;
    text-align: center;
    overflow: hidden;
    padding-top: 1px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profile figure i:before {
    font-size: 30px;
}

.profile figure em {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    height: 48px;
}

.profile figure i:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    display: block;
    opacity: .2;
}

.profile figure.success i {
    color: var(--c-dark);
}

.profile figure.success i:after {
    background: var(--c-dark);
}

.profile figure.warning i {
    color: var(--r-dark);
}

.profile figure.warning i:after {
    background: var(--r-dark);
}

.profile figure.pending i {
    color: var(--u-dark);
}

.profile figure.pending i:after {
    background: var(--u-dark);
}

.profile figure.error i {
    color: var(--d-dark);
}

.profile figure.error i:after {
    background: var(--d-dark);
}

.profile figure.expired i {
    color: #333;
}

.profile figure.expired i:after {
    background: #ccc;
}

.profile figure.dark i {
    color: #fff;
}

.profile figure.light i {
    color: #000;
}

.profile figure.dark i:after,
.profile figure.light i:after {
    display: none;
}

.profile figure img {
    background: #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profile figure svg {
    position: absolute;
    top: 0;
    right: 0;
    fill: transparent;
    width: 48px;
    height: 48px;
    opacity: .6;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.profile figure svg circle {
    fill: none;
    stroke-dasharray: 132px;
    /* 2 * Math.PI * radius */
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 2px;
}

.profile figure.dark svg circle {
    stroke: #fff;
}

.profile figure.light svg circle {
    stroke: #000;
}

.profile.error .counter svg {
    animation: timer 1s infinite;
    -moz-animation: timer 1s infinite;
    -webkit-animation: timer 1s infinite;
}

.profile p+p {
    margin-left: 9px;
}

.profile p>* {
    display: block;
}

.profile .buttonholder {
    margin-left: auto;
}

.profile button,
.profile .button {
    background: none !important;
    padding: 0;
}

.profile button:before,
.profile .button:before {
    display: none;
}

.profile button i,
.profile .button i {
    color: inherit !important;
    font-size: 21px;
    min-width: 30px;
    line-height: 24px !important;
    text-align: right;
}

.tag {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: -3px 0 0 -3px;
}

*:not(.hide)+.tag {
    margin-top: 3px;
}

.tag+* {
    display: block;
    margin-top: 3px;
}

.tag li {
    background: #999;
    color: #ccc;
    display: flex;
    font-size: 75%;
    margin: 3px 0 0 3px;
    padding: 0 12px 0 6px;
}

.tag .success {
    background: var(--c-dark);
    color: var(--c-light);
}

.tag .warning {
    background: var(--r-dark);
    color: var(--r-light);
}

.tag .pending {
    background: var(--u-dark);
    color: var(--u-light);
}

.tag .error {
    background: var(--d-dark);
    color: var(--d-light);
}

.tag .theme {
    background: var(--theme);
    color: var(--theme);
}

.tag>li>* {
    color: #fff;
    display: block;
    line-height: 1.2;
    padding: 6px 0 6px 6px;
}

.tag>li.dark>* {
    color: #fff;
}

.tag>li.light>* {
    color: #000;
}

.tag>li>i {
    font-size: 100%;
    color: inherit;
}

.theme {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: -3px 0 0 -3px;
}

.theme li {
    width: 10%;
    margin: 0;
    padding: 3px 0 0 3px;
}

.theme a {
    display: block;
    width: 100%;
    padding-top: 100%;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.theme a.active {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.sorthandle {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 150%;
    width: 30px;
    line-height: 30px;
    margin-top: -15px;
    opacity: .6;
    text-align: center;
    transition: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
}

.progress {
    position: relative;
    background: #f9f9f9;
    font-size: 75%;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.progress div {
    background: #fff;
    margin-bottom: 21px;
}

.progress div span {
    position: relative;
    background: #000;
    display: block;
    width: 0%;
    min-width: 6px;
    height: 6px;
    z-index: 1;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.progress div span:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--theme);
    animation: loading 1s infinite linear;
    -moz-animation: loading 1s infinite linear;
    -webkit-animation: loading 1s infinite linear;
    min-width: 6px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.progress div small {
    position: absolute;
    top: 6px;
    right: 0;
}

.progress ul {
    list-style: none;
    margin: 0;
}

.progress ul li {
    display: flex;
    font-family: monospace;
    margin-top: 6px;
}

.progress ul li code {
    color: inherit;
    padding-right: 6px;
    opacity: .6;
}

.progress ul li b,
.progress ul li strong {
    padding-left: 6px;
    margin-left: auto;
    text-align: right;
}

.progress ul li b {
    color: var(--c-dark);
}

.progress ul li strong {
    color: var(--d-dark);
}

.progress p {
    display: none;
}

.accordion {
    padding: 15px 0;
}

.accordion:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: block;
    height: 1px;
    opacity: .06;
}

.accordion .head {
    display: flex;
    align-items: center;
}

.accordion .head>i {
    display: block;
    width: 15px;
    height: 15px;
    margin-left: auto;
}

.accordion .head>i:before,
.accordion .head>i:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    background: var(--theme);
    display: block;
    height: 1px;
}

.accordion .head>i:after {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.accordion.active .head>i:before,
.accordion.active .head>i:after {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.accordion .body {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.accordion.active .body {
    height: auto;
    padding-top: 15px;
    opacity: 1;
}

.treeview {
    border-bottom: 1px solid #ccc;
    margin-left: -30px;
    margin-right: -30px;
}

.treeview ul {
    list-style: none;
    margin: 0;
}

.treeview ul ul {
    margin-left: 29px;
}

.treeview ul ul li {
    border-left: 1px solid #eee;
}

.treeview li {
    border-top: 1px solid #eee;
    margin-top: 0;
}

.treeview>ul:first-child>li:first-child {
    border-top: 1px solid #ccc;
}

.treeview li div {
    display: flex;
    align-items: center;
    padding: 6px 22.5px 5px 30px;
}

.treeview li div a {
    display: block;
}

.treeview li div .detail {
    display: flex;
    align-items: center;
    line-height: 1.25;
    flex: 1;
}

.treeview li div .detail figure {
    font-size: 125%;
    min-width: 36px;
    max-width: 36px;
    line-height: 36px;
    margin-right: 15px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.treeview li div .detail figure.dark i {
    color: #fff;
}

.treeview li div .detail figure.light i {
    color: #000;
}

.treeview li div .detail span {
    display: block;
}

.treeview li div .sorthandle {
    min-width: 30px;
    max-width: 30px;
}

.treeview li div .outdent {
    min-width: 30px;
    max-width: 30px;
    text-align: right;
}

.treeview li div .indent {
    min-width: 30px;
    max-width: 30px;
}

.legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -15px 0 0 -30px;
}

.legend:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.legend:hover:after {
    visibility: hidden;
}

.legend label {
    display: none;
    min-width: 20%;
    padding: 15px 0 0 30px;
}

.legend:hover label {
    display: block;
}

.legend label:has(input:checked) {
    display: block;
}

.legend label input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.legend label div {
    display: flex;
    align-items: center;
    filter: grayscale(1);
    opacity: .1;
}

.legend label div i {
    border-radius: 6px;
    display: block;
    width: 24px;
    height: 24px;
}

.legend label div span {
    display: block;
    line-height: 1.2;
    margin-left: 6px;
    white-space: nowrap;
}

.legend label input:checked~div {
    opacity: 1;
    filter: grayscale(0);
}

/******************************
    6 : LOGIN
******************************/
.login {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px;
}

.login>a,
.login>form {
    display: block;
    width: 360px;
    padding: 30px;
}

.login>.footer {
    left: 0;
    right: 0;
}

.login>.footer p {
    flex: 1;
}

/******************************
    7 : CUSTOMIZE
******************************/
.sbranch {
    border: none;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
}

.sbranch label {
    flex: 1;
    min-width: 50%;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.sbranch label+label {
    border-top: none;
}

/******************************
    8 : RESPONSIVE
******************************/
@media only screen and (max-width:1200px) {
    .grid1-l {
        width: 8.333333%;
    }

    .grid2-l {
        width: 16.666666%;
    }

    .grid3-l {
        width: 25%;
    }

    .grid4-l {
        width: 33.333333%;
    }

    .grid5-l {
        width: 41.666666%;
    }

    .grid6-l {
        width: 50%;
    }

    .grid7-l {
        width: 58.333333%;
    }

    .grid8-l {
        width: 66.666666%;
    }

    .grid9-l {
        width: 75%;
    }

    .grid10-l {
        width: 83.333333%;
    }

    .grid11-l {
        width: 91.666666%;
    }

    .grid12-l {
        width: 100%;
    }

    .hide-l {
        display: none !important;
    }

    .page,
    .listnav .page,
    .shownav .page,
    .rightnav.listnav .page,
    .rightnav.shownav .page {
        padding: 0 0 60px;
    }

    .header {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        background: rgba(255, 255, 255, .9);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        padding: 0 15px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 3px 6px 18px rgba(0, 0, 0, .05);
        -moz-box-shadow: 3px 6px 18px rgba(0, 0, 0, .05);
    }

    .header a {
        flex: 1;
        max-width: 75px;
    }

    .logo {
        position: relative;
        top: auto;
        left: auto;
        height: 60px;
    }

    .rightnav .logo {
        right: auto;
    }

    .listnav .logo,
    .shownav .logo {
        width: 60px;
    }

    .logo>b,
    .logo>strong {
        top: 15px;
        left: 0;
        right: 0;
        height: 30px;
    }

    .logo>b {
        width: 30px;
    }

    .listnav .logo>b,
    .shownav .logo>b {
        opacity: 1;
    }

    .listnav .logo>strong,
    .shownav .logo>strong {
        opacity: 0;
    }

    #profile {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
    }

    #profile figure {
        display: none;
    }

    #profile small {
        left: -27px;
        right: -27px;
        line-height: 18px;
        margin: 0 auto;
        padding-top: 6px;
    }

    .header a .la-atom {
        font-size: 180%;
    }

    .scrolltop {
        display: none !important;
    }

    #callnav {
        display: block;
    }

    .shownav {
        overflow: hidden;
    }

    .nav {
        position: fixed;
        top: 0;
        left: auto;
        right: -287px;
        bottom: 60px;
        background: #fff;
        background: rgba(255, 255, 255, .9);
        opacity: 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 3px 6px 18px rgba(0, 0, 0, .05);
        -moz-box-shadow: 3px 6px 18px rgba(0, 0, 0, .05);
    }

    .rightnav .nav {
        right: -287px;
    }

    .shownav .nav {
        right: 0;
    }

    .shownav .nav {
        opacity: 1;
    }

    .nav ul {
        padding: 15px 11px 15px 15px;
    }

    .footer {
        display: none;
    }

    .login .footer {
        display: flex;
    }

    .main {
        padding-bottom: 0;
    }

    .grid12-l>.buttonholder {
        justify-content: right;
    }

    .floatbtn .pagebutton .buttonholder {
        right: 30px;
        bottom: 60px;
    }

    .rightnav.floatbtn .pagebutton .buttonholder {
        left: 30px;
    }
}

@media only screen and (max-width:900px) {
    .grid1-m {
        width: 8.333333%;
    }

    .grid2-m {
        width: 16.666666%;
    }

    .grid3-m {
        width: 25%;
    }

    .grid4-m {
        width: 33.333333%;
    }

    .grid5-m {
        width: 41.666666%;
    }

    .grid6-m {
        width: 50%;
    }

    .grid7-m {
        width: 58.333333%;
    }

    .grid8-m {
        width: 66.666666%;
    }

    .grid9-m {
        width: 75%;
    }

    .grid10-m {
        width: 83.333333%;
    }

    .grid11-m {
        width: 91.666666%;
    }

    .grid12-m {
        width: 100%;
    }

    .hide-m {
        display: none !important;
    }

    .grid12-m>.buttonholder {
        justify-content: right;
    }

    .login {
        align-content: center;
        flex-wrap: wrap;
    }

    .login>a,
    .login>form {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .setting section li {
        width: 10%;
    }
}

@media only screen and (max-width:600px) {
    .grid1-s {
        width: 8.333333%;
    }

    .grid2-s {
        width: 16.666666%;
    }

    .grid3-s {
        width: 25%;
    }

    .grid4-s {
        width: 33.333333%;
    }

    .grid5-s {
        width: 41.666666%;
    }

    .grid6-s {
        width: 50%;
    }

    .grid7-s {
        width: 58.333333%;
    }

    .grid8-s {
        width: 66.666666%;
    }

    .grid9-s {
        width: 75%;
    }

    .grid10-s {
        width: 83.333333%;
    }

    .grid11-s {
        width: 91.666666%;
    }

    .grid12-s {
        width: 100%;
    }

    .hide-s {
        display: none !important;
    }

    .login {
        padding: 60px 30px;
    }

    .login>a,
    .login>form {
        max-width: 300px;
        padding-left: 0;
        padding-right: 0;
    }

    .login>a {
        padding: 0;
    }

    .breadcrumb .link {
        flex-wrap: wrap;
    }

    .breadcrumb .link>* {
        font-size: 100%;
    }

    .breadcrumb .link h1 {
        font-size: 175%;
        width: 100%;
    }

    .breadcrumb .link i {
        padding-right: 10px;
    }

    .breadcrumb .link i.la-slash {
        padding-right: 0;
    }

    .main {
        padding-left: 0;
        padding-right: 0;
    }

    .grid12-s>.buttonholder {
        justify-content: right;
    }

    .pagebutton .buttonholder,
    .rightnav .pagebutton .buttonholder {
        justify-content: center;
    }

    .pagebutton .buttonholder button+button,
    .pagebutton .buttonholder button+.button,
    .pagebutton .buttonholder .button+button,
    .pagebutton .buttonholder .button+.button {
        margin-left: 0;
    }

    .floatbtn .pagebutton .buttonholder,
    .rightnav.floatbtn .pagebutton .buttonholder {
        left: 0;
        right: 0;
    }

    .pagebutton button,
    .pagebutton .button {
        flex: 1;
    }

    .pagebutton button.narrow,
    .pagebutton .button.narrow {
        flex: none;
    }

    .linkholder {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row>div>.headerform {
        padding-left: 30px;
    }
}