@CHARSET "UTF-8";

/* 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;
}

body {
    font-family: Arial, "Microsoft JhengHei";
}

::-ms-reveal { /*Edge password reveal button*/
    display: none;
}

.pwd_reveal {
    background-image: url("../image/hide_password_normal.svg");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.pwd_reveal.enable {
    background-image: url("../image/reveal_password_normal.svg");
}

.root_bg {
    background: url("../image/background.svg") no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
}

.transparent_bg {
    background: transparent;
}

.align_right {
    text-align: right;
}

.no_display {
    display: none !important;
}

.text_ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
}

/*bootstrap modal*/
div.modal-content {
    border-radius: 5px;
    box-shadow: 5px 8px 8px 0 rgba(0, 0, 0, 0.6);
    border: solid 1px rgba(110, 110, 110, 0.6);
    background: none;
    background-image: linear-gradient(120deg, #2d2d2d, rgba(50, 50, 50, 0.75));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

div.modal-header {
    border-bottom: none;
}

.modal_title_block {
    width: 100%;
    text-align: center;
}

.modal_title_block .modal-title {
    font-size: 20px;
    color: #ffffff;
}

div.modal-body {
    font-size: 16px;
    color: #ffffff;
}

.modal_field_block {
    width: 100%;
    margin-bottom: 20px;
}

.modal_field {
    width: 100%;
}

select.modal_field {
    height: 40px;
    padding-left: 6px;
    border-radius: 5px;
    border: solid 1px #565656;
    background-color: #0e0e0e;
    font-size: 16px;
    color: #ffffff;
}

select.modal_field:disabled {
    border: solid 1px #474747;
    background-color: #282828;
    color: #646464;
}

input.modal_field {
    height: 40px;
    padding-left: 10px;
    border-radius: 5px;
    border: solid 1px #565656;
    background-color: #0e0e0e;
    font-size: 16px;
    color: #ffffff;
}

input.modal_field:disabled {
    border: solid 1px #474747;
    background-color: #282828;
    color: #646464;
}

input.modal_field::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #878787;
    opacity: 1; /* Firefox */
}

input.modal_field:disabled::placeholder {
    color: #646464;
}

input.modal_field:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #878787;
}

input.modal_field:disabled:-ms-input-placeholder {
    color: #646464;
}

input.modal_field::-ms-input-placeholder { /* Microsoft Edge */
    color: #878787;
}

input.modal_field:disabled::-ms-input-placeholder {
    color: #646464;
}

.input-group.modal_field {
    border-radius: 5px;
    border: solid 1px #565656;
    background-color: #0e0e0e;
}

.input-group.modal_field.disable {
    border-color: #474747;
    background-color: #282828;
}

.input-group.modal_field input {
    width: calc(100% - 38px); /*field_icon*/
    height: 38px;
    border: none;
}

.input-group.modal_field input:focus {
    outline: none;
    box-shadow: none;
}

.input-group.modal_field .btn_secondary {
    border-radius: 5px !important;
}

.field_icon {
    width: 38px;
    height: 21px;
}

.modal_field_error {
    padding-left: 15px;
    font-size: 14px;
    color: #ff4b32;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.modal_field_msg {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.modal_field_msg.disable {
    color: #646464;
}

