/* Size */
/* Size End */
/* FontFace */
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  src: url("../fonts/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 800;
  src: url("../fonts/Roboto-ExtraBold.ttf") format("truetype"), url("../fonts/Roboto-ExtraBold.ttf") format("truetype");
}
/* FontFace End */
/* Size */
/* Size End */
/* Color */
:root {
  --backgroundColor: #f5f7f8;
  --primaryColor: #0c53fb;
  --primaryHoverColor: #0a46d3;
  --baseColor: #000;
  --baseColorHover: #454545;
  --secondColor: #0c9a6f;
  --secondHoverColor: #087f5b;
  --grayColor: #e1e6eb;
  --grayColorHover: #d0d7dd;
  --inpubg: #f1f3f4;
  --lgrayColor: #f4f7fa;
  --lightGrayColor: #eceff3;
  --borderColor: #e0e0e0;
  --textColor: #6e6d7a;
  --otherText: #858585;
  --orangeColor: #ff7900;
}

/* Color End */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: var(--baseColor);
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  position: relative;
  height: 100%;
  background-color: var(--lgrayColor);
  background-size: cover;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primaryColor);
  font-size: 14px;
  text-decoration: none;
}
a:hover {
  color: var(--primaryHoverColor);
}

a, abbr, acronym, address, applet, b, big, blockquote, body, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, u, ul, var {
  padding: 0;
  margin: 0;
}

/* Other Style */
.clear-fix {
  display: block;
  clear: both;
}

.clear-fix::after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

*, *:after, *:before {
  box-sizing: border-box;
  box-sizing: border-box;
}

*, *:focus, *:active {
  -ms-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  box-sizing: border-box;
}

.dg {
  display: grid;
}

.dgc {
  align-items: center;
}

.aic {
  align-items: center;
}

.fe {
  justify-content: flex-end;
}

.g2 {
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}

.g3 {
  grid-template-columns: repeat(3, 1fr);
}

.g4 {
  grid-template-columns: repeat(4, 1fr);
}

.g5 {
  grid-template-columns: repeat(5, 1fr);
}

.g6 {
  grid-template-columns: repeat(6, 1fr);
}

.g9 {
  grid-template-columns: repeat(9, 1fr);
}

.gc1 {
  grid-column: 1/3;
}

.gc1-4 {
  grid-column: 1/4;
}

.gc4-5 {
  grid-column: 4/5;
}

.gap1 {
  gap: 10px;
}

.gap1_6 {
  gap: 16px;
}

.gap2 {
  gap: 20px;
}

.df {
  display: flex;
}

.dfc {
  display: flex;
  align-items: center;
}

.dfs {
  display: flex;
  align-items: flex-start;
}

.dcsb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dfcc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr {
  position: relative !important;
}

.pa {
  position: absolute !important;
}

.pa_cc {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.__w10 {
  width: 100%;
}

.__mt1 {
  margin-top: 10px;
}

.__mt1_6 {
  margin-top: 16px;
}

.ml_5 {
  margin-left: 5px;
}

.ml1 {
  margin-left: 10px;
}

.ml1_6 {
  margin-left: 16px;
}

.ml2 {
  margin-left: 20px;
}

.m23 {
  margin-top: 20px;
}

.mt3 {
  margin-top: 30px;
}

/* Main Style */
.container {
  margin: 0 auto;
  width: 840px;
  transition: all 0.1s ease-in;
  box-sizing: border-box;
}

.widget {
  width: 360px;
}

.full_container {
  margin: 0 auto;
  max-width: 1280px;
  transition: all 0.1s ease-in;
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background-color: var(--primaryColor);
}

::selection {
  color: #fff;
  background-color: var(--primaryColor);
}

/* Main Style End */
.__input,
.__select,
.__textarea,
.__input_text {
  position: relative;
  color: var(--baseColor);
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 20px;
  height: 38px;
  width: 100%;
  padding: 6px 8px;
  background-color: var(--lgrayColor);
  transition: border-color 0.1s cubic-bezier(0.7, 0, 0.3, 1);
  border: none;
  border-width: 1px;
  border-style: solid;
  border-color: var(--grayColorHover);
  border-radius: 4px;
  z-index: 0;
}
.__input:disabled, .__input:disabled:hover,
.__select:disabled,
.__select:disabled:hover,
.__textarea:disabled,
.__textarea:disabled:hover,
.__input_text:disabled,
.__input_text:disabled:hover {
  color: var(--otherText);
  border-color: var(--lightGrayColor);
}
.__input::-moz-placeholder, .__select::-moz-placeholder, .__textarea::-moz-placeholder, .__input_text::-moz-placeholder {
  color: #acb4c1;
  font-weight: 400;
}
.__input::placeholder,
.__select::placeholder,
.__textarea::placeholder,
.__input_text::placeholder {
  color: #acb4c1;
  font-weight: 400;
}

.__input:not(:-moz-placeholder-shown), .__select:not(:-moz-placeholder-shown), .__textarea:not(:-moz-placeholder-shown) {
  background-color: #fff;
  border-color: #d3d8e0;
}

.__input:not(:placeholder-shown),
.__select:not(:placeholder-shown),
.__textarea:not(:placeholder-shown) {
  background-color: #fff;
  border-color: #d3d8e0;
}
.__input:disabled:not(:-moz-placeholder-shown), .__select:disabled:not(:-moz-placeholder-shown), .__textarea:disabled:not(:-moz-placeholder-shown) {
  color: #7f8da5;
  border-color: var(--lightGrayColor);
}
.__input:disabled:not(:placeholder-shown),
.__select:disabled:not(:placeholder-shown),
.__textarea:disabled:not(:placeholder-shown) {
  color: #7f8da5;
  border-color: var(--lightGrayColor);
}

.__input_text {
  border-color: transparent !important;
}

select, .__select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 32px;
  background: var(--lgrayColor) url("../images/icon-drop-arrow.svg") no-repeat center center;
  background-position: right 12px center;
  background-size: 10px 10px;
  outline: 0;
}

