/* 【声明】
 *  作者 @author: Hardys Hu <hardys1206@gmail.com>
 *  版权 @copyright: Hardys Hu, 该代码和知识产权于2019年6月完成发表和声明。
 *  授权 @authorization: 未经原作者书面授权不可修改、署名、再转发或用作商业用途。
 */

/* Class Naming
 *
 * Component CSS Class: use dash "-" as connector
 * Page CSS Class: use underline "_" as connector
 * JS Class: use "js-" as the class starter
 */

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #f6f6f6 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #f6f6f6;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.grayscale-100 {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}

::placeholder {
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    color: var(--disable-color);
}

a {
    color: var(--content-color);;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: .8;
    color: var(--sub-color);
    transition-duration: .5s;
    transition: .6s ease all;
}

body {
    margin : 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    background-color: #fafafa;
}

.H-rating-edit {width: fit-content; padding: 10px 15px 10px 0;}
.H-rating-edit:hover {
    cursor: pointer;
}

.H-slider ul, .H-slider ol, .H-select ul, .H-select ol {
    list-style-type: none;
}

form .H-select {
    width: 96%;
    padding: 8px 2%;
    border: 1px solid #ddd;
    margin-bottom: 6px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: inset 0 -1px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
    -moz-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
}

form .H-select-input-text {
    padding: 0;
}

form .H-select .H-select-current {
    min-height: 23px;
}

form .H-media {
    margin-bottom: 20px;
    margin-top: 10px;
}

#header {
    top: 0;
    width: 90%;
    z-index: 1000;
    position: fixed;
    min-height: 46px;
    padding: 10px 5% 5px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--line-color);
    box-shadow: 0px 1px 10px 2px #eee;
}

#logo {
    height: 26px;
    padding: 8px 10px 4px;
    vertical-align: middle;
    cursor: pointer;
}

#footer {
    color: #888;
    width: 90%;
    bottom: 0;
    z-index: 100;
    font-size: 14px;
    font-weight: 200;
    padding: 25px 5%;
    margin-bottom: 0;
    position: relative;
    background-color: var(--bg-color);
    border-top: 1px solid var(--line-color);
    box-shadow: -1px -3px 15px 1px #eee;
}

#footer-container {
    line-height: 20px;
}

.powered-info {
    width: 200px;
    color: #b5b2b2;
    margin: 100px auto 20px;
    font-size: 14px;
    font-weight: 200;
    font-style: italic;
}

/* Loading */
.loading {
    top: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    margin: auto;
    transform: translateY(-50%);
}

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

.loading-circle {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    position: absolute;
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 2s linear infinite;
    transform-origin: center center;
    -ms-transform-origin: center center;
    -webkit-transform-origin: center center;
}       

.loading-path {
    stroke-dasharray: 150,200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
            animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -124;
    }
}

@-webkit-keyframes dash {
    0% {
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -124;
    }
}

@keyframes color {
    0% {
      stroke: #888;
    }
    40% {
      stroke: #888;
    }
    66% {
      stroke: #888;
    }
    80%, 90% {
      stroke: #888;
    }
}

@-webkit-keyframes color {
    0% {
      stroke: #888;
    }
    40% {
      stroke: #888;
    }
    66% {
      stroke: #888;
    }
    80%, 90% {
      stroke: #888;
    }
}

/* Reviews */
.review-star {
    width: 25px;
    height: 25px;
}

/* Message */
.message_wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 1000;
    transform: translateX(-50%);
}

.H-icon {
    width: 18px;
    height: 18px;
    background-color: var(--icon-color);
}

