@charset "UTF-8";
[v-cloak] {
  visibility: hidden;
}

pre.data_disp {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #333;
  color: #fff;
  z-index: 100000;
  font-size: 10px;
  height: 5vh;
  max-width: 500px;
  overflow: auto;
  opacity: 0.8;
  margin: 0;
}
pre.data_disp:hover {
  height: 100vh;
  opacity: 1;
}

/* html
******************************************************/
html, body {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, "游ゴシック Medium", sans-serif;
  font-size: 16px;
  background-color: #f2f5ff;
  box-sizing: border-box;
}

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

html, body, a, p {
  color: #5c6471;
}

ol, ul, li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* 共通パーツ
******************************************************/
/* ローディング */
#loadigArea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.7);
}
#loadigArea.v-enter, #loadigArea.v-leave-to {
  opacity: 0;
}
#loadigArea.v-enter-active, #loadigArea.v-leave-active {
  transition: opacity 0.3s;
}

/* ニューモフィズムbox */
.neumorphism_large {
  background-color: #f2f5ff;
  border-radius: 4px;
  box-shadow: -4px -4px 6px white, 3px 3px 6px rgba(170, 190, 255, 0.6);
}
@media (max-width: 736px) {
  .neumorphism_large {
    min-width: unset !important;
    padding: 0 !important;
    box-shadow: none;
  }
}

/* レイアウト
******************************************************/
#container {
  height: 100vh;
  width: 100vw;
  display: flex;
}
@media (max-width: 736px) {
  #container {
    flex-direction: column;
  }
}

#contents {
  width: calc(100% - 10.625em);
  overflow: auto;
  padding: 0.75em 2.5em 1.875em;
}
@media (max-width: 736px) {
  #contents {
    width: auto;
    padding: 0;
    height: calc(100vh - 60px);
  }
}

.contents_area {
  padding: 28px 30px 30px;
  min-width: 970px;
  min-height: 300px;
}
@media (max-width: 736px) {
  .contents_area {
    min-height: unset;
  }
}
.contents_area > .header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .contents_area > .header {
    justify-content: center;
    margin-bottom: 16px;
    padding: 0 12px;
  }
}
@media (max-width: 736px) {
  .contents_area > .header .ant-btn {
    flex-grow: 1;
  }
}
.contents_area > .header .ant-btn + .ant-btn {
  margin-left: 12px;
}