.modal_field_msg_sub {
    padding-left: 11px;
    font-size: 12px;
    color: #878787;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

div.modal-footer {
    justify-content: center;
    border-top: none;
}
/*bootstrap modal end*/

select {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    background: url(../image/arrow_menu.svg) no-repeat calc(100% - 15px) transparent;
    background-size: 12px;
    padding-right: 30px; /* avoid text overlap arrow */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown_common {
    height: 40px;
    padding-left: 15px;
    border-radius: 5px;
    border: solid 1px #565656;
    background-color: #0e0e0e;
    text-align: left;
    font-size: 16px;
    color: #ffffff;
}

.dropdown_common:disabled {
    border: solid 1px #474747;
    background-color: #282828;
    color: #646464;
}

.dropdown .dropdown-divider {
    border-color: #565656;
    margin: 0;
}

.dropdown_bs_common .btn.dropdown-toggle {
    height: 40px;
    padding-left: 15px;
    padding-right: 30px;
    border-radius: 5px;
    border: solid 1px #565656;
    background-color: #0e0e0e;
    text-align: left;
    font-size: 16px;
}

.dropdown_bs_common .btn.dropdown-toggle::after {
    border: none;
    width: 12px;
    height: 7px;
    margin-left: 3px;
    vertical-align: middle;
    background-image: url("../image/arrow_menu.svg");
    background-repeat: no-repeat;
}

.dropdown_bs_common .btn.dropdown-toggle > :first-child {
    display: inline-block;
    width: 100%;
}

.dropdown_bs_common .dropdown-menu {
    padding: 0;
    border: solid 1px #565656;
    border-radius: 0;
    background-color: #0e0e0e;
}

.btn_primary {
    width: 260px;
    height: 46px;
    border: none;
    background: none;
    border-radius: 5px;
    background-color: #0599ff;
    font-size: 19px;
    text-align: center;
    color: #ffffff;
}

.btn_primary:hover {
    background-color: #1ea3ff;
}

.btn_primary:active {
    background-color: #0489e5;
}

.btn_primary:disabled {
    background-color: #004b7d;
    color: #767676;
}

.btn_secondary {
    min-width: 135px;
    height: 34px;
    border: none;
    background: none;
    border-radius: 5px;
    background-color: #464646;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}

.btn_secondary:hover {
    background-color: #1ea3ff;
}

.limit_hover .btn_secondary {
    background-color: #464646;
}

.btn_secondary:active {
    background-color: #0489e5;
}

.btn_secondary:disabled {
    background-color: #464646;
    color: #787878;
}

.btn_tertiary {
    height: 34px;
    padding: 1px 5px 1px 5px;
    border: none;
    background: none;
    border-radius: 5px;
    background-color: #0599ff;
    font-family: Arial;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    min-width: 135px;
}

.btn_tertiary:hover {
    background-color: #1ea3ff;
}

.btn_tertiary:active {
    background-color: #0489e5;
}

.btn_tertiary:disabled {
    background-color: #464646;
    color: #787878;
}

.custom_radio_btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    background: none;
    cursor: pointer;
}

.custom_radio_btn:disabled {
    cursor: unset;
}

.back_icon {
    width: 12px;
    height: 18px;
    margin-right: 9px;
    background-image: url("../image/back_normal.svg");
    background-repeat: no-repeat;
}

.back_icon:hover {
    background-image: url("../image/back_hover.svg");
}

a:hover .back_icon {
    background-image: url("../image/back_hover.svg");
}

.back_icon:active {
    background-image: url("../image/back_pressed.svg");
}

a:active .back_icon {
    background-image: url("../image/back_pressed.svg");
}

a .back_text {
    font-size: 16px;
    color: #d3d3d3;
}

a:hover .back_text {
    color: #ffffff;
}

a:active .back_text {
    color: #0599ff;
}

.basic_divider_line {
    height: 2px;
    border-top: solid 1px #323232;
    border-bottom: solid 1px #737373;
}

.doc_link {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-decoration: none;
}

.doc_link:hover {
    color: #ffffff;
}

.doc_block {
    border-radius: 5px;
    background-color: rgba(14, 14, 14, 0.6);
    padding: 29px 29px 9px 29px;
    margin-bottom: 20px;
    font-family: Arial;
    font-size: 14px;
    color: #ffffff;
}

.doc_block mark {
    background-color: #4e4e4e;
    color: #ffffff;
}

ol.parenthesis_num {
    counter-reset: item;
    margin-left: 0;
    padding-left: 0;
}

ol.parenthesis_num li {
    display: block;
    margin-left: 1.75em;
}

ol.parenthesis_num li::before {
    content: "(" counter(item) ") ";
    counter-increment: item;
    display: inline-block;
    width: 1.75em;
    margin-left: -1.75em;
}

.btn-close:focus {
    box-shadow: unset;
    opacity: 0.5;
}

.online_status {
    color: #8c8c8c;
}

.online_status.green {
    color: #53d046;
}

.online_status.red {
    color: #ff4b32;
}

.online_status.white {
    color: #ffffff;
}

.pwd {
    -webkit-text-security: disc;
}

.form-switch {
    margin-left: 5px;
}

.form-switch .form-check-input:checked {
    background-color: #009bef;
}

.toast_container {
    position: absolute;
    left: 0px;
    top: 4%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.toast_view {
    min-height: 36px;
    width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    color: #ffffff;
    text-align: center;
}

.toast_view .toast-body {
    padding: 0px 24px;
}

.beta_icon {
    width: 66px;
    height: 24px;
}