.H-message {
    display: flex;
    cursor: pointer;
    width: fit-content;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px 15px;
    align-items: center;
    border-radius: 50px;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.H-message-text {
    margin-left: 8px;
}

.H-message-confirm,
.H-message-error,
.H-message-warning {
    width: 20px;
    height: 20px;
}

.H-message-confirm {
    -webkit-mask: url(/res/confirm.svg) no-repeat center;
    mask: url(/res/confirm.svg) no-repeat center;
}

.H-message-warning {
    -webkit-mask: url(/res/attention.svg) no-repeat center;
    mask: url(/res/attention.svg) no-repeat center;
}

.H-message-error {
    -webkit-mask: url(/res/stop.svg) no-repeat center;
    mask: url(/res/stop.svg) no-repeat center;
}

/* Hightlight card */
.H-highlight-card {
    margin-top: 2px;
    width: fit-content;
    height: fit-content;
    padding: 10px 15px;
    line-height: 24px;
    position: relative;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.H-highlight-line {
    margin-top: 10px;
    width: 100%;
    height: fit-content;
}

.H-highlight-bar {
    height: 5px;
    margin-top: 10px;
    border-radius: 50px;
}

.H-highlight-count {
    margin: 0 0 0 auto;
    width: fit-content;
}

.H-highlight-content {
    font-size: 1.3em;
    margin-top: 10px;
}

/* Tip */
.H-tip {
    display: none;
    position: absolute;
    z-index: 999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    background-image: linear-gradient(to right, #fafafa, var(--bg-color));
    box-shadow: 4px 2px 5px 2px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 4px 2px 5px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 4px 2px 5px 2px rgb(0 0 0 / 5%);
}

.H-tip-right,
.H-tip-left {
    position: absolute;
	top: 10px;
	width: 0;
    height: 0;
}

.H-tip-right {
	display: block;
    right: -8px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid var(--bg-color);
}

.H-tip-left {
    left: -8px;
	display: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid var(--bg-color);
}


/* H-extend */
.H-extend-holder {
    width: 50px;
    height: 50px;
}

.H-extend-wrapper {
    left: 0;
    top: 0;
    padding: 5px;
    z-index: 999;
    position: absolute;
    width: fit-content;
    height: fit-content;
    border: 1px solid var(--line-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}

.H-extend-fold-input {
    position: absolute;
}

.H-extend-fold-label {
    margin: 0;
    max-width: 400px;
}

.H-extend-fold-icon {
    opacity: .8;
    width: 20px;
    height: 20px;
    padding: 2px;
    cursor: pointer;
    background-color: var(--icon-color);
    -webkit-mask: url(/res/filter.svg) no-repeat center;
    mask: url(/res/filter.svg) no-repeat center;
}

.H-extend-title  {
    display: none;
    margin-left: 5px;
}

.H-extend {
    height: 0;
    width: 25px;
    border-top: 1px solid var(--line-color);
    margin: 8px 10px;
    display: none;
    max-width: 400px;
    overflow: hidden;
}

.H-extend-fold-input:checked ~ .H-extend {
    display: inline-block;
    width: fit-content;
    height: fit-content;
    padding: 8px 15px;
    overflow: visible;
    transition: width .3s linear;
    -webkit-transition: width .3s linear;
}

.H-extend-fold-input:checked + .H-extend-fold-label .H-extend-title {
    display: block;
    transition: .6s ease;
    -webkit-transition: .6s ease;
}

/* Drawer */
.H-drawer {
    width: 300px;
    height: 100%;
    transform: translateX(0);
    transition: width .4s linear;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-drawer-wrapper {
    display: flex;
}
.H-drawer-icon {
    top: 0;
    z-index: 9;
    float: right;
    display: block;
    position: relative;
    width: fit-content;
    height: fit-content;
}

.H-drawer-expand, .H-drawer-close {
    cursor: pointer;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin: 10px;
    background-color: var(--icon-color);
}

.H-drawer-expand {
    -webkit-mask: url(/res/expandArrow.svg) no-repeat center;
    mask: url(/res/expandArrow.svg) no-repeat center;
}

.H-drawer-close {
    -webkit-mask: url(/res/close.svg) no-repeat center;
    mask: url(/res/close.svg) no-repeat center;
}

.H-drawer-content {
    opacity: 1;
    width: 265px;
    position: relative;
    padding: 40px 15px 10px;
    transition-delay: .6s;
}

.H-drawer-close:hover, .H-drawer-expand:hover {
    opacity: .8;
    transition: .4s ease;
    background-color: var(--sub-color);
}

.H-drawer-input:checked ~ .H-drawer {
    width: 0;
    transition: width .4s linear;
    box-shadow: unset;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
}

.H-drawer-input:checked + .H-drawer .H-drawer-icon {
    display: none;
    transition: .6s ease;
}

.H-drawer-input:checked + .H-drawer .H-drawer-content {
    opacity: 0;
    transition-delay: 0s;
}

/* Breadcrumb */
.H-breadcrumb-item {
    color: var(--content-color);
    padding: 0 10px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.H-breadcrumb-item:hover {
    opacity: .6;
    transition-duration: 1s;
}

.H-breadcrumb-slash {
    color: #888;
    margin: 0 2px;
    font-size: 18px;
}

/* Radio CSS */
.H-radio-label {
    margin: 8px 0;
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.H-radio-label:hover,
.H-radio-label:focus-within {
    background: rgba(0, 0, 0, 0.05);
}
  
.H-radio-label input[type=radio] {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1px #9F9F9F;
    box-shadow: inset 0 0 0 1.5px #9F9F9F;
    appearance: none;
    padding: 0;
    margin: 0;
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    pointer-events: none;
}
 
.H-radio-label input[type=radio]:focus {
    outline: none;
}

.H-radio-label input[type=radio]:checked {
    box-shadow: inset 0 0 0 6px var(--sub-color);
}

.H-radio-label span {
    color: var(--text-color);
    font-size: 16px;
    padding: 0 8px;
    line-height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Checkbox CSS */
.H-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 1.75rem;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.H-checkbox-input {
    opacity: 0;
    position: absolute;
}

.H-checkbox-input:checked ~ .H-checkbox-cube {
    color: #FFFFFF;
    transition: .6s ease;
    border: 2px solid var(--sub-color);
    background: var(--sub-color) url('/res/check_white.svg') 50% 50% no-repeat;
}

.H-checkbox-cube {
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 3px;
    position: absolute;
    background-color: var(--bg-color);
    border: 2px solid var(--shadow-color);
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.H-checkbox-text {
    color: var(--content-color);
    margin-left: 5px;
    font-weight: 300;
}

/* Toggle CSS */
input[type=checkbox] {
    width: 0;
	height: 0;
    margin: 0;
	visibility: hidden;
}

.H-toggle {
    display: flex;
    align-items: center;
}

.H-toggle-label {
    width: 36px;
	height: 20px;
    display: block;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 50px;
	position: relative;
    align-self: center;
	text-indent: -999px;
    background: var(--disable-color);
}

.H-toggle-label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 40px;
	transition: 0.3s;
}

input[type=checkbox]:checked + .H-toggle-label {
	background: var(--sub-color);
}

input[type=checkbox]:checked + .H-toggle-label:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.H-toggle-label:active:after {
	width: 50px;
}

/* Input CSS */
input[type=text],
input[type=number],
input[type=password] {
    color: var(--text-color);
    width: 98%;
    margin-right: 2%;
    height: 38px;
    padding: 0 2%;
    border-radius: var(--border-radius);
    border: 1px solid #dcdcdc;
    background-color: var(--bg-color);
    box-shadow: inset 0 -1px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
    -moz-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
}

input[type=text]:active,
input[type=time]:active,
input[type=number]:active,
input[type=password]:active,
input[type=text]:focus,
input[type=time]:focus,
input[type=number]:focus,
input[type=password]:focus {
    outline: none;
    border: 1px solid var(--sub-color);
    border-color: var(--sub-color);
}
.H-label {
    line-height: 30px;
}
.H-input {
    margin: 5px 0;
}

/* Select */
.H-select {
    color: var(--content-color);
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    font-family: "Open Sans", "Helvetica Neue", "Segoe UI", "Calibri", "Arial", sans-serif;
}

.H-select-current {
    position: relative;
    cursor: pointer;
    outline: none;
    min-height: 40px;
    background-color: var(--bg-color);
    box-shadow: 0 15px 30px -10px #f6f6f6;
}

.H-selector-holder {
    height: 39px;
    min-width: 130px;
    border: 1px solid #ddd;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: inset 0 -1px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
    -moz-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
}
.H-search .H-select .H-select-current {
    line-height: 40px;
    background-color: transparent;
}

.H-select-value {
    display: flex;
}
  
.H-select-input {
    display: none;
}

.H-select-input-text {
    margin: 0;
    width: 100%;
    display: none;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
}
.H-select-deselect {
    position: absolute;
    top: 50%;
    z-index: 9;
    right: 8px;
    height: 15px;
    width: 15px;
    opacity: 1;
    padding: 2px;
    border-radius: 50px;
    transform: translateY(-50%);
    background-color: var(--disable-color);
}
.H-select-deselect:hover {
    cursor: pointer;
    transition: .6s ease;
    background-color: var(--icon-color);
}
.H-select-deselect-icon {
    width: 15px;
    height: 15px;
    background-color: #fff;
    mask: url(/res/close.svg) no-repeat center;
    -webkit-mask: url(/res/close.svg) no-repeat center;
}
.H-select-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    height: 15px;
    width: 15px;
    opacity: 0.3;
    transition: 0.2s ease;
    transform: translateY(-50%);
    background-color: var(--text-color);
    -webkit-mask: url(/res/arrow.svg) no-repeat center;
    mask: url(/res/arrow.svg) no-repeat center;
}

.H-select-list {
    position: absolute;
    height: 0;
    top: 45px;
    width: 100%;
    padding: 0;
    z-index: 999;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    list-style: none;
    overflow-y: auto;
    max-height: 500px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.H-select-option {
    display: flex;
    padding: 15px;
    background-color: var(--bg-color);
}
.H-select-option-disable {
    color: #888;
    background-color: #efefef;
}
.H-select-option-disable:hover {
    cursor: not-allowed;
}
.H-select-option-image {
    margin-left: 5px;
    max-width: 25px;
    max-height: 25px;
    margin-right: 15px;
    vertical-align: middle;
}
.H-select-list li:first-child label {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.H-select-list li:last-child label {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.H-select-option:hover, .H-select-option:focus {
    color: var(--sub-color);
    background-color: #fbfbfb;
}

.H-select-current:focus + .H-select-list {
    height: auto;
    transform: translateY(0);
    transition: .4s ease;
}

.H-select-list:hover {
    height: auto;
    transform: translateY(0);
    transition: .4s ease;
}

.H-select-current:focus + .H-select-list .H-select-option {
    cursor: pointer;
}

.H-select-current:focus .H-select-icon {
    transform: translateY(-50%) rotate(180deg);
}

.H-select-input:checked + .H-select-input-text {
    display: block;
}

.H-multiSelect {
    width: 100%;
    height: 38px;
    position: relative;
    color: var(--disable-color);
    border: 1px solid #dcdcdc;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: inset 0 -1px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 -1px 5px 2px rgb(0 0 0 / 5%) inset;
    -moz-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
}
.H-multiSelect-label {
    top: 0;
    width: 100%;
    display: flex;
    cursor: pointer;
    position: absolute;
}
.H-multiSelect-text {
    height: 25px;
    display: flex;
    margin: 8px 15px;
    overflow: hidden;
}
.H-multiSelect-option {
    display: flex;
}
.H-multiSelect-option:hover {
    cursor: pointer;
    color: var(--sub-color);
    background-color: #fbfbfb;
}
.H-multiSelect-input:checked ~ .H-select-list {
    height: fit-content;
}
.H-multiSelect-input:checked + .H-multiSelect-label > .H-select-icon {
    transform: translateY(-50%) rotate(180deg);
}
.H-multiSelect-check {
    cursor: pointer;
    display: none;
    width: 20px;
    height: 20px;
    margin: 15px;
    background-color: var(--sub-color);
    -webkit-mask: url(/res/check.svg) no-repeat center;
    mask: url(/res/check.svg) no-repeat center;
}
.H-multiSelect-optionInput:checked ~ .H-multiSelect-check {
    display: block;
}
.H-multiSelect-optionLabel {
    width: 100%;
    margin: 5px 15px;
    cursor: pointer;
    line-height: 40px;
}
.H-multiSelect-optionInput:checked + .H-multiSelect-optionLabel {
    color: var(--sub-color);
}

/* Search Box */
.H-search {
    color: var(--content-color);
    height: 28px;
    display: flex;
    padding: 5px 14px;
    border-radius: 50px;
    align-items: center;
    border: 1px solid #dcdcdc;
    background-color: var(--bg-color);
    box-shadow: inset 0 -1px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 -1px 5px 2px rgb(0 0 0 / 5%) inset;
    -moz-box-shadow: 0 -1px 5px 2px rgba(0, 0, 0, 0.05) inset;
}

.H-search-list {
    width: max-content;
}

.H-search-dropdown {
    left: -15px;
}

.H-search-select-icon {
    right: -20px;
    width: 12px;
}

.H-search-current {
    width: max-content;
    background-color: transparent;
}

.H-search-option {
    padding: 8px 15px;
}

.H-search-input, .H-search-input:active, .H-search-input:focus {
    padding: 0 !important;
    height: 100% !important;
    outline: none;
    min-width: 100px;
    font-size: 16px;
    margin-left: 30px;
    border: none !important;
    box-shadow: none !important;
    background-color: transparent;
}

.H-search-menu {
    position: absolute;
}

.H-search-icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    background-color: var(--icon-color);
    -webkit-mask: url(/res/search.svg) no-repeat center;
    mask: url(/res/search.svg) no-repeat center;
}

/* Card CSS */
.H-card {
    padding: 15px;
    width: 250px;
    height: 120px;
    min-width: 250px;
    min-height: 100px;
    max-height: 200px;
}

.H-image-card, .H-image-list {
    width: 100%;
    padding: 0;
    display: block;
}

.H-image-list {
    width: 100%;
    min-height: 50px;
    max-height: 200px;
}
.H-image-list-left {
    max-width: 50%;
    margin: 15px 10px;
}
.H-image-list-right {
    width: 100%;
    text-align: left;
    align-items: end;
    margin: 15px 10px;
    display: inline-grid;
}
.H-card,
.H-image-card, .H-image-list {
    border-radius: var(--border-radius);
    cursor: pointer;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.H-card-top {
    width: 100%;
}

.H-card-bottom {
    width: 90%;
    margin: 20px 5%;
    display: inline-grid;
    background-color: var(--bg-color);
}

.H-card-image {
    width: 60px;
    height: 60px;
    object-fit: scale-down;
    overflow: hidden;
}

.H-image-card-image {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.H-card-title, .H-image-card-title {
    float: right;
    margin: 0;
    padding-right: 5px;
    overflow: hidden;
}

.H-card-title {
    max-width: 170px;
}

.H-image-card-title {
    max-width: 100%;
}

.H-card-info {
    color: #888;
    margin-top: 15px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 200;
    font-style: italic;
    min-height: 32px;
}

/* Button CSS */
.H-button {
    gap: 5px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 45px;
    display: flex;
    margin-top: 20px;
    margin-right: 10px;
    background-color: black;
    border: 1px solid black;
    border-radius: 50px;
    padding: 10px 25px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.H-button:hover {
    opacity: .6;
    transition-duration: .8s;
}

.H-button-icon-text {
    margin-left: 5px;
    font-size: 16px;
}

/* Icon Buttons */
.ver_line {
    height: 20px;
    margin: 10px 20px 0;
    border-right: 1px solid #ddd;
}

.db-tips {
    max-width: 350px;
    line-height: 28px;
}

.disabled-button {
    background: #f2f2f2;
    opacity: 0.8;
    cursor: not-allowed;
}
.disabled-button > div {
    cursor: not-allowed;
}

.H-dbDrag-placeholder {
    height: 32px;
    background-color: #efefef;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius);
}

.data-close, .data-check, .data-confirm, .data-link, .data-stop, .data-info, .data-add, .data-minus, .data-search, .data-edit, .data-delete, .data-import, .data-export, .data-print, .data-db, .data-setting, .data-ellipsis, .data-reset, .data-uploadCloud, .data-compress, .data-expand, .data-hamburger {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: var(--icon-color);
}
.data-close:hover, .data-check:hover, .data-confirm:hover, .data-link:hover, .data-stop:hover, .data-info:hover, .data-add:hover, .data-minus:hover, .data-search:hover, .data-reset:hover, .data-uploadCloud:hover,
.data-edit:hover, .data-delete:hover, .data-setting:hover, .data-ellipsis:hover, .data-import:hover, .data-export:hover, .data-print:hover, .data-db:hover, .data-hamburger:hover {
    opacity: .8;
    transition: .6s ease;
    background-color: var(--sub-color);
}
.data-copy, .data-excel, .data-file, .data-csv, .data-pdf {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: var(--bg-color);
}
.data-top, .data-middle, .data-bottom, .data-left, .data-center, .data-right {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: var(--bg-color);
}
.data-top:hover, .data-middle:hover, .data-bottom:hover, .data-left:hover, .data-center:hover, .data-right:hover {
    opacity: .8;
    transition: .6s ease;
    background-color: var(--sub-color);
}
.data-close {
    -webkit-mask: url(/res/close.svg) no-repeat center;
    mask: url(/res/close.svg) no-repeat center;
}
.data-check {
    -webkit-mask: url(/res/check.svg) no-repeat center;
    mask: url(/res/check.svg) no-repeat center;
}
.data-confirm {
    -webkit-mask: url(/res/confirm.svg) no-repeat center;
    mask: url(/res/confirm.svg) no-repeat center;
}
.data-link {
    -webkit-mask: url(/res/link.svg) no-repeat center;
    mask: url(/res/link.svg) no-repeat center;
}
.data-stop {
    -webkit-mask: url(/res/stop.svg) no-repeat center;
    mask: url(/res/stop.svg) no-repeat center;
}
.data-info {
    -webkit-mask: url(/res/info.svg) no-repeat center;
    mask: url(/res/info.svg) no-repeat center;
}
.data-search {
    -webkit-mask: url(/res/search.svg) no-repeat center;
    mask: url(/res/search.svg) no-repeat center;
}
.data-add {
    -webkit-mask: url(/res/plusCircle.svg) no-repeat center;
    mask: url(/res/plusCircle.svg) no-repeat center;
}
.data-minus {
    -webkit-mask: url(/res/minusCircle.svg) no-repeat center;
    mask: url(/res/minusCircle.svg) no-repeat center;
}
.data-edit {
    background-color: var(--warning-color);
    -webkit-mask: url(/res/edit.svg) no-repeat center;
    mask: url(/res/edit.svg) no-repeat center;
}
.data-delete {
    background-color: var(--error-color);
    -webkit-mask: url(/res/delete.svg) no-repeat center;
    mask: url(/res/delete.svg) no-repeat center;
}
.data-import {
    -webkit-mask: url(/res/upload.svg) no-repeat center;
    mask: url(/res/upload.svg) no-repeat center;
}
.data-export {
    -webkit-mask: url(/res/export.svg) no-repeat center;
    mask: url(/res/export.svg) no-repeat center;
}
.data-print {
    -webkit-mask: url(/res/printer.svg) no-repeat center;
    mask: url(/res/printer.svg) no-repeat center;
}
.data-db {
    -webkit-mask: url(/res/database.svg) no-repeat center;
    mask: url(/res/database.svg) no-repeat center;
}
.data-setting {
    -webkit-mask: url(/res/setting.svg) no-repeat center;
    mask: url(/res/setting.svg) no-repeat center;
}
.data-ellipsis {
    -webkit-mask: url(/res/ellipsis.svg) no-repeat center;
    mask: url(/res/ellipsis.svg) no-repeat center;
}
.data-reset {
    -webkit-mask: url(/res/spin.svg) no-repeat center;
    mask: url(/res/spin.svg) no-repeat center;
}
.data-uploadCloud {
    -webkit-mask: url(/res/uploadCloud.svg) no-repeat center;
    mask: url(/res/uploadCloud.svg) no-repeat center;
}
.data-copy {
    -webkit-mask: url(/res/paste.svg) no-repeat center;
    mask: url(/res/paste.svg) no-repeat center;
}
.data-csv {
    -webkit-mask: url(/res/table.svg) no-repeat center;
    mask: url(/res/table.svg) no-repeat center;
}
.data-excel {
    -webkit-mask: url(/res/excel.svg) no-repeat center;
    mask: url(/res/excel.svg) no-repeat center;
}
.data-file {
    -webkit-mask: url(/res/fileEmpty.svg) no-repeat center;
    mask: url(/res/fileEmpty.svg) no-repeat center;
}
.data-pdf {
    -webkit-mask: url(/res/pdf.svg) no-repeat center;
    mask: url(/res/pdf.svg) no-repeat center;
}
.data-compress {
    -webkit-mask: url(/res/compress.svg) no-repeat center;
    mask: url(/res/compress.svg) no-repeat center;
}
.data-expand {
    -webkit-mask: url(/res/expand.svg) no-repeat center;
    mask: url(/res/expand.svg) no-repeat center;
}
.data-hamburger {
    -webkit-mask: url(/res/hamburger.svg) no-repeat center;
    mask: url(/res/hamburger.svg) no-repeat center;
}
.data-loading {
    min-width: 20px;
    min-height: 20px;
    background-color: var(--bg-color);
    -webkit-mask: url(/res/reload.svg) no-repeat center;
    mask: url(/res/reload.svg) no-repeat center;
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 2s linear infinite;
    transform-origin: center center;
    -ms-transform-origin: center center;
    -webkit-transform-origin: center center;
}
.data-top {
    -webkit-mask: url(/res/alignTop.svg) no-repeat center;
    mask: url(/res/alignTop.svg) no-repeat center;
}
.data-middle {
    -webkit-mask: url(/res/alignMiddle.svg) no-repeat center;
    mask: url(/res/alignMiddle.svg) no-repeat center;
}
.data-bottom {
    -webkit-mask: url(/res/alignBottom.svg) no-repeat center;
    mask: url(/res/alignBottom.svg) no-repeat center;
}
.data-left{
    -webkit-mask: url(/res/positionLeft.svg) no-repeat center;
    mask: url(/res/positionLeft.svg) no-repeat center;
}
.data-center {
    -webkit-mask: url(/res/positionCenter.svg) no-repeat center;
    mask: url(/res/positionCenter.svg) no-repeat center;
}
.data-right {
    -webkit-mask: url(/res/positioRight.svg) no-repeat center;
    mask: url(/res/positioRight.svg) no-repeat center;
}

/* Media */
.H-media {
    width: 100px;
    height: 120px;
    position: relative;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.H-media-icon {
    display: none;
    bottom: -10px;
    padding: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50px;
    position: absolute;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-media-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--shadow-color);
    border-radius: var(--border-radius);
}

.H-media-hasContent {
    background: var(--shadow-color);
}
.H-media img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.H-media-data-image {
    max-width: 60px;
    max-height: 60px;
    margin: 0 auto;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.H-media-hasContent:hover ~ .H-media-icon, .H-media-icon:hover {
    display: block;
    transition: .6s ease;
}
.H-media-center {
    top: 50%;
    width: fit-content;
    height: fit-content;
    opacity: .8;
    margin: 0 auto;
    position: relative;
    text-align: center;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.H-media .data-uploadCloud, .H-media .data-pdf, .H-media .data-excel, .H-media .data-file {
    width: 30px;
    height: 30px;
    margin: 0 auto 5px;
    background-color: var(--icon-color);
}
.H-media .data-uploadCloud:hover, .H-media .data-pdf:hover, .H-media .data-excel:hover, .H-media .data-file:hover {
    opacity: .8;
    transition: .6s ease;
    background-color: var(--sub-shadow-color);
}
.H-media-uploadInput {
    display: none;
}
.H-media-center label, .H-media-center span {
    color: #666;
    cursor: pointer;
    font-size: 14px;
}
.H-media button {
    height: 25px;
    font-size: 14px;
    margin: 10px auto;
    padding: 5px 12px 7px;
}
.H-media-edit {
    right: 25px;
}
.H-media-delete {
    right: -10px;
}

/* Table CSS */
.H-table {
    color: var(--content-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 200;
    text-align: left;
    z-index: 9;
    border-collapse: collapse;
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-table-row-head {
    color: #fff;
    background-color: #222;
}
.H-table-row-head > th {
    font-weight: 400;
}
.H-table-row-head:first-child > th:first-child {
    border-top-left-radius: 6px;
}
.H-table-row-head:first-child > th:last-child {
    border-top-right-radius: 6px;
}
.H-table-row-head > th:first-child {
    padding-left: 20px;
}
.H-table-row-head > th:last-child {
    padding-right: 20px;
}
.H-table-row-head > th,
.H-table-row > td {
    padding: 10px 15px;
    border: none;
}
.H-table-row {
    color: var(--content-color);
    font-weight: 200;
}
.H-table-row > td:first-child {
    padding-left: 20px;
}
.H-table-row > td:last-child {
    padding-right: 20px;
}
.H-table-row:last-child > td:first-child {
    border-bottom-left-radius: 6px;
}
.H-table-row:last-child > td:last-child {
    border-bottom-right-radius: 6px;
}
.H-table-row:nth-child(even) {
    background-color: #f6f6f6;
}
.H-table-row:nth-child(odd) {
    background-color: var(--bg-color);
}
.H-table-icon {
    width: 30px;
    height: 30px;
    margin: auto;
}

/* Menu CSS */
/* 
menu
menu-item-wrapper
- menu-item top-menu [menu-item-link]
    sub-menu
    - sub-menu-item menu-option [menu-option-link]
    - sub-menu-item menu-option [menu-option-link]
*/
.H-menu {
    color: var(--text-color);
    font-size: 18px;
}

.menu-item-wrapper {
    margin: 0;
    padding: 5px;
    display: flex;
    justify-content: space-around;
}

.menu-item-wrapper:hover > li:first-child > a,
.menu-item-wrapper:focus-within > li:first-child > a {
    opacity: 0.6;
}

.top-menu:first-child > a {
    opacity: 1;
}

.top-menu:last-child:after {
    content: "";
    position: absolute;
    top: 2px;
    width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    bottom: -5px;
    margin-right: -55%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    z-index: 0;
    transition: 350ms cubic-bezier(1, 0.49, 0.09, 1.29) all;
    pointer-events: none;
}

.menu-item,
.sub-menu-item {
    flex: 1 1 0;
    padding: 5px 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-menu-item {
  padding: 5px 0 0 10px;
  align-items: right;
}

.menu-item-link {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
    opacity: 0.7;
    transition: 250ms ease all;
}

.menu-item-link:hover {
    opacity: 0.6;
    text-decoration: none;
}

.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 20px;
    width: max-content;
    visibility: hidden;
}

.menu-option {
    display: block;
    z-index: 999;
    margin-top: 0px;
    transition: 250ms cubic-bezier(0.42, 0.83, 0.49, 1.35) transform;
    transform: scale(0);
}

.menu-option-link {
    display: block;
    text-align: center;
    border-radius: 0.2rem;
    font-size: 14px;
    padding: 5px 15px;
    background: var(--bg-color);
    transition: 250ms ease all;
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.menu-option-link:hover,
.menu-option-link:focus,
.menu-option-link:focus-within {
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 0 0 3rem rgba(0, 0, 0, 0.9);
}

.top-menu:hover > a,
.top-menu:focus > a,
.top-menu:focus-within > a {
    opacity: 1 !important;
}

.top-menu:hover > ol,
.top-menu:focus > ol,
.top-menu:focus-within > ol {
    visibility: visible;
}

.top-menu:hover > ol > li,
.top-menu:focus > ol > li,
.top-menu:focus-within > ol > li {
    transform: scale(1);
}

.top-menu:hover > ol > li:nth-child(1),
.top-menu:focus > ol > li:nth-child(1),
.top-menu:focus-within > ol > li:nth-child(1) {
    transition-delay: 100ms;
}

.top-menu:hover > ol > li:nth-child(2),
.top-menu:focus > ol > li:nth-child(2),
.top-menu:focus-within > ol > li:nth-child(2) {
    transition-delay: 200ms;
}

.top-menu:hover > ol > li:nth-child(3),
.top-menu:focus > ol > li:nth-child(3),
.top-menu:focus-within > ol > li:nth-child(3) {
    transition-delay: 300ms;
}

.top-menu:hover > ol > li:nth-child(4),
.top-menu:focus > ol > li:nth-child(4),
.top-menu:focus-within > ol > li:nth-child(4) {
    transition-delay: 400ms;
}

.top-menu:hover > ol > li:nth-child(5),
.top-menu:focus > ol > li:nth-child(5),
.top-menu:focus-within > ol > li:nth-child(5) {
    transition-delay: 500ms;
}

.top-menu:hover > ol > li:nth-child(6),
.top-menu:focus > ol > li:nth-child(6),
.top-menu:focus-within > ol > li:nth-child(6) {
    transition-delay: 600ms;
}

.top-menu:hover > ol > li:nth-child(7),
.top-menu:focus > ol > li:nth-child(7),
.top-menu:focus-within > ol > li:nth-child(7) {
    transition-delay: 700ms;
}

.top-menu:hover > ol > li:nth-child(8),
.top-menu:focus > ol > li:nth-child(8),
.top-menu:focus-within > ol > li:nth-child(8) {
    transition-delay: 800ms;
}

.top-menu:hover > ol > li:nth-child(9),
.top-menu:focus > ol > li:nth-child(9),
.top-menu:focus-within > ol > li:nth-child(9) {
    transition-delay: 900ms;
}

.top-menu:hover > ol > li:nth-child(10),
.top-menu:focus > ol > li:nth-child(10),
.top-menu:focus-within > ol > li:nth-child(10) {
    transition-delay: 1000ms;
}

.top-menu:first-child:nth-last-child(1) ~ li:last-child:after {
    right: 50%;
}

.top-menu:first-child:nth-last-child(2) ~ li:last-child:after {
    right: 150%;
}

.top-menu:first-child:nth-last-child(3) ~ li:last-child:after {
    right: 200%;
}

.top-menu:first-child:nth-last-child(4) ~ li:last-child:after {
    right: 250%;
}

.top-menu:first-child:first-child:nth-last-child(4):hover ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(4):focus ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(4):focus-within ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(4):hover ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(4):focus ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(4):focus-within ~ li:last-child:after {
    right: 250%;
}

.top-menu:first-child:first-child:nth-last-child(3):hover ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(3):focus ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(3):focus-within ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(3):hover ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(3):focus ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(3):focus-within ~ li:last-child:after {
    right: 200%;
}

.top-menu:first-child:first-child:nth-last-child(2):hover ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(2):focus ~ li:last-child:after,
.top-menu:first-child:first-child:nth-last-child(2):focus-within ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(2):hover ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(2):focus ~ li:last-child:after,
.top-menu:first-child:first-child ~ li:nth-last-child(2):focus-within ~ li:last-child:after {
    right: 150%;
}

.top-menu:first-child:first-child:last-child:hover:after,
.top-menu:first-child:first-child:last-child:focus:after,
.top-menu:first-child:first-child:last-child:focus-within:after,
.top-menu:first-child:first-child ~ li:last-child:hover:after,
.top-menu:first-child:first-child ~ li:last-child:focus:after,
.top-menu:first-child:first-child ~ li:last-child:focus-within:after {
    right: 50%;
}

/* Side Menu */
.H-slider-wrapper {
    width: fit-content;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-slider-fold-input {
    position: absolute;
}
.H-slider-fold-label {
    width: 35px;
    margin: 0;
    max-width: 400px;
}
.H-slider-fold-icon {
    opacity: .8;
    width: 24px;
    height: 24px;
    margin: 30px 15px;
    cursor: pointer;
    background-color: var(--content-color);
    border-bottom: 1px solid var(--line-color);
}
.H-slider {
    width: 35px;
    margin: 0;
    max-width: 400px;
    padding: 20px 10px 100px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.H-slider-fold-input:checked ~ .H-slider {
    width: 265px;
    overflow: visible;
    transition: width .3s linear;
    -webkit-transition: width .3s linear;
}
.H-slider-fold-input:checked ~ .H-slider .H-slider-title {
    opacity: 1;
    width: auto;
    max-width: 200px;
    transform: translateY(0);
    transition: .6s ease;
    transition-delay: 300ms;
}
.H-slider-fold-input:checked ~ .H-slider .H-slider-subicon {
    opacity: 1;
    transition: .6s ease;
    transition-delay: 300ms;
    transform: rotate(180deg);
}
.H-slider-menu,
.H-slider-menu-row {
    outline: 0;
    margin: 10px 0 0;
    padding: 0;
}
.H-slider-item {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.H-slider-icon {
    position: relative;
    display: table-cell;
    opacity: .8;
    width: 24px;
    height: 24px;
    margin: 12px 5px 15px;
    text-align: center;
    vertical-align: middle;
}
.H-slider-title {
    width: 0;
    left: 36px;
    opacity: 0;
    color: var(--text-color);
    margin: 12px 0 15px;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    vertical-align: middle;
    overflow-x: hidden;
}
.H-slider-subicon {
    opacity: 0;
    right: 0;
    width: 15px;
    height: 20px;
    margin: 15px 10px;
    cursor: pointer;
    position: absolute;
}
.H-slider-item:hover {
    opacity: .8;
    transition: .4s ease;
}
.H-slider-submenu {
    display: grid;
    z-index: 999;
    opacity: 0;
    height: 0;
    padding: 0;
    color: var(--content-color);
    list-style: none;
    overflow-y: auto;
    font-size: 16px;
    line-height: 40px;
    margin-left: 36px;
    transition: all 0.35s;
}

/*  - Sub Menu Bottom margin */
.H-slider-submenu > .H-slider-sublist:last-child {
    margin-bottom: 20px;
}

/* - Arrow Rotate */
.H-slider-input:checked + .H-slider-item > .H-slider-subicon  {
    transform: rotate(0deg);
    transition: .4s ease;
}

/* - Submenu Show */
.H-slider-fold-input:checked ~ .H-slider .H-slider-input:checked ~ .H-slider-submenu {
    opacity: 1;
    height: auto;
    margin-top: 10px;
    transform: translateY(0);
    transition: .2s ease;
}

.H-slider-sublist {
    cursor: pointer;
}

.H-slider-sublist:hover {
    opacity: .8;
    transition: .4s ease;
}

.H-slider-subinput {
    height: 0;
    width: 0;
    visibility: hidden;
}

/* - Current Selected */
.H-slider-subinput:checked + .H-slider-sublist {
    color: var(--sub-color);
    text-decoration: underline;
}

.H-dbColumn-operate {
    width: 92%;
    display: flex;
    height: 20px;
    padding: 5px 4%;
    margin-bottom: 5px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--shadow-color);
}

.H-dbOperate-wrapper {
    top: 0;
    width: 20px;
    height: 20px;
    position: absolute;
}

.H-dbOperate-text {
    line-height: 20px;
    margin-left: 25px;
}

.data-lock, .data-unlock, .data-more {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: var(--icon-color);
}

.data-lock:hover, .data-unlock:hover, .data-more:hover {
    opacity: .8;
    transition: .6s ease;
    background-color: var(--sub-color);
}
.H-dbColumn-lock {
    top: 0;
    position: absolute;
}
.H-dbColumn-lockIcon {
    display: none;
}

.H-dbColumn-unlockIcon {
    display: block;
}

.data-lock {
    background-color: #b80a0a;
    -webkit-mask: url(/res/lock.svg) no-repeat center;
    mask: url(/res/lock.svg) no-repeat center;
}

.data-unlock {
    -webkit-mask: url(/res/unlock.svg) no-repeat center;
    mask: url(/res/unlock.svg) no-repeat center;
} 

.data-more {
    cursor: move;
    margin-left: auto;
    -webkit-mask: url(/res/more.svg) no-repeat center;
    mask: url(/res/more.svg) no-repeat center;
}

.H-dbColumn-lockInput:checked + .H-dbColumn-lockIcon {
    display: block;
}

.H-dbColumn-lockInput:checked ~ .H-dbColumn-unlockIcon {
    display: none;
}

/* Tab */
.H-tabs {
    width: 100%;
    float: none;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: left;
}

.H-tabs-tab {
    display: flex;
}

.tab-radio {
    top: 0;
    left: -9999px;
    position: absolute;
}

.tab-label {
    top: 0;
    margin-right: 15px;
    width: fit-content;
    font-size: 18px;
    font-weight: normal;
    display: flex;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tab-label-close {
    margin: 4px -5px 4px 10px;
    height: 16px;
}
.tab-content {
    left: 0;
    top: 8px;
    z-index: 2;
    width: 97%;
    display: none;
    flex-wrap: wrap;
    overflow: auto;
    padding: 20px 1.2%;
    font-size: 16px;
    min-height: 300px;
    line-height: 25px;
    position: relative;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.tab-content:nth-child(1) {
    display: flex;
}

.tab-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.tab-radio:checked + label {
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

/* Pop-up */
.H-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    position: fixed;
    background-color: rgb(0 0 0 / 60%);
}

.H-popup-window {
    top: 50%;
    min-width: 40%;
    max-width: 90%;
    max-height: 80%;
    margin: 0 auto;
    padding: 20px;
    overflow: auto;
    width: fit-content;
    position: relative;
    border-radius: var(--border-radius);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0px 3px 5px 2px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.20);
}

.popup-close {
    cursor: pointer;
    width: 25px;
    height: 25px;
    float: right;
    background-color: var(--content-color);
    -webkit-mask: url(/res/close.svg) no-repeat center;
    mask: url(/res/close.svg) no-repeat center;
}

.popup-close:hover {
    background-color: sub-color;
}

.H-popup-content {
    margin: 25px 10px;
}

/* Calendar */
.H-calendar {
    width: 100%;
    min-height: 600px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

/* Carousel Slider*/
.H-carousel {
    width: 100%;
    position: relative;
}
.H-carousel-image {
    width: 100%;
}

/* Date Picker */
.H-datepicker-wrapper {
    width: 100%;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
}
.datepicker-icon {
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    position: absolute;
    background-color: var(--icon-color);
    -webkit-mask: url(/res/calendar.svg) no-repeat center;
    mask: url(/res/calendar.svg) no-repeat center;
}
.datepicker-icon:hover {
    opacity: .8;
    cursor: pointer;
    background-color: var(--sub-color);
    transition: .6s ease;
}
.H-timepicker {
    height: 38px;
    padding: 0 5px;
    min-width: 100px;
    color: var(--text-color);
    border: 1px solid #ddd;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}

/* Dates and times
::-webkit-datetime-edit
::-webkit-datetime-edit-fields-wrapper
::-webkit-datetime-edit-day-field
::-webkit-datetime-edit-text
::-webkit-datetime-edit-year-field
::-webkit-datetime-edit-month-field
::-webkit-datetime-edit-week-field
::-webkit-datetime-edit-ampm-field
::-webkit-datetime-edit-hour-field
::-webkit-datetime-edit-minute-field
*/
.H-timepicker::-webkit-calendar-picker-indicator {
    border: none;
    cursor: pointer;
    background-color: var(--icon-color);
    mask: url(/res/clock.svg) no-repeat center;
    -webkit-mask: url(/res/clock.svg) no-repeat center;
}
.H-timepicker::-webkit-calendar-picker-indicator:hover {
    opacity: .6;
    transition: .6s ease;
    background-color: var(--sub-color);
}
/* 'X' button for resetting/clearing time */ƒ
.H-timepicker::-webkit-clear-button {
    display: none;
}
/* Up/Down arrows for incrementing/decrementing the value */
.H-timepicker::-webkit-inner-spin-button {
    display: none;
}

/*  Text Editor */
.H-editor {
    padding: 10px ;
    overflow: auto;
    min-height: 100px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.H-editor ul {
    list-style-type: disc;
}

.H-editor ol {
    list-style-type: decimal;
}

/* Tree H-org */
.H-org-icon {
    width: 20px;
    height: 20px;
    float: right;
    transition: .6s ease;
    vertical-align: middle;
}
.H-org-name-card {
    padding: 5px 15px;
    border: 1px solid var(--line-color);
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-org-card {
    display: flex;
    align-items: center;
}
.H-org-cardtext {
    margin-left: 10px;
}
.H-org-cardsubtext {
    padding: 0 5px;
}
.H-org-text span span {
    padding: 0;
}
.H-org-avatar {
    width: 45px;
    height: 45px;
    padding: 1px;
    border-radius: 50px;
    vertical-align: middle;
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}
.H-inline {
    gap: 5px;
    display: flex;
    align-items: center;
}

/* Webmaster Components */
.wm-anchor-wrapper {
    padding: 25px 0;
    height: fit-content;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}
.wm-anchor-left {
    width: 25%;
    padding: 0 15px;
}
.wm-anchor-right {
    width: 75%;
    overflow: auto;
    padding-left: 15px;
    scrollbar-width: thin;
    scroll-behavior:smooth;
    scrollbar-color: var(--icon-color) transparent;
    border-left: 1px solid var(--shadow-color);
}
.wm-anchor-label {
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 15px 0;
}
.wm-anchor-visited:hover, .wm-anchor-visited:focus {
    background-color: var(--shadow-color);
    border-radius: 50px;
}
.wm-anchor-content {
    padding-top: 15px;
    padding-bottom: 25%;
}
.wm-tab-wrapper {
    height: fit-content;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}
.wm-tab {
    display: none;
}
.wm-tab:checked:nth-of-type(1) ~ .wm-tab-content:nth-of-type(1), .wm-tab:checked:nth-of-type(2) ~ .wm-tab-content:nth-of-type(2), .wm-tab:checked:nth-of-type(3) ~ .wm-tab-content:nth-of-type(3), .wm-tab:checked:nth-of-type(4) ~ .wm-tab-content:nth-of-type(4), .wm-tab:checked:nth-of-type(5) ~ .wm-tab-content:nth-of-type(5),
.wm-tab:checked:nth-of-type(6) ~ .wm-tab-content:nth-of-type(6), .wm-tab:checked:nth-of-type(7) ~ .wm-tab-content:nth-of-type(7), .wm-tab:checked:nth-of-type(8) ~ .wm-tab-content:nth-of-type(8), .wm-tab:checked:nth-of-type(9) ~ .wm-tab-content:nth-of-type(9), .wm-tab:checked:nth-of-type(10) ~ .wm-tab-content:nth-of-type(10), 
.wm-tab:checked:nth-of-type(11) ~ .wm-tab-content:nth-of-type(11), .wm-tab:checked:nth-of-type(12) ~ .wm-tab-content:nth-of-type(12), .wm-tab:checked:nth-of-type(13) ~ .wm-tab-content:nth-of-type(13), .wm-tab:checked:nth-of-type(14) ~ .wm-tab-content:nth-of-type(14), .wm-tab:checked:nth-of-type(15) ~ .wm-tab-content:nth-of-type(15) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}
.wm-tab:checked + label {
    background-color: var(--bg-color);
    cursor: default;
}
.wm-tab + label {
    height: 50px;
    padding: 15px;
    box-shadow: 0 -1px 0 var(--line-color) inset;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    display: block;
    flex-grow: 3;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--shadow-color);
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    box-sizing: border-box;
}
.wm-tab + label:hover {
    background-color: var(--disable-color);
    box-shadow: 0 1px 0 var(--disable-color) inset;
}
.wm-tab-content {
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -1;
    overflow: auto;
    padding: 20px 25px;
    position: absolute;
    transform: translateY(-3px);
    background-color: transparent;
}

/* Views */
.view-card-container {
    gap: 10px;
    width: 100%;
    display: grid;
    margin: 10px 0;
}
.view-list-container {
    gap: 10px;
    width: 100%;
    display: grid;
    margin: 10px 0;
}

/* Color, Display & Position Classes */
:root {
    --main-color: #648eb0;
    --sub-color: #bada55;
    --sub-shadow-color: #bada55eb;
    --text-color: #444;
    --content-color: #666;
    --bg-color: #fff;
    --icon-color: #666;
    --link-color: #517eb4;
    --link-shadow-color: #d7e9ffee;
    --confirm-color: #bada55;
    --tree-bg-color: #ffb951;
    --tree-bgBorder-color: #ffb6b0;
    --warning-color: #f7992a;
    --error-color: #dd1111;
    --disable-color: #dddddd;
    --status-check-color: #65c727;
    --status-desire-color: #389eff;
    --shadow-color: #ddd;
    --line-color: #efefef;
    --border-radius: 5px;
}

.text-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
}

.text-content {
    color: var(--content-color);
    font-size: 16px;
    font-weight: 200;
}     

.text-info {
    color: #b5b2b2;
    font-size: 14px;
    font-weight: 200;
    font-style: italic;
}

.text-main-color {
    color: var(--main-color);
}

.text-sub-color {
    color: var(--sub-color);
}

.text-white-color {
    color: #fff;
}

.white-color {
    border-color: #fff;
    background-color: #fff;
}
.main-color {
    border-color: var(--main-color);
    background-color: var(--main-color);
}
.sub-color {
    border-color: var(--sub-color);
    background-color: var(--sub-color);
}
.confirm-color {
    border-color: var(--confirm-color);
    background-color: var(--confirm-color);
}
.warning-color {
    border-color: var(--warning-color);
    background-color: var(--warning-color);
}
.error-color {
    border-color: var(--error-color);
    background-color: var(--error-color);
}
.disable-color {
    border-color: var(--disable-color);
    background-color: var(--disable-color);
}
.shadow-color {
    border-color: var(--shadow-color);
    background-color: var(--shadow-color);
}
.status-check-color {
    border-color: var(--status-check-color);
    background-color: var(--status-check-color);
}
.status-desire-color {
    border-color: var(--status-desire-color);
    background-color: var(--status-desire-color);
}
.color-ocean {
    color: #9ca9ab;
}
.color-plum {
    color: #614e55;
}
.color-toffee {
    color: #a68c7f;
}
.color-mango {
    color: #f2b37d;
}
.color-stone {
    color: #53565c;
}
.text-confirm-color {
    color: var(--confirm-color);
}
.text-warning-color {
    color: var(--warning-color);
}
.text-error-color {
    color: var(--error-color);
}
.text-disable-color {
    color: #888;
}
.text-check-color {
    color:  var(--status-check-color);
}
.text-desire-color {
    color:  var(--status-desire-color);
}
.link-color {
    border-color: #517eb4;
    background-color: #517eb4;
}
.color-dot {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px 2px #f1f1f1;
    -webkit-box-shadow: 0 2px 5px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.05);
}

.important {
    width: 5px;
    height: 5px;
    position: relative;
    right: -3px;
    top: -3px;
    float: right;
    background-color: var(--error-color);
    border-radius: 3px;
}

.required {
    margin: 0 5px;
    color: var(--error-color);
}

.opacity-1 {
    opacity: 1 !important;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.hidden {
    visibility: hidden;
}

.invisible {
    opacity: 0;
}

.bold {
    font-weight: bold;
}

.clickable {
    cursor: pointer;
}

.center {
    top: 50%;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
}
.background-transparent { background-color: transparent; }
.strikethrough { text-decoration: line-through; }
.color-unset { color: unset; }
.text-align-left {text-align: left;}
.gap-5 { gap: 5px;}
.gap-10 { gap: 10px;}
.gap-20 { gap: 20px;}
.align-center { align-items: center; text-align: center; vertical-align: middle; }
.item-align-center { align-items: center; vertical-align: middle; }
.margin-auto { margin:auto; }
.margin-left-auto { margin-left: auto; }
.margin-5 { margin: 5px; }
.margin-15 { margin: 15px; }
.margin-20 { margin: 20px; }
.margin-top-5 { margin-top: 5px; }
.margin-top-10 { margin-top: 10px; }
.margin-top-20 { margin-top: 20px; }
.margin-top-40 { margin-top: 40px; }
.margin-left-5 { margin-left: 5px; }
.margin-left-10 { margin-left: 10px; }
.margin-right-10 { margin-right: 10px; }
.margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-15 { margin-bottom: 15px; }
.margin-bottom-20 { margin-bottom: 20px; }
.paddding-0 { padding: 0; }
.height-100 { height: 100%; }
.height-50 { height: 50%; }
.width-100 { width: 100%; }
.width-50 { width: 50%; }
.width-25 { width: 25%; }
.max-width-50p { max-width: 50%; }
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.form-text {
    margin: 15px 0 5px;
}
.form-line-wrapper {
    width: 100%;
    margin: 20px 0 30px;
    display: inline-block;
}
.form-line-same {
    margin: 40px 0 40px;
}
.element-shake {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(2deg); }
    40% { transform: rotate(1deg); }
    50% { transform: rotate(0deg); }
    60% { transform: rotate(-1deg); }
    80% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

@-webkit-keyframes shake {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(2deg); }
    40% { transform: rotate(1deg); }
    50% { transform: rotate(0deg); }
    60% { transform: rotate(-1deg); }
    80% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

@media only screen and (max-width: 800px) {
    .H-popup-window {
        width: 90%;
        max-width: 82%;
    }
}