body {
    font-family: 'hv-med', tahoma;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1em;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

@font-face {
    font-family: 'hv-med';
    src: url('../fonts/db_helvethaica_med.eot');
    src: url('../fonts/db_helvethaica_med.eot?#iefix') format('embedded-opentype'),
        url('../fonts/db_helvethaica_med.woff2') format('woff2'),
        url('../fonts/db_helvethaica_med.woff') format('woff'),
        url('../fonts/db_helvethaica_med.ttf') format('truetype'),
        url('../fonts/db_helvethaica_med.svg#db_helvethaica_x65_med') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hv-bold';
    src: url('../fonts/db_helvethaica_bold.eot');
    src: url('../fonts/db_helvethaica_bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/db_helvethaica_bold.woff2') format('woff2'),
        url('../fonts/db_helvethaica_bold.woff') format('woff'),
        url('../fonts/db_helvethaica_bold.ttf') format('truetype'),
        url('../fonts/db_helvethaica_bold.svg#db_helvethaica_x75_bd') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* ICON */
.female-icon {
    background: url(../images/ui/female.png) no-repeat left top;
    display: inline-block;
    width: 14px;
    height: 20px;
}

.male-icon {
    background: url(../images/ui/male.png) no-repeat left top;
    display: inline-block;
    width: 14px;
    height: 20px;
}

.search-icon {
    background: url(../images/ui/search.png) no-repeat left top;
    display: inline-block;
    width: 18px;
    height: 18px;
}

/* ICON */

/* TEXT */

.label-text {
    font-family: Tahoma;
    font-size: 16px;
    color: #333333;
}

.input-text {
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    color: #333333;
    width: 250px;
    padding: 8px 8px 8px 8px;
    box-sizing: border-box;
    border: 1px solid #999999;
    transition: border 0.3s ease;
    border-radius: 4px;
}

.input-text:focus {
    outline: none;
    border: 1px solid #44625f;
}

/* TEXT */

/* TEXT AREA */
.input-textarea {
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    color: #333333;
    width: 250px;
    height: 130px;
    margin: 0;
    padding: 6px 8px;
    box-sizing: border-box;
    border: 1px solid #999999;
    transition: border 0.3s ease;
    border-radius: 4px;
}

.input-textarea:focus {
    outline: none;
    border: 1px solid #44625f;
}

/* TEXT AREA */

/* SEARCH */
.search-box {
    display: inline-block;
    position: relative;
    width: 250px;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    color: #333333;
    height: 38px;
    padding: 8px 44px 8px 8px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #999999;
    transition: border 0.3s ease;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.search-box input:focus {
    outline: none;
    border: 1px solid #44625f;
}

.search-box>span {
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    background: #44625f;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 38px;
    z-index: 2;
}

.search-box>span>i {
    vertical-align: middle;
}

/* SEARCH */

/* FILE */
.file-box {
    position: relative;
    display: inline-block;
    height: 38px;
    width: 250px;
    background-color: #628e8b;
    border-radius: 4px;
    overflow: hidden;
}

.file-box>.browse {
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    line-height: 38px;
    background: #44625f;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    height: 100%;
    width: 82px;
}

.file-box>input[type='file'] {
    font-family: 'hv-med', Tahoma;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    bottom: 0px;
    right: 0px;
    padding: 8px 0;
}

/* FILE */

/* SELECT MENU */
.select-menu {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 250px;
    height: 38px;
    border-radius: 4px;
}

.select-menu:after {
    content: '';
    display: block;
    background: #44625f;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 0 4px 4px 0;
}

.select-menu:before {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 16px;
    z-index: 3;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
}

.select-menu>select {
    cursor: pointer;
    font-size: 16px;
    font-family: Tahoma;
    color: #333333;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    width: 100%;
    height: 38px;
    padding: 4px;
    outline: none;
    border: 1px solid #628e8b;
    border-radius: 4px;
}

/* SELECT MENU */

/* RADIO BOX */
.radio-box {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    border: 2px solid #44625f;
    border-radius: 50%;
}

.radio-box>label {
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 50%;
    margin: 0;
}

.radio-box>label:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: none;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.radio-box>input[type='radio']:checked+label:after {
    background: #44625f;
}

.radio-box>input[type='radio'] {
    filter: alpha(opacity=0);
    opacity: 0;
}

/* RADIO BOX */

/* CHECK BOX */
.check-box {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    border: 2px solid #44625f;
}

.check-box>label {
    cursor: pointer;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 16px;
    height: 16px;
}

.check-box>label:after {
    content: '';
    cursor: pointer;
    background: url(../images/ui/true.png);
    display: inline-block;
    width: 13px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: scale(1.5);
    transition: scale 0.3s ease, opacity 0.2s ease;
}

.check-box>input[type='checkbox']:checked+label:after {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: scale(1);
}

.check-box>input[type='checkbox'] {
    filter: alpha(opacity=0);
    opacity: 0;
}

/* CHECK BOX */

/* SWITCH BOX */
.switch-box {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    width: 78px;
    height: 34px;
    border-radius: 34px;
    position: relative;
}

.switch-box input {
    position: absolute;
    left: -20px;
    top: 0px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.switch-contain {
    position: relative;
    left: -44px;
    height: 34px;
    width: 130px;
    border-radius: 34px;
    transition: left 0.3s ease;
}

.switch-box .circle {
    border: #abb0b5 solid 4px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 44px;
    top: 0;
    z-index: 999;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.switch-contain>.on {
    cursor: pointer;
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    color: #fff;
    background: #44625f;
    float: left;
    display: block;
    line-height: 34px;
    position: relative;
    width: 62px;
    height: 34px;
    padding-right: 20px;
    margin: 0;
}

.switch-contain>.off {
    cursor: pointer;
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #abb0b5;
    float: left;
    display: block;
    line-height: 34px;
    position: relative;
    width: 62px;
    height: 34px;
    padding-left: 20px;
    margin: 0;
}

.switch-box>input[type='checkbox']:checked+.switch-contain {
    left: 0px;
}

.switch-box>input[type='checkbox']:checked+.switch-contain>.circle {
    border: 4px solid #44625f;
}

/* SWITCH BOX */

/* SET BOX */
.set-box {
    cursor: pointer;
    display: inline-block;
    width: 80px;
    height: 34px;
    position: relative;
}

.set-box:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.set-box>.set-list {
    cursor: pointer;
    line-height: 36px;
    text-align: center;
    background: #abb0b5;
    float: left;
    width: 40px;
    height: 34px;
    margin: 0;
    display: block;
    transition: background 0.3s ease;
}

.set-box>input[type='radio'] {
    position: absolute;
    left: -20px;
    top: 0px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.set-box>input[type='radio']:nth-child(1):checked~.set-list:nth-of-type(1) {
    background: #44625f;
}

.set-box>input[type='radio']:nth-child(2):checked~.set-list:nth-of-type(2) {
    background: #44625f;
}

.set-box>input[type='radio']:nth-child(3):checked~.set-list:nth-of-type(3) {
    background: #44625f;
}

.set-box>.set-list>i {
    vertical-align: middle;
}

/* SET BOX */

/* BOTTON */
.submit-btn,
.reset-btn,
.button-btn {
    cursor: pointer;
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #F1C40F;
    display: inline-block;
    min-width: 80px;
    padding: 11px 14px;
    border: none;
    transition: background 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.add-btn {
    cursor: pointer;
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #44625f;
    display: inline-block;
    min-width: 80px;
    padding: 11px 14px;
    border: none;
    transition: background 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}


.submit-btn:hover,
.reset-btn:hover,
.button-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.gray-btn {
    background-color: #666666;
}

.medium-btn {
    padding: 14px 16px;
}

.large-btn {
    padding: 20px 22px;
}

/* BOTTON */

/* SIZE */

.size-150 {
    width: 150px;
}

.size-250 {
    width: 250px;
}

.size-350 {
    width: 350px;
}

.size-full {
    width: 100%;
}

/* SIZE */

/* THEME COLOR */

.brown-light {
    background-color: #d4cdc3;
}

.brown-medium {
    background-color: #c7bfb4;
}

.brown-dark {
    background-color: #afa696;
}

.yellow-light {
    color: #e8d296;
}

.white {
    color: #ffffff;
}

/* THEME COLOR */

/*  WEBSITE */

.login-pad {
    width: 350px;
}

.login-box .form-group input {
    font-family: 'hv-med', Tahoma;
    font-size: 20px;
}

.label-text {
    font-family: 'hv-med', Tahoma;
    font-size: 22px;
    margin-left: 2px;
}

.login-box .submit-btn {
    font-family: 'hv-bold', Tahoma;
    font-size: 26px;
}

.menu-sidebar {
    position: fixed;
    width: 250px;
    height: 100vh;
    background-color: #d4cdc3;
    display: flex;
    flex-direction: column;
}

.hide-menu .menu-sidebar {
    transform: translateX(-250px);
}

.hide-menu .header {
    left: 0px;
    width: 100%;
}

.hide-menu .main {
    padding-left: 0px;
}

.logo-web-box {
    width: 200px;
    height: 150px;
    align-self: center;
    margin: 0;
    display: flex;
    align-items: center;
}

.link-logo-web img {
    display: block;
    width: 100%;
    margin-left: 30px;
}

.main {
    padding-left: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.nav-menu-box {
    overflow: auto;
    height: calc(100% - 150px);
}

.nav-menu,
.nav-menu-sub {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-menu>li.open-menu .nav-menu-sub {
    max-height: max-content;
}

.nav-menu>li>a,
.nav-menu>li>span {
    background-color: #c8c0b5;
}

.nav-menu>li.actived>a,
.nav-menu>li.actived>span {
    background-color: #afa696;
    color: #FFFFFF;
}

.nav-menu>li>a,
.nav-menu>li>span {
    font-family: 'hv-bold', Tahoma;
    font-size: 26px;
    display: block;
    padding: 16px 20px;
    color: #44625f;
    text-decoration: none;
    border-bottom: 1px solid #d4cdc3;
}

.nav-menu>li>span {
    padding: 16px 36px 16px 20px;
    position: relative;
    cursor: pointer;
}

.nav-menu .arrow-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.nav-menu>li.open-menu>span .arrow-icon {
    margin-top: -10px;
    transform: rotate(90deg);
}

.nav-menu-sub>li>a {
    font-size: 22px;
    display: block;
    padding: 14px 20px 14px 30px;
    color: #8b826e;
    text-decoration: none;

}
.nav-menu-sub>li.actived>a {
    background-color: #968e81;
    color: #FFFFFF;
}


.nav-menu-sub .fa-circle {
    font-size: 10px;
    color: #8fa5a3;
    vertical-align: middle;
    margin-right: 2px;
}


.nav-menu-sub > li.nav-item:hover {
    background-color: #afa696;
}


.header {
    width: calc(100% - 250px);
    left: 250px;
    height: 100px;
    background-color: #ffffff;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.detail {
    font-size: 20px;
    padding-top: 100px;
    min-height: calc(100vh - 50px);
}

.detail-inner {
    padding: 30px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.group-pad {
    max-width: 1200px;
    width: 100%;
}

.detail-pad {
    background-color: #f7f8f8;
    padding: 20px;
    border-radius: 4px;
}

.head-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.head-page {
    font-size: 36px;
    margin-bottom: 0px;
}

.head-manage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ui-group {
    display: flex;
    gap: 10px;
}

.footer {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.copy-txt {
    font-size: 20px;
    color: #333333;
}

.copy-link {
    color: #efd280;
}

.copy-link:hover {
    color: #efd280;
    text-decoration: none;
}

.hamberger-menu {
    cursor: pointer;
    font-size: 30px;
    color: #f9ba1d;
    margin-left: 40px;
}

.manage-menu {
    margin-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}

.manage-icon {
    font-size: 20px;
    position: relative;
}

.manage-icon>a {
    display: block;
    color: #333333;
}

.noti-circle {
    background-color: #f00;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: -10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.avatar-pic {
    position: relative;
}

.avatar-crop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #44625f;
}

.avatar-crop>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-tooltip {
    width: 175px;
    font-size: 20px;
    color: #333333;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    display: none;
}

.desktop .avatar-pic:hover .avatar-tooltip {
    display: block;
}

.mobile .avatar-pic.actived .avatar-tooltip {
    display: block;
}

.body-tooltip {
    background-color: #ffffff;
    box-shadow: #333333 0px 0px 2px;
    padding: 8px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.avatar-pic:hover .avatar-tooltip {
    opacity: 1;
}

.avatar-row>a {
    text-decoration: none;
}

.avatar-row .fa {
    color: #efd280;
    width: 20px;
}

.avatar-row .avatar-txt {
    color: #333333;
}

.avatar-inner {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.table-group {
    width: 100%;
}

.table-group th {
    font-family: 'hv-med', Tahoma;
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
    background-color: #44625f;
    padding-top: 14px;
    padding-bottom: 14px;
}

.table-group td {
    font-size: 22px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.table-group tbody tr {
    background-color: #ffffff;
}

.table-group tbody tr:nth-child(even) {
    background-color: #f8f6ff;
}

.icon-tb:hover {
    text-decoration: none;
}

.keep-pagination {
    padding-top: 30px;
    padding-bottom: 10px;
    text-align: center;
}

.pagination {
    display: inline-block;
}

.pagination a,
.pagination span {
    font-family: 'hv-med', Tahoma;
    font-size: 20px;
    background-color: #eeeeee;
    display: block;
    color: black;
    float: left;
    padding: 10px 16px;
    text-decoration: none;
}

.pagination a.active,
.pagination span.active,
.pagination a:hover,
.pagination span:hover {
    background-color: #44625f;
    color: white;
}

.pagination span.other:hover {
    color: black;
    background-color: #eeeeee;
}

.icon-tb {
    margin-left: 10px;
}

.form-wrap {
    max-width: 500px;
}

.form-wrap [class*='col-md'] {
    position: relative;
}

.form-wrap [class*='col-md'] label.error {
    font-family: 'hv-med', Tahoma;
    font-size: 30px;
    color: #f00;
    position: absolute;
    top: 40px;
    right: -10px;
}

.form-wrap [class*='col-md'] .select-menu label.error {
    top: 16px;
    right: -20px;
}

.form-group .error {
    font-family: 'hv-med', Tahoma;
    font-size: 20px;
    text-align: center;
    color: #f00;
}

.note-txt {
    font-family: 'hv-med', Tahoma;
    font-size: 18px;
    color: #f00;
    display: block;
}

.pic-preview-box {
    margin-top: 20px;
}

.pic-preview {
    /* max-width: 200px; */
    width: 190px;
    height: 120px;
}

/* .chart-wrap {
    max-width: 1000px;
} */

.chart-wrap .box-space {
    margin-top: 20px;
}

.chart-wrap .box-space2 {
    margin-top: 20px;
}

.ui-left-space {
    margin-left: 5px;
}

.ui-bottom-space {
    margin-bottom: 15px;
}

.display-btn {
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .chart-wrap .box-space {
        margin-top: 0px;
    }

    .chart-wrap .ui-posi-1 {
        text-align: right;
    }
}

.list-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    align-items: center;
    padding: 40px 20px 50px 20px;
}

.list-title {
    font-family: 'hv-med', Tahoma;
    font-size: 35px;
    color: #2d6b6d;
    margin-bottom: 0px;
}

.list-detail {
    font-family: 'hv-med', Tahoma;
    font-size: 55px;
    color: #f9ba1d;
}

.question-ans{
    display: flex;
}

.checkbox-style{
    width: 15%;
}
input[type="radio"]:checked{
 accent-color: green;

}

.textarea-style{
    width: 100%;
    height: 150px;
}

.sign-up{
    color: #FFFF;
    font-size: 18px;
}

/*  WEBSITE */