/* サイドメニュー
******************************************************/
#side_menu {
  background-color: #f2f5ff;
  width: 170px;
  overflow: auto;
  border-right: solid 1px #bac6d8;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 736px) {
  #side_menu {
    width: auto;
    height: 60px;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0 20px;
    box-shadow: -2px -2px 3px white, 1.5px 1.5px 3px rgba(170, 190, 255, 0.6);
    overflow: hidden;
    position: relative;
    z-index: 100;
  }
}
#side_menu .time_zone_area {
  margin-top: 5px;
  height: 37px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 736px) {
  #side_menu .time_zone_area {
    order: 1;
    padding-top: 5px;
    width: 25px;
    margin: 0;
  }
}
#side_menu .time_zone_area .time_zone {
  background-repeat: no-repeat;
  background-position: center;
}
#side_menu .time_zone_area .time_zone.morning {
  background-image: url(../../img/i-morning.svg);
  height: 34px;
}
@media (max-width: 736px) {
  #side_menu .time_zone_area .time_zone.morning {
    width: 23px;
    margin: -4px auto 0;
  }
}
#side_menu .time_zone_area .time_zone.noon {
  background-image: url(../../img/i-noon.svg);
  height: 37px;
}
@media (max-width: 736px) {
  #side_menu .time_zone_area .time_zone.noon {
    width: 23px;
    margin: -4px auto 0;
  }
}
#side_menu .time_zone_area .time_zone.night {
  background-image: url(../../img/i-night.svg);
  height: 30px;
}
@media (max-width: 736px) {
  #side_menu .time_zone_area .time_zone.night {
    width: 18px;
    margin: -2px auto 0;
  }
}
@media (max-width: 736px) {
  #side_menu .date_area {
    order: 2;
    margin: auto;
  }
}
#side_menu .date_area .date {
  font-size: 16px;
  margin: 18px 10px 0;
  line-height: 20px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 736px) {
  #side_menu .date_area .date {
    font-size: 12px;
    margin: 0;
  }
}
#side_menu .date_area .date > .day {
  display: inline-block;
  letter-spacing: 0.05em;
  margin-left: 5px;
}
@media (max-width: 736px) {
  #side_menu .date_area .date > .day {
    padding-left: 1px;
  }
}
#side_menu .date_area .date > .week {
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
}
@media (max-width: 736px) {
  #side_menu .date_area .date > .week {
    padding-left: 1px;
    margin-right: 5px;
    font-size: 11px;
  }
}
#side_menu .date_area .time {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 736px) {
  #side_menu .date_area .time {
    font-size: 21px;
    margin: 0;
  }
}
#side_menu .alert_area {
  order: 10;
}
@media (max-width: 736px) {
  #side_menu .alert_area {
    order: 0;
  }
}
#side_menu .alert_area.alert_space {
  margin-top: 92px;
}
@media (max-width: 736px) {
  #side_menu .alert_area.alert_space {
    margin-top: 0;
  }
}
#side_menu .alert_area .alert {
  width: 78px;
  height: 78px;
  margin: -5px auto 0;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 736px) {
  #side_menu .alert_area .alert {
    margin: -1px 0 0;
    width: 48px;
    height: 38px;
  }
}
#side_menu .alert_area .alert.on {
  background-image: url(../../img/alert-on.svg);
}
#side_menu .alert_area .alert.off {
  background-image: url(../../img/alert-off.svg);
}
#side_menu .user_area {
  border: solid #bac6d8;
  border-width: 1px 0;
  padding: 10px 3px;
  transition: all 0.3s;
}
@media (max-width: 736px) {
  #side_menu .user_area {
    display: none;
  }
}
#side_menu .user_area .i-user {
  display: block;
  font-size: 25px;
  text-align: center;
  color: #7E858F;
  margin-bottom: 5px;
}
#side_menu .user_area .user_menu {
  transition: all 0.3s;
}
#side_menu .user_area .user_menu:hover {
  transition: all 0.3s;
  opacity: .7;
}
#side_menu .user_area .name {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #00597c;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#side_menu .user_area .ant-dropdown-link.name {
  height: 47px;
  position: relative;
  z-index: 100;
}
#side_menu .user_area .i-down {
  display: block;
  font-size: 14px;
  color: #00597c;
  text-align: center;
  margin-top: -25px;
}
#side_menu .main_menu {
  margin: 18px 15px;
}
@media (max-width: 736px) {
  #side_menu .main_menu {
    display: none;
  }
}
#side_menu .main_menu .btn {
  padding: 8px;
  margin: 26px -1px;
  background-color: #f2f5ff;
  border-radius: 7px;
  box-shadow: -4px -4px 6px white, 3px 3px 6px rgba(170, 190, 255, 0.6);
  transition: all 0.3s;
}
#side_menu .main_menu .btn:hover {
  transition: all 0.3s;
  opacity: .7;
  cursor: pointer;
}
#side_menu .main_menu .btn.icon_push {
  margin: 26px -2px;
  box-shadow: inset -3px -3px 6px white, inset 3px 3px 6px rgba(170, 190, 255, 0.6);
  transition: all 0.3s;
}
#side_menu .main_menu .btn.icon_push .main_icon {
  filter: none;
  margin: 4px 0;
}
#side_menu .main_menu .main_icon {
  height: 55px;
  margin: 2px 0;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(30%) saturate(100%) hue-rotate(50deg) brightness(100%) contrast(50%);
}
#side_menu .main_menu .main_icon.site_list {
  background-image: url(../../img/i-site_list.svg);
}
#side_menu .main_menu .main_icon.top {
  background-image: url(../../img/i-top.svg);
}
#side_menu .main_menu .main_icon.graph {
  background-image: url(../../img/i-graph.svg);
}
#side_menu .main_menu .main_icon.history {
  background-image: url(../../img/i-history.svg);
}
#side_menu .main_menu .main_icon.schedule {
  background-image: url(../../img/i-schedule.svg);
}
#side_menu .main_menu .main_icon.config {
  background-image: url(../../img/i-config.svg);
}
#side_menu .sp_menu_icon {
  display: none;
}
@media (max-width: 736px) {
  #side_menu .sp_menu_icon {
    width: 42px;
    height: 35px;
    margin: 1px 5px 1px 20px;
    display: block;
    order: 2;
    background: url(../../img/i-menu.svg) 0 0 no-repeat;
    background-position: right;
  }
}