.__textarea {
  height: auto;
  min-height: 6rem;
  max-height: 12rem;
  resize: vertical;
}

textarea::-moz-placeholder {
  color: #acb4c1;
}

textarea::placeholder {
  color: #acb4c1;
}

.__input_m {
  font-size: 13px;
  height: 40px;
  padding: 0 12px;
}

.__input::-moz-placeholder {
  color: #acb4c1;
  font-size: 14px;
}

.__input::placeholder {
  color: #acb4c1;
  font-size: 14px;
}

.__input:hover,
.__select:hover,
.__textarea:hover,
.__input_rest:hover {
  border-color: #7f8da5;
  z-index: 2;
}

.__input:focus,
.__select:focus,
.__textarea:focus,
.__input_rest:focus {
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 122, 254, 0.15);
  border-color: var(--primaryColor);
  z-index: 3;
}

.__input_s, .text_input, .text_small_in, .__select_s {
  height: 28px;
  max-width: 200px;
  padding: 4px 8px;
  border-radius: 4px;
}

.__input_s, .text_input, .text_small_in {
  width: 75px;
}

.total {
  background-color: rgba(12, 83, 251, 0.1) !important;
}

.text_input, .text_small_in {
  line-height: 20px;
  padding: 4px 10px;
}

.text_input {
  width: 140px;
  cursor: pointer;
}
.text_input:hover {
  background-color: var(--lgrayColor);
}

.hide_input {
  display: none;
  width: 140px;
}
.hide_input button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}
.hide_input .cancel::after, .hide_input .save::after {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  background: url("../images/icon-cancel.png") no-repeat center center;
  background-size: 100%;
}
.hide_input .save::after {
  background: url("../images/icon-save.png") no-repeat center center;
  background-size: 100%;
}

.__in_error {
  border-color: #d0021b;
}

.notice {
  padding: 10px 14px;
  margin: 16px 0;
  background-color: var(--grayColor);
  border-radius: 8px;
}
.notice.green {
  color: #0f5f55;
  background-color: #bef8ed;
}

.form_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.form_item ~ .form_item {
  margin-top: 16px;
}
.form_item label {
  color: var(--textColor);
  font-size: 14px;
  margin-bottom: 5px;
}

.form_item_flex {
  display: flex;
  align-items: center;
}
.form_item_flex ~ .form_item_flex {
  margin-left: 20px;
}
.form_item_flex .__label {
  margin: 0;
  margin-right: 10px;
  white-space: nowrap;
}

.__form_item_line {
  display: grid;
  margin: 24px 0;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 16, 34, 0.1);
}

.__label {
  display: flex;
  color: var(--textColor);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  min-height: 16px;
  margin-bottom: 5px;
}

.label, .label-text {
  color: var(--baseColor);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 !important;
  width: 100%;
  overflow: hidden;
}

.__text_desc {
  margin-top: 8px;
}
.__text_desc p {
  color: var(--primaryColor);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #495460;
}
.__text_desc p ~ p {
  margin-top: 8px;
}
.__text_desc .__error {
  color: #d0021b;
  font-weight: 500;
}

.input_col {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}
.input_col ~ .input_col {
  margin-top: 10px;
}

.add_rem {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--lightGrayColor);
  border-radius: 8px;
  cursor: pointer;
}
.add_rem .add {
  position: relative;
  height: 2px;
  width: 18px;
  background-color: #7f8da5;
}
.add_rem .add::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  height: 18px;
  width: 2px;
  background-color: #7f8da5;
  transform: translate(-50%, -50%);
}
.add_rem .remove {
  height: 2px;
  width: 18px;
  background-color: #7f8da5;
}

.g2to1 {
  grid-column: 1/3;
}

.g3to1 {
  grid-column: 1/4;
}

