﻿.input-field {
    font-size: 20px !important;
    background: #ffffff;
    border-radius: 4px;
    border: none !important;
    padding: 0 16px 0 16px !important;
    height: 30px;
    width: 100%;
    font-family: "DB HelvethaicaMon X" !important;
    outline: none !important;
    resize: none !important;
}

    .input-field::placeholder {
        color: #333333;
        opacity: 1;
    }

    .input-field:-ms-input-placeholder, .input-field::-ms-input-placeholder {
        color: #333333;
    }

.input-field-login {
    font-size: 20px !important;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ced4da !important;
    padding: 0 16px 0 16px !important;
    height: 30px;
    width: 100%;
    font-family: "DB HelvethaicaMon X" !important;
    outline: none !important;
    resize: none !important;
}

    .input-field-login::placeholder {
        color: #333333;
        opacity: 1;
    }

    .input-field-login:-ms-input-placeholder, .input-field::-ms-input-placeholder {
        color: #333333;
    }

.input-field-grid {
    font-size: 20px !important;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #aaa;
    padding: 0 16px 0 16px !important;
    height: 30px;
    width: 100%;
    font-family: "DB HelvethaicaMon X" !important;
    outline: none !important;
    resize: none !important;
}

    .input-field-grid::placeholder {
        color: #333333;
        opacity: 1;
    }

.input-field-group {
    border-radius: 0px 4px 4px 0px !important;
    border-left: 1px solid #ced4da !important;
}

.input-field-group-text {
    font-size: 20px !important;
    border-radius: 4px 0px 0px 4px !important;
    height: 30px !important;
    font-family: "DB HelvethaicaMon X" !important;
    min-width: 100px !important;
}

.radio-wrapper {
    flex-direction: column;
    display: flex;
    align-items: center;
}

.radio-container {
    flex-direction: row;
    display: block !important;
    align-items: center;
}

.radio-label {
    align-self: flex-start;
    display: flex;
}

.input-field[type="text"]:disabled, .input-field[disabled="disabled"], .input-field[disabled] {
    background: #e6e6e6;
}

    .input-field:disabled::placeholder, .input-field[disabled="disabled"]::placeholder, .input-field[disabled]::placeholder {
        color: #999999;
        opacity: 1;
    }

.input-field:disabled:-ms-input-placeholder, .input-field:disabled::-ms-input-placeholder {
    color: #999999;
}

.input-field-small {
    min-width: 178px;
}

.input-field-super-small {
    width: 80px;
    text-align: right;
}

.radio-input-field[type='radio'] {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 0.5px solid #9da6ad;
    border-radius: 50%;
    outline: none;
    background-color: #fff;
    margin-bottom: -3px;
}

    .radio-input-field[type='radio']:before {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        margin: 15% auto;
        border-radius: 50%;
    }

    .radio-input-field[type='radio']:checked:before {
        background: #FBB034;
    }

.file-input-field {
    display: none;
}

.file-input-field-label {
    display: inline-block;
    cursor: pointer;
    height: 30px;
    width: 80%;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.25px;
    text-align: left;
    background-color: #FFFFFF;
    color: #333333;
    border-radius: 0px 4px 4px 0px;
    padding: 0 16px;
    overflow: hidden;
}

.file-input-field-button {
    display: inline-block;
    cursor: pointer;
    height: 30px;
    width: 19%;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.25px;
    text-align: center;
    background-color: #F6B436;
    color: #000;
    overflow: hidden;
    border-radius: 4px 0px 0px 4px;
}

    .file-input-field-button.full-border {
        width: 120px;
        margin-left: -40px;
        border-radius: 4px;
        color: #333333;
    }

/* Dropdown */
.custom-select-label {
    font-size: 22px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    margin-right: 8px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border-top: 0;
    background: #ffffff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 16px;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.5s;
}

    .custom-option:hover {
        cursor: pointer;
        background-color: #d1d1d1;
    }

    .custom-option.selected {
        color: #000000;
        background-color: #ffffff;
    }

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.margin-top-16 {
    margin-top: 16px;
}

.margin-left-16 {
    margin-left: 16px;
}

.margin-bottom-4 {
    margin-bottom: 4px;
}

.input-section-upload-file {
    display: flex;
    flex-direction: row;
    margin-top: 36px;
    margin-left: 24px;
}