@media (max-width: 736px) {
  .ant-drawer-body > ul.menu .sp_user {
    color: #00597c;
    display: flex;
    align-items: center;
    height: 61px;
    padding-left: 20px;
    padding-top: 4px;
    margin-bottom: 10px;
    border-bottom: 1px solid #bac6d8;
  }
}
.ant-drawer-body > ul.menu .sp_user > .i-user {
  font-size: 25px;
  color: #7E858F;
  margin-bottom: 3px;
  margin-right: 5px;
  position: relative;
  z-index: -1;
}
.ant-drawer-body > ul.menu .sp_user > li.user_name {
  font-weight: bold;
}
@media (max-width: 736px) {
  .ant-drawer-body > ul.menu li.user {
    padding: 8px 20px;
  }
}
@media (max-width: 736px) {
  .ant-drawer-body > ul.menu li.user > p {
    margin: 0;
  }
}
.ant-drawer-body > ul.menu li.user:active {
  background-color: rgba(186, 198, 216, 0.2);
  transition: all 0.1s;
}
@media (max-width: 736px) {
  .ant-drawer-body > ul.menu li.main {
    display: flex;
    align-items: center;
    height: 50px;
    padding-left: 20px;
  }
  .ant-drawer-body > ul.menu li.main.icon_push_s {
    background-color: #F1FBF9;
  }
  .ant-drawer-body > ul.menu li.main.icon_push_s > .main_icon {
    filter: none;
  }
  .ant-drawer-body > ul.menu li.main.icon_push_s > p {
    color: #32C8AA;
  }
  .ant-drawer-body > ul.menu li.main > p {
    margin: 0;
  }
}
.ant-drawer-body > ul.menu li.main:active {
  background-color: rgba(186, 198, 216, 0.2);
  transition: all 0.1s;
}
@media (max-width: 736px) {
  .ant-drawer-body > ul.menu .main_icon {
    height: 18px;
    width: 18px;
    margin: 0 10px 2px 0;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    filter: invert(30%) saturate(100%) hue-rotate(50deg) brightness(100%) contrast(50%);
  }
  .ant-drawer-body > ul.menu .main_icon.site_list {
    background-image: url(../../img/i-site_list_s.svg);
  }
  .ant-drawer-body > ul.menu .main_icon.top {
    background-image: url(../../img/i-top_s.svg);
  }
  .ant-drawer-body > ul.menu .main_icon.graph {
    background-image: url(../../img/i-graph_s.svg);
  }
  .ant-drawer-body > ul.menu .main_icon.history {
    background-image: url(../../img/i-history_s.svg);
  }
  .ant-drawer-body > ul.menu .main_icon.schedule {
    background-image: url(../../img/i-schedule_s.svg);
  }
  .ant-drawer-body > ul.menu .main_icon.config {
    background-image: url(../../img/i-config_s.svg);
  }
}

.drawer {
  display: none;
}
@media (max-width: 736px) {
  .drawer {
    display: inherit;
  }
}

.ant-drawer-body {
  padding: 0;
}

.bottom_line {
  width: 100%;
  border-bottom: 1px solid #bac6d8;
  height: 10px;
  margin-bottom: 10px;
}

.ant-dropdown-menu.dp-menu {
  margin-top: 8px;
}

.dp-menu > .ant-dropdown-menu-item {
  padding: 8px 12px;
}

.dp-menu > .ant-dropdown-menu-item:hover {
  background-color: #ecfbf7;
}

.dp-menu > .ant-dropdown-menu-item > a:hover {
  color: #32C8AA;
}

/* button
******************************************************/
.ant-modal-confirm-btns .ant-btn {
  box-shadow: none !important;
}

.ant-modal-footer .ant-btn {
  box-shadow: none !important;
}

