/*
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 permisson of Xantec Solutions Sdn. Bhd.
*/
/*
    Created on : 22 Aug 2019, 16:07:21
    Author     : CHIN WEI PING
*/

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

/******************************
    1 : INITIALIZE
 ******************************/
:root {
    background: #fff;
    color: #333;
}

@keyframes loading {
    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);
    }
}

@-webkit-keyframes loading {
    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);
    }
}

* {
    border: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --c-dark: #29bc9a;
    --c-light: #dff5f0;
    --r-dark: #fd9828;
    --r-light: #fff0df;
    --u-dark: #007aff;
    --u-light: #d9ebff;
    --d-dark: #ff3b2f;
    --d-light: #ffe2e0;
}

html {
    height: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--t-dark);
    line-height: 1.2;
}

h1,
h2,
h3,
h4 {
    font-weight: 100;
}

h1 {
    font-size: 250%;
}

h2 {
    font-size: 220%;
}

h3 {
    font-size: 200%;
}

h4 {
    font-size: 180%;
}

h5 {
    font-size: 150%;
}

h6 {
    font-size: 120%;
}

hr {
    position: relative;
    margin: 18px 0;
    height: 1px;
    background: #ccc;
}

.row+hr {
    margin: 0 -27px 30px;
}

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

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

p>strong {
    color: #333;
}

b,
strong {
    font-weight: 700;
}

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

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

p {
    text-align: left;
}