/* Button Style */
.__btn {
  position: relative;
  color: var(--baseColor);
  font-size: 14px;
  font-family: var(--primaryColor);
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 14px;
  background-color: transparent;
  transition: background-color 0.2s cubic-bezier(0.7, 0, 0.3, 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  z-index: 2;
}
.__btn i {
  margin-right: 10px;
}

.__btn_l {
  height: 44px;
  border-radius: 8px;
}

.__btn_m {
  height: 38px;
  border-radius: 8px;
}

.__btn_s {
  text-decoration: none !important;
  font-size: 13px;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
}

.__btn_htrans {
  transition: background-color 0.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.__default {
  background-color: var(--lgrayColor) !important;
  border: none;
}
.__default:hover {
  background-color: var(--lightGrayColor) !important;
}
.__default .__deactivated {
  opacity: 0.6;
}

.__primary {
  color: #fff;
  background-color: var(--primaryColor);
}
.__primary:hover {
  color: #fff;
  background-color: var(--primaryHoverColor);
}

.green_btn {
  color: #fff;
  background-color: var(--secondColor);
}
.green_btn:hover {
  color: #fff;
  background-color: var(--secondHoverColor);
}

.__back_btn {
  color: #fff;
  background-color: var(--otherText);
}
.__back_btn:hover {
  color: #fff;
  background-color: var(--textColor);
}

.__second_btn {
  color: #fff;
}

/* Button Style End */
/* Other */
.checkbox-label {
  color: var(--textColor);
  display: flex;
  align-items: center;
  min-height: 22px;
  position: relative;
  padding-left: 30px;
  flex-grow: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.checkbox-label .checkbox,
.checkbox-label .radiobox {
  opacity: 0;
  position: absolute;
}

.checkmark, .radiomark {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--borderColor);
  transform: translateY(-50%);
  border-radius: 2px;
}

.radiomark {
  border-radius: 50%;
}

.checkbox-label:hover .checkbox ~ .checkmark,
.checkbox-label:hover .radiobox ~ .radiomark {
  border-color: var(--primaryColor);
}

.checkbox[type=checkbox]:checked + .checkmark {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.radiobox[type=radio]:checked + .radiomark {
  background-color: var(--primaryColor);
  border-color: var(--baseColor);
}

.checkbox[type=checkbox]:checked + .checkmark::before,
.checkbox[type=checkbox]:checked + .checkmark::after {
  display: flex;
  position: absolute;
  content: "";
  top: 8px;
  left: 6px;
  width: 9px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  border-radius: 2px;
}

.checkbox[type=checkbox]:checked + .checkmark::before {
  top: 9px;
  left: 4px;
  width: 5px;
  transform: rotate(45deg);
}

.radiobox[type=radio]:checked + .radiomark::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 10px;
  width: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.checkbox[type=checkbox]:checked + .checkmark + .label-text,
.radiobox[type=radio]:checked + .radiomark + .label-text {
  color: var(--baseColor);
  font-weight: 500;
}

.checkbox-label:not(.disabled).\:focus .checkbox ~ .checkmark,
.checkbox-label:not(.disabled):focus .checkbox ~ .checkmark {
  opacity: 1;
  z-index: 10;
  outline: 2px dotted var(--baseColor);
  outline-offset: 2px;
}

.__txtu {
  text-transform: uppercase;
}

.img_block {
  position: relative;
}
.img_block img {
  height: 100%;
  width: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}

.input_group {
  display: flex;
  align-items: center;
}
.input_group .__input:first-child, .input_group .__select:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input_group .__input:last-child, .input_group .__select:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input_group .__input ~ .__input, .input_group .__input ~ .__select, .input_group .__select ~ .__input, .input_group .__select ~ .__select {
  margin-left: -1px;
}
.input_group .__input:hover, .input_group .__select:hover {
  border-color: #7f8da5;
}
.input_group .__input:focus, .input_group .__select:focus {
  border-color: var(--primaryColor);
}

/* Other End */
/* Semantic Style */
.ui.selection.active.dropdown, .ui.selection.active.dropdown .menu {
  border-color: var(--grayColorHover) !important;
}

.ui.multiple.search.dropdown > input.search,
.ui.multiple.search.dropdown > .text {
  margin: 2px !important;
  height: 30px;
}

.ui.multiple.search.dropdown > .text {
  line-height: 26px !important;
  top: 2px !important;
  left: 2px !important;
  padding: 2px 10px !important;
  background-color: var(--lightGrayColor);
  border-radius: 4px;
}

.ui.selection.dropdown > .dropdown.icon {
  top: 2px !important;
  right: 0 !important;
  margin: 0 !important;
}

.check_selected,
.ui.selection.dropdown {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 40px !important;
  padding: 2px !important;
  background-color: #fff !important;
  border-bottom: 1px solid var(--grayColorHover);
  border-width: 1px;
  border-style: solid;
  border-color: var(--grayColorHover);
  border-radius: 6px !important;
}
.check_selected:hover,
.ui.selection.dropdown:hover {
  border-color: var(--grayColorHover) !important;
}
.check_selected > a, .check_selected .active,
.ui.selection.dropdown > a,
.ui.selection.dropdown .active {
  color: var(--baseColor);
  font-weight: 400 !important;
  display: inline-flex !important;
  align-items: center;
  height: 30px;
  line-height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2px !important;
  padding: 2px 6px !important;
  background-color: rgba(0, 122, 254, 0.0823529412);
  border: 1px solid var(--primaryColor);
  box-shadow: none !important;
  border-radius: 4px !important;
  cursor: pointer;
}
.check_selected > a:hover, .check_selected .active:hover,
.ui.selection.dropdown > a:hover,
.ui.selection.dropdown .active:hover {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 122, 254, 0.15) !important;
  border: 1px solid var(--primaryColor);
}
.check_selected > a:hover span, .check_selected .active:hover span,
.ui.selection.dropdown > a:hover span,
.ui.selection.dropdown .active:hover span {
  color: var(--secondColor);
  background-color: var(--lightGrayColor);
}
.check_selected > a:hover span::before, .check_selected > a:hover span::after, .check_selected .active:hover span::before, .check_selected .active:hover span::after,
.ui.selection.dropdown > a:hover span::before,
.ui.selection.dropdown > a:hover span::after,
.ui.selection.dropdown .active:hover span::before,
.ui.selection.dropdown .active:hover span::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 10px;
  background-color: var(--secondColor);
  transform: rotate(45deg);
}
.check_selected > a:hover span::after, .check_selected .active:hover span::after,
.ui.selection.dropdown > a:hover span::after,
.ui.selection.dropdown .active:hover span::after {
  transform: rotate(-45deg);
}
.check_selected > a span, .check_selected .active span,
.ui.selection.dropdown > a span,
.ui.selection.dropdown .active span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}
.check_selected > a span::before, .check_selected .active span::before,
.ui.selection.dropdown > a span::before,
.ui.selection.dropdown .active span::before {
  position: absolute;
  content: "";
  top: 50%;
  height: 14px;
  width: 14px;
  background: url("../images/selected_icon.svg") no-repeat center center;
  background-size: 100%;
  transform: translateY(-50%);
}
.ui.label > .close.icon, .ui.label > .delete.icon {
  opacity: 1 !important;
}