.input-section-download-file {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.link-label {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #365bc8;
    text-decoration: none;
}

.input-section-download-file-icon {
    margin-left: 8px;
    width: 24px;
    height: 24px;
}

.remark {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #8a8a8a;
}

.remark-small {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #8a8a8a;
}

.table-list {
    border-collapse: collapse;
    width: 100%;
    margin-top: 16px;
    border-radius: 4px;
}

    .table-list thead tr, .table-list tfoot tr {
        background: #8A8A8A;
        color: #ffffff;
    }

    .table-list th {
        height: 40px;
        text-align: left;
        padding: 5px 12px;
    }

    .table-list td {
        height: 30px;
        text-align: left;
        padding: 5px 12px;
        word-break: break-word;
    }

    .table-list tbody tr {
        background-color: #FFFFFF;
    }

        .table-list tbody tr:nth-child(even) {
            background-color: #dddddd;
            background: #EFEFEF;
        }

    .table-list .table-menu-item {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .table-list .table-head {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .table-list .table-head-end {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .table-list .table-menu-item-right {
        text-align: right;
    }

    .table-list tr:first-child th:first-child {
        border-top-left-radius: 4px;
    }

    .table-list tr:first-child th:last-child {
        border-top-right-radius: 4px;
    }

    .table-list tr:last-child td:first-child {
        border-bottom-left-radius: 4px;
    }

    .table-list tr:last-child td:last-child {
        border-bottom-right-radius: 4px;
    }

.table-list-footer {
    padding: 5px 12px;
    margin-bottom: 32px;
}

.table-menu-icon {
    width: 15px;
    height: 15px;
    margin-left: 8px;
}

.checkbox-input-field {
    display: table;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkbox-input-field input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkbox-input-field-mark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    border: 1px solid #9da6ad;
    background-color: #efefef;
}

    .checkbox-input-field-mark:after {
        content: "";
        position: absolute;
        display: none;
    }

.chk-disabled {
    opacity: 0.5;
}

.checkbox-input-field input:checked ~ .checkbox-input-field-mark:after {
    display: block;
}

.checkbox-input-field .checkbox-input-field-mark:after {
    background-image: url(/img/check_box.svg);
    content: "";
    position: absolute;
    top: 0.05rem;
    left: 0.05rem;
    display: none;
    width: 1rem;
    height: 1rem;
}

.checkbox-input-field-description {
    padding-left: 24px;
}

.table-number {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: right;
    margin-left: auto;
}

    .table-number th {
        font-weight: 400 !important;
        padding-right: 16px;
    }

    .table-number td:first-child {
        padding-right: 16px;
    }

select.custom-select-trigger:invalid {
    color: #999999;
}

option[value=""][disabled] {
    display: none;
}

option {
    color: black;
}

.select2 {
    width: 100% !important;
}

.select2-container *:focus {
    outline: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    background-image: url(/img/chevron-up-solid_adiiga.svg);
    background-color: transparent;
    background-size: 14px;
    border: none !important;
    height: 13px !important;
    width: 14px !important;
    margin: auto !important;
    top: 6px !important;
    left: -10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(/img/chevron-down-solid_ugamvw.svg);
    background-color: transparent;
    background-size: 14px;
    border: none !important;
    height: 13px !important;
    width: 14px !important;
    margin: auto !important;
    top: 6px !important;
    left: -10px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.pdt-10 {
    padding-top: 10px;
}

.breadcrumb {
    background-color: transparent !important;
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: initial;
    padding: initial;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: initial;
    background-size: initial;
    border: initial;
    border-radius: initial;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: "DB HelvethaicaMon X" !important;
    line-height: inherit;
}


/* login */
.login-layout .main-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-height: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.login-container {
    width: 375px;
    margin: 0 auto;
}

.center, .align-center {
    text-align: center !important;
}

.position-relative, .pos-rel {
    position: relative;
}

.light-login .widget-box.login-box {
    background-color: #BCC6CF;
    background-color: rgba(100, 110, 120, 0.4);
}

.login-layout .widget-box.visible {
    visibility: visible;
    position: relative;
    z-index: auto;
    -moz-transform: scale(1,1) translate(0);
    -webkit-transform: scale(1,1) translate(0);
    -o-transform: scale(1,1) translate(0);
    -ms-transform: scale(1,1) translate(0);
    transform: scale(1,1) translate(0);
    transition: transform .3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -o-transition: -o-transform 0.2s ease;
}

.light-login .widget-box {
    padding: 1px 1px 0;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(50, 50, 50, 0.33);
}

.widget-body {
    background-color: #FFF;
}

.login-layout .login-box .widget-main {
    padding-bottom: 16px;
}

.login-layout .widget-box .widget-main {
    padding: 16px 36px 36px;
    background: #F7F7F7;
}

.light-login .widget-box .toolbar {
    border-top-width: 1px;
}

.login-box .toolbar {
    background: #5090C1;
    border-top: 2px solid #597597;
}

    .login-box .toolbar > div:first-child {
        float: left;
        text-align: left;
    }

    .login-box .toolbar > div {
        width: 50%;
        display: inline-block;
        padding: 9px 0 11px;
    }

.login-layout .widget-box .widget-body .toolbar > div > a {
    font-size: 15px;
    font-weight: 400;
    text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.25);
}

.login-box .toolbar > div:first-child > a {
    margin-left: 11px;
}

.login-box .user-signup-link {
    color: #CF7;
}

.green {
    color: #69AA46 !important
}

.graph-green {
    color: #3A8358 !important
}

.red {
    color: #DD5A43 !important;
}

.red-set {
    color: #AD0505 !important;
}

.color-grey {
    color: #777 !important;
}

.color-blue {
    color: #478FCA !important;
}

.color-yellow-set {
    background-color: #F6B436 !important;
}

.header .color-blue {
    border-bottom-color: #d5e3ef;
}

h4.bigger {
    font-size: 19px;
}

.header {
    line-height: 28px;
    margin-bottom: 16px;
    margin-top: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid #CCC;
}

.graph-item-circle-small-blue {
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3b67c9;
    cursor: pointer;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    font-size: 20px;
    position: relative;
    vertical-align: middle;
    border: 1px solid #CCC;
    border-radius: 4px;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 30px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-left: 8px;
            padding-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            position: relative;
        }

    .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px;
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .select2-container .select2-search--inline {
        float: left;
    }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 100%;
            margin-top: 5px;
            padding: 0;
        }

            .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none;
            }

.select2-dropdown {
    background-color: white;
    border: 1px solid #d1d1d1;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

    .select2-results__option[aria-selected] {
        cursor: pointer;
    }

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    top: 1px;
    border-radius: 6px;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box;
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    .select2-search--dropdown.select2-search--hide {
        display: none;
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border-radius: 4px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        padding: 0 16px;
        line-height: 30px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
        display: none;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    margin-bottom: -4px;
    padding: 0 5px 0 5px;
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
        list-style: none;
    }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f6b436;
    border: 1px solid #f6b436;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 3px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #333;
    }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #efefef;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

input.select2-search__field {
    width: 100% !important;
}

.select2-container--default .select-search-attendees ul,
.select2-container--default .select-search-attendees ul li:has(input) {
    width: 100% !important;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-left: 0;
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -1em;
        padding-left: 2em;
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -2em;
            padding-left: 3em;
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -3em;
                padding-left: 4em;
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em;
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em;
                    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f6b436;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
    }

        .select2-container--classic .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
        background: transparent;
        border: none;
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #888 transparent;
            border-width: 0 4px 5px 4px;
        }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
        list-style: none;
        margin: 0;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__clear {
        display: none;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
        color: #888;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #555;
        }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: transparent;
    border-radius: 4px;
    cursor: text;
}

.select2-container .select2-selection--multiple {
    min-height: 30px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: transparent !important;
    outline: 0;
}

input[type="date"], input[type="datetime-local"], input[type="month"] {
    -webkit-appearance: listbox;
    width: 100% !important;
    border: transparent !important;
    height: 30px !important;
    border-radius: 4px !important;
    padding: 0 10px !important;
}

input[type="time"] {
    -webkit-appearance: listbox;
    width: 100% !important;
    border: transparent !important;
    height: 30px !important;
    border-radius: 4px !important;
    padding: 0 10px !important;
}

.data-time:focus {
    outline: initial !important;
}

/* scroll*/
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 25px;
}

::-webkit-scrollbar-thumb {
    /*background: #D1D1D1;*/
    background: #fbb034;
    border-radius: 25px;
}

    ::-webkit-scrollbar-thumb:hover {
        /*background: #D1D1D1;*/
        background: #fbb034;
    }
/* scroll*/

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999 !important;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999 !important;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #999 !important;
}

::placeholder { /* Most modern browsers support this now. */
    color: #999 !important;
}

input[type="date"], input[type="datetime-local"], input[type="month"] {
    color: #999;
    background-color: white;
    -webkit-appearance: listbox;
}

input[type="time"] {
    color: black;
    background-color: #FFE5B4;
    -webkit-appearance: listbox;
    box-shadow: 0 3px rgb(239, 160, 68);
}

input[type="date"]::before {
    color: #999;
    -webkit-appearance: listbox;
}

input[type="date"]::after {
    color: #000;
    -webkit-appearance: listbox;
}

input[type="date"]:active {
    color: #000 !important;
    -webkit-appearance: listbox;
}