.range_footer .ant-btn {
  box-shadow: none !important;
}

.ant-btn:not(.ant-btn-link):not(#btn_pcs_view_toggle):not(.resetBtn) {
  box-shadow: 4px 4px 8px rgba(170, 190, 255, 0.5);
}

.ant-btn:not(#prev_month):not(.ant-btn-sm):not(.resetBtn):not(#btn_pcs_view_toggle) {
  line-height: initial;
  border: none;
  height: 34px;
}

.ant-modal-close > .ant-modal-close-x {
  display: none;
}

#prev_month {
  line-height: initial;
  border: none;
  background-color: #43d0b4;
  border-radius: 4px;
}
#prev_month > i {
  font-size: 22px;
  color: #fff;
  padding-top: 4px;
}
#prev_month:hover, #prev_month:active {
  background-color: #74dcc8;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}

.saveBtn {
  background-color: #1890ff;
  padding: 0 20px;
  border-radius: 4px;
}
.saveBtn > span {
  color: #fff;
}
.saveBtn:hover, .saveBtn:active, .saveBtn:focus {
  background-color: #55adff;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}

.ant-btn[disabled].saveBtn {
  background-color: #0069cb;
  opacity: .4;
}

.addBtn {
  background: #43d0b4;
  padding: 0 20px;
  border-radius: 4px;
}
.addBtn > span {
  color: #fff;
}
.addBtn:hover, .addBtn:active, .addBtn:focus {
  background-color: #74dcc8;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}

.ant-btn[disabled].addBtn {
  background-color: #289f87;
  opacity: .4;
}

.deleteBtn {
  background: #dd432b;
  padding: 0 20px;
  border-radius: 4px;
}
.deleteBtn > span {
  color: #fff;
}
.deleteBtn:hover, .deleteBtn:active, .deleteBtn:focus {
  background-color: #e57260;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}

.ant-btn[disabled].deleteBtn {
  background-color: #a22c1a;
  opacity: .4;
}

.resetBtn {
  line-height: initial;
  height: 34px;
  background-color: #fcfcfc;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid #bac6d8;
}
.resetBtn > span {
  color: #6c798e;
  transition: all 0.3s;
}
.resetBtn:hover, .resetBtn:active, .resetBtn:focus {
  background-color: white;
  border-color: #32C8AA;
}
.resetBtn:hover > span, .resetBtn:active > span, .resetBtn:focus > span {
  color: #32C8AA;
  transition: all 0.3s;
}

.ant-btn[disabled].resetBtn {
  border-color: #bac6d8;
  opacity: .5;
}
.ant-btn[disabled].resetBtn > span {
  color: inherit;
}

.editBtn {
  line-height: 2.3;
  border: none;
  height: 30px;
  background: #1890ff;
  padding: 0 20px;
  border-radius: 15px;
}
.editBtn > span {
  color: #fff;
}
.editBtn:hover, .editBtn:active, .editBtn:focus {
  background-color: #55adff;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}
.editBtn:disabled {
  color: #fff;
  background: #1890ff;
  opacity: 0.3;
  pointer-events: none;
}

.csvDLbtn {
  height: 35px;
  background: #49c65d;
  border-radius: 4px;
}
.csvDLbtn > span {
  color: #fff;
  padding-top: 2px;
}
.csvDLbtn:hover, .csvDLbtn:active, .csvDLbtn:focus {
  background-color: #70d380;
  color: #fff;
  box-shadow: 2px 2px 4px rgba(170, 190, 255, 0.3);
}

.ant-select-focused .ant-select-selection,
.ant-select-selection:active,
.ant-select-selection:focus {
  border-color: #32C8AA;
  box-shadow: 0 0 0 2px rgba(50, 200, 170, 0.2);
}

.ant-select-open .ant-select-selection {
  border-color: #32C8AA;
}

.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #32C8AA;
}
.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled):active, .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled):focus {
  box-shadow: 0 0 0 2px rgba(50, 200, 170, 0.2);
}

.ant-calendar-selected-day .ant-calendar-date[aria-selected] {
  color: #fff;
  background-color: #32C8AA;
}

.ant-calendar-date:hover,
.ant-calendar-month-panel-month:hover,
.ant-calendar-year-panel-year:hover {
  background-color: #e3fbf5;
}
.ant-calendar-date:active,
.ant-calendar-month-panel-month:active,
.ant-calendar-year-panel-year:active {
  color: #32C8AA;
}

.ant-calendar-today .ant-calendar-date {
  color: #32C8AA;
  border-color: #32C8AA;
}

.ant-calendar-header a:hover {
  color: #32C8AA;
}

.ant-calendar-footer-btn > a:hover {
  color: #32C8AA;
}

.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year,
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  background-color: #32C8AA;
}