.ui.dropdown .filtered.item {
  display: none !important;
}

/* Semantic Style End */
.toggle {
  background-color: var(--primaryColor);
  border-radius: 6px;
}

.toggle-group label, .toggle-group span {
  padding: 4px;
}

/* Header Style */
.header_wrap {
  position: relative;
}
.header_wrap .header_top {
  background-color: #fff;
}
.header_wrap .header_top .header_top_main {
  display: grid;
  align-items: center;
  height: 80px;
}
.header_wrap .header_top .logo span {
  display: flex;
  height: 70px;
  width: 130px;
  mix-blend-mode: multiply;
  background: url("../images/logo.png") no-repeat center center;
  background-size: contain;
}
.header_wrap .head_right .head_item {
  display: flex;
}
.header_wrap .head_right .head_item ~ .head_item {
  margin-left: 30px;
}
.header_wrap .head_right .head_item .profile_header {
  padding: 6px 0;
  background-color: var(--backgroundColor);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.header_wrap .head_right .head_item .profile_header p {
  color: var(--textColor);
  font-size: 14px;
  padding: 6px 16px;
}
.header_wrap .head_right .head_item .profile_header p b {
  color: var(--otherText);
  font-weight: 400;
  margin-right: 4px;
}
.header_wrap .head_right .head_prof {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.header_wrap .head_right .head_prof:hover .dropdown_wrap {
  left: auto;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.header_wrap .head_right .head_prof .profile_div {
  color: var(--otherText);
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.header_wrap .head_right .head_prof .profile_div:hover {
  color: var(--baseColor);
}
.header_wrap .head_right .head_prof .profile_div::after {
  position: absolute;
  content: "";
  right: 0;
  height: 10px;
  width: 10px;
  background-color: var(--otherText) !important;
  -webkit-mask: url("../images/icon-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(90deg);
}
.header_wrap .head_right .head_prof .profile_div .img_block {
  height: 40px;
}
.header_wrap .head_right .head_prof span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 40px;
  width: 40px;
  margin-right: 10px;
  background-color: var(--inpubg);
  border-radius: 50%;
  overflow: hidden;
}
.header_wrap .head_right .head_prof .dropdown_wrap {
  position: absolute;
  content: "";
  left: -10000px;
  opacity: 0;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--grayColor);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  right: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease-in-out, top 0.35s ease-in-out, transform 0.2s ease-in;
  z-index: 9;
}
.header_wrap .head_right .head_prof .dropdown_wrap ul {
  width: 220px;
  padding: 4px;
}
.header_wrap .head_right .head_prof .dropdown_wrap ul li a {
  color: var(--textColor);
  display: flex;
  padding: 8px 12px;
  border-radius: 3px;
  transition: all 0.15s;
}
.header_wrap .head_right .head_prof .dropdown_wrap ul li a:hover {
  color: var(--baseColor);
  background: var(--lgrayColor);
}
.header_wrap .header_main {
  padding: 0 3px;
  background-color: #fff;
  border-top: 1px solid var(--lightGrayColor);
  border-bottom: 1px solid var(--lightGrayColor);
}
.header_wrap .header_menu ul {
  display: flex;
  align-items: center;
}
.header_wrap .header_menu ul li {
  position: relative;
  padding: 3px 0;
}
.header_wrap .header_menu ul li a {
  color: var(--textColor);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  padding: 10px 12px !important;
  border-radius: 6px;
}
.header_wrap .header_menu ul li a:hover {
  color: var(--baseColor);
  background-color: var(--lgrayColor);
}
.header_wrap .header_menu ul li a.active {
  color: #fff;
  background-color: var(--primaryColor);
}
.header_wrap .header_menu ul .submenu:hover ul {
  top: 100%;
  left: 0;
  transform: translateY(0);
  opacity: 1;
}
.header_wrap .header_menu ul .submenu > a {
  padding-right: 30px !important;
}
.header_wrap .header_menu ul .submenu > a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  height: 10px;
  width: 10px;
  background: var(--otherText) !important;
  -webkit-mask: url("../images/icon-right-arrow.svg") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%) rotate(90deg);
}
.header_wrap .header_menu ul .submenu .active::after {
  background: #fff !important;
  -webkit-mask: url("../images/icon-right-arrow.svg") no-repeat center center;
}
.header_wrap .header_menu ul .submenu ul {
  flex-direction: column;
  position: absolute;
  content: "";
  top: 95%;
  left: -10000px;
  width: 240px;
  padding: 5px !important;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease-in-out, top 0.35s ease-in-out, transform 0.2s ease-in;
  transform: translateY(10px);
  z-index: 99;
  opacity: 0;
}
.header_wrap .header_menu ul .submenu ul li {
  width: 100%;
  padding: 0 !important;
}
.header_wrap .header_menu ul .submenu ul li a {
  padding: 7px 12px !important;
}
.header_wrap .header_menu ul .submenu ul li a:hover {
  color: var(--baseColor);
  background-color: var(--lightGrayColor);
}
.header_wrap .header_menu ul .submenu ul li a.active {
  color: #fff;
  background-color: #7f8da5 !important;
}

/* Header Style End */
/* Main Style */
.main {
  padding-top: 20px;
  margin: 0;
}

.title {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.title a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 32px;
  width: 32px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid var(--lightGrayColor);
  border-radius: 8px;
  cursor: pointer;
}
.title a::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  background: url("../images/icon-drop-arrow.svg") no-repeat center center;
  background-size: 100%;
  transition: all 0.1s ease-in;
  transform: rotate(90deg);
}
.title a:hover {
  border-color: var(--grayColor);
}
.title a:hover:before {
  transform: translateX(-3px) rotate(90deg);
}