blockquote {
    position: relative;
    display: flex;
    background: #f6f6f6;
    color: #333;
    padding: 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

label+blockquote,
.label+blockquote {
    margin: -18px 0 18px;
}

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

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

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

blockquote>i,
blockquote>i.fa {
    display: block;
    font-size: 18px;
    line-height: 1;
    padding-right: 15px;
}

blockquote p {
    position: relative;
    text-align: left;
}

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

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

table {
    border-collapse: collapse;
    width: 100%;
}

table thead tr,
table tfoot tr {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

table thead tr th,
table tfoot tr th {
    vertical-align: top;
}

table thead tr th>em,
table tfoot tr th>em {
    color: #999;
    display: block;
    font-size: 85%;
    font-style: normal;
    font-weight: 400;
}

table th,
table td {
    position: relative;
    text-align: left;
    outline: none;
    vertical-align: top;
    padding: 15px 9px;
}

table th {
    font-weight: 400;
    color: #999;
}

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

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

table tbody tr>* {
    border-top: 1px solid #eee;
}

table tbody tr:hover>*,
table tbody tr.highlight>* {
    background: #f9f9f9;
}

table tbody tr>*.subhead {
    height: auto !important;
    background: #eee;
    background: linear-gradient(#fff, #eee);
    background: -moz-linear-gradient(#fff, #eee);
    background: -ms-linear-gradient(#fff, #eee);
    background: -o-linear-gradient(#fff, #eee);
    background: -webkit-linear-gradient(#fff, #eee);
    font-weight: 700;
    text-align: left;
}

.table_empty,
.table_empty:hover {
    background: #f9f9f9 !important;
    text-align: center !important;
}

table tr>* a {
    color: var(--t-dark);
}

table label {
    font-weight: 400;
    padding: 0;
}

table label.icon i {
    bottom: 1px;
}

label,
.label {
    position: relative;
    display: block;
    padding-bottom: 18px;
    color: #666;
}

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

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

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

label>p {
    color: #999;
    padding-top: 3px;
}

label.icon i {
    position: absolute;
    left: 1px;
    bottom: 19px;
    color: var(--t-dark);
    font-size: 12px;
    font-style: normal;
    line-height: 37px;
    width: 37px;
    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;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

label.icon i:before {
    display: block;
    font-size: 18px;
}

label.icon i.currency:before {
    font-size: inherit;
}

::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 {
    position: relative;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    direction: ltr;
    display: block;
    font-family: 'Noto Sans SC', Segoe UI, 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: 39px;
    line-height: 21px;
    outline: none;
    padding: 8px 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--t-dark);
    z-index: 1;
    box-shadow: 0 0 0 5px var(--t-light);
    -webkit-box-shadow: 0 0 0 5px var(--t-light);
}

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

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

input[type='number'],
.digit input,
.number input,
.quantity input {
    text-align: right;
}

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

input[disabled],
select[disabled],
textarea[disabled] {
    background: #ddd;
    box-shadow: none;
    -webkit-box-shadow: none;
}

select {
    padding-left: 0;
    padding-right: 0;
    text-indent: 11px;
}

textarea {
    height: 117px;
    line-height: 18px;
    overflow-y: auto;
    padding: 10px 15px;
    resize: none;
}

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

label.icon select {
    text-indent: 35px;
}

label.icon.right input {
    padding-right: 39px;
    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);
}

.checkbox,
.radio {
    border: 1px solid #ccc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.checkbox label,
.radio label {
    display: flex;
    position: relative;
    border-top: 1px solid #eee;
    padding: 9px 15px 10px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.checkbox label:first-child,
.radio label:first-child {
    border-top: none;
}

.checkbox label:last-child,
.radio label:last-child {
    padding-bottom: 9px;
}

.checkbox label input,
.radio label input {
    position: absolute;
    opacity: 0;
}

.checkbox label i,
.radio label i {
    position: relative;
    display: block;
    min-width: 24px;
    max-width: 24px;
    height: 19px;
}

.checkbox label>span,
.radio label>span {
    display: block;
    padding: 0 0 0 3px;
}

.checkbox label>span {
    padding-left: 15px;
}

.radio label>span {
    padding-left: 6px;
}

.checkbox label>span.active,
.radio label>span.active {
    display: none;
}

.checkbox label input:checked~span.active,
.radio label input:checked~span.active {
    display: block;
}

.checkbox label input:checked~span.inactive,
.radio label input:checked~span.inactive {
    display: none;
}

.checkbox label i:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 2px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.checkbox label input:checked~i:before {
    background: var(--t-dark);
    border: 1px solid var(--t-dark);
}

.checkbox label i:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 13px;
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.checkbox label input:checked~i:after {
    left: 9px;
    border: 1px solid var(--t-dark);
}

.checkbox label input:checked~span {
    color: #000;
}

.checkbox>ul {
    margin: 0;
    overflow-y: auto;
}

.checkbox>ul li+li {
    border-top: 1px solid #eee;
    margin-top: 0;
    padding-bottom: 1px;
}

.radio label i:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 13px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.radio label input:checked~i:before {
    border: 1px solid var(--t-dark);
}

.radio label i:after {
    content: '';
    position: absolute;
    top: 9px;
    left: 7px;
    bottom: 9px;
    width: 0;
    display: block;
    background: #eee;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.radio label input:checked~i:after {
    background: var(--t-dark);
    top: 5px;
    left: 3px;
    bottom: 5px;
    width: 9px;
}

.radio label input:checked~span {
    color: #000;
}

.label ul.selected {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 3px 0 5px;
}

.label ul.selected li {
    background: #eee;
    color: #666;
    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 {
    position: relative;
    list-style: none;
    margin: 0;
}

.filter>ul {
    height: 191px;
    border: 1px solid #ccc;
    margin-top: -1px;
    overflow-y: scroll;
    border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
}

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

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

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

.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>ul>li:first-child {
    border-top: none;
}

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

.filter .hide {
    display: none;
}

.filter a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 37px;
}

.filter a>* {
    margin-left: 15px;
    padding: 3px 0;
}

.filter a span {
    line-height: 21px;
    display: block;
}

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

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

.filter a figure i {
    background: var(--t-light);
    color: var(--t-dark);
    display: block;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

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

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

.filter a>i:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    margin-top: -7px;
    height: 13px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.filter a.active>i:before {
    background: var(--t-dark);
    border: 1px solid var(--t-dark);
}

.filter a>i:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    width: 13px;
    height: 13px;
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: -7px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.filter a.active>i:after {
    left: 24px;
    border: 1px solid var(--t-dark);
}

.filter.radio a>i:before {
    left: 24px;
}

.filter.radio a.active>i:before {
    background: transparent;
}

.filter.radio a>i:after {
    left: 27px;
    border: none;
    width: 9px;
    height: 9px;
    margin-top: -4px;
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
}

.filter.radio a.active>i:after {
    left: 27px;
    background: var(--t-dark);
    border: none;
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

button,
.button {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--t-dark);
    border: none;
    color: var(--t-dark);
    direction: ltr;
    display: flex;
    font-family: 'Noto Sans SC', Segoe UI, sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 21px;
    outline: none !important;
    padding: 9px 12px;
    white-space: nowrap;
    width: 100%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

button i,
.button i {
    position: relative;
    display: block;
    font-size: 18px;
    font-style: normal;
    min-width: 21px;
    line-height: inherit !important;
    margin-left: auto;
    text-align: center;
}

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

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: #fff;
    opacity: .6;
    width: 100%;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

button:hover:before,
.button:hover:before {
    opacity: 0;
    width: 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:focus,
.button:focus {
    box-shadow: 0 0 0 5px var(--t-light);
    -webkit-box-shadow: 0 0 0 5px var(--t-light);
}

button.add:focus,
.button.add:focus {
    box-shadow: 0 0 0 5px var(--c-light);
    -webkit-box-shadow: 0 0 0 5px var(--c-light);
}

button.edit:focus,
.button.edit:focus {
    box-shadow: 0 0 0 5px var(--u-light);
    -webkit-box-shadow: 0 0 0 5px var(--u-light);
}

button.view:focus,
.button.view:focus {
    box-shadow: 0 0 0 5px var(--r-light);
    -webkit-box-shadow: 0 0 0 5px var(--r-light);
}

button.delete:focus,
.button.delete:focus {
    box-shadow: 0 0 0 5px var(--d-light);
    -webkit-box-shadow: 0 0 0 5px var(--d-light);
}

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

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

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

button.narrow,
.button.narrow {
    padding: 9px;
}

button.narrow span,
.button.narrow span {
    padding: 0;
    width: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

.pagebutton button,
.pagebutton .button {
    font-size: 15px;
    line-height: 25px;
    padding: 10px 20px;
}

.pagebutton button i,
.pagebutton .button i {
    min-width: 25px;
}

.pagebutton button.narrow,
.pagebutton .button.narrow {
    padding: 10px;
}

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

.floatbtn .row>div:has(.pagebutton) {
    padding-top: 45px;
}

.uploadimage {
    position: relative;
    margin-top: -6px;
    margin-left: -6px;
    margin-right: -6px;
    padding-right: 6px;
    overflow: hidden;
}

.uploadimage.loading:after {
    position: absolute;
    margin: -12px 0 0 -12px;
}

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

.uploadimage li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding-top: 6px;
    padding-left: 6px;
    width: 123px;
}

.uploadimage li figure {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

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

.uploadimage li figure a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.uploadimage li figure a:before {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

.uploadimage li figure a i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    width: 60px;
    line-height: 60px;
    margin: -30px 0 0 -30px;
    text-align: center;
    opacity: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.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;
    line-height: 18px;
    z-index: 2;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

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

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

.uploadimage label {
    position: relative;
    float: left;
    padding: 0;
    width: 123px;
}

.uploadimage label:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.uploadimage label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    margin: -24px 0 0 -24px;
    background: var(--t-dark);
    box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    border-radius: 27px;
    -moz-border-radius: 27px;
    -webkit-border-radius: 27px;
}

.uploadimage label i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--t-light);
    font-size: 24px;
    line-height: 24px;
    width: 24px;
    margin: -9px 0 0 -9px;
    z-index: 1;
}

.uploadimage label input {
    display: none;
}

.range {
    display: flex;
}

.range>div+div,
.range>label+div {
    margin-left: 9px;
}

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

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

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

.range>label {
    margin-left: 9px;
}

.range>label:first-child {
    margin-left: 0;
}

.range label>span,
.range .label>span {
    white-space: nowrap;
}

.range>i {
    display: block;
    font-style: normal;
    font-size: 12px;
    line-height: 38px;
    margin-left: 9px;
    padding: 21px 6px 0;
}

table .range>i {
    padding-top: 0;
}

.range>i:first-child {
    margin-left: 0;
    padding-left: 0;
}

.range>i:before {
    font-size: 18px;
}

.range>i.lni-colon:before {
    content: ':';
}

.range>.buttonholder {
    padding-top: 21px;
    padding-bottom: 18px;
    flex: inherit;
    width: auto;
}

.ui-datepicker {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px #ccc solid;
    display: none;
    margin-top: -1px;
    min-height: 285px;
    padding-bottom: 9px;
    z-index: 7 !important;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
}

.ui-datepicker-header {
    position: relative;
}

.ui-datepicker-header>a {
    position: absolute;
    top: 12px;
    font-size: 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: 30px;
    width: 30px;
    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 {
    position: relative;
    display: flex;
    font-size: 0;
    line-height: 30px;
    justify-content: center;
    margin: -1px 30px 0;
    padding: 12px 0;
    text-align: center;
}

.ui-datepicker-title select {
    background: #f6f6f6;
    border: none;
    color: #000;
    font-size: 12px;
    height: 30px;
    padding: 0 0 0 11px;
    box-shadow: none;
    -webkit-box-shadow: none;
}

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

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

.ui-datepicker-title span.ui-datepicker-year {
    display: block;
    font-size: 12px;
    opacity: .6;
    width: 36px;
}

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

.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 thead th {
    background: #f6f6f6;
    color: #999;
    font-weight: 400;
    width: 30px;
    line-height: 30px;
}

.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 {
    color: #333;
    display: block;
    width: 30px;
    line-height: 30px;
    opacity: .3;
}

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

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

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

.ui-datepicker-calendar a.ui-state-active {
    background: var(--t-dark);
    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(--t-dark);
    line-height: 1.2;
    margin: 0 0 12px !important;
}

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

.editor .content h4 {
    color: var(--t-dark);
    line-height: 1.2;
    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 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.row.narrow {
    margin-left: -9px;
    margin-right: -9px;
    padding-bottom: 12px;
}

.row.narrow>div {
    padding-left: 9px;
    padding-right: 9px;
    padding-bottom: 18px;
}

.row.tight {
    margin-left: -5px;
    margin-right: -5px;
    padding-bottom: 20px;
}

.row.tight>div {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.row.nogap {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 30px;
}

.row.nogap>div {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.row.nowrap {
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 30px;
}

.row.nowrap.equal>div {
    flex: 1;
}

.row .row>div {
    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%;
}

.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 30px 30px 72px 123px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .page {
    padding-left: 30px;
    padding-right: 123px;
}

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

.rightnav.hovernav .page,
.rightnav.listnav .page {
    padding-left: 30px;
    padding-right: 270px;
}

.page>.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page>.bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--t-dark), rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(var(--t-dark), rgba(255, 255, 255, 0));
    background: -ms-linear-gradient(var(--t-dark), rgba(255, 255, 255, 0));
    background: -o-linear-gradient(var(--t-dark), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(var(--t-dark), rgba(255, 255, 255, 0));
    opacity: .9;
}

.page>.bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--t-dark);
    opacity: .6;
}

.main {
    position: relative;
    margin: 0 auto;
    padding: 30px 30px 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.main+.main {
    margin-top: 30px;
}

.main>.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.main>.bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.main>.bg:before {
    background: #fff;
    opacity: .9;
}

.main>h1,
.main>h2,
.main>h3,
.main>h4,
.main>h5,
.main>h6 {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.main>h1 i {
    background: var(--t-light);
    color: var(--t-dark);
    display: block;
    font-size: 30px;
    min-width: 51px;
    max-width: 51px;
    height: 51px;
    line-height: 51px;
    margin-right: 15px;
    text-align: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.main>h1>span>* {
    display: inline-block;
}

.main>.headerform {
    margin-top: 6px;
}

.main>.headerform label,
.main>.headerform .label {
    padding-bottom: 0;
}

.main>.headerform .date {
    max-width: 150px;
}

.main>.headerform .buttonholder {
    padding: 0;
}

.main>.headerform .icon i {
    bottom: 0;
}

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

.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 3px solid var(--t-dark);
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    text-align: center;
    z-index: 4;
    animation: .3s loading infinite linear;
    -webkit-animation: .3s loading infinite linear;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.loading button,
.loading .button {
    visibility: hidden;
}

.la-spinner:before {
    display: block;
    animation: .6s loading infinite linear;
    -webkit-animation: .6s loading infinite linear;
}

.fa:before {
    display: block;
}

.shorten {
    display: inline-block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

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

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

.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;
}

/******************************
    2 : NAVIGATION
 ******************************/
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 120px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .navigation {
    left: auto;
}

.hovernav .navigation,
.listnav .navigation {
    width: 240px;
}

.navigation:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.navigation>* {
    z-index: 1;
}

navigation>.setting {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

#callnav {
    position: relative;
    display: none;
    width: 81px;
    height: 51px;
}

.shownav {
    overflow: hidden;
}

#callnav span {
    position: absolute;
    top: 24px;
    left: 39px;
    right: 39px;
    background: #fff;
    height: 3px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    transition: left .3s ease, right .3s ease;
    -moz-transition: left .3s ease, right .3s ease;
    -o-transition: left .3s ease, right .3s ease;
    -webkit-transition: left .3s ease, right .3s ease;
}

#callnav span:before,
#callnav span:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    height: 3px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

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

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

.shownav #callnav span {
    top: 25px;
    left: 33px;
    right: 33px;
    height: 1px;
}

.shownav #callnav span:before,
.shownav #callnav span:after {
    height: 1px;
}

#callnav b {
    position: absolute;
    top: 12px;
    left: 27px;
    background: #fff;
    color: var(--t-dark);
    font-weight: normal;
    width: 27px;
    line-height: 27px;
    text-align: center;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

.nav {
    position: absolute;
    top: 111px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.hovernav .nav,
.listnav .nav {
    overflow-y: auto;
}

.nav::-webkit-scrollbar {
    width: 0;
}

.nav:hover::-webkit-scrollbar {
    width: 6px;
}

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

.nav::-webkit-scrollbar-thumb {
    background: var(--t-light);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

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

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

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

.nav ul ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    bottom: 15px;
    background: var(--t-light);
    width: 1px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.hovernav .nav ul ul:before,
.listnav .nav ul ul:before {
    left: 54px;
}

.nav li {
    position: relative;
    margin: 3px 36px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.hovernav .nav li.hover,
.listnav .nav li.hover {
    background: var(--t-dark);
}

.hovernav .nav li,
.listnav .nav li {
    margin-left: 6px;
    margin-right: 6px;
}

.nav li li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nav a {
    position: relative;
    color: #fff;
    display: block;
    margin-left: -30px;
    padding: 15px 0 15px 81px;
    white-space: nowrap;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

.nav ul ul a {
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
}

.nav li li:hover>a,
.nav li.hover>a,
.nav li.active>a {
    color: var(--t-light);
}

.nav ul ul a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 53px;
    bottom: 50%;
    opacity: 1;
    width: 3px;
    background: var(--t-light);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

.nav a i {
    position: absolute;
    top: 0;
    left: 30px;
    color: #fff;
    font-size: 21px;
    line-height: 48px;
    text-align: center;
    width: 51px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.nav .active a i {
    color: var(--t-light);
}

.nav a em {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    color: #000;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    width: 30px;
    line-height: 30px;
    margin: -15px 0 0 -15px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.nav a code {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 24px;
    background: #fff;
    color: var(--t-dark);
    margin-top: -12px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.nav a span {
    opacity: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

/******************************
    3 : HEADER
 ******************************/
.header {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    z-index: 3;
}

.rightnav .header {
    flex-direction: row-reverse;
}

.breadcrumb {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 51px;
    margin-right: auto;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .breadcrumb {
    margin-left: auto;
    margin-right: 0;
}

.breadcrumb a {
    color: inherit;
    display: block;
}

.breadcrumb span {
    display: block;
}

.breadcrumb i {
    display: block;
    font-size: 9px;
    padding: 0 6px;
}

.breadcrumb i:before {
    display: block;
    line-height: 17px;
    padding-top: 1px;
}

.header .profile {
    position: relative;
}

.header .profile>a {
    display: block;
}

.header .profile>a figure {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
}

.header .profile>a figure i {
    background: var(--t-light);
    color: var(--t-dark);
    font-size: 30px;
    width: 51px;
    line-height: 51px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.header .profile>a figure img {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--t-dark);
    width: 51px;
    height: 51px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.header .profile.active>a figure img {
    opacity: 0;
}

.header .profile>ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 240px;
    list-style: none;
    margin: 30px 0 0;
    opacity: 0;
    visibility: hidden;
    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);
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .header .profile>ul {
    left: 0;
    right: auto;
}

.header .profile.active>ul {
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
}

.header .profile>ul:before {
    content: '';
    position: absolute;
    top: -5px;
    right: 18px;
    background: #fff;
    display: block;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .header .profile>ul:before {
    left: 18px;
    right: auto;
}

.header .profile>ul li {
    border: none;
    margin: 0;
    padding: 6px 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.header .profile>ul li+li {
    border-top: 1px solid #ccc;
}

.header .profile .profile_head {
    display: flex;
    align-items: center;
    padding: 15px;
}

.header .profile .profile_head figure {
    width: 51px;
    height: 51px;
    padding: 3px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.header .profile .profile_head figure i {
    color: var(--t-light);
    display: block;
    font-size: 30px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.header .profile .profile_head figure img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.header .profile .profile_head p {
    margin-left: 15px;
    text-align: left;
}

.header .profile .profile_head p b {
    display: block;
}

.header .profile .profile_head p small {
    color: #999;
    display: block;
}

.header .profile>ul>li>a {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.header .profile>ul>li>a i {
    color: var(--t-dark);
    display: block;
    font-size: 21px;
    width: 24px;
    margin-left: 15px;
}

.header .profile>ul>li>a span {
    display: block;
    padding-left: 15px;
}

.header .profile>ul>li.checkbox label i:before {
    background: var(--t-dark);
    border: 1px solid var(--t-dark);
}

.header .profile>ul>li.checkbox label input:checked~i:before {
    background: var(--t-dark);
    border: 1px solid var(--t-dark);
}

.header .profile>ul>li.checkbox label input:focus~i:before {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.header .profile>ul>li.checkbox label i:after {
    border: 1px solid var(--t-dark);
}

.header .profile>ul>li.checkbox label input:checked~i:after {
    border: 1px solid var(--t-dark);
}

.header .profile>ul>li.checkbox label span {
    color: #333;
}

.header .profile>ul>li.checkbox label #switchmode~i:before {
    display: none;
}

.header .profile>ul>li.checkbox label #switchmode~i:after {
    content: '\f185';
    top: -5px;
    left: -3px;
    right: -3px;
    bottom: -6px;
    background: transparent;
    border: none;
    color: var(--t-dark);
    font-size: 21px;
    font-family: 'Line Awesome Free';
    font-style: normal;
    font-weight: 900;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

#switchtheme {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 6px 12px;
}

#switchtheme a {
    overflow: hidden;
    display: flex;
    width: 21px;
    height: 21px;
    margin: 3px;
    opacity: .3;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

#switchtheme a:hover,
#switchtheme a.active {
    width: 27px;
    height: 27px;
    margin: 0;
    opacity: 1;
}

#switchtheme a span {
    display: block;
    flex: 1;
}

/******************************
    4 : FOOTER
 ******************************/
.footer {
    position: absolute;
    left: 120px;
    right: 30px;
    bottom: 0;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 0 0 3px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.rightnav .footer {
    left: 30px;
    right: 120px;
}

.hovernav .footer,
.listnav .footer {
    left: 270px;
}

.rightnav.hovernav .footer,
.rightnav.listnav .footer {
    left: 30px;
    right: 270px;
}

.footer p {
    color: #fff;
    line-height: 17px;
    text-align: left;
}

.footer p a {
    position: relative;
    color: #fff;
    display: inline-block;
    vertical-align: baseline;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.footer p a i {
    position: absolute;
    top: 0;
    left: 100%;
    color: #56d8d1;
    display: block;
    font-size: 18px;
    line-height: 18px;
    opacity: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.footer p a:hover i {
    margin-left: 6px;
    opacity: 1;
}

.footer ul {
    position: relative;
    display: flex;
    list-style: none;
    margin-left: auto;
}

.footer ul:after {
    content: '';
}

.footer li {
    margin: 0;
}

.footer li+li {
    margin-left: 15px;
}

.footer ul a {
    position: relative;
    color: #fff;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.footer ul a i {
    display: block;
    font-size: 18px;
    text-align: right;
    line-height: 51px;
}

.footer ul a span {
    display: block;
    line-height: 51px;
    width: 0;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.footer ul a:hover span {
    width: auto;
    padding-left: 15px;
}

.footer>a {
    color: #fff;
    display: block;
    margin-left: 15px;
}

.footer>a i {
    display: block;
    font-size: 27px;
    line-height: 51px;
}

/******************************
    5 : MAIN
 ******************************/
.message {
    position: fixed;
    top: 0;
    right: 0;
    font-size: 0;
    width: 320px;
    z-index: 7;
}

.message>br {
    display: none;
}

@keyframes fade {
    0% {
        opacity: 0;
        visibility: visible;
        position: relative;
        margin-top: -48px;
    }

    9% {
        opacity: 1;
        visibility: visible;
        position: relative;
        margin-top: 3px;
    }

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

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

    100% {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        margin-top: 48px;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
        visibility: visible;
        position: relative;
        margin-top: -48px;
    }

    9% {
        opacity: 1;
        visibility: visible;
        position: relative;
        margin-top: 3px;
    }

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

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

    100% {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        margin-top: 48px;
    }
}

.message blockquote {
    position: absolute;
    background: transparent;
    color: #fff;
    align-items: center;
    font-size: 12px;
    margin-top: 48px;
    opacity: 0;
    visibility: hidden;
    animation: 3s fade;
    -webkit-animation: 3s fade;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
}

.message blockquote:nth-child(1) {
    z-index: 15;
}

.message blockquote:nth-child(2) {
    z-index: 14;
}

.message blockquote:nth-child(3) {
    z-index: 13;
}

.message blockquote:nth-child(4) {
    z-index: 12;
}

.message blockquote:nth-child(5) {
    z-index: 11;
}

.message blockquote:nth-child(6) {
    z-index: 10;
}

.message blockquote:nth-child(7) {
    z-index: 9;
}

.message blockquote:nth-child(8) {
    z-index: 8;
}

.message blockquote:nth-child(9) {
    z-index: 7;
}

.message blockquote:nth-child(10) {
    z-index: 6;
}

.message blockquote:nth-child(11) {
    z-index: 5;
}

.message blockquote:nth-child(12) {
    z-index: 4;
}

.message blockquote:nth-child(13) {
    z-index: 3;
}

.message blockquote:nth-child(14) {
    z-index: 2;
}

.message blockquote:nth-child(15) {
    z-index: 1;
}

.message blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 600px;
    height: 300px;
    z-index: -1;
    filter: blur(150px);
    -webkit-filter: blur(150px);
    transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
}

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

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

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

.message blockquote>i {
    font-size: 24px;
    margin-left: auto;
}

.message blockquote a {
    color: inherit;
}

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

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

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

.content {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    min-height: 100%;
    padding: 29px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.content.loading:after {
    position: absolute;
    margin: -12px 0 0 -12px;
}

.autoheight .content {
    min-height: 0;
}

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

.content h4,
.content h5,
.content h6 {
    color: var(--t-dark);
    padding: 9px 30px;
    margin: 0 -30px 9px;
}

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

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

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

.blocktitle {
    font-weight: 300;
    position: relative;
    color: var(--t-dark);
    display: flex;
    left: -30px;
    font-size: 21px;
    line-height: 39px;
    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(--t-dark);
    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: 39px;
    left: 0;
    border-top: 6px solid var(--t-dark);
    border-left: 6px solid transparent;
    display: block;
    width: 0;
    opacity: .6;
}

.headerform {
    position: relative;
    display: flex;
    float: right;
    margin-left: 15px;
}

.headerform form+form {
    margin-left: 6px;
}

.headerform>label {
    padding: 0;
}

.headerform>label>span {
    position: absolute;
    top: 11px;
    right: 100%;
    margin-right: 6px;
    white-space: nowrap;
}

.headerform>label.icon>i {
    bottom: 1px;
}

.headerform select {
    padding-left: 11px;
    padding-right: 11px;
    text-indent: 0;
}

.datatable {
    position: relative;
    overflow: hidden;
    overflow-x: auto;
    margin-left: -29px;
    margin-right: -29px;
}

.datatable:after {
    content: '';
    position: absolute;
    top: 150px;
    left: 30px;
    display: block;
    border-bottom: 3px solid var(--t-dark);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    height: 30px;
    width: 30px;
    animation: .3s infinite linear;
    -webkit-animation: .3s loading infinite linear;
}

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

.datatable table {
    min-width: 100%;
    max-width: 100%;
}

.datatable th.sorting_asc,
.datatable th.sorting_desc {
    background: #eee;
}

.datatable th span:after {
    color: var(--t-dark);
    font-family: 'Line Awesome Free';
    font-weight: 900;
    margin-left: 6px;
}

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

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

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

.datatable table tbody tr.success>* {
    background: var(--c-light) !important;
}

.datatable table tbody tr.warning>* {
    background: var(--r-light) !important;
}

.datatable table tbody tr.pending>* {
    background: var(--u-light) !important;
}

.datatable table tbody tr.error>* {
    background: var(--d-light) !important;
}

.datatable table tbody tr.expired>* {
    background: #f9f9f9;
    opacity: .3;
}

.datatable table tbody tr.success>*:first-child:before,
.datatable table tbody tr.warning>*:first-child:before,
.datatable table tbody tr.pending>*:first-child:before,
.datatable table tbody tr.error>*:first-child:before,
.datatable table tbody tr.expired>*:first-child:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    bottom: 0;
    display: block;
    width: 3px;
}

.datatable table tbody tr.success>*:first-child:before {
    background: var(--c-dark);
}

.datatable table tbody tr.warning>*:first-child:before {
    background: var(--r-dark);
}

.datatable table tbody tr.pending>*:first-child:before {
    background: var(--u-dark);
}

.datatable table tbody tr.error>*:first-child:before {
    background: var(--d-dark);
}

.datatable table tbody tr.expired>*:first-child:before {
    background: #999;
}

.datatable table tbody tr>* {
    color: #666;
    height: 69px;
    filter: blur(15px);
    -webkit-filter: blur(15px);
}

.datatable.loaded table tbody tr>* {
    filter: none;
    -webkit-filter: none;
}

.datatable.autoheight table tbody tr>* {
    height: auto;
}

.datatable table tbody tr.faded>td>* {
    opacity: .3;
}

.datatable table tbody tr.faded .buttonholder {
    opacity: 1;
}

.datatable table tbody tr .sorting_1 {
    background: #f9f9f9;
}

.datatable table tbody tr:hover .sorting_1 {
    background: #eee;
}

.datatable .gallery {
    display: block;
    margin-top: 2px;
    overflow: hidden;
}

.datatable .gallery a {
    position: relative;
    background-position: center;
    background-size: cover;
    display: block;
    float: left;
    width: 32px;
    height: 32px;
    margin: 0 2px 2px 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.datatable .gallery a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    border: 1px solid #000;
    opacity: .3;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.datatable .gallery a:after {
    content: '\f067';
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    width: 32px;
    line-height: 32px;
    text-align: center;
}

.datatable span {
    display: block;
}

.datatable span.success,
.datatable i.success {
    background: var(--c-dark);
    color: #fff;
    display: inline-block;
    line-height: 16px;
    min-width: 75px;
    padding: 0 6px 2px;
    text-align: center;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.datatable span.warning,
.datatable i.warning {
    background: var(--r-dark);
    color: #fff;
    display: inline-block;
    line-height: 16px;
    min-width: 75px;
    padding: 0 6px 2px;
    text-align: center;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.datatable span.pending,
.datatable i.pending {
    background: var(--u-dark);
    color: #fff;
    display: inline-block;
    line-height: 16px;
    min-width: 75px;
    padding: 0 6px 2px;
    text-align: center;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.datatable span.error,
.datatable i.error {
    background: var(--d-dark);
    color: #fff;
    display: inline-block;
    line-height: 16px;
    min-width: 75px;
    padding: 0 6px 2px;
    text-align: center;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.datatable span.expired,
.datatable i.expired {
    background: #999;
    color: #fff;
    display: inline-block;
    line-height: 16px;
    min-width: 75px;
    padding: 0 6px 2px;
    text-align: center;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
}

.datatable em {
    display: block;
    font-size: 85%;
    font-style: normal;
    font-weight: 400;
    opacity: .6;
}

.datatable table table {
    float: right;
    width: auto !important;
}

.datatable table table td {
    border: none;
    height: auto;
    padding: 3px;
}

.datatable .buttonholder {
    position: relative;
    margin-right: -9px;
    z-index: 1;
}

.datatable .buttonholder+.buttonholder {
    margin-top: 6px;
}

.datatable .buttonholder i {
    color: inherit;
    margin-right: 0;
}

.datatable .buttonholder>*:first-child {
    margin-left: auto;
}

.datatable .buttonholder button,
.datatable .buttonholder .button {
    background: transparent;
    margin: 0;
    padding: 9px;
}

.datatable .buttonholder button:before,
.datatable .buttonholder .button:before {
    display: none;
}

.dataTables_empty,
.dataTables_empty:hover {
    height: 128px !important;
    color: #999;
    font-size: 24px;
    font-weight: 300;
    text-align: center !important;
    text-transform: uppercase;
    vertical-align: middle;
}

.dataTables_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dataTables_length,
.dataTables_filter {
    display: none;
}

.dataTables_wrapper>div>label {
    border: 1px solid #ccc;
    color: #333;
    display: flex;
    line-height: 37px;
    padding: 0 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.dataTables_wrapper>div>label select {
    background: #fff;
    border: none;
    height: 37px;
    margin: 0 9px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-indent: 0;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.datatable tbody .contact_info,
.datatable tbody .contact_info ul {
    list-style: none;
    margin: 0;
}

.datatable tbody li {
    margin: 0;
}

.datatable tbody li+li {
    margin-top: 6px;
}

.datatable tbody tr a {
    display: flex;
}

.datatable tbody a i {
    display: block;
    font-size: 16px;
    line-height: 18px;
    margin-right: 6px;
    width: 18px;
}

.datatable tbody tr .item_profile {
    padding: 0;
}

.datatable tbody tr .item_profile+.item_profile {
    margin-top: 15px;
}

.datatable tbody tr .item_profile figure i {
    width: 45px;
}

.datatable tbody tr .item_profile .buttonholder {
    margin-left: auto;
    margin-right: 0;
}

.datatable tbody tr .item_profile .buttonholder button,
.datatable tbody tr .item_profile .buttonholder .button {
    padding-left: 0;
    padding-right: 0;
}

.datatable label.checkbox,
.datatable label.radio {
    border: none;
    width: 24px;
    margin-left: auto;
}

.datatable label.checkbox input,
.datatable label.radio input {
    position: absolute;
    opacity: 0;
}

.datatable label.checkbox i,
.datatable label.radio i {
    position: relative;
    display: block;
    width: 24px;
    height: 19px;
    margin: 10px 0;
}

.datatable label.checkbox i:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 2px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.datatable label.checkbox input:checked~i:before {
    background: var(--t-dark);
    border: 1px solid var(--t-dark);
}

.datatable label.checkbox i:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 13px;
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.datatable label.checkbox input:checked~i:after {
    left: 9px;
    border: 1px solid var(--t-dark);
}

.datatable label.radio i:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 13px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.datatable label.radio input:checked~i:before {
    border: 1px solid var(--t-dark);
}

.datatable label.radio i:after {
    content: '';
    position: absolute;
    top: 9px;
    left: 7px;
    bottom: 9px;
    width: 0;
    display: block;
    background: #eee;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.datatable label.radio input:checked~i:after {
    background: var(--t-dark);
    top: 5px;
    left: 3px;
    bottom: 5px;
    width: 9px;
}

.dataTables_info {
    color: #999;
    padding: 15px 15px 15px 30px;
}

.dataTables_paginate {
    margin-left: auto;
    padding: 15px 30px 15px 15px;
}

.dataTables_paginate a {
    position: relative;
    border: 1px solid #ccc;
    color: #333;
    display: block;
    font-family: 'Noto Sans SC', Segoe UI, sans-serif;
    font-size: 12px;
    line-height: 37px;
    outline: none;
    text-align: center;
    width: 39px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.dataTables_paginate a.current {
    color: #ccc;
}

.dataTables_paginate a:hover:after,
.dataTables_paginate a.current:after {
    width: 100%;
}

.dataTables_paginate a.disabled,
.dataTables_paginate a.disabled:hover {
    color: #ccc;
}

.dataTables_paginate a.disabled:after {
    display: none;
}

.dataTables_paginate span {
    display: block;
}

.dataTables_paginate>span {
    display: flex;
}

.dataTables_paginate span>* {
    margin-left: 3px;
}

.dataTables_paginate span>*:first-child {
    margin-left: 0;
}

.dataTables_paginate span .ellipsis {
    text-align: center;
    font-weight: 700;
    width: 39px;
    line-height: 39px;
}

.dataTables_paginate .previous,
.dataTables_paginate .next {
    display: none;
}

.datatable.nottable thead,
.datatable.nottable tfoot {
    display: none;
}

.datatable.nottable tbody {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    margin: 0 30px;
}

.datatable.nottable tbody tr {
    position: relative;
    display: block;
    width: 33.333333%;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.datatable.nottable tbody tr>* {
    border: none;
    display: flex;
    height: auto;
    padding: 0 15px 15px 15px;
}

.datatable.nottable tbody tr>*:first-child {
    padding-top: 15px;
}

.datatable.nottable tbody tr>*:before {
    content: attr(data-label);
    color: #999;
    padding-right: 15px;
    min-width: 60px;
    max-width: 60px;
}

.datatable.nottable table tbody tr .sorting_1 {
    color: inherit;
    font-weight: inherit;
}

.datatable.nottable table tbody tr:hover>* {
    background: transparent;
}

.datatable.nottable .listing li span,
.datatable .listing li em.nottable {
    max-width: none;
    text-overflow: clip;
    white-space: normal;
}

.datatable.nottable .buttonholder {
    float: none;
    margin-left: auto;
}

.hidecol {
    display: none;
}

.item_profile {
    display: flex;
    align-items: center;
}

.item_profile figure {
    min-width: 45px;
    max-width: 45px;
    height: 45px;
    margin-right: 9px;
    overflow: hidden;
    padding: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.item_profile figure i,
.item_profile figure img {
    border: 3px solid #ccc;
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.item_profile figure i:before {
    color: #ccc;
    display: block;
    font-size: 36px;
    line-height: 39px;
    width: 100%;
}

.item_profile figure img {
    background: #eee;
}

.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);
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

.overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--t-dark);
    opacity: .3;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 6;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.showlightbox .lightbox {
    opacity: 1;
    visibility: visible;
}

.lightbox>div {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.lightbox a {
    position: absolute;
    color: var(--t-light);
    z-index: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.lightbox .close {
    top: 1px;
    right: 1px;
}

.lightbox .prev {
    top: 50%;
    left: 1px;
    margin-top: -24px;
}

.lightbox .next {
    top: 50%;
    right: 1px;
    margin-top: -24px;
}

.lightbox a:before {
    font-family: 'Line Awesome Free';
    font-size: 24px;
    font-weight: 900;
    display: block;
    width: 48px;
    line-height: 48px;
    text-align: center;
}

.lightbox .close:before {
    content: '\f00d';
}

.lightbox .prev:before {
    content: '\f104';
}

.lightbox .next:before {
    content: '\f105';
}

.lightbox div a {
    top: 15px;
    right: 15px;
    left: auto;
    bottom: auto;
}

.lightbox div a i {
    font-size: 18px;
    display: block;
    width: 48px;
    line-height: 48px;
    text-align: center;
}

.checkpoint ul {
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    list-style: none;
    margin: 0;
}

.checkpoint ul li {
    position: relative;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0;
    min-height: 60px;
    padding-left: 60px;
}

.checkpoint ul li>span {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    font-size: 10px;
    line-height: 1.5;
    width: 60px;
    padding-top: 12px;
    text-align: center;
}

.checkpoint ul li>span b {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.checkpoint ul li p {
    padding: 12px 15px 12px 0;
}

.checkpoint .buttonholder {
    position: absolute;
    right: 6px;
    bottom: 6px;
}

.quick-access {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 -3px;
}

.loading .quick-access {
    display: none;
}

.quick-access>li {
    position: relative;
    display: block;
    margin: 0;
    padding: 3px;
    min-width: 16.666666%;
}

.quick-access.x4 li {
    min-width: 25%;
}

.grid6>.quick-access li {
    min-width: 33.333333%;
}

.quick-access>li a {
    position: relative;
    background: var(--t-light);
    color: var(--t-dark);
    display: block;
    min-height: 100%;
    padding: 30px 15px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.quick-access>li a:hover {
    background: var(--t-dark);
    color: var(--t-light);
    z-index: 1;
}

.quick-access>li a>i {
    color: inherit;
    display: block;
    font-size: 30px;
    font-style: normal;
    line-height: 1;
    padding-bottom: 15px;
    text-align: center;
}

.quick-access>li a>div {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
}

.quick-access>li a>h6 {
    margin: 0;
    padding: 0;
    text-align: center;
}

.quick-access>li a>h6+p {
    padding-top: 6px;
}

.quick-access>li a>p {
    color: #666;
    text-align: center;
}

.quick-access>li a:hover>i,
.quick-access>li a:hover h6,
.quick-access>li a:hover p {
    color: inherit;
}

.quick-access>li a.remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: transparent;
    min-height: 0;
    padding: 0;
    z-index: 1;
}

.quick-access>li a.remove i {
    color: var(--d-dark);
}

.tag {
    list-style: none;
    margin: 3px -3px;
    text-align: center;
    overflow: hidden;
}

.tag li {
    display: inline-block;
    background: #eee;
    line-height: 18px;
    padding: 6px 12px;
    color: #333;
    margin: 3px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.tag .error {
    background: var(--d-dark);
    color: #fff;
}

.tag .warning {
    background: var(--r-dark);
    color: #fff;
}

.tag .success {
    background: var(--c-dark);
    color: #fff;
}

.tag .expired {
    background: #999;
    color: #fff;
}

.progress {
    position: relative;
    background: #f6f6f6;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.progress div {
    background: #eee;
}

.progress div span {
    position: relative;
    z-index: 1;
    background: #000;
    display: block;
    width: 0%;
    min-width: 6px;
    height: 6px;
    margin-bottom: 21px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.progress div span.completed {
    background: var(--c-dark);
}

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

.progress ul li {
    color: #000;
    display: flex;
    font-family: monospace;
    margin-top: 6px;
}

.progress ul li code {
    color: inherit;
    min-width: 60px;
    max-width: 60px;
    opacity: .6;
}

.progress ul li b,
.progress ul li strong {
    padding-left: 15px;
    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;
}

/******************************
    6 : LOGIN
 ******************************/
.loginpage .navigation {
    width: 50%;
}

.loginpage .navigation:before,
.loginpage .navigation:after {
    display: none;
}

.loginform {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    max-width: 360px;
    margin: 0;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.loginform .profile {
    display: flex;
    align-items: center;
}

.loginform figure {
    height: 51px;
    margin-left: auto;
}

.loginform figure img {
    display: block;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

}

.loginform label {
    padding-bottom: 0;
}

.loginform input {
    padding: 12px 15px;
    height: 45px;
    background: #fff;
    border-radius: 23px;
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
}

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

.loginform label.icon i {
    left: 3px;
    bottom: 3px;
}

.loginform label.icon i:before {
    font-size: 24px;
}

.loginform button,
.loginform .button {
    font-size: 15px;
    line-height: 25px;
    padding: 10px 20px;
    border-radius: 23px;
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
}

.loginform button i,
.loginform .button i {
    min-width: 25px;
}

.loginform button.narrow,
.loginform .button.narrow {
    padding: 10px;
}

.loginform button.narrow:hover,
.loginform .button.narrow:hover {
    padding: 10px 12px;
}

.loginpage .footer {
    left: 50%;
}

.logo {
    position: absolute;
    top: 30px;
    left: 0;
    width: 123px;
    height: 51px;
}

.loginpage .logo {
    top: 0;
    left: 25%;
    width: 50%;
    height: 100%;
}

.logo span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    max-width: 210px;
    margin: 0 auto;
}

.accordion+.accordion {
    margin-top: 6px;
}

.accordion-head {
    position: relative;
    background: #f6f6f6;
    display: block;
    padding: 30px 81px 29px 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.accordion.active .accordion-head {
    background: var(--t-light);
    color: var(--t-dark);
}

.accordion-head>* {
    color: inherit;
}

.accordion-head:before,
.accordion-head:after {
    content: '';
    position: absolute;
    background: #333;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.accordion-head:before {
    top: 50%;
    right: 30px;
    width: 21px;
    height: 1px;
}

.accordion.active .accordion-head:before {
    background: var(--t-dark);
}

.accordion-head:after {
    top: 50%;
    right: 40px;
    margin-top: -10px;
    width: 1px;
    height: 21px;
}

.accordion.active .accordion-head:after {
    background: var(--t-dark);
    margin-top: 0;
    height: 1px;
}

.accordion-body {
    height: 0;
    overflow: hidden;
    padding-top: 0;
}

.accordion.active .accordion-body {
    height: auto;
    overflow: visible;
    padding-top: 30px;
}

.accordion.active .accordion-body .pagebutton {
    padding-bottom: 30px;
}

.postinfo {
    display: flex;
    list-style: none;
    margin: 0 0 18px;
}

.postinfo li {
    color: #999;
    display: flex;
    font-size: 85%;
    margin: 0;
}

.postinfo li+li {
    margin-left: 15px;
}

.postinfo li i {
    margin-right: 6px;
}

/******************************
    7 : CUSTOMIZE
 ******************************/
.dashboard_summary {
    display: flex;
    align-items: center;
}

.dashboard_summary>div {
    padding-top: 7px;
    margin-left: auto;
    text-align: right;
}

.dashboard_summary p {
    text-align: right;
}

.dashboard_summary em {
    color: #999;
    display: block;
    font-size: 85%;
    font-style: normal;
}

.dashboard_summary i {
    position: relative;
    color: var(--t-dark);
    line-height: 106px;
    font-size: 60px;
    min-width: 75px;
    max-width: 75px;
}

.dashboard_summary.success h6 {
    color: var(--t-dark);
}

.dashboard_summary.success i,
.dashboard_summary.success h6 {
    color: var(--c-dark);
}

.dashboard_summary.warning i,
.dashboard_summary.warning h6 {
    color: var(--r-dark);
}

.dashboard_summary.pending i,
.dashboard_summary.pending h6 {
    color: var(--u-dark);
}

.dashboard_summary.error i,
.dashboard_summary.error h6 {
    color: var(--d-dark);
}

.dashboard_summary.expired i,
.dashboard_summary.expired h6 {
    color: #999;
}

.calendarholder {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.calendarholder>div {
    padding: 0 15px 30px;
    min-width: 33.333333%;
    max-width: 33.333333%;
}

.calendarholder table {
    table-layout: fixed;
}

.calendarholder table .offday {
    color: var(--d-dark);
}

.calendarholder table thead tr,
.calendarholder table tfoot tr {
    background: transparent;
    border: none;
}

.calendarholder tr>*:first-child,
.calendarholder tr>*:last-child {
    padding: 0;
    text-align: center;
}

.calendarholder th,
.calendarholder td {
    border: none;
    color: inherit;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

.calendarholder thead th div {
    display: flex;
    align-items: center;
}

.calendarholder thead th span {
    position: relative;
    display: block;
    padding-top: 100%;
}

.calendarholder thead th span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--t-dark);
    display: block;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.calendarholder thead th span em {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    display: block;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 30px;
    margin-top: -15px;
    text-align: center;
}

.calendarholder thead th b {
    display: block;
    text-align: right;
}

.calendarholder thead th small {
    display: block;
    opacity: .6;
    text-align: right;
}

.calendarholder thead td {
    padding: 9px 0;
}

.calendarholder thead td:after {
    content: '';
    border-bottom: 1px solid var(--t-dark);
    display: block;
    padding-top: 9px;
}

.calendarholder tbody tr:hover>* {
    background: transparent;
}

.calendarholder tbody a {
    color: inherit;
    display: block;
    font-weight: normal;
    padding-top: 100%;
}

.calendarholder tbody .holiday:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--d-light);
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.calendarholder tbody .past a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: var(--t-dark);
    display: block;
    height: 2px;
    margin-top: -1px;
    opacity: .3;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.calendarholder tbody span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    line-height: 30px;
    margin: -15px 0 0 -15px;
}

.calendarholder tbody small {
    position: absolute;
    top: 50%;
    left: 3px;
    right: 3px;
    color: var(--d-dark);
    display: -webkit-box;
    font-size: 10px;
    max-height: 24px;
    line-height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.theme0 {
    background: #fbb03b;
}

.theme1 {
    background: #ed6498;
}

.theme2 {
    background: #e55e5e;
}

.theme3 {
    background: #56b881;
}

.theme4 {
    background: #41afa5;
}

.theme5 {
    background: #3bb2d0;
}

.theme6 {
    background: #3887be;
}

.theme7 {
    background: #8a8acb;
}

.theme8 {
    background: #50667f;
}

.theme9 {
    background: #28353d;
}

.item_list {
    list-style: none;
    margin: -3px 0 0;
}

.item_list li {
    position: relative;
    margin: 0;
    padding: 3px 0 3px 60px;
}

.item_list li:before {
    content: '';
    background: var(--t-dark);
    position: absolute;
    top: 50%;
    left: 18px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.item_list li:after {
    content: '';
    background: var(--t-dark);
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    width: 2px;
}

.item_list li:first-child:after {
    top: 50%;
}

.item_list li:last-child:after {
    bottom: 50%;
}

.item_list li figure {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    border: 3px solid var(--t-dark);
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.item_list li figure i {
    background: #fff;
    border-radius: 50%;
    color: var(--t-dark);
    display: block;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.item_list li>div {
    position: relative;
    padding: 15px;
    background: var(--t-light);
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.item_list li>div:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -9px;
    margin-top: -9px;
    background: var(--t-light);
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.item_list li h6 {
    color: var(--t-dark);
    padding: 9px 30px;
    margin: 0 -30px 9px;
}

.item_list li em {
    color: #999;
    display: block;
    font-size: 85%;
    font-style: normal;
}

.item_list .buttonholder {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
}

.item_list li>div>label,
.item_list li>div>.label {
    padding-bottom: 0;
}

.item_list li>div>label+label,
.item_list li>div>.label+.label,
.item_list li>div>label+.label,
.item_list li>div>.label+label {
    padding-top: 18px;
}

.item_list li>div>label.icon i {
    bottom: 1px;
}

.listing {
    list-style: none;
    margin: 0;
}

.listing li {
    display: flex;
    align-items: center;
    margin-left: -3px;
}

.listing li.divider {
    border-top: 1px solid #eee;
}

.listing li>* {
    margin-left: 3px;
}

.listing li>i {
    position: relative;
    color: var(--t-dark);
    display: block;
    font-size: 10px !important;
    font-style: normal;
    text-align: center;
}

.listing li>i:before {
    width: 18px;
}

.listing li>i.la-check,
.listing li>i.la-times {
    color: #fff;
    margin: 2px 0;
    width: 14px;
    line-height: 14px;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
}

.listing li>i.la-check {
    background: var(--c-dark);
}

.listing li>i.la-times {
    background: var(--d-dark);
}

.listing li .buttonholder {
    margin-left: auto;
    margin-right: 0;
}

.listing li .buttonholder button,
.listing li .buttonholder .button {
    padding-left: 0;
    padding-right: 0;
}

.tree ul {
    position: relative;
    list-style: none;
    margin: 0;
}

.tree>ul {
    margin-top: -6px;
}

.tree ul ul {
    padding-left: 30px;
}

.tree li {
    position: relative;
    margin: 6px 0 0;
}

.tree li>a {
    position: absolute;
    color: var(--t-dark);
    display: block;
    font-size: 18px;
    width: 30px;
    height: 30px;
    opacity: .3;
    text-align: center;
    z-index: 1;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.tree li>a:hover {
    opacity: 1;
}

.tree li>a.up {
    top: 0;
    right: 0;
}

.tree li:first-child>a.up {
    display: none;
}

.tree li>a.left {
    top: 0;
    left: 0;
}

.tree>ul>li>a.left {
    display: none;
}

.tree li>a.right {
    top: 0;
    left: 30px;
}

.tree ul ul li>a.right {
    display: none;
}

.tree li>a.down {
    top: 30px;
    right: 0;
}

.tree li:last-child>a.down {
    display: none;
}

.tree li>a i {
    display: block;
}

.tree li>a.up i,
.tree li>a.down i {
    width: 20px;
    line-height: 20px;
}

.tree li>a.up i {
    padding-top: 10px;
}

.tree li>a.left i,
.tree li>a.right i {
    width: 30px;
    line-height: 39px;
}

.tree li>a.left i {
    padding-left: 10px;
}

.tree li>a.right i {
    padding-right: 10px;
}

.datatable span.success>code {
    color: #fff;
}

.datatable span.warning>code {
    color: #fff;
}

.datatable span.error>code {
    color: #fff;
}

.infobar {
    position: relative;
    background: var(--t-dark);
    border: none;
    color: #fff;
    padding: 15px 21px 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

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

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

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

.infobar.expired {
    background: #999;
    color: #999;
}

.infobar table,
.infobar tbody {
    display: block;
}

.infobar tbody tr {
    display: flex;
    flex-wrap: wrap;
}

.infobar tbody tr>* {
    border: none;
    padding-bottom: 0;
}

.infobar tbody tr>*:first-child {
    padding-left: 9px;
}

.infobar tbody tr>*:last-child {
    text-align: left;
    padding-right: 9px;
}

.infobar tbody tr:hover>* {
    background: transparent;
}

.infobar tbody tr th {
    min-width: 100%;
    padding-bottom: 38px;
}

.infobar tbody tr td {
    flex: auto;
}

.infobar tr>*>small {
    display: block;
    padding-top: 3px;
    opacity: .6;
}

.infobar blockquote {
    border: none;
    padding: 11px 15px 10px;
    margin: 0;
}

.infobar .buttonholder {
    position: static;
    height: auto;
}

.infobar .item_profile {
    position: relative;
}

.infobar .item_profile figure {
    min-width: 57px;
    max-width: 57px;
    height: 57px;
    line-height: 57px;
    font-weight: 700;
    font-size: 28px;
    margin: -9px 12px -9px 0;
    text-align: center;
}

.infobar .item_profile figure i,
.infobar .item_profile figure img {
    border: 3px solid #fff;
    width: 57px;
    height: 57px;
}

.infobar .item_profile figure i:before {
    color: #fff;
    font-size: 45px;
    width: 51px;
    line-height: 51px;
}

.infobar h6 {
    color: #fff;
    margin: 0;
    padding: 0;
}

.infobar small,
.infobar b,
.infobar span,
.infobar span>a {
    color: #fff;
    display: block;
}

.infobar span>a {
    opacity: .9;
    text-decoration: underline;
}

.infobar .buttonholder {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 1;
}

.orderform table tfoot tr th {
    font-weight: 400;
    text-align: right;
    vertical-align: middle;
}

.orderform table tfoot input {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
}

.finalcharge {
    display: flex;
}

.finalcharge h2 {
    position: relative;
    color: var(--t-dark);
    font-weight: 400;
    margin-left: auto;
}

.finalcharge h2:before {
    content: 'TOTAL : ';
    position: absolute;
    top: 5px;
    left: -66px;
    color: #999;
    font-size: 12px;
}

.relation {
    position: relative;
    margin: -30px;
}

.expandrelation {
    overflow: hidden;
}

.expandrelation .relation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: #fff;
    z-index: 5;
}

.relation .switch {
    position: absolute;
    top: -18px;
    right: 30px;
    display: flex;
    z-index: 1;
}

.expandrelation .relation .switch {
    top: 30px;
}

.relation .switch a {
    position: relative;
    background: #f1f1f1;
    display: block;
    margin-left: 6px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.relation .switch .type {
    display: flex;
}

.relation .switch a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 33px;
    height: 33px;
    margin: 3px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.relation.vertical .switch .type:before {
    left: 39px;
}

.relation .switch a i {
    position: relative;
    color: #999;
    display: block;
    font-size: 21px;
    width: 39px;
    line-height: 39px;
    text-align: center;
}

.relation .switch .zoom .la-compress {
    display: none;
}

.expandrelation .relation .switch .zoom .la-expand {
    display: none;
}

.expandrelation .relation .switch .zoom .la-compress {
    display: block;
}

.relation .holder {
    overflow: auto;
}

.expandrelation .relation .holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 99px;
}

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

.relation .holder>ul {
    display: block;
    padding: 30px 0 0 30px;
}

.relation li {
    position: relative;
    display: flex;
    margin: 0;
}

.relation li:before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    background: #ccc;
    width: 1px;
}

.relation li:first-child:before {
    top: 50px;
}

.relation li:last-child:before {
    display: none;
}

.relation .holder>ul>li:before {
    display: none;
}

.relation .holder div {
    padding: 0 30px 30px 0;
}

.relation .holder div:before {
    content: '';
    position: absolute;
    top: 50px;
    left: -15px;
    background: #ccc;
    width: 15px;
    height: 1px;
}

.relation .holder>ul>li>div:before,
.relation .holder>ul>li>div div:before {
    display: none;
}

.relation li:first-child>div:before {
    left: -30px;
    width: 30px;
}

.relation li:last-child>div:after {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    background: #ccc;
    width: 1px;
    height: 50px;
}

.relation li:only-child>div:after {
    display: none;
}

.relation .holder>ul>li>div:after {
    display: none;
}

.relation blockquote {
    border: none;
    min-width: 300px;
    max-width: 300px;
    margin: 0;
    padding: 0;
}

.relation blockquote figure {
    min-width: 100px;
    max-width: 100px;
    padding: 15px;
}

.relation blockquote img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.relation blockquote p {
    padding: 15px 15px 15px 0;
    min-width: 200px;
    max-width: 200px;
}

.relation blockquote p span {
    display: block;
    color: #000;
    font-size: 12px;
    padding-top: 9px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.relation blockquote p em {
    font-size: 10px;
    color: #999;
    display: block;
    font-style: normal;
}

.relation blockquote p b {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 9px;
}

.relation blockquote p b:after {
    content: 'PV';
    font-size: 12px;
    font-weight: 400;
    margin-left: 3px;
    vertical-align: baseline;
}

.relation .holder .customer_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: 30px;
    padding: 0;
}

.relation .holder .customer_list:before {
    display: none;
}

.relation .holder .customer_list a {
    display: block;
    padding: 0 30px 30px 0;
}

.relation .customer_list.active blockquote {
    position: relative;
    margin-top: 6px;
}

.relation .customer_list blockquote p b {
    color: #999;
}

.relation.vertical ul {
    position: relative;
    display: flex;
}

.relation.vertical ul:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    background: #ccc;
    width: 1px;
    height: 15px;
}

.relation.vertical .holder>ul {
    padding: 30px 15px 0;
}

.relation.vertical .holder>ul:before,
.relation.vertical .holder>ul:after {
    display: none;
}

.relation.vertical li {
    display: block;
    flex: 1;
}

.relation.vertical li:before {
    top: -15px;
    left: 50%;
    bottom: auto;
    height: 15px;
}

.relation.vertical li:first-child:before {
    top: -15px;
}

.relation.vertical li:last-child:before {
    display: block;
}

.relation.vertical li:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    background: #ccc;
    height: 1px;
}

.relation.vertical li:first-child:after {
    left: 50%;
}

.relation.vertical li:last-child:after {
    right: 50%;
}

.relation.vertical .holder>ul>li:before,
.relation.vertical .holder>ul>li:after {
    display: none;
}

.relation.vertical .holder div {
    padding: 0 15px 30px;
}

.relation.vertical .holder div:before {
    display: none;
}

.relation.vertical li:last-child>div:after {
    display: none;
}

.relation.vertical blockquote {
    display: block;
    min-width: 200px;
    max-width: 200px;
    margin: 0 auto;
}

.relation.vertical blockquote figure {
    margin: 0 auto;
}

.relation.vertical blockquote p {
    text-align: center;
    padding: 0 15px 15px;
}

.relation.vertical blockquote p span {
    padding-top: 0;
}

.relation.vertical blockquote p b {
    padding-left: 19px;
}

.relation.vertical .holder .customer_list {
    padding: 0;
}

.relation.vertical .customer_list.active blockquote {
    margin-top: 0;
    margin-left: 6px;
}

.variantform {
    position: relative;
    padding-left: 147px;
}

.variantform .uploadimage {
    position: absolute;
    top: 21px;
    left: 0;
}

#variant .variantform .edit {
    display: none;
}

#variant.lock .variantform .edit {
    display: flex;
}

#variant.lock button {
    display: none;
}

#variant.lock .datatable .view {
    display: none;
}

#variant .datatable tbody .highlight .buttonholder {
    opacity: 0;
    visibility: hidden;
}

#field .fieldform .edit {
    display: none;
}

#field.lock .fieldform .edit {
    display: flex;
}

#field.lock button {
    display: none;
}

#field.lock .datatable .view {
    display: none;
}

#field .datatable tbody .highlight .buttonholder {
    opacity: 0;
    visibility: hidden;
}

.popupform {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 480px;
    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%);
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
}

.showPopupFormCreate,
.showPopupFormUpdate,
.showPopupFormMachinery,
.showPopupFormDriver,
.showPopupFormAssistant,
.showPopupFormType,
.showPopupFormContact,
.showPopupFormRemark,
.showPopupFormLocation,
.showPopupFormRate,
.showPopupFormSendOut,
.showPopupFormWorkOrder,
.showPopupFormFee {
    overflow: hidden;
}

.showPopupFormCreate .overlay,
.showPopupFormUpdate .overlay,
.showPopupFormMachinery .overlay,
.showPopupFormDriver .overlay,
.showPopupFormAssistant .overlay,
.showPopupFormType .overlay,
.showPopupFormContact .overlay,
.showPopupFormRemark .overlay,
.showPopupFormLocation .overlay,
.showPopupFormRate .overlay,
.showPopupFormSendOut .overlay,
.showPopupFormWorkOrder .overlay,
.showPopupFormFee .overlay {
    opacity: 1;
    visibility: visible;
}

.showPopupFormCreate #create.popupform,
.showPopupFormUpdate #update.popupform,
.showPopupFormMachinery #updateMachinery.popupform,
.showPopupFormDriver #updateDriver.popupform,
.showPopupFormAssistant #updateAssistant.popupform,
.showPopupFormType #createType.popupform,
.showPopupFormContact #createContact.popupform,
.showPopupFormContact #updateContact.popupform,
.showPopupFormRemark #updateRemark.popupform,
.showPopupFormLocation #updateLocation.popupform,
.showPopupFormRate #updateRate.popupform,
.showPopupFormSendOut #updateSendOut.popupform,
.showPopupFormWorkOrder #updateWorkOrder.popupform,
.showPopupFormFee #updateFee.popupform {
    opacity: 1;
    visibility: visible;
}

.popupform>a {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    z-index: 1;
}

.popupform>a:before,
.popupform>a:after {
    content: '';
    position: absolute;
    top: 19px;
    left: 12px;
    right: 12px;
    background: var(--d-dark);
    display: block;
    height: 1px;
}

.popupform>a:before {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.popupform>a:after {
    transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.popupform .content {
    border: none;
    padding: 30px;
    box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 3px 6px 18px rgba(0, 0, 0, .1);
}

.popupform .row>div {
    padding-bottom: 0;
}

.popupform .closeform {
    position: absolute;
    top: 0;
    right: 0;
}

.datatable tbody tr a.callLocation,
.datatable tbody tr a.callRemark,
.datatable tbody tr a.callWorkOrder,
.datatable tbody tr a.callRate,
.datatable tbody tr a.callFee,
.datatable tbody tr a.callLeave {
    display: block;
}

.datatable tbody tr a.callRemark p,
.datatable tbody tr div.remarkBlock p {
    margin-top: 6px;
    padding-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.datatable tbody tr a.callRemark p+ul,
.datatable tbody tr div.remarkBlock p+ul {
    border-top: 1px solid #eee;
}

.datatable tbody tr a.callRemark .listing,
.datatable tbody tr div.remarkBlock .listing,
.datatable tbody tr a.callRate .listing,
.datatable tbody tr div.rateBlock .listing,
.datatable tbody tr a.callAssistant .listing,
.datatable tbody tr div.assistantBlock .listing {
    padding-top: 6px;
}

.datatable tbody tr a.callFee .listing,
.datatable tbody tr div.feeBlock .listing {
    width: 110px;
    margin-left: auto;
}

.datatable tbody tr a.callRemark li+li,
.datatable tbody tr div.remarkBlock li+li,
.datatable tbody tr a.callRate li+li,
.datatable tbody tr div.rateBlock li+li,
.datatable tbody tr a.callFee li+li,
.datatable tbody tr div.feeBlock li+li,
.datatable tbody tr a.callAssistant li+li,
.datatable tbody tr div.assistantBlock li+li {
    margin-top: 3px;
}

.datatable tbody tr a.callRate code,
.datatable tbody tr div.rateBlock code,
.datatable tbody tr a.callFee code,
.datatable tbody tr div.feeBlock code {
    width: 45px;
    margin: 0;
    padding-left: 5px;
    text-align: left;
}

.datatable tbody tr a.callRate .listing span,
.datatable tbody tr div.rateBlock .listing span,
.datatable tbody tr a.callFee .listing span,
.datatable tbody tr div.feeBlock .listing span {
    width: 75px;
    margin: 0;
    text-align: right;
}

.datatable tbody tr a.callFee .listing span,
.datatable tbody tr div.feeBlock .listing span {
    padding-right: 5px;
}

.datatable tbody tr a.callFee b,
.datatable tbody tr div.feeBlock b {
    display: block;
    flex: 1;
    margin: 0;
    padding: 3px 5px 3px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: right;
}

#cashpayment {
    display: none;
}

.package-summary .listing li+li {
    margin-top: 3px;
}

.package-summary .listing li code {
    min-width: 45px;
    max-width: 45px;
    margin-left: 0;
}

.package-summary .listing li span {
    margin-left: auto;
}

#charge .amount {
    text-align: right;
}

/******************************
    8 : RESPONSIVE
 ******************************/
@media only screen and (max-width:1200px) {
    .row.narrow-l {
        margin-left: -9px;
        margin-right: -9px;
        padding-bottom: 12px;
    }

    .row.narrow-l>div {
        padding-left: 9px;
        padding-right: 9px;
        padding-bottom: 18px;
    }

    .row.tight-l {
        margin-left: -5px;
        margin-right: -5px;
        padding-bottom: 20px;
    }

    .row.tight-l>div {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 10px;
    }

    .row.nogap-l {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 30px;
    }

    .row.nogap-l>div {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .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;
    }

    .page,
    .hovernav .page,
    .listnav .page,
    .rightnav .page,
    .rightnav.hovernav .page,
    .rightnav.listnav .page {
        padding-left: 30px;
        padding-right: 30px;
    }

    .logo {
        left: 30px;
        width: 51px;
    }

    .header {
        margin-left: 81px;
        margin-right: -30px;
    }

    .header .profile>ul {
        right: -51px;
    }

    .header .profile>ul:before {
        right: 69px;
    }

    #callnav {
        display: block;
    }

    .navigation {
        position: absolute;
        left: 0;
        bottom: auto;
    }

    .rightnav .navigation {
        left: 0;
    }

    .nav {
        position: fixed;
        top: 111px;
        left: auto;
        right: -240px;
        bottom: 0;
        width: 240px;
        overflow-y: auto;
    }

    .shownav .nav {
        right: 0;
    }

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

    .shownav .main,
    .shownav .footer,
    .shownav .page>.infobar {
        transform: translate(-240px, 0);
        -moz-transform: translate(-240px, 0);
        -ms-transform: translate(-240px, 0);
        -webkit-transform: translate(-240px, 0);
    }

    .footer,
    .hovernav .footer,
    .listnav .footer,
    .rightnav .footer,
    .rightnav.hovernav .footer,
    .rightnav.listnav .footer {
        left: 30px;
        right: 30px;
    }

    .quick-access>li {
        min-width: 25%;
        max-width: 25%;
    }

    .loginpage .footer {
        left: 30px;
    }

    .loginpage .navigation {
        position: relative;
        width: 100%;
        height: 150px;
        margin: 30px 0;
    }

    .loginpage .logo {
        left: 0;
        width: 100%;
    }

    .loginform {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto;
        transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
    }

    .calendarholder>div {
        min-width: 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width:900px) {
    .row.narrow-m {
        margin-left: -9px;
        margin-right: -9px;
        padding-bottom: 12px;
    }

    .row.narrow-m>div {
        padding-left: 9px;
        padding-right: 9px;
        padding-bottom: 18px;
    }

    .row.tight-m {
        margin-left: -5px;
        margin-right: -5px;
        padding-bottom: 20px;
    }

    .row.tight-m>div {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 10px;
    }

    .row.nogap-m {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 30px;
    }

    .row.nogap-m>div {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .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;
    }

    .page,
    .hovernav .page,
    .listnav .page,
    .rightnav .page,
    .rightnav.hovernav .page,
    .rightnav.listnav .page {
        padding-left: 0;
        padding-right: 0;
    }

    .nav {
        background: #000;
    }

    .header {
        margin-left: 3px;
        margin-right: 3px;
        padding-top: 81px;
        padding-bottom: 42px;
    }

    .header .profile {
        position: absolute;
        top: 0;
        right: 78px;
    }

    #callnav {
        position: absolute;
        top: 0;
        right: 0;
    }

    .breadcrumb {
        flex: 1;
        justify-content: center;
    }

    .shownav .breadcrumb {
        transform: translate(-240px, 0);
        -moz-transform: translate(-240px, 0);
        -ms-transform: translate(-240px, 0);
        -webkit-transform: translate(-240px, 0);
    }

    .main>.bg {
        border-radius: 30px;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
    }

    .main>.bg:before {
        border-radius: 30px;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
    }

    .quick-access>li {
        min-width: 33.333333%;
        max-width: 33.333333%;
    }

    .floatbtn .pagebutton {
        right: 30px;
    }
}

@media only screen and (max-width:600px) {
    .row>div {
        padding-bottom: 1px;
    }

    .row.narrow-s {
        margin-left: -9px;
        margin-right: -9px;
        padding-bottom: 12px;
    }

    .row.narrow-s>div {
        padding-left: 9px;
        padding-right: 9px;
        padding-bottom: 18px;
    }

    .row.tight-s {
        margin-left: -5px;
        margin-right: -5px;
        padding-bottom: 20px;
    }

    .row.tight-s>div {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 10px;
    }

    .row.nogap-s {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 30px;
    }

    .row.nogap-s>div {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .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;
    }

    .pagebutton,
    .floatbtn .pagebutton {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 72px;
    }

    .row>div:has(.pagebutton) {
        padding-top: 44px;
    }

    .pagebutton button,
    .pagebutton .button {
        flex: 1;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

    .pagebutton .narrow {
        max-width: 45px;
    }

    .pagebutton button+button,
    .pagebutton button+.button,
    .pagebutton .button+button,
    .pagebutton .button+.button {
        margin-left: 0;
    }

    .page,
    .hovernav .page,
    .listnav .page,
    .rightnav .page,
    .rightnav.hovernav .page,
    .rightnav.listnav .page {
        padding-top: 0;
        padding-bottom: 72px;
    }

    .loginpage .page {
        padding-bottom: 150px;
    }

    #callnav {
        position: fixed;
        top: auto;
        right: 0;
        bottom: 5px;
    }

    #callnav span,
    #callnav span:before,
    #callnav span:after {
        background: #333;
    }

    .nav {
        top: 0;
        bottom: 63px;
        padding-top: 15px;
    }

    .shownav .footer {
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }

    .breadcrumb {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        text-align: center;
        transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
    }

    .breadcrumb i {
        transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
    }

    .header .profile {
        position: fixed;
        top: auto;
        left: 15px;
        right: auto;
        bottom: 5px;
    }

    .header .profile>a figure {
        border-radius: 6px;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    .header .profile>a figure i {
        background: transparent;
        color: #333;
    }

    .header .profile>ul {
        top: auto;
        right: auto;
        bottom: 100%;
        margin: 0 0 30px;
    }

    .header .profile.active>ul {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .header .profile>ul:before {
        top: auto;
        left: 18px;
        right: auto;
        bottom: -5px;
    }

    .footer {
        position: fixed;
        background: #fff;
        border-top: 1px solid #eee;
        display: block;
        height: 63px;
        padding: 0 30px;
        z-index: 2;
    }

    .footer,
    .hovernav .footer,
    .listnav .footer,
    .rightnav .footer,
    .rightnav.hovernav .footer,
    .rightnav.listnav .footer {
        left: 0;
        right: 0;
    }

    .footer p,
    .footer ul,
    .footer>a {
        display: none;
    }

    .loginpage .footer {
        position: absolute;
        left: 0;
        background: transparent;
        border-top: none;
        height: auto;
    }

    .loginpage .footer p {
        display: block;
        text-align: center;
    }

    .loginpage .footer ul {
        display: flex;
        justify-content: center;
    }

    .logo {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 6px;
        margin: 0 auto;
    }

    .loginpage .logo {
        position: absolute;
        bottom: auto;
    }

    .main {
        padding-left: 0;
        padding-right: 0;
    }

    .main>.bg,
    .main>.bg:before,
    .main>.bg:after {
        border-radius: 30px 30px 0 0;
        -moz-border-radius: 30px 30px 0 0;
        -webkit-border-radius: 30px 30px 0 0;
    }

    .main>h1 {
        font-size: 180%;
        width: 100%;
        padding: 15px 30px 30px;
    }

    .main>.headerform {
        margin-right: 30px;
    }

    .loginpage .main>.bg,
    .loginpage .main>.bg:before,
    .loginpage .main>.bg:after {
        border-radius: 30px;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
    }

    .content {
        border: none;
        padding: 30px;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

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

    .quick-access>li {
        min-width: 50%;
        max-width: 50%;
    }

    .loginform {
        padding: 30px;
    }

    .calendarholder>div {
        min-width: 100%;
        max-width: 100%;
    }

    .infobar tbody tr td:first-child {
        min-width: 100%;
    }

    .booklet {
        margin: 0 -30px;
    }

    .booklet .dataTables_filter {
        position: absolute;
        top: 14px;
        left: 30px;
        display: block;
        z-index: 2;
    }

    .booklet .dataTables_filter label {
        border: none;
        font-size: 0;
        padding: 0;
    }

    .booklet .dataTables_filter label input {
        font-size: 12px;
    }

    .booklet table,
    .booklet thead,
    .booklet tbody,
    .booklet tfoot {
        display: block;
    }

    .booklet table {
        border-bottom: 1px solid #eee;
    }

    .booklet tr {
        display: flex;
        flex-wrap: wrap;
    }

    .booklet thead tr:first-child,
    .booklet thead input,
    .booklet tfoot {
        display: none;
    }

    .booklet thead th {
        width: 100%;
        padding: 0;
    }

    .booklet thead .buttonholder {
        margin: 0;
        padding: 15px 30px;
    }

    .booklet table tbody tr {
        position: relative;
    }

    .booklet table tbody tr>* {
        height: auto;
    }

    .booklet table tbody tr>*:first-child {
        display: none;
    }

    .booklet table tbody tr>*:nth-child(2) {
        min-width: 40%;
        max-width: 40%;
        padding-left: 30px;
    }

    .booklet table tbody tr.success>*:nth-child(2):before,
    .booklet table tbody tr.warning>*:nth-child(2):before,
    .booklet table tbody tr.pending>*:nth-child(2):before,
    .booklet table tbody tr.error>*:nth-child(2):before,
    .booklet table tbody tr.expired>*:nth-child(2):before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        bottom: 0;
        display: block;
        width: 3px;
    }

    .booklet table tbody tr.success>*:nth-child(2):before {
        background: var(--c-dark);
    }

    .booklet table tbody tr.warning>*:nth-child(2):before {
        background: var(--r-dark);
    }

    .booklet table tbody tr.pending>*:nth-child(2):before {
        background: var(--u-dark);
    }

    .booklet table tbody tr.error>*:nth-child(2):before {
        background: var(--d-dark);
    }

    .booklet table tbody tr.expired>*:nth-child(2):before {
        background: #999;
    }

    .booklet table tbody tr>*:nth-child(3) {
        min-width: 30%;
        max-width: 30%;
    }

    .booklet table tbody tr>*:nth-child(4) {
        min-width: 30%;
        max-width: 30%;
        padding-right: 30px;
    }

    .booklet table tbody tr>*:nth-child(5) {
        border-top: none;
        min-width: 40%;
        max-width: 40%;
        padding-left: 30px;
    }

    .booklet table tbody tr.success>*:nth-child(5):before,
    .booklet table tbody tr.warning>*:nth-child(5):before,
    .booklet table tbody tr.pending>*:nth-child(5):before,
    .booklet table tbody tr.error>*:nth-child(5):before,
    .booklet table tbody tr.expired>*:nth-child(5):before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        bottom: 0;
        display: block;
        width: 3px;
    }

    .booklet table tbody tr.success>*:nth-child(5):before {
        background: var(--c-dark);
    }

    .booklet table tbody tr.warning>*:nth-child(5):before {
        background: var(--r-dark);
    }

    .booklet table tbody tr.pending>*:nth-child(5):before {
        background: var(--u-dark);
    }

    .booklet table tbody tr.error>*:nth-child(5):before {
        background: var(--d-dark);
    }

    .booklet table tbody .callLocation {
        display: block;
    }

    .booklet table tbody tr>*:nth-child(6) {
        border-top: none;
        min-width: 30%;
        max-width: 30%;
    }

    .booklet table tbody tr.expired>*:nth-child(5):before {
        background: #999;
    }

    .booklet table tbody tr>*:nth-child(7) {
        border-top: none;
        min-width: 30%;
        max-width: 30%;
    }

    .booklet table tbody tr>*:nth-child(8) {
        position: absolute;
        top: 0;
        right: 5px;
        padding: 0;
    }

    .booklet table tbody .buttonholder {
        width: 100%;
    }

    .booklet table tbody tr>.dataTables_empty {
        min-width: 100%;
        max-width: 100%;
    }

    .booklet table tbody .listing {
        overflow: hidden;
    }

    .booklet table tbody .listing li>* {
        overflow: hidden;
        text-align: left;
        text-overflow: ellipsis;
    }

    .dashboard_summary {
        border-bottom: 1px solid #f1f1f1;
        padding-top: 0;
    }
}

@media only screen and (max-width:400px) {
    .nav {
        right: -100%;
        width: 100%;
    }

    .shownav .breadcrumb,
    .shownav .main,
    .shownav .page>.infobar {
        transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
    }
}