.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month,
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  background-color: #32C8AA;
}

.ant-calendar-picker > div > i {
  pointer-events: none;
}
.ant-calendar-picker > div > .ant-calendar-picker-input:not(.ant-input-disabled):hover, .ant-calendar-picker > div > .ant-calendar-picker-input:not(.ant-input-disabled):active,
.ant-calendar-picker > div .ant-calendar-picker-input.ant-input:hover,
.ant-calendar-picker > div .ant-calendar-picker-input.ant-input:active {
  border-color: #32C8AA;
}
.ant-calendar-picker > div > .ant-calendar-picker-input:not(.ant-input-disabled):focus,
.ant-calendar-picker > div .ant-calendar-picker-input.ant-input:focus {
  border-color: #32C8AA;
  box-shadow: 0 0 0 2px rgba(50, 200, 170, 0.2);
}

.ant-select-selection:hover, .ant-select-selection:active, .ant-select-selection:focus, #year_select:hover, #year_select:active, #year_select:focus {
  border-color: #32C8AA;
}

.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #ecfbf7;
}

span.ant-select-arrow {
  display: inline-block;
  margin-top: -7.5px;
  font-size: 14px;
}

.ant-input:hover, .ant-input:active {
  border-color: #32C8AA;
}
.ant-input:focus {
  border-color: #32C8AA;
  box-shadow: 0 0 0 2px rgba(50, 200, 170, 0.2);
}

.ant-popover-inner-content {
  padding: 0;
}

.ant-btn.ant-btn-primary:hover {
  background-color: #65b5ff;
}

.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow, .ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  border-color: #83929d transparent transparent #83929d;
}

.ant-checkbox-input:focus + .ant-checkbox-inner,
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-checked:after {
  border-color: #32C8AA;
}

.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #32C8AA;
  border-color: #32C8AA;
}

.ant-checkbox-indeterminate .ant-checkbox-inner:after {
  background-color: #32C8AA;
}

/* datepicker
******************************************************/
@media (max-width: 736px) {
  .ant-calendar {
    width: max-content;
    min-width: 100vw;
  }
}

.ant-calendar-picker-container {
  font-family: inherit;
}
@media (max-width: 736px) {
  .ant-calendar-picker-container {
    width: 100vw;
    overflow: auto;
  }
}

/* table
******************************************************/
@media (max-width: 736px) {
  .ant-table table,
  .ant-table-header table,
  .ant-table-header,
  .ant-table-thead,
  .ant-table-thead tr,
  .ant-table-thead th,
  .ant-table-thead > tr:first-child > th:first-child,
  .ant-table-thead > tr:first-child > th:last-child {
    border-radius: 0 !important;
  }
}

.ant-table-filter-dropdown .ant-dropdown-menu-item {
  display: flex;
  align-items: center;
}

.ant-table-filter-dropdown.ant-dropdown-content {
  padding: 6px;
  border: 1px solid #dddddd;
}
.ant-table-filter-dropdown.ant-dropdown-content .ant-checkbox-wrapper {
  line-height: 1.4;
}

.ant-table-thead th {
  text-align: center !important;
}

.ant-table-align-right.ant-table-row-cell-ellipsis, .ant-table-align-center.ant-table-row-cell-ellipsis.ant-table-row-cell-break-word.ant-table-row-cell-last {
  color: #fff;
}

.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th {
  background-color: #83929D;
}

.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  background: inherit;
}

.ant-table-tbody > tr.ant-table-row-hover:nth-child(odd):not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr:hover:nth-child(odd):not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr.ant-table-row-hover:nth-child(odd):not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr:hover:nth-child(odd):not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  background: #f8f8f8;
}