.sub_title {
  color: #454545;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e6ec;
}
.sub_title::after {
  content: "";
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 10%;
  background-color: #f30305;
  border-radius: 2px;
}

.box_item {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--lightGrayColor);
}

.box_line {
  display: flex;
  position: relative;
  margin: 20px -20px;
  height: 1px;
  width: calc(100% + 40px);
  background-color: var(--grayColor);
}

.filter_item {
  padding: 20px;
  background-color: #495460;
  border-radius: 12px;
}
.filter_item .sub_title {
  color: #fff;
}
.filter_item .sub_title::after {
  background-color: rgba(255, 255, 255, 0.6);
}
.filter_item .__label {
  color: #fff;
}
.filter_item .__input, .filter_item .__select {
  border: none;
}

.table_wrap {
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--grayColor);
  overflow-x: auto;
}
.table_wrap::-webkit-scrollbar {
  height: 4px;
  background-color: var(--lgrayColor);
  border-radius: 4px;
}
.table_wrap::-webkit-scrollbar-thumb {
  background-color: var(--grayColorHover);
  border-radius: 4px;
}
.table_wrap::-webkit-scrollbar-thumb:hover {
  background-color: #7f8da5;
}

.permission img {
  height: 14px;
  width: 14px;
}

.n_table {
  caption-side: bottom;
  border-collapse: collapse;
  border-spacing: 0 2px;
  width: 100%;
}
.n_table th, .n_table td {
  font-size: 13px;
  text-align: left;
  line-height: 1.2;
  padding: 8px;
  border-left: 1px solid var(--grayColor);
}
.n_table th:first-child, .n_table td:first-child {
  border-left: none !important;
}
.n_table th {
  font-weight: 500;
  white-space: nowrap;
  padding: 12px 8px;
}
.n_table td {
  min-width: 60px;
  vertical-align: top;
  border-top: 1px solid var(--grayColorHover);
}
.n_table thead {
  background-color: var(--grayColor);
}
.n_table thead tr ~ tr th {
  border-top: 1px solid var(--grayColorHover);
}
.n_table thead th {
  color: #5c677a !important;
  border-left: 1px solid var(--grayColorHover);
  vertical-align: bottom;
}
.n_table tbody tr:last-child {
  border-bottom-left-radius: 8px;
}
.n_table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.n_table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}
.n_table tbody td:first-child a, .n_table tbody td:nth-child(2) a {
  display: inline-flex;
  justify-content: center;
  padding: 3px 8px;
  min-width: 24px;
  background-color: rgba(12, 83, 251, 0.1);
  border-radius: 20px;
}

