@charset "UTF-8";

*:focus {
  outline: none;
}

table {
  border-spacing: 0px;
  border-style: none;
  border-collapse: collapse;
  table-layout: fixed;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  display: inline-block;
  vertical-align: top;
}

label,
span {
  display: inline-block;
}

button,
select,
input,
label,
span,
li,
a,
td {
  vertical-align: middle;
}

td,
span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

select::-ms-expand {
  display: none;
}

td,
li {
  border-bottom: 1px solid var(--border);
}

.submit_list li {
  border-bottom: none;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  height: 100px;
  background-color: #8f8f8f;
}

::placeholder {
  color: #525252;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #525252;
}

::-webkit-input-placeholder {
  color: #525252;
  opacity: 1;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

:root {
  --bgc: #242424;
  --bgc2: #2e2e2e;
  --navi: #000000;
  --menu: #2f373a;
  --head: #314b47;
  --head2: #686868;
  --head3: #1d1d1d;
  --btn: #7c571f;
  --accent: #e7ae59;
  --active: #85733a;
  --active2: #ffbc5f;
  --hover: #6e6e6e;
  --border: #474747;
  --font: #fdfdfd;
  --font2: #e0e0e0;
  --font3: #b4b4b4;
  --f_bgc: #333333;
  --f_bgc2: #3f3f3f;
  --f_bgc3: #f0f0f0;
  --f_bd: #363636;
  --f_bd2: #5a5a5a;
  --f_bd3: #2b2b2b;
}

input,
progress {
  accent-color: var(--active2);
}

.thead tr td {
  background: var(--head);
  border-bottom: none;
  cursor: pointer;
}

.thead_tr td {
  background: var(--head2);
  border-bottom: none;
  cursor: pointer;
}

.list li:hover,
.list tr:hover,
.list_li:hover,
.list_tr:hover {
  background-color: var(--hover);
  transition: 0.1s;
  cursor: pointer;
}

.list li.active,
.list tr.active,
.list_li.active,
.list_tr.active {
  background-color: var(--active);
}

label {
  width: 85px;
  font: 9pt sans-serif;
  color: var(--font2);
  text-align: left;
  padding: 2px;
  padding-left: 5px;
  background-color: var(--f_bgc2);
  border: 1px solid var(--f_bd2);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.label_radio {
  width: auto;
  font: 9pt sans-serif;
  color: var(--font2);
  text-align: left;
  padding: 0px 0px 2px 4px;
  padding-left: 5px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.title {
  width: 100%;
  font: 9pt sans-serif;
  color: #f0f0f0;
  text-align: left;
  padding: 5px;
  padding-left: 15px;
  margin: 0px;
  background-color: var(--head);
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid var(--f_bd3);
}

select {
  width: 130px;
  font: 9pt sans-serif;
  color: var(--font);
  text-align: left;
  padding: 1px 0px;
  padding-left: 1px;
  padding-right: 1em;
  background-color: var(--f_bgc);
  border: 1px solid var(--f_bd2);
  border-left: none;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

select.sq {
  border: 1px solid var(--f_bd2);
  border-radius: 5px;
}

input[type="text"] {
  width: 150px;
  font: 9pt sans-serif;
  text-align: left;
  padding: 2px;
  padding-left: 5px;
  color: var(--font);
  background-color: var(--f_bgc);
  border: 1px solid var(--f_bd2);
  border-left: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

input[type="text"].sq {
  border: 1px solid var(--f_bd2);
  border-radius: 5px;
}

input[type="radio"] {
  width: 16px;
  height: 16px;
  border: 1px;
  vertical-align: middle;
  margin-top: 0px;
  margin-right: 5px;
  accent-color: var(--accent);
  cursor: pointer;
}

input[type="radio"]:checked:disabled {
  opacity: 1;
  appearance: none;
  border: none;
  background: url(/img/radio.png) no-repeat 50% 50%;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 2px solid var(--f_bd);
  vertical-align: middle;
  margin-top: 3px;
  margin-right: 5px;
}

button,
.btn {
  display: inline-block;
  cursor: pointer;
  font: 9pt sans-serif !important;
  color: #dfdfdf;
  padding: 1px 5px 2px 5px;
  background: var(--btn);
  border: solid 1px #c0c0c0;
  border-radius: 3px;
}

.btn_black {
  display: inline-block;
  cursor: pointer;
  font: 9pt sans-serif !important;
  color: #acacac;
  padding: 1px 5px 2px 5px;
  background: #000000;
  border: solid 1px #8d8d8d;
  border-radius: 3px;
}

.btn_black_s {
  display: inline-block;
  cursor: pointer;
  font: 8pt sans-serif !important;
  color: #acacac;
  padding: 0px 5px 2px 5px;
  background: #000000;
  border: solid 1px #8d8d8d;
  border-radius: 3px;
  width: 50px;
}

.btn_modal {
  display: inline-block;
  cursor: pointer;
  font: 9pt sans-serif !important;
  color: #dfdfdf;
  padding: 1px 5px 2px 5px;
  background: var(--btn);
  border: solid 1px #c0c0c0;
  border-radius: 3px;
  text-align: center;
}

.btn_icon {
  display: inline-block;
  cursor: pointer;
  font: 9.5pt sans-serif !important;
  color: #dfdfdf;
  padding: 1px;
  background: var(--btn);
  border: solid 1px #c0c0c0;
  border-radius: 3px;
  width: 20px;
  text-align: center;
}

button:hover,
.btn:hover,
.btn_black:hover,
.btn_black_s:hover,
.btn_icon:hover {
  color: #ffffff;
  border: solid 1px #ffffff;
  transition: 0.1s;
}

button:active,
.btn:active,
.btn_black:active,
.btn_black_s:active,
.btn_icon:active,
.btn_modal:active {
  position: relative;
  top: 1px;
}

.box {
  display: block;
  float: left;
  margin: 5px;
  background-color: transparent;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--f_bd2);
  border-radius: 5px;
}

.container {
  display: block;
  width: 1400px;
  height: 830px;
  margin: auto;
  background-color: var(--bgc);
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.sub_container {
  width: 1400px;
  height: 800px;
  overflow: hidden;
  font: 9pt sans-serif;
  color: white;
}

.container_frame {
  width: 1400px;
  height: 800px;
  overflow: hidden;
  font: 9pt sans-serif;
  color: white;
  padding: 0;
}

.container_navi {
  width: auto;
  color: white;
  background-color: var(--navi);
  padding-left: 10px;
}

.container_navi img {
  width: 20px;
  margin: 0px;
}

.container_navi span {
  font: 9pt sans-serif;
}

.lt {
  text-align: left;
}

.rt {
  text-align: right;
}

.f_lt {
  display: block;
  float: left;
}

.f_rt {
  display: block;
  float: right;
  margin-right: 5px;
}

/*-----------------------------------------------------------------------------------------------------------------------------*/

.dz_box {
  width: 180px;
  height: 785px;
}

.dz_input_box {
  position: absolute;
  z-index: 3;
  left: 5px;
  top: 710px;
  width: 360px;
  height: auto;
  padding-top: 10px;
  border-top: 1px solid white;
}

.ctx_container {
  width: 270px;
  height: 785px;
}

.regimen_container {
  width: 500px;
  height: 785px;
}

.calc_container {
  position: absolute;
  z-index: 5;
  left: 1167px;
  width: 220px;
  height: 785px;
}

.frame_container {
  position: absolute;
  z-index: 10;
  left: 370px;
  width: 785px;
  height: 785px;
  display: none;
  overflow: hidden;
}

.frame_tools {
  width: 785px;
  height: 745px;
  overflow: hidden;
  border-bottom: 1px solid var(--f_bd2);
}

.list li {
  padding: 5px 0px 5px 5px;
}

textarea {
  width: 478px;
  height: 420px;
  font: 9.5pt sans-serif;
  color: var(--font);
  background-color: var(--f_bgc2);
  line-height: 140%;
  padding: 5px;
  border: 1px solid var(--f_bd);
  border-radius: 5px;
  resize: none;
  margin: 5px;
}

.dz_list li span {
  vertical-align: top;
}

.r_list li span {
  vertical-align: top;
}

.icon {
  font-size: 8pt;
  color: var(--font3) !important;
}

.r_btn2 input {
  width: 50px;
}

.c_update,
.c_up {
  font: 8pt sans-serif;
  padding-left: 5px;
  color: #b3b3b3;
}

input[type="text"].regimen_no {
  font: 8pt sans-serif;
  color: #b3b3b3;
  border: none;
  width: 25px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
}

.lb_calc {
  width: 110px;
  margin: 10px 0px 5px 7px;
}

.inp_calc {
  width: 80px !important;
  margin: 10px 0px 5px 0px;
}

.line {
  width: 100%;
  height: 5px;
  margin: 8px 0px 3px 0px;
  background-color: var(--head2);
  color: transparent;
}

.inp_dose {
  width: 40px !important;
  text-align: center !important;
  padding-left: 0px;
  font: 9px san;
}

.b_dose {
  display: block;
  width: 200px;
  margin: 3px 0px 2px 10px;
  font: 9.5pt sans-serif;
}

.b_dose span:nth-of-type(1) {
  width: 100px;
}

.ch_table td {
  width: 20px;
  height: 20px;
  border: 1px solid #474747;
  padding: 2px;
  text-align: center;
  color: var(--font2);
}

.ch_table td:hover {
  color: var(--font);
  border: solid 1px --font;
  background-color: var(--hover);
  cursor: pointer;
  transition: 0.05s;
}

.ch_table td:active {
  position: relative;
  top: 1px;
}

.percent {
  width: 26px !important;
  height: 15px;
  font: 8pt sans-serif;
  border: 1px solid #474747;
  border-radius: 3px;
  padding: 1px;
  margin: 0px !important;
  text-align: center;
  color: var(--font2);
}

.sex {
  width: 20px !important;
  height: 13px;
  font: 7pt sans-serif;
  border: 1px solid #474747;
  border-radius: 3px;
  padding: 0px;
  margin: 0px !important;
  text-align: center;
  color: var(--font2);
  background-color: #000000;
}

.percent:hover,
.sex:hover {
  color: var(--font);
  border: solid 1px --font;
  background-color: var(--hover);
  cursor: pointer;
  transition: 0.05s;
}

.percent:active,
.sex:active {
  position: relative;
  top: 1px;
}

.percent.active,
.sex.active {
  background-color: var(--active);
}

.tool {
  width: 99px;
  height: 18px;
  font: 8pt sans-serif;
  color: var(--font2);
  background-color: #444444;
  border: 1px solid #616161;
  border-radius: 5px;
  padding: 0px;
  margin: 5px 0px 0px 5px;
  text-align: center;
  padding-top: 2px;
}

.tool:hover {
  color: white;
  border: solid 1px white;
  background-color: var(--hover);
  cursor: pointer;
  transition: 0.05s;
}

.tool:active {
  position: relative;
  top: 1px;
}

.ui-dialog-titlebar {
  font: 9pt sans-serif;
  color: white !important;
  background-color: var(--bgc2) !important;
}

.ui-dialog.ui-dialog-content {
  background-color: var(--font3);
  color: var(--f_bgc2);
}

.icon_yellow {
  color: #bb7000;
  font-size: 30px;
  padding-left: 10px;
}

.icon_red {
  color: #9e0000;
  font-size: 30px;
  padding-left: 10px;
}

.icon_text {
  font: 9pt sans-serif;
  margin-left: 15px;
}

.modal_frame {
  width: 1112px;
  height: 655px;
  overflow: hidden;
}
.modal_div {
  background: #000000 !important;
  margin: 0px;
  padding: 0px;
}
.modal_div .ui-dialog-titlebar {
  background-color: #707070 !important;
  border: none;
}
.modal_div .ui-dialog-buttonpane {
  border: none;
  margin: 0px;
  padding-top: 0px;
  background: #000000 !important;
}
.modal_div .ui-dialog-buttonset button {
  float: right !important;
  font-size: 10px;
  padding: 3px;
  width: 40px;
  background: #4d4d4d !important;
  color: white;
  border-radius: 5px;
  margin-right: 5px;
}

.modal_div .ui-dialog-buttonset button:nth-of-type(1) {
  float: left !important;
  background: #000000 !important;
  margin-right: 5px;
  width: 60px;
}

.modal_div .ui-dialog-buttonset button:nth-of-type(2) {
  float: left !important;
  background: #000000 !important;
  margin-right: 850px;
  width: 60px;
}

/* white them -----------------------------------------------------------------------------------------------------------------------------*/
.modal_div.white {
  background: white !important;
}