input[type="date"]:focus {
    color: #000 !important;
    -webkit-appearance: listbox;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-info {
    background-color: #f7f7f7 !important;
    border-bottom: 1px solid #c3c3c3;
    border-top: 1px solid #c3c3c3;
    font-size: 20px;
    vertical-align: top !important;
}

.w-detail {
    background-color: #e0e0e0 !important;
    border-bottom: 1px solid #c3c3c3;
    border-top: 1px solid #c3c3c3;
    font-size: 20px;
    vertical-align: top !important;
}

.right {
    text-align: right !important;
}

.btn-approve {
    height: 22px !important;
}

.white {
    color: white;
}

.checkbox-lg .checkbox-input-field-mark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    border: 1px solid #000000;
    background-color: #efefef;
}

    .checkbox-lg .checkbox-input-field-mark::before,
    .checkbox-lg .checkbox-input-field-mark:after {
        left: 6px;
        top: 0px;
        width: 6px;
        height: 15px;
        border: solid #FBB034;
        border-width: 0 1px 1px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.checkbox-xl .checkbox-input-field-mark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    border: 1px solid #000000;
    background-color: #efefef;
}

    .checkbox-xl .checkbox-input-field-mark::before,
    .checkbox-xl .checkbox-input-field-mark:after {
        left: 10px;
        top: -2px;
        width: 9px;
        height: 26px;
        border: solid #FBB034;
        border-width: 0 1px 1px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.pt-checkbox {
    padding-top: 30px;
}

/* switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 2px;
    left: 0px;
    right: 2px;
    bottom: 2px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        height: 20px;
        width: 20px;
        left: 6px;
        bottom: 2px;
        -webkit-transition: .4s;
        content: 'III';
        color: #939393;
        background-color: #FFF;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        font-size: 21px;
        padding-left: 4px;
        padding-bottom: 21px;
    }

input:checked + .slider {
    background-color: #f6b436;
}

input:focus + .slider {
    box-shadow: 0 0 1px transparent;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/* switch */

.hidden {
    display: none !important;
}

.icon-small {
    font-size: 10px !important;
}

.modal-body {
    background-color: #efefef;
}

.file-upload-col {
    width: 100% !important;
}

.responsive {
    overflow-x: auto !important;
}

.profile-picture {
    border: 1px solid #CCC;
    background-color: #FFF;
    padding: 4px;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.my_camera_identification {
    border: 1px solid #AD0505;
}

.my_identification {
    display: block;
    position: relative;
    margin-left: 100px;
    margin-right: 180px;
    bottom: 90px;
    padding: 130px;
    background-color: transparent;
    border: 4px dashed #F6B436;
}

.form-content {
    top: auto;
    z-index: auto;
}

.dataTables_filter {
    float: right;
    text-align: right;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 0px 12px !important;
    border-bottom: 1px solid #111;
}

table.dataTable tfoot th, table.dataTable tfoot td {
    border-top: 1px solid #111;
    padding: 0 12px !important;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 0 12px;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 0px 12px !important;
    border-bottom: initial !important;
}

table.dataTable tfoot th, table.dataTable tfoot td {
    border-top: initial !important;
    padding: 0 12px !important;
}



.widget-box.transparent {
    border-width: 0;
}

.widget-box {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 3px 0;
    border: 1px solid #CCC;
}

    .widget-box.transparent > .widget-header-small {
        padding-left: 1px;
    }

    .widget-box.transparent > .widget-header {
        background: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        border-width: 0;
        border-bottom: 1px solid #DCE8F1;
        color: #4383B4;
        padding-left: 3px;
    }

.widget-header-small {
    min-height: 31px;
    padding-left: 10px;
}

.widget-header {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    min-height: 38px;
    background: #f7f7f7;
    background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #EEEEEE 100%);
    background-image: -o-linear-gradient(top, #FFFFFF 0%, #EEEEEE 100%);
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #EEEEEE 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
    color: #669FC7;
    border-bottom: 1px solid #DDD;
    padding-left: 12px;
}

.widget-header-small > .widget-title {
    line-height: 30px;
}

.widget-header > .widget-title {
    line-height: 36px;
    padding: 0;
    margin: 0;
    display: inline;
}

h4.smaller {
    font-size: 22px;
}

.widget-header-small > .widget-toolbar {
    line-height: 29px;
}

.widget-toolbar {
    display: inline-block;
    padding: 0 10px;
    line-height: 37px;
    float: right;
    position: relative;
}

.widget-box > .widget-header > .widget-toolbar > [data-action="reload"], .widget-color-dark > .widget-header > .widget-toolbar > [data-action="reload"], .widget-box > .widget-header > .widget-toolbar > .widget-menu > [data-action="reload"], .widget-color-dark > .widget-header > .widget-toolbar > .widget-menu > [data-action="reload"] {
    color: #ACD392;
}

.widget-toolbar > a[data-action], .widget-toolbar > .widget-menu > a[data-action] {
    -webkit-transition: transform 0.1s;
    -o-transition: transform 0.1s;
    transition: transform 0.1s;
}

.widget-toolbar > a, .widget-toolbar > .widget-menu > a {
    font-size: 14px;
    margin: 0 1px;
    display: inline-block;
    padding: 0;
    line-height: 24px;
}

.widget-box.transparent > .widget-body {
    border-width: 0;
    background-color: transparent;
}

.widget-main.padding-8 {
    padding: 8px;
}

.ace-scroll {
    overflow: hidden;
}

.scroll-track.scroll-active {
    height: 500px !important;
}

.scroll-track.scroll-active {
    -webkit-transition: width 0.25s ease 0.75s, opacity 0.25s ease 0.75s;
    -o-transition: width 0.25s ease 0.75s, opacity 0.25s ease 0.75s;
    transition: width 0.25s ease 0.75s, opacity 0.25s ease 0.75s;
}

.scroll-track {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 0;
    height: auto;
    background-color: #E7E7E7;
    z-index: 99;
    width: 0;
    opacity: 0;
}

.scroll-bar {
    height: 500px !important;
}

.scroll-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    background-color: #ACE;
    background: #bbd4e5;
}

.scroll-content {
    max-height: 500px !important;
}

.scroll-content {
    position: static;
    overflow: hidden;
}

.profile-activity:first-child {
    border-top: 1px dotted transparent;
}

.profile-activity {
    padding: 5px 0px;
    border-bottom: 1px dotted #D0D8E0;
    position: relative;
    /*border-left: 1px dotted #efefef;
	border-right: 1px dotted #efefef;*/
}

    .profile-activity .thumbicon {
        background-color: #74ABD7;
        display: inline-block;
        border-radius: 100%;
        width: 38px;
        height: 38px;
        color: #FFF;
        font-size: 18px;
        text-align: center;
        line-height: 38px;
        margin-right: 10px;
        margin-left: 0px;
        text-shadow: none !important;
    }

.btn-light, .btn-light:focus, .btn-light.focus {
    background-color: #E7E7E7 !important;
    border-color: #E7E7E7;
}

.btn-light {
    color: #888 !important;
    text-shadow: 0 -1px 0 rgba(250, 250, 250, 0.25) !important;
}

.pull-left {
    float: left !important;
}

.widget-toolbar-new {
    display: inline-block;
    padding: 0px 5px;
    line-height: 37px;
    float: left;
    position: relative;
}

    .widget-toolbar-new:before {
        display: inline-block;
        content: "";
        position: absolute;
        top: 0px;
        bottom: -38px;
        left: 0px;
        border: 1px dotted #d9d9d9;
        border-width: 0 2px 0 0;
    }

.profile-activity .thumbicon {
    background-color: #74ABD7;
    display: inline-block;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    color: #FFF;
    font-size: 18px;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    margin-left: 0px;
    text-shadow: none !important;
}

.btn-success, .btn-success:focus, .btn-success.focus {
    background-color: #87B87F !important;
    border-color: #87B87F;
}

.widget-toolbar {
    display: inline-block;
    padding: 0 10px;
    line-height: 37px;
    float: right;
    position: relative;
}

    .widget-toolbar:before {
        display: inline-block;
        content: "";
        position: absolute;
        top: 3px;
        bottom: 3px;
        left: -1px;
        border: 1px solid #D9D9D9;
        border-width: 0 1px 0 0;
    }

.profile-activity .time {
    display: block;
    margin-top: -12px;
    color: #777;
    font-size: 15px;
}

.profile-activity a.user {
    font-weight: bold;
    color: #9585BF;
}

.profile-activity .widget-agenda {
    display: block;
    margin-top: -12px;
    color: #000000;
    font-size: 18px;
    padding-bottom: 7px;
}

.profile-activity .tools {
    position: absolute;
    right: 12px;
    bottom: 8px;
    display: none;
}

.bigger-70 {
    font-size: 70% !important;
}

.bigger-80 {
    font-size: 80% !important;
}

.bigger-90 {
    font-size: 90% !important;
}

.bigger-110 {
    font-size: 110% !important;
}

.bigger-120 {
    font-size: 120% !important;
}

.bigger-130 {
    font-size: 130% !important;
}

.bigger-140 {
    font-size: 140% !important;
}

.bigger-150 {
    font-size: 150% !important;
}

.bigger-160 {
    font-size: 160% !important;
}

.bigger-170 {
    font-size: 170% !important;
}

.bigger-180 {
    font-size: 180% !important;
}

.bigger-190 {
    font-size: 190% !important;
}

.bigger-200 {
    font-size: 200% !important;
}

.bigger-210 {
    font-size: 210% !important;
}

.bigger-220 {
    font-size: 220% !important;
}

.bigger-230 {
    font-size: 230% !important;
}

.bigger-240 {
    font-size: 240% !important;
}

.bigger-250 {
    font-size: 250% !important;
}

.bigger-260 {
    font-size: 260% !important;
}

.bigger-270 {
    font-size: 270% !important;
}

.bigger-280 {
    font-size: 280% !important;
}

.bigger-290 {
    font-size: 290% !important;
}

.bigger-300 {
    font-size: 300% !important;
}

.bg-red {
    background-color: #AD0505 !important;
}

.bg-inverse {
    background-color: #555555 !important;
}

.action-buttons a {
    margin: 0 3px;
    display: inline-block;
    opacity: 0.85;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

    .action-buttons a:hover {
        text-decoration: none;
        opacity: 1;
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

.profile-activity .tools {
    position: absolute;
    right: 12px;
    bottom: 8px;
    display: block;
}

.events-none {
    pointer-events: none;
}

.coler-grey {
    color: #BBB !important;
}

::ng-deep .toast-container > div {
    opacity: 0.8 !important;
    pointer-events: none !important;
}

.container-bar {
    background: #efefef;
    border-radius: 10px;
    padding: 17px 16px;
    font-size: 20px;
    min-height: 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

div.tagsinput {
    border: 1px solid #fff !important;
    background: #FFF !important;
    padding: 5px;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 15px;
    overflow-y: auto;
}

    div.tagsinput input {
        font-size: 20px !important;
    }

    div.tagsinput span.tag {
        border: 1px solid #f6b436;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        display: block;
        float: left;
        padding: 0px 5px;
        text-decoration: none;
        background: #fff4de;
        color: #020100;
        margin-right: 5px !important;
        margin-top: 5px !important;
        margin-bottom: 0px !important;
        font-family: "DB HelvethaicaMon X" !important;
        font-size: 20px;
    }

    div.tagsinput input {
        margin: 6px 5px 0px 0 !important;
        padding: 0px 5px !important;
    }

    div.tagsinput span.tag a {
        font-weight: 700;
        color: #82ad2b;
        text-decoration: none;
        font-size: 14px !important;
    }

.div.tagsinput .tag [data-role="remove"]:after {
    content: "";
    padding: 0px 2px;
}

div.tagsinput .tag a {
    pointer-events: all !important;
}

div.tagsinput span.tag a {
    font-weight: 700;
    color: #ff7070 !important;
    text-decoration: none;
    font-size: 16px !important;
}

.modal-calendar {
    background-color: #FFFFFF !important;
    font-size: 1rem !important;
}

.fc-view-container {
    background-color: #efefef !important;
}

.fc-day-grid-event .fc-title {
    font-weight: 700;
}

.fc-basic-view .fc-body .fc-row {
    min-height: 5.5em !important;
}

.fc-event {
    line-height: 0.2 !important;
}

    .fc-event .fc-content:before {
        top: 0.3rem !important;
    }

.fc-day-grid-event {
    margin: 2px 2px 0 !important;
}

.fc-toolbar .fc-button {
    background: #d1d1d1;
}

.fc-toolbar .fc-state-active {
    background: #1d7af3;
    color: #fff;
    box-shadow: none !important;
}

    .fc-toolbar .fc-state-active:hover {
        background: #1d7af3 !important;
    }

.fc-toolbar .fc-button:hover {
    background: #8a8a8a;
}

.swal-text {
    font-size: 20px;
}

.swal-button--cancel:hover {
    color: #000000 !important;
    background-color: #949494 !important;
}

.list-bar {
    background: #d3d3d3;
    border-radius: 4px;
    padding: 10px 16px;
    min-height: 56px;
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    word-break: break-all;
}

.list-bar-2 {
    background: #efefef;
    border-radius: 4px;
    padding: 10px 16px;
    min-height: 56px;
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.list-bar-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.add-period-box {
    background: #e0e0e0;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.fc-event.fc-info .fc-content:before {
    background: inherit !important;
    border-color: inherit !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-top: 3px !important;
    color: #36a3f7 !important;
}

.fc-list-item.fc-info .fc-event-dot, .fc-list-item.fc-info-solid .fc-event-dot {
    background: inherit !important;
}

    .fc-list-item.fc-info .fc-event-dot:before {
        background: inherit !important;
        border-color: inherit !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        padding-top: 3px !important;
        color: #36a3f7 !important;
    }

.fc-event.fc-warning .fc-content:before {
    background: inherit !important;
    border-color: inherit !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-top: 3px !important;
    color: #ffa534 !important;
}

.fc-list-item.fc-warning .fc-event-dot, .fc-list-item.fc-warning-solid .fc-event-dot {
    background: inherit !important;
}

    .fc-list-item.fc-warning .fc-event-dot:before {
        background: inherit !important;
        border-color: inherit !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        padding-top: 3px !important;
        color: #ffa534 !important;
    }

.fc-event.fc-success .fc-content:before {
    background: inherit !important;
    border-color: inherit !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding-top: 3px !important;
    color: #3A8358 !important;
}

.fc-list-item.fc-success .fc-event-dot, .fc-list-item.fc-success-solid .fc-event-dot {
    background: inherit !important;
}

    .fc-list-item.fc-success .fc-event-dot:before {
        background: inherit !important;
        border-color: inherit !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        padding-top: 3px !important;
        color: #3A8358 !important;
    }

.fc-list-item-title.fc-widget-content {
    padding: 8px 45px;
}

.fc-day-grid-event .fc-title {
    font-weight: 700;
    padding-left: 50% !important;
}

.board-header-calendar {
    padding: 8px;
    background: rgb(255 255 255);
    border-radius: 10px 10px 10px 10px;
    color: #333;
    display: flex;
    border: 1px solid rgb(255 255 255);
    justify-content: space-between;
}

.collapse-blue {
    background: #e9f0ff !important;
}

.select2-search--inline:focus {
    padding-left: 15px !important;
}

.danger-error {
    color: #AD0505 !important;
    font-family: "DB HelvethaicaMon X" !important;
    font-size: 14pt !important;
    padding-top: 4px !important;
}

.board-body.collapse_approve {
    background: #fff !important;
    border-radius: 0px 0px 4px 4px;
    padding: 0 16px 0 16px;
    display: flex;
    justify-content: space-between;
}

.list-bar::after {
    background: #d3d3d3;
    border-radius: 10px 10px 0px 0px;
    padding: 10px 16px;
    min-height: 56px;
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.form-login {
    transform: none;
    margin: 1.75rem auto;
    margin-top: 8.75rem;
    min-width: 400px;
    max-width: 430px;
    min-height: 300px;
    max-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #efefef;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.pop-title {
    color: #fbb034 !important;
    margin-bottom: 18px;
    margin-top: 5px;
    width: 300px;
    height: 23px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
}

.title-input {
    margin-bottom: 8px;
    width: 300px;
    height: 20px;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}

.title-link {
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.form-popover {
    font-size: 20px;
    text-align: center;
    height: 30px;
    border: 1px solid #000;
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.login-bottom-text.d-flex {
    color: gray;
    padding-top: 5px;
}

.yellow {
    background-color: #FBB034 !important;
}

.color-black {
    color: #000;
}

.board-list {
    border-radius: 10px;
    background-color: #ffffff;
    color: #000;
    border: 1px solid #d1d1d1;
}

.form-consent {
    margin: 0.75rem auto;
    margin-top: 2rem;
    min-width: 100px;
    max-width: 200px;
    min-height: 60px;
    max-height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.graph-container:hover {
    margin-top: 4px;
    overflow: auto;
    height: calc(100vh + 45px + 34px);
    max-height: calc(100vh - 45px - 34px - 25px);
}

.validate-login {
    color: #AD0505 !important;
    font-family: "DB HelvethaicaMon X" !important;
    font-size: 16pt !important;
    padding-top: 4px !important;
}

.flexbox-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}

ol.breadcrumb li {
    display: inline;
    font-size: 20px;
    line-height: 24px;
}

    ol.breadcrumb li + li:before {
        padding: 8px;
        color: black;
        content: '>';
    }

    ol.breadcrumb li a {
        color: #365BC8;
        text-decoration: none;
    }

ol.breadcrumb {
    padding: 0;
    list-style: none;
}

.validation-summary-errors ul {
    list-style: none;
    margin-left: -40px
}

.swal-button--cancel {
    color: #000;
    background-color: #d7d7d7 !important;
}

.swal-button {
    background-color: #FFC75C;
    color: #000;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    font-weight: 500 !important;
    font-size: 1.125rem;
    padding: 2px 20px;
    line-height: normal;
    height: 26px;
    margin: 0;
    cursor: pointer;
}

    .swal-button:not([disabled]):hover {
        color: #000;
        background-color: #F6B436;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #000 !important;
    font-weight: 400 !important;
    font-size: 1.5rem !important;
}

.close {
    font-size: 1.75rem !important;
    opacity: 1 !important;
}

/*pagination*/
.box {
    float: left;
    padding: 50px 0px;
}

.clearfix::after {
    clear: both;
    display: table;
}

.options {
    margin: 5px 0px 0px 0px;
    float: left;
}

.pagination {
    float: right;
    padding-top: 20px;
}

    .pagination a {
        color: #337ab7;
        float: left;
        padding: 7px 18px;
        text-decoration: none;
        transition: background-color .3s;
        border: 1px solid #ddd;
        font-size: 20px;
        margin: 0px;
        font-family: "DB HelvethaicaMon X";
    }

        .pagination a.active {
            background-color: #4CAF50;
            color: white;
            border: 1px solid #4CAF50;
        }

        .pagination a:hover {
            background-color: #F6B436;
            color: #FFF !important;
            border: 1px solid #f6b436;
            cursor: pointer;
        }

.button_disabled {
    color: #a3a3a3 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.previous_page {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.next_page {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
/*pagination*/

input[type="date"]:disabled, input[type="time"]:disabled, input[type="datetime-local"]:disabled, input[type="month"]:disabled {
    background: #e6e6e6;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    padding: 7px 18px;
    transition: background-color .3s;
    font-size: 20px;
    margin: 0px;
    font-family: "DB HelvethaicaMon X";
    color: #FFF !important;
    border: 1px solid #f6b436 !important;
    background-color: #F6B436 !important;
    background: #F6B436 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666 !important;
    background: transparent;
    box-shadow: none;
    padding: 7px 18px;
    transition: background-color .3s;
    border: 1px solid #ddd;
    font-size: 20px;
    margin: 0px;
    font-family: "DB HelvethaicaMon X";
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

/*tab*/
ul.bar_tabs {
    overflow: visible;
    background: #FFC75C;
    height: 25px;
    padding-left: 14px;
    position: relative;
    z-index: 1;
    width: 100%;
    border-bottom: 1px solid #E6E9ED;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

ul.bar_tabs > li {
    border: 1px solid #E6E9ED;
    color: #333 !important;
    margin-top: -17px;
    margin-left: 8px;
    background: #fff;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.nav > li {
    position: relative;
    display: block;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #212529;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0em;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

ul.bar_tabs > li a {
    padding: 8px 20px;
    background: #F5F7FA;
    margin: 0;
    border-top-right-radius: 0;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 13px 15px 12px;
}

ul.messages {
    padding: 0;
    list-style: none;
    font-size: 18px;
}

    ul.messages li, .tasks li {
        border-bottom: 1px dotted #e6e6e6;
        padding: 8px 0;
    }

        ul.messages li .message_wrapper {
            margin-left: 25px;
            margin-right: 25px;
            word-break: break-all;
        }

            ul.messages li .message_wrapper blockquote {
                padding: 0px 10px;
                margin: 0;
                border-left: 5px solid #FFC75C;
            }
/*tab*/

.form-popover-2 {
    font-size: 30px !important;
    text-align: center !important;
    height: 40px !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25) !important;
    border: 1px solid #80bdff !important;
}

.form-register {
    transform: none;
    margin: 1.75rem auto;
    margin-top: 2.75rem;
    min-height: 570px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.form-content-register {
    padding: 12px;
    margin-left: 0px;
    min-height: calc(70vh + 5px + 5px);
}

.subnavbar-content {
    padding: 0 !important;
    font-size: 18px !important;
}

.dropdown-divider {
    margin: 0 !important;
}

.dropdown-menu {
    padding: 0rem 0 0rem 0 !important;
    font-size: 1.25rem !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #000 !important;
}

img.img_camera {
    width: 100%;
    height: 100%;
}

.note-container {
    margin-top: 20px;
    margin-right: 10px;
    margin-bottom: 20px;
}

a.btn {
    padding-top: 4px;
}

/*hide spinner input type = number*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.btn {
    font-size: 20px !important;
}

    .btn.spacial-1 {
        color: #FFF !important;
    }

    .btn.spacial-2 {
        color: #FFF !important;
    }

#waitSceneBlocker {
    background-color: #F6B436;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 999;
    opacity: 0.3;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}

#waitSceneLoader {
    width: 100%;
    height: 200px;
    position: absolute;
    text-align: center;
    top: 40%;
    left: 0px;
    opacity: 1;
    z-index: 9999 !important;
}

.bg-green {
    background-color: #3A8358 !important;
}

.bg-blue {
    background-color: #3b67c9 !important;
}

.pop-title-container {
    color: #fbb034 !important;
    height: 23px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center !important;
}

.main-container-body {
    padding-top: 1.25rem 1.375rem;
    background-color: #ffeecb;
    border-radius: 1.25rem;
}

.set-meeting-body {
    padding: 2rem;
}

.set-meeting-menu-block {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.set-meeting-item {
    text-align: -webkit-center;
    padding: .625rem;
    background-color: #efefef;
    width: 100%;
    height: 17rem;
    border-radius: .625rem;
    border: 1px solid rgba(0,0,0,.2);
}

.figure-meeting-img {
    margin-top: 10px;
    width: 25%;
    height: 35%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.set-meeting-title {
    font-size: 40px;
    justify-content: inherit;
    height: 20%;
    font-weight: 600;
}

.set-meeting-detail {
    font-size: 20px;
    color: #898989;
}

.title-register {
    font-size: 20pt;
}

/* start operation */
.operation-service {
    position: fixed;
    z-index: 1051;
    right: 10px;
    top: 40%;
}

    .operation-service .item {
        cursor: pointer;
        margin-top: 1px;
        width: 50px;
        height: 55px;
        background-color: #ffffff;
        border-radius: 6px;
        text-align: center;
        transition: 0.3s;
        position: relative;
        border: 1px solid #F6B436;
        box-sizing: border-box;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    }

        .operation-service .item .iconfont {
            display: block;
            position: absolute;
            top: 50%;
            width: 100%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            font-size: 24px;
            color: #F6B436;
            transition: 0.3s;
        }

.dot {
    height: 15px;
    width: 15px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}

.sec {
    position: relative;
    right: -14px;
    top: -22px;
}

.counter.counter-lg {
    top: 2px !important;
}
/* end operation */

/* start POPUP FORM */
.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
}

.form-popup {
    display: none;
    position: fixed;
    bottom: 5%;
    top: 7%;
    background-color: #fff;
    right: 5%;
    width: 92%;
    border: 1px solid #f6b436;
    z-index: 9;
    border-radius: 6px;
    overflow: hidden;
    font-size: 20px;
}

.form-container {
    width: auto;
    /* min-width: 1200px; */
    max-width: 2000px;
    padding: 10px 45px;
    margin: 2px;
    background-color: white;
}

    .form-container input[type=text], .form-container input[type=password] {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        /* background: #f1f1f1; */
    }

        .form-container input[type=text]:focus, .form-container input[type=password]:focus {
            background-color: #ddd;
            outline: none;
        }

    .form-container .cancel {
        background-color: red;
    }

    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }

.action-buttons.form-popup-cancel {
    text-align: end;
    padding: 8px;
}

.form-title {
    color: #fbb034 !important;
    font-weight: 400 !important;
}
/* end POPUP FORM */

.tools-action {
    text-align: center;
    padding-top: 20px;
}

/* start Clock */
.clock-time {
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 200%;
    transform: translate(-50%, -50%);
    color: #f6b436;
    text-shadow: 0 0 20px #f6b436, 0 0 20px #00000000;
}

.time {
    letter-spacing: 0.05em;
    font-size: 80px;
    padding: 5px 0;
}
/* end Clock */

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #F6B436 #F6B436 #fff !important;
}

.nav-tabs {
    border-bottom: 1px solid #F6B436 !important;
}

    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
        border-color: #e9ecef #e9ecef #dee2e6;
    }

.background-transparent {
    background: transparent !important;
    background-color: transparent !important;
    background-image: initial !important;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
    font-family: 'DB HelvethaicaMon X' !important;
}

.height-400 {
    height: 400px;
}

.note-text {
    word-break: break-all !important;
}

.board-header-right-title-container {
    min-width: 35%;
}

.modal-content {
    font-size: 20px;
}

/*edit logo v2*/
.navbar-container {
    padding-left: 0% !important;
}

.left-blog-begin {
    padding-left: 5% !important;
    /*background-color: #f7f7f7;*/
    padding-right: 2px;
}
/*edit logo v2*/

.footer-container-cookie {
    position: sticky;
    bottom: 25px;
    min-height: 40px;
    line-height: 0.9;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    background-color: #f6b436;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 9;
    font-size: 20px;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
}

.btn-cookie {
    margin-left: 20px !important;
    font-weight: 600 !important;
    font-size: 22px !important;
}

.board-meeting-group {
    word-break: break-all;
}

.title_left {
    word-break: break-all;
}

.date {
    word-break: break-all;
}

.screen-header {
    word-break: break-all;
}

.widget-box {
    word-break: break-all;
}

.fc-scroller.fc-day-grid-container {
    height: auto !important;
}

div#hiddenRequiredConsentAccount-error {
    padding-left: 25px;
}

.set-pilot-item {
    box-shadow: 7px 7px 7px #c2c2c2;
    border-radius: 10px;
    padding: 25px 20px 5px 20px;
    height: 200px;
}

span.cookie-link {
    min-width: 110px;
}

.dropdown-menu {
    margin-top: 0;
}

    .dropdown-menu .dropdown-toggle::after {
        vertical-align: middle;
        /*border-left: 4px solid;
        border-bottom: 4px solid transparent;
        border-top: 4px solid transparent;*/
    }

    .dropdown-menu .dropdown .dropdown-menu {
        left: 100%;
        top: 0%;
        margin: 0 1px;
        border-width: 0;
    }

        .dropdown-menu .dropdown .dropdown-menu.left {
            right: 100%;
            left: auto;
        }

    .dropdown-menu > li a:hover,
    .dropdown-menu > li.show {
        background: #ddd;
        /*color: white;*/
    }
/*.dropdown-menu > li.show > a {
                        color: white;
                    }*/

@media (min-width: 768px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        /*border-width: 1px;*/
    }
}

/*start media */

@media (min-width: 700px) {
    .modal-xl {
        max-width: 1000px;
    }
}

@media (min-width: 800px) {
    .modal-xxl {
        max-width: 1200px;
    }
    /*LightBox*/
    .lb-outerContainer {
        width: 750px !important;
        height: 500px !important;
    }
    .lb-image {
        width: 750px !important;
        height: 500px !important;
    }
    .lb-dataContainer {
        width: 750px !important;
    }
    .set_size_img {
        height: 200px !important;
    }
}

@media (max-width: 645px) {
    .footer-container {
        min-height: 45px;
    }

    .footer-container-cookie {
        bottom: 45px;
    }
}

@media only screen and (max-device-width : 1024px) {
    .navbar-collapse {
        display: block;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .subnavbar:hover .subnavbar-content {
        display: block;
    }

    .list-bar-item {
        display: block;
    }

    .list-bar-2 .btn-group {
        display: block;
    }

        .list-bar-2 .btn-group .btn {
            border-radius: 15px !important;
            margin-bottom: 2px;
            margin-top: 2px;
        }

    .board-header-right-title-container {
        min-width: 55%;
    }


}
/* iPads (แนวตั้ง) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    /*LightBox*/
    .lb-outerContainer {
        width: 600px !important;
        height: 400px !important;
    }

    .lb-image {
        width: 600px !important;
        height: 400px !important;
    }

    .lb-dataContainer {
        width: 600px !important;
    }
    .set_size_img {
        height: 200px !important;
    }

    .navbar-collapse {
        display: block;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .subnavbar:hover .subnavbar-content {
        display: block;
    }

    .graph-container .flow-name {
        display: none;
    }

    .form-left-column {
        display: none;
    }

    .form-right-column {
        width: 100%;
    }

    .form-content {
        margin-left: 0px !important;
        max-height: calc(105vh - 45px - 100px - 40px);
    }

    .list-bar-item {
        display: block;
    }

    .list-bar-2 .btn-group {
        display: block;
    }

        .list-bar-2 .btn-group .btn {
            border-radius: 15px !important;
            margin-bottom: 2px;
            margin-top: 2px;
        }

    .board-header-right-title-container {
        min-width: 55%;
    }

    .button-content {
        display: inline-flex;
    }

    .form-footer {
        position: relative;
        padding: 12px 0px;
        margin-left: 10px;
    }

    .set-meeting-body {
        padding: 0rem;
    }

    .form-popup {
        right: 8.5%;
        width: 90%;
    }

    .form-left-column.display-on {
        display: block;
    }

    .graph-header .flow-title {
        margin-left: 0px;
        font-size: 17px;
        line-height: 22px;
        font-weight: 700;
        letter-spacing: 0em;
    }
}

/* iPads (แนวนอน) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    /*LightBox*/
    .lb-outerContainer {
        width: 750px !important;
        height: 500px !important;
    }

    .lb-image {
        width: 750px !important;
        height: 500px !important;
    }

    .lb-dataContainer {
        width: 750px !important;
    }

    .form-popup {
        right: 6.5%;
        width: 90%;
    }

    .graph-header .flow-title {
        margin-left: 0px;
        font-size: 17px;
        line-height: 22px;
        font-weight: 700;
        letter-spacing: 0em;
    }

    .flow-name.operation {
        display: none;
    }
}

/* Mobile ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 767px) {
    /*LightBox*/
    .lb-outerContainer {
        width: 70% !important;
        height: 100% !important;
    }

    .lb-image {
        width: 100% !important;
        height: 300px !important;
    }

    .lb-dataContainer {
        width: 71% !important;
    }
    .set_size_img {
        height: 250px !important;
    }

    .form-fillin-container {
        max-width: 100%;
    }

    .form-left-column {
        display: none;
    }

    .form-right-column {
        width: 100%;
    }

    .form-content {
        margin-left: 0px !important;
    }

    .list-bar-item {
        display: block;
    }

    .list-bar-2 .btn-group {
        display: block;
    }

        .list-bar-2 .btn-group .btn {
            border-radius: 15px !important;
            margin-bottom: 2px;
            margin-top: 2px;
        }

    .footer-container div, .footer-container span {
        font-size: 13px;
        line-height: 10px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .footer-container {
        min-height: 25px;
    }

    .subnavbar-btn {
        font-size: 18px;
    }

    .user-info-profile {
        display: none;
    }

    .dropdown-menu {
        font-size: 1rem !important;
    }

    .subnavbar-content a {
        padding: 5px;
    }

    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0px !important;
        position: static;
    }

    .animated {
        -webkit-animation-duration: 1s;
        animation-duration: 0s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: initial;
    }

    ol.breadcrumb li {
        display: inline;
        font-size: 14px;
        line-height: 14px;
    }

    .screen-header {
        margin: 15px 0px 25px 0px;
    }

    .screen-header-title {
        font-size: 25px;
        font-weight: 500;
        line-height: 25px;
        letter-spacing: 0em;
    }

    .bigger-140 {
        font-size: 80% !important;
    }

    .bigger-110 {
        font-size: 90% !important;
    }

    .bigger-100 {
        font-size: 60%;
    }

    .bigger-90 {
        font-size: 60% !important;
    }

    .bigger-80 {
        font-size: 60% !important;
    }

    .bigger-70 {
        font-size: 60% !important;
    }

    .btn {
        font-size: 15px !important;
        height: 24px;
    }

    .custom-select-label {
        font-size: 15px;
        line-height: 24px;
        color: #333333;
        font-weight: 400;
        margin-right: 8px;
    }

    .label {
        font-size: 15px;
        color: black;
    }

    .input-field {
        font-size: 15px;
        padding: 0 16px 0 16px;
        min-height: 24px;
    }

    .select2-container {
        font-size: 15px;
    }

        .select2-container .select2-selection--single {
            height: 24px;
        }

        .select2-container .select2-selection--multiple {
            height: 24px;
        }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 26px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        top: 4px !important;
    }

    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        top: 4px !important;
    }

    .select2-container .select2-selection--multiple {
        min-height: 24px !important;
    }

    .select2-container .select2-search--inline .select2-search__field {
        margin-top: 2px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        margin-right: 5px;
        margin-top: 1px;
        padding: 0 5px;
        height: 22px;
    }

    .form-card-header {
        font-size: 15px;
    }

    .card-title {
        font-size: 15px;
        line-height: 16px;
        margin-bottom: 0rem;
    }

    .form-card-title {
        font-size: 15px;
        line-height: 10px;
    }

    .user-info {
        word-break: break-word;
    }

    input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
        height: 24px !important;
        font-size: 15px;
    }

    .form-card {
        font-size: 15px;
        line-height: 24px;
    }

    a.btn {
        padding-top: 2px;
    }

    .checkbox-input-field-mark {
        height: 16px;
        width: 16px;
    }

    .checkbox-input-field .checkbox-input-field-mark:after {
        background-image: url(/img/check_box.svg);
        content: "";
        position: absolute;
        top: 0.08rem;
        left: 0.09rem;
        display: none;
        width: .7rem;
        height: .7rem;
    }

    .date {
        font-size: 17px;
        line-height: 17px;
    }

    .text {
        font-size: 15px;
        line-height: 14px;
    }

    .node-wrapper-large {
        font-size: 15px;
    }

    .note-text {
        font-size: 11px;
        line-height: 24px;
        margin: 16px;
        color: #2C5CC8;
    }

    .activity-node {
        margin: 0px 0px 0px 0px;
    }

        .activity-node .text {
            font-size: 12px !important;
        }

    .activity-node-container {
        margin: 12px 0 12px;
    }

    .pagination {
        float: right;
        padding-top: 10px;
    }

        .pagination a {
            color: #337ab7;
            float: left;
            padding: 4px 10px;
            text-decoration: none;
            transition: background-color .3s;
            border: 1px solid #ddd;
            font-size: 15px;
            margin: 0px;
            font-family: "DB HelvethaicaMon X";
        }

    .fc-toolbar .fc-button {
        font-size: .5em;
    }

    body .fc {
        font-size: .5em;
    }

    .form-footer {
        position: relative;
        padding: 12px 0px;
        margin-left: 10px;
        margin-right: 20px;
    }

    .user-info .text {
        display: none;
    }

    .board-header-right-title-container {
        min-width: 30%;
    }

    span.badge.badge-warning {
        font-size: 15px !important;
    }

    .w-info {
        font-size: 15px;
    }

    .w-detail {
        font-size: 15px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        padding: 0px 10px;
        font-size: 15px;
    }

    table.dataTable {
        white-space: nowrap;
        font-size: 15px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        padding: 0px 10px;
        font-size: 15px;
    }

    .operation-service {
        right: 1px;
    }

        .operation-service .item {
            width: 28px;
            height: 28px;
        }

            .operation-service .item .iconfont {
                font-size: 14px;
            }

    .counter.counter-lg {
        top: -4px !important;
    }

    .sec {
        position: relative;
        right: -8px;
        top: -22px;
    }

    .dot {
        height: 6px;
        width: 6px;
        background-color: red;
        border-radius: 50%;
        display: inline-block;
    }

    .form-fillin-container {
        min-height: calc(105vh - 50px);
    }

    .modal-title {
        font-size: 17px !important;
    }

    .file-input-field-label {
        display: inline-block;
        cursor: pointer;
        height: 24px;
        width: 80%;
        font-size: 14px;
        font-weight: 400;
        line-height: 25px;
        letter-spacing: 0.25px;
        text-align: left;
        background-color: #FFFFFF;
        color: #333333;
        border-radius: 0px 4px 4px 0px;
        padding: 0 16px;
        overflow: hidden;
    }

    .file-input-field-button {
        display: inline-block;
        cursor: pointer;
        height: 24px;
        width: 18%;
        font-size: 15px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0.25px;
        text-align: center;
        background-color: #D1D1D1;
        color: #757575;
        overflow: hidden;
        border-radius: 4px 0px 0px 4px;
    }

    .modal-header {
        padding: 5px 10px;
    }

    .modal-footer {
        padding: 5px 10px;
    }

    .dataTables_wrapper {
        overflow-x: auto;
    }

    div#stakeholder {
        padding-top: 0.3rem !important;
    }

    .swal-title {
        padding: 0px 16px;
        font-size: 20px;
    }

    .swal-button {
        font-size: 15px;
        padding: 1px 20px;
        height: 24px;
    }

    div#proxy {
        padding-bottom: 0px !important;
    }

    .card {
        margin-top: 10px;
        margin-bottom: 4px;
        font-size: 15px !important;
    }

    .form-card-title {
        margin-top: 4px;
    }

    .fc-event.fc-info .fc-content:before {
        font-size: 12px !important;
    }

    .fc-event.fc-warning .fc-content:before {
        font-size: 12px !important;
    }

    .fc-event.fc-success .fc-content:before {
        font-size: 12px !important;
    }

    .fc-day-grid-event .fc-title {
        display: none;
    }

    .swal-text {
        font-size: 15px;
    }

    .swal-icon:first-child {
        margin-top: 15px;
    }

    .swal-icon {
        margin: 10px auto;
    }

    h2, .h2 {
        font-size: 1rem;
    }

    h3, .h3 {
        font-size: 1.15rem;
    }

    blockquote.message {
        font-size: 15px !important;
    }

    div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_paginate {
        margin-top: 0px;
        margin-bottom: 5px;
        font-size: 15px;
    }

    .form-login {
        min-width: 200px;
        max-width: 300px;
        min-height: 200px;
        max-height: 420px;
    }

    .pop-title {
        font-size: 20px;
    }

    .title-input {
        font-size: 15px;
    }

    .danger-error {
        font-size: 10pt !important;
        padding-top: 0px !important;
    }

    .radio-wrapper.radio-comfirm {
        align-items: start;
    }

    .list-bar .pl-4 {
        padding-left: 0.85rem !important;
    }

    .list-bar .pl-5 {
        padding-left: 0.85rem !important;
    }

    .modal-content {
        font-size: 15px;
    }

    .table-list.white-space {
        white-space: nowrap;
    }

    div#divError strong {
        font-size: 15px !important;
    }

    div#divSuccess strong {
        font-size: 15px !important;
    }

    div#divSummaryDocument strong {
        font-size: 15px !important;
    }

    div#divError_OpenMeeting strong {
        font-size: 15px !important;
    }

    div#divError_OpenMeetingCheck strong {
        font-size: 15px !important;
    }

    .close {
        font-size: 1.5rem !important;
    }

    .btnSelectAgenda .bigger-100 {
        font-size: 90%;
    }

    .title-register {
        font-size: 15pt;
    }

    #otp_id .input-field {
        padding: 0 10px 0 10px !important;
    }

    .title-link {
        font-size: 15px;
    }

    .board-meeting .board-meeting-group {
        font-size: 15px !important;
    }

    .form-container {
        padding: 2px 2px !important;
    }

        .form-container.pt-5 {
            padding-top: 1.5rem !important;
        }

    .form-left-column.display-on {
        display: block;
    }

    .graph-header .flow-title {
        margin-left: 0px;
        font-size: 15px;
        line-height: 10px;
        font-weight: 700;
        letter-spacing: 0em;
    }

    .graph-container .flow-name {
        display: none;
    }

    #divQuestion .graph-item-circle-large {
        width: 25px;
        height: 25px;
    }

        #divQuestion .graph-item-circle-large span, #divQuestion .graph-item-circle-large div {
            font-size: 15px;
        }

    #divQuestion .graph-item-line {
        width: 3px;
        height: 7px;
    }

    #divQuestion .graph {
        padding: 12px 0 12px 0px;
    }

    #divQuestion .graph-item-topic {
        width: 25px;
        min-width: 25px;
    }

    #divQuestion h4, #divQuestion .h4 {
        font-size: 1rem !important;
    }

    #divQuestion .col-10 {
        overflow-x: auto;
    }

    #divQuestion .form-content {
        width: 650px;
    }
}

@media only screen and (max-device-width : 480px) {
    /*LightBox*/
    .lb-outerContainer {
        width: 70% !important;
        height: 100% !important;
    }

    .lb-image {
        width: 100% !important;
        height: 250px !important;
    }

    .lb-dataContainer {
        width: 71% !important;
    }
}
/*end media */

/*Table-StockInformationDetails in Register*/
.table-list-stock {
    border-collapse: collapse;
}

    .table-list-stock thead tr {
        background-color: var(--ca-color);
    }

    .table-list-stock thead th {
        border-bottom: 1px solid #000000 !important;
        font-size: 20px;
        padding: .5rem .5rem !important;
    }

    .table-list-stock tbody td {
        font-size: 20px;
    }

    .table-list-stock tfoot th {
        font-size: 20px;
        padding: .5rem .5rem !important;
    }

.bg-gray-collapse {
    background-color: #f7f7f7;
}

.form-card-header-collapse {
    height: fit-content;
    background-color: #e0e0e0;
    border-radius: 5px 5px 0px 0px;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #000000;
    padding: 8px 16px 8px 16px;
}