.table_action a ~ a {
  margin-left: 10px;
}
.table_action a:hover span svg [fill]:not(.permanent):not(g) {
  fill: var(--primaryColor);
}
.table_action span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--lgrayColor);
  border-radius: 6px;
}
.table_action span svg {
  height: 14px;
  width: 14px;
}
.table_action span svg [fill]:not(.permanent):not(g) {
  fill: #d3d8e0;
}

.table_input {
  caption-side: bottom;
  border-collapse: collapse;
  border-spacing: 0 2px;
  width: 100%;
}
.table_input th, .table_input td {
  line-height: 1.2;
  padding: 4px;
}
.table_input th:first-child, .table_input td:first-child {
  padding-left: 10px;
  border-left: none !important;
}
.table_input thead {
  background-color: var(--grayColor);
}
.table_input thead th {
  font-size: 13px;
  text-align: left;
  color: #5c677a !important;
  padding: 8px 4px;
  border-left: 1px solid var(--grayColorHover);
  vertical-align: bottom;
}
.n_pagination {
  display: table;
  margin: 10px auto 0;
}
.n_pagination ul {
  display: flex;
  align-items: center;
}
.n_pagination ul li ~ li {
  margin-left: 4px;
}
.n_pagination ul li a, .n_pagination ul li p, .n_pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 4px;
}
.n_pagination ul li a.active, .n_pagination ul li p.active, .n_pagination ul li span.active {
  color: #fff;
  background-color: var(--primaryColor);
}
.n_pagination ul li span {
  color: #d3d8e0;
}
.n_pagination ul li a {
  color: var(--baseColorHover);
}
.n_pagination ul li a:hover {
  background-color: var(--lgrayColor);
}

.form_check {
  border-width: 1px;
  border-style: solid;
  border-color: var(--grayColorHover);
  border-radius: 8px;
}
.form_check .check_list {
  padding: 6px;
}
.form_check .check_list ul {
  display: flex;
  flex-wrap: wrap;
}
.form_check .check_list ul li {
  position: relative;
  padding: 4px 8px;
  margin: 4px;
  white-space: nowrap;
  border: 1px solid var(--grayColorHover);
  transition: all 0.15s ease-in;
  border-radius: 6px;
  cursor: pointer;
}
.form_check .check_list ul li.active {
  padding-right: 24px;
  background-color: rgba(0, 122, 254, 0.0823529412);
  border-color: var(--secondColor);
}
.form_check .check_list ul li.active::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 6px;
  height: 14px;
  width: 14px;
  background: url("../images/selected_icon.svg") no-repeat center center;
  background-size: 100%;
  transform: translateY(-50%);
}
.form_check .check_list ul li:hover {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 122, 254, 0.15);
  border-color: var(--secondColor);
}

.f_text {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}

/* Calendar Style */
.calendar {
  display: flex;
  flex-direction: column;
}

.calendar_weekdays div {
  display: inline-block;
  vertical-align: middle;
}

.calendar_content,
.calendar_weekdays,
.calendar_header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}

.calendar_weekdays, .calendar_content {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.calendar_weekdays div, .calendar_content div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  color: #787878;
  font-weight: 500;
  border-radius: 8px;
}
.calendar_weekdays div a, .calendar_content div a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.calendar_weekdays div a:hover, .calendar_content div a:hover {
  background-color: var(--lgrayColor);
}
.calendar_weekdays .incomplete, .calendar_content .incomplete {
  color: red;
}
.calendar_weekdays .week, .calendar_content .week {
  color: #b1b7bf;
}
.calendar_weekdays .weekend, .calendar_content .weekend {
  color: var(--baseColor);
}

.calendar_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  background-color: transparent !important;
}
.calendar_header h3 {
  color: #454545;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  padding: 5px 12px;
  background-color: var(--grayColor);
  border-radius: 30px;
}