.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
  white-space: nowrap;
}

.ant-table-thead > tr > th {
  color: #fff;
  background: #83929D;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.3s ease;
  padding: 8px;
}
@media (max-width: 736px) {
  .ant-table-thead > tr > th {
    padding: 4px !important;
  }
}

.ant-table-tbody > tr > td {
  padding: 12px 15px;
  background: #fff;
}

.ant-table-tbody > tr:nth-child(odd) > td {
  background: #f8f8f8;
}

.ant-table-tbody > tr.ant-table-row-selected td {
  background: #ecfffa;
}

.ant-table-tbody > tr.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-tbody > tr:hover.ant-table-row-selected > td,
.ant-table-tbody > tr:hover.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-thead > tr.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-thead > tr:hover.ant-table-row-selected > td,
.ant-table-thead > tr:hover.ant-table-row-selected > td.ant-table-column-sort {
  background: #ecfffa;
}

.ant-table-footer {
  text-align: right;
  margin: 12px 0;
  position: relative;
  padding: initial;
  background: initial;
  color: #5c6471;
}
@media (max-width: 736px) {
  .ant-table-footer {
    padding-right: 1em;
  }
}

.ant-table-footer:before {
  left: initial;
}

.ant-table.ant-table-bordered .ant-table-footer {
  border: initial;
}

.ant-table-pagination.ant-pagination {
  float: left;
  margin: initial;
  position: absolute;
  margin-top: -35px;
}

.ant-pagination-item a:hover, .ant-pagination-item a:active, .ant-pagination-item a:focus {
  color: #32C8AA;
}

.ant-pagination-item-active {
  background-color: #43d0b4;
  border-color: #43d0b4;
}
.ant-pagination-item-active:hover, .ant-pagination-item-active:active, .ant-pagination-item-active:focus {
  background-color: #74dcc8;
  border-color: #74dcc8;
}

.ant-table-pagination > .ant-pagination-item-active a {
  color: #fff;
}
.ant-table-pagination > .ant-pagination-item-active a:hover, .ant-table-pagination > .ant-pagination-item-active a:active, .ant-table-pagination > .ant-pagination-item-active a:focus {
  color: #fff;
}

.ant-pagination-next:focus:not(.ant-pagination-disabled) .ant-pagination-item-link,
.ant-pagination-next:hover:not(.ant-pagination-disabled) .ant-pagination-item-link,
.ant-pagination-prev:focus:not(.ant-pagination-disabled) .ant-pagination-item-link,
.ant-pagination-prev:hover:not(.ant-pagination-disabled) .ant-pagination-item-link {
  color: #32C8AA;
}

.ant-table-small {
  border: none;
}

/* tab
******************************************************/
article.tabs_area {
  margin: 10px 0;
}
@media (max-width: 736px) {
  article.tabs_area {
    margin: 0;
  }
}

.ant-tabs-nav .ant-tabs-tab-active {
  color: #009881;
}

.ant-tabs-nav .ant-tabs-tab:hover {
  color: #00c6a8;
}

.ant-tabs-ink-bar {
  background-color: #009881;
}

/* modal
******************************************************/
@media (max-width: 736px) {
  .ant-modal {
    padding: 0;
  }
}

.ant-modal-content {
  max-width: 100%;
}
.ant-modal-content .ant-modal-header {
  padding: 9px 0;
  background: #83929D;
  border-radius: 2px 2px 0 0;
}
.ant-modal-content .ant-modal-header > .ant-modal-title {
  color: #fff;
  text-align: center;
  padding-top: 4px;
}
.ant-modal-content .ant-modal-footer {
  padding: 14px 16px;
}
@media (max-width: 736px) {
  .ant-modal-content .ant-modal-body {
    padding: 16px 12px;
    max-height: calc(80vh - 128px);
    overflow: auto;
  }
  .ant-modal-content .ant-modal-body .anticon {
    margin-right: 1px;
  }
  .ant-modal-content .ant-modal-body .ant-modal-confirm-content {
    margin-left: 26px !important;
  }
}
.ant-modal-content .ant-modal-body .ant-form-item-label {
  line-height: 24px;
}