.calendar_event {
  margin-top: 6px;
  flex-wrap: wrap;
}
.calendar_event .event_item {
  color: var(--textColor);
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4px 0;
  margin-right: 24px;
  white-space: nowrap;
}
.calendar_event .event_item span {
  display: flex;
  height: 10px;
  width: 10px;
  margin-right: 10px;
  border-radius: 50%;
}
.calendar_event .event_item span.red {
  background-color: red;
}
.calendar_event .event_item span.orange {
  background-color: orange;
}
.calendar_event .event_item span.blue {
  background-color: var(--primaryColor);
}
.calendar_event .event_item span.gray {
  background-color: #d3d8e0;
}
.calendar_event .event_item span.black {
  background-color: var(--baseColor);
}
.content_list {
  max-height: 380px;
  overflow-y: auto;
}
.content_list::-webkit-scrollbar {
  width: 4px;
  background-color: var(--lgrayColor);
  border-radius: 4px;
}
.content_list::-webkit-scrollbar-thumb {
  background-color: var(--grayColorHover);
  border-radius: 4px;
}
.content_list::-webkit-scrollbar-thumb:hover {
  background-color: #7f8da5;
}
.content_list .content_item,
.content_list .task_item {
  position: relative;
  padding: 12px;
  transition: all 0.1s;
  border-radius: 10px;
  cursor: pointer;
}
.content_list .content_item:hover {
  background-color: #f7f9fa;
}
.content_list .content_item:hover .desc .desc_img {
  background-color: #fff0d9;
}
.content_list .content_item:hover .desc .desc_img span {
  background-color: #a48447 !important;
}
.content_list .content_item ~ .content_item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 60px;
  width: calc(100% - 72px);
  border-top: 1px solid var(--lightGrayColor);
}
.content_list .content_item .desc .desc_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin-right: 12px;
  background-color: var(--backgroundColor);
  border-radius: 50%;
  overflow: hidden;
}
.content_list .content_item .desc .desc_img span {
  display: flex;
  height: 24px;
  width: 24px;
  background-color: #7f8da5 !important;
  -webkit-mask-image: url("../images/icon-announcement.png");
  -webkit-mask-size: contain;
}
.content_list h4 {
  font-size: 15px;
}
.content_list p {
  color: var(--textColor);
}
.content_list em {
  display: block;
  color: #d3d8e0;
  font-style: normal;
  white-space: nowrap;
}
.content_list .task_item:hover {
  background-color: #f7f9fa;
}
.content_list .task_item .dfc {
  width: 75%;
}
.content_list .task_item .dfc b {
  width: 8%;
}
.content_list .task_item .dfc h4 {
  width: 70%;
}
.content_list .task_item .content_status {
  display: block;
  font-size: 13px;
  padding: 4px 10px;
  background-color: var(--grayColor);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 8px;
}
.content_list .task_item .success {
  color: #fff;
  background-color: var(--secondColor);
}
.content_list .task_item .waiting {
  color: #fff;
  background-color: var(--primaryColor);
}
.content_list .task_item .warning {
  color: #fff;
  background-color: #f4b136;
}
.content_list .task_item .danger {
  color: #fff;
  background-color: #ea2c2c;
}

.nic_toast,
.nic_modal {
  position: fixed;
  z-index: 999;
  opacity: 0;
}
.nic_toast .modal_content,
.nic_toast .toast_content,
.nic_modal .modal_content,
.nic_modal .toast_content {
  position: relative;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.modal_dialog {
  pointer-events: all;
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
}

.nic_loader {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
}
.nic_loader.load {
  display: block;
  opacity: 1;
}
.nic_loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translate(-50%, -50%);
}
@keyframes mulShdSpin {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

.nic_modal {
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  transition: block 0.15s ease-in 0.3s, opacity 0.1s ease 0s;
}
.nic_modal.open {
  display: block;
  opacity: 1;
}
.nic_modal .modal_close {
  display: flex;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.nic_modal .modal_close span {
  height: 100%;
  width: 100%;
  background: url("../images/icon-close.svg") no-repeat center center;
  background-size: 100%;
}
.nic_modal .modal_content {
  top: 50%;
  left: 50%;
  max-width: 650px;
  transform: translate(-50%, -50%);
}
.nic_modal .modal_content .modal_header,
.nic_modal .modal_content .modal_main,
.nic_modal .modal_content .modal_footer {
  padding: 12px 16px;
}
.nic_modal .modal_content .modal_main,
.nic_modal .modal_content .modal_footer {
  border-top: 1px solid var(--lightGrayColor);
}

.nic_toast {
  top: 20px;
  right: 20px;
  transform: translateX(200%);
  transition: all 0.3s;
}
.nic_toast.show {
  transform: translateX(0);
  opacity: 1;
}
.nic_toast .toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  padding: 10px;
  background-color: transparent;
  border-radius: 6px;
}
.nic_toast .toast-icon span {
  display: flex;
  align-items: center;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
}
.nic_toast .toast_content {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 12px;
  width: 340px;
}
.nic_toast .toast_content .toast_desc h3 {
  font-size: 15px;
}
.nic_toast .toast_content .toast_desc h3 .toast_close {
  display: flex;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.nic_toast .toast_content .toast_desc h3 .toast_close span {
  height: 100%;
  width: 100%;
  background: url("../images/icon-close.svg") no-repeat center center;
  background-size: 100%;
}
.nic_toast .toast_content .toast_desc p {
  color: var(--textColor);
}
.nic_toast.success .toast-icon {
  background-color: rgba(58, 196, 127, 0.1882352941);
}
.nic_toast.success .toast-icon span {
  background: url("../images/icon-success.svg") no-repeat center center;
}
.nic_toast.danger .toast-icon {
  background-color: rgba(236, 0, 71, 0.1882352941);
}
.nic_toast.danger .toast-icon span {
  background: url("../images/icon-danger.svg") no-repeat center center;
}
.nic_toast.info .toast-icon {
  background-color: rgba(59, 101, 226, 0.1882352941);
}
.nic_toast.info .toast-icon span {
  background: url("../images/icon-info.svg") no-repeat center center;
}

.login_wrap {
  margin: 50px auto;
  padding: 40px;
  max-width: 440px;
  background-color: #fff;
  border-radius: 12px;
}
.login_wrap .login_content .logo {
  display: flex;
  height: 70px;
  width: 130px;
  margin: 0 auto 20px;
  mix-blend-mode: multiply;
  background: url("../images/logo.png") no-repeat center center;
  background-size: contain;
}
.login_wrap .login_content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.login_wrap .login_content .form_item ~ .form_item {
  margin-top: 20px;
}
.login_wrap .login_content a {
  margin-top: 24px;
  width: 100%;
}

.form_grid4 {
  grid-template-columns: repeat(4, 1fr);
}

.form_scroll {
  height: 650px;
  overflow-y: auto;
}
.form_scroll::-webkit-scrollbar {
  width: 4px;
  background-color: var(--lgrayColor);
}
.form_scroll::-webkit-scrollbar-thumb {
  background-color: var(--grayColorHover);
}
.form_scroll::-webkit-scrollbar-thumb:hover {
  background-color: #7f8da5;
}

/* Main Style End */
/* Footer Style */
.footer_wrap {
  position: relative;
  padding: 20px 0;
}
.footer_wrap p {
  color: var(--textColor);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Style End */
/* Responsive Style */
@media (max-width: 1310px) {
  .full_container {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 1121px) {
  .__visible_page .header_wrap {
    z-index: 121;
  }
  .header_wrap {
    background-color: #fff;
  }
  .header_wrap .header_top .header_top_main {
    height: 70px;
  }
  .header_wrap .header_main {
    border-top: none;
  }
  .menu_small {
    position: relative;
    display: flex;
    height: 44px;
    width: 44px;
    margin-right: 10px;
    cursor: pointer;
    overflow: hidden;
  }
  .menu_small.open span {
    left: 5px;
    width: 24px;
  }
  .menu_small.open span:first-child {
    opacity: 0;
    transform: translateX(-60px);
  }
  .menu_small.open span:nth-child(2) {
    transform: translateY(6px) rotate(135deg);
  }
  .menu_small.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-135deg);
  }
  .menu_small span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 22px;
    height: 2px;
    opacity: 1;
    background-color: var(--baseColor);
    transform: rotate(0deg) translate(-50%, -1px);
    transition: 0.4s ease-in-out;
  }
  .menu_small span:nth-child(2) {
    top: 16px;
  }
  .menu_small span:last-child {
    top: 28px;
  }
  .home .menu_small span {
    background-color: #fff;
  }
  .menu_wrap {
    position: fixed;
    top: 70px;
    bottom: 0;
    width: 90vw;
    max-width: 400px;
    background-color: #fff;
    transition: transform 0.2s cubic-bezier(0.7, 1, 0.3, 0.1);
    transform: translateX(-200%);
    z-index: 101;
  }
  .menu_wrap.open {
    left: 0;
    transform: translateX(0);
  }
  .menu_wrap .__block > ul {
    height: calc(100vh - 101px);
    overflow-y: auto;
  }
  .menu_wrap ul li {
    border-top: 1px solid var(--lightGrayColor);
  }
  .menu_wrap ul li a {
    color: var(--textColor);
    display: flex;
    align-items: center;
    font-size: 14px;
    height: 44px;
    padding: 0 15px;
  }
  .menu_wrap ul li a:hover {
    color: var(--baseColor);
  }
  .menu_wrap ul li ul {
    margin-left: 20px;
  }
  .menu_wrap .sub_menu {
    margin-left: 10px;
  }
  .__visible_page {
    overflow: hidden;
  }
  .__visited {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    z-index: 7;
  }
}
@media (max-width: 991px) {
  .title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .sub_title {
    height: 36px;
    margin-bottom: 12px;
  }
  .box_item {
    padding: 16px;
  }
  .g2 {
    grid-template-columns: 1fr;
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
  .g9 {
    grid-template-columns: repeat(5, 1fr);
  }
  .content_list .content_item, .content_list .task_item {
    padding: 10px;
  }
  .nic_toast {
    right: 10px;
  }
  .nic_toast .toast_content {
    width: auto;
  }
  .box_line {
    margin: 16px -16px;
    width: calc(100% + 32px);
  }
}
@media (max-width: 768px) {
  .full_container {
    padding: 0 10px;
  }
  .g4 {
    grid-template-columns: 1fr;
  }
  .nic_toast {
    width: 300px;
  }
  .sub_title {
    font-size: 16px;
    height: 36px;
    line-height: 26px;
  }
  .box_item {
    padding: 10px;
  }
  .box_line {
    margin: 10px -10px;
    width: calc(100% + 20px);
  }
  .__input, .__select, .__textarea, .__input_text {
    height: 36px;
  }
  select, .__select {
    height: 36px;
  }
  .__btn {
    height: 36px;
    padding: 6px 10px;
  }
  .g9 {
    grid-template-columns: repeat(3, 1fr);
  }
  .form_grid4 {
    grid-template-columns: 1fr;
  }
  .form_scroll {
    height: auto !important;
  }
  .gc1-4, .gc4-5 {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .g9 {
    grid-template-columns: 1fr;
  }
}
/* Responsive Style End *//*# sourceMappingURL=style.css.map */