@charset "UTF-8";

/******************************************************************
 SP用スタイルとUtilityクラス(接頭辞が.u-***のクラス）には、
 既存スタイルを上書きするためにbodyを付けています。
 
 ※Utilityクラスの例
 ■PC/SP共通で50pxの上余白を指定
   ・記述例：class="u-mt-50"
   
   ・付与されるスタイル
     body .u-mt-50 { margin-top: 50px !important; }
   
 ■PC表示の時（ブラウザの幅が721px以上）に50pxの上余白を指定
   ・記述例：class="u-pc-mt-50"
   
   ・付与されるスタイル
     @media screen and (min-width: 721px) {
       body .u-pc-mt-50 { margin-top: 50px !important; }
     }
   
 ■SP表示の時（ブラウザの幅が720px以下）に50pxの上余白を指定
   ・記述例：class="u-sp-mt-50"
   
   ・付与されるスタイル
     @media screen and (max-width: 720px) {
       body .u-sp-mt-50 { margin-top: 50px !important; }
     }
 ******************************************************************/
 
/* key color
Diverta Blue
rgba(16, 70, 127) / #10467F
*/

/*------------------------------------*/
/* bootstrap override */
* {
  outline: none !important;
}

body {
    box-sizing: border-box;
    min-height: 100%;
    padding-bottom: 70px;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
  margin-top: 20px;
  margin-bottom: 10px;
}
div > h1:first-child,
div > h2:first-child,
div > h3:first-child,
div > h4:first-child,
div > h5:first-child,
div > h6:first-child {
  margin-top: 0 !important;
}

form h4.section-head {
  background-color: #DDD;
  margin: 0 0 5px 0;
  padding: 4px;
}

form h4.section-foot {
  background-color: #DDD;
  margin: 5px 0 5px 0;
  padding: 4px;
}

form > div + h4.section-head {
    margin-top: 20px;
}

a,
a:hover {
    text-decoration: none !important;
}

p {
  margin: 0;
}
p + p {
  margin: 10px 0 0 0 !important;
}
#header > p.button {
    margin: 5px -2px 0 8px !important;
}

.well {
    border: none !important;
    box-shadow: none !important;
}

.nav-tabs {
  margin-bottom: 15px !important;
}
.tab-content {
  margin-bottom: 15px !important;
}

.panel {
  box-shadow: none !important;
}

.pagination {
  margin: 0 !important;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    font-size: 12px;
    height: 26px;
    line-height: 26px !important;
    padding: 0 10px !important;
}


.tooltip {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    position: absolute;
    visibility: visible;
    z-index: 1070;
}
.tooltip.in {
    opacity: 0.9;
}
.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}
.tooltip-inner {
    background-color: #000;
    border-radius: 4px;
    color: #fff;
    max-width: 200px;
    padding: 3px 8px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    word-break: break-all;
}
.tooltip-arrow {
    border-color: transparent;
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #000;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
}
.overflow-tooltip {
    display: block;
    vertical-align: middle;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.overflow-tooltip-wide {
    max-width: 200px;
}
.overflow-tooltip-box {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 26px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}
.form-sh span.form-control.overflow-tooltip-box,
.form-horizontal-sh span.form-control.overflow-tooltip-box,
.form-horizontal span.form-control.overflow-tooltip-box {
    height: 26px !important;
}
.checkbox-inline {
  margin: 0 10px 0 0 !important;
}
.input-group-btn > .checkbox-inline {
  margin: 0 !important;
}
.radio > label,
.checkbox > label {
    line-height: 19px;
}

.table-responsive {
  margin-bottom: 20px !important;
}
.table-responsive > table {
  margin-bottom: 0 !important;
}
.table {
    border: none !important;
}
.table > thead > tr > th {
    background: #F1F1F1 url("/user/img/border-w3-white.png") right top repeat-y !important;
    border: none !important;
    border-bottom: 2px solid #00a3de !important;
    font-weight: bold;
    padding: 10px 7px 10px 5px !important;
}
.table > thead > tr > th:last-child {
    background-image: none !important;
}
.table-no_strong_header > thead > tr > th{
    font-weight: normal;
}
.table > tbody > tr > th,
.table > tbody > tr > td {
    background-image: url("/user/img/border-w3-white.png");
    background-position: right top;
    background-repeat: repeat-y;
    border: none !important;
    white-space: nowrap;
    padding: 4px 7px 4px 3px !important;
}
.table > tbody > tr > td:last-child {
    background-image: none !important;
}
.table > tbody > tr:nth-child(odd) > th,
.table > tbody > tr:nth-child(odd) > td {
    background-color: #FFF !important;
}
.table > tbody > tr:nth-child(even) > th,
.table > tbody > tr:nth-child(even) > td {
    background-color: #F1F1F1 !important;
}


.form-horizontal .form-group {
  margin-bottom: 0px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.dropdown {
  display: inline-block !important;
}
.dropdown-menu {
  min-width: auto !important;
  margin: 0 0 0 5px !important;
}
.dropdown-menu > li > a {
  padding: 3px 10px 1px 10px !important;
}

.bsmultiselect-container {
    max-height: 300px;
    overflow: scroll;
}

.dropdown > .dropdown-toggle i {
  transition-duration: 0.5s;
}
.dropdown.open > .dropdown-toggle > i {
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}

.form-sh .list-group,
.form-horizontal-sh .list-group {
    margin-bottom: 5px;
}
.form-sh .list-group > .list-group-item,
.form-horizontal-sh .list-group > .list-group-item {
    line-height: 18px;
    padding: 5px 15px;
}
.form-sh .list-group > .list-group-item > .btn,
.form-horizontal-sh .list-group > .list-group-item > .btn {
    margin-top: -2px;
}


.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 5px !important;
}
input[type="radio"],
input[type="checkbox"] {
    margin-top: 2px !important;
}
td > input[type="radio"],
td > input[type="checkbox"] {
    margin-top: 0px !important;
}

/*------------------------------------*/
/* common */
.text-lg {
  font-size: 18px;
}
.text-md {
  font-size: 16px;
}
.text-sm {
  font-size: 12px;
}
.text-xs {
  font-size: 10px;
}
.no-wrap {
  white-space: nowrap;
}

.page-title {
  font-size: 24px;
  margin: 10px 0;
}

.th-tc th {
    text-align: center;
}
.th-tr th {
    text-align: right;
}
.th-tl th {
    text-align: left;
}

.td-tc td {
    text-align: center;
}
.td-tr td {
    text-align: right;
}
.td-tl td {
    text-align: left;
}

.btn-label-sm {
  line-height: 34px;
  margin: 0 5px;
}

.form-striped .form-group {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.form-striped .form-group:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.04);
}
.form-striped .form-group-file {
  background-color: rgba(0, 0, 0, 0.04);
}

/* margin-helper */
.mt {
  margin-top: 10px !important;
}
.mb {
  margin-bottom: 10px !important;
}
.mb0 {
  margin-bottom: 0;
}
.mt-2x {
  margin-top: 20px !important;
}
.mb-2x {
  margin-bottom: 20px !important;
}
.mt-3x {
  margin-top: 30px !important;
}
.mb-3x {
  margin-bottom: 30px !important;
}

.pr0 {
  padding-right: 0 !important;
}
.pl0 {
  padding-left: 0 !important;
}

#data_per_page {
    float: right;
    width: 100px;
    margin-left: 15px;
}

/*------------------------------------*/
/* prevent overwritting by default.css */
.pnkz {
    margin-bottom: 20px !important;
}
#wrap_content > #content {
    margin-bottom: 0 !important;
}
#contents-box > h3 {
    font-size: 24px !important;
}
i.fa {
    margin: 0 !important;
}

.pagination > li {
    display: inline-block !important;
}
.pagination > li > * {
    margin: 0 -1px 0 0 !important;
}
/*------------------------------------*/
/* prevent overwritting by rcms/bootstrap.min.css */
table.dataTable {
    border-collapse: separate !important;
}

.label {
    font-size: 10.5px !important;
    margin-top: 3px;
    padding-top: 3px !important;
}
#footer{
    border:none;
}
#footer > .clearFloat {
    background-color: #03A7EB;
    border: medium none !important;
    bottom: 0;
    height: auto !important;
    left: 0;
    padding: 10px 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
#footer address {
    color: #FFF;
    margin: 0 !important;
    padding: 0 !important;
}
.input-group .form-control {
    position: static !important;
}


/*------------------------------------*/
/* new element */
table > thead > tr > th.disabled,
table > tbody > tr > td.disabled {
  background-color: rgba(0, 0, 0, 0.6);
}


.link-tabs {
  border-bottom: 1px solid #DDD;
  margin: 0 0 20px 0 !important;
  padding: 0;
}
.link-tabs > li {
  display: inline-block;
  list-style: none;
  margin-bottom: -1px;
}
.link-tabs > li.active {
  border: 1px solid #DDD;
  border-bottom: 1px solid #FFF;
  border-radius: 4px 4px 0 0;
  margin-right: 2px;
  padding: 10px 15px
}
.link-tabs > li > a {
  display: block;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  text-decoration: none;
  margin-right: 2px;
  padding: 10px 15px
}
.link-tabs > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dl-horizontal.dl-w100 > dt {
  width: 100px;
}
.dl-horizontal.dl-w100 > dd {
  margin-left: 120px;
}


.button-menu-list {
  display: inline-block;
}
.button-menu-list > li {
  display: inline-block;
  width: 120px;
  text-align: center;
  margin: 5px;
}
.button-menu-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #DDD;
  text-decoration: none;
  padding: 15px 10px 10px 10px;
}
.button-menu-list > li > a > i {
  margin-bottom: 10px;
}


.button-menu-list-small {
  display: inline-block;
}
.button-menu-list-small > li {
  display: inline-block;
  text-align: center;
  margin: 5px;
}
.button-menu-list-small > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #DDD;
  text-decoration: none;
  padding: 15px;
}

.progress-list {
  list-style: none;
  padding: 0 0 0 30px;
}
.progress-list > li {
  color: #CCC;
}
.progress-list > li.active {
  color: #333;
}
.progress-list > li.active:before,
.progress-list > li.done:before {
  font-family: 'FontAwesome';
  content: "\f00c";
  margin-right: 5px;
  margin-left: -19px;
}

.bordered-box {
  min-height: 150px;
  border: 2px solid #999;
  margin-bottom: 15px;
  padding: 15px;
}

.col-xs-1_5th,
.col-sm-1_5th,
.col-md-1_5th,
.col-lg-1_5th {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-xs-1_5th {
    width: 20%;
    float: left;
}
 
@media (min-width: 768px) {
    .col-sm-1_5th {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-1_5th {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-1_5th {
        width: 20%;
        float: left;
    }
}


/*------------------------------------*/
/* basic layout */

#main-column {
  width: 100%;
  background-color: #FFF;
  padding: 0 0 10px 0;
}
#main-column > .container-fluid {
  min-width: 768px;
}


/*------------------------------------*/
/* page-header-box */
#page-header-box {
  margin: 0 0 10px 0;
  padding: 0;
}

#page-header-box > .first-row {
  position: relative;
  height: 80px;
}
#page-header-box > .first-row > .brand-logo {
  position: absolute;
  top: 15px;
  left: 0;
  display: inline-block;
}
#page-header-box > .first-row > .brand-logo > a {
  display: inline-block;
}
#page-header-box > .first-row >.site-logo {
  position: absolute;
  top: 7px;
  right: 0;
  display: inline-block;
  margin: 0;
}
#page-header-box > .first-row > .site-logo > a {
  display: block;
}

#page-header-box > .first-row > .top-menu {
  position: absolute;
  top: 46px;
  right: 0;
  display: inline-block;
  margin: 0;
  padding: 0;
}
#page-header-box > .first-row > .top-menu > li {
  list-style: none;
  display: inline-block;
  margin: 0 0 0 5px;
}
#page-header-box > .first-row > .top-menu > li > a {
  display: inline-block;
  background-color: #EEE;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  padding: 3px 5px;
}
#page-header-box > .first-row > .top-menu > li > a > i {
  margin-right: 3px;
}
#page-header-box > .first-row > .top-menu > li > a:hover {
  background-color: #E7E7E7;
}


/*------------------------------------*/
/* contents-box */
#contents-box {
  margin: 0 0 15px 0;
  padding: 0;
}

.page-title-box {
  height: 30px;
  background-color: #FFCC66;
  border-radius: 3px;
  margin: 10px 0 15px 0;
  padding: 0;
}
.page-title-box > h3 {
  font-size: 14px;
  font-weight: normal;
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  margin: 0;
  padding: 0 8px !important;
}
.page-title-box > ul {
  float: right;
  display: inline-block;
  margin: 3px 0 0 0;
}
.page-title-box > ul > li {
    float: left;
  display: inline-block;
  margin-right: 5px;
}
.page-title-box > ul > li .btn-sh {
  margin: 0;
}
.page-title-box > .btn-sh {
  margin: 3px 0 0 0;
}

#contents-box .table-head-box > .row > [class^=col-] > span:not(.form-control) {
    line-height: 29px;
}
#contents-box .table-head-box > .row > [class^=col-] > .input-group > .input-group-addon,
#contents-box .table-head-box > .row > [class^=col-] > .input-group > .form-control {
    height: 29px;
    padding-top: 4px;
    padding-bottom: 3px;
}

#contents-box > .contents-main > .table-header {
  margin: 0 0 10px 0;
}
@media screen and (min-width: 1200px) {
  .table-header.join-with-bottom-box {
    margin-bottom: -34px !important;
  }
}

#contents-box > .contents-main > .table-header .pagination {
  margin: 0;
}
#contents-box > .contents-main > .table-header .pagination > li > a {
  line-height: 18px;
}




/*------------------------------------*/
/* data-table override */
.dataTables_wrapper {
  margin-bottom: 15px;
}
.dataTables_scrollHead,
.dataTables_scrollBody {
    width: 100% !important;
}
.dataTable th {
    border: none !important;
}

/* header cell */
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftHeadWrapper > table > thead > tr > th,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner table > thead tr th {
  cursor: default !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* header cell w/ body header */
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftHeadWrapper > table > thead > tr > th,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner table > thead tr th,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody > table > thead > tr > th {
  background-image: url(../../user/img/border-w3-white.png);
  background-position: right top;
  background-repeat: repeat-y;
    padding-right: 12px;
    padding-left: 9px;
}

/* body cell */
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner table > tbody > tr > td,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody table > tbody > tr > td {
    border-right-color: #FFF !important;
  background-image: url(../../user/img/border-w2-white.png);
  background-position: right top;
  background-repeat: repeat-y;
  padding-right: 5px !important;
  padding-left: 3px !important;
}

/* right end cells */
/* header cell w/ body header */
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner table > thead tr th:last-child,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody > table > thead > tr > th:last-child {
  background-image: none !important;
}
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody table > tbody > tr > td:last-child {
  background-image: none !important;
}

/* body row */
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner table > tbody > tr.odd,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody table > tbody > tr.odd {
  background-color: #FFF !important;
}
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner table > tbody > tr.even,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody table > tbody > tr.even {
  background-color: #F1F1F1 !important;
}



/* to figure border w/o border */
/*
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftHeadWrapper > table > thead > tr > th:nth-child(even),
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner table > thead tr th:nth-child(even),
.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner table > tbody > tr > td:nth-child(even),
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollBody table > tbody > tr > td:nth-child(even) {
    background-color: rgba(49, 176, 213, 0.2) !important;
}
*/

/*------------------------------------*/
/* form */
.form-control {
  box-shadow: none !important;
}
span.form-control.input-label {
  background-color: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #CCC !important;
}
.input-group > span.form-control {
  border: 1px solid #CCC;
}
textarea.form-control {
  min-width: 100%;
  max-width: 100%;
}
.gap-text {
  float: left;
  width: 30px;
  line-height: 34px;
  text-align: center;
  margin-left: -30px;
}
.input-date,
.input-time {
  ime-mode: disabled;
}
.input-group > .input-group-addon > .fa-calendar,
.input-group > .input-group-addon > .fa-clock-o {
    cursor: pointer;
}
.ime-off {
  ime-mode: disabled;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    line-height: 20px;
}

.form-horizontal-sh .form-group {
  margin: 0;
  padding-top: 3px;
  padding-bottom: 3px;
}

.form-control-sh:not(select):not(span),
.form-sh .form-control:not(select):not(span):not(.multiselectbox):not(textarea),
.form-horizontal-sh .form-control:not(select):not(span):not(.multiselectbox):not(textarea) {
    font-size: 12px !important;
  min-height: 24px !important;
  line-height: 24px !important;
  padding: 0 6px !important;
}
select.form-control-sh,
.form-sh select.form-control,
.form-horizontal-sh select.form-control {
    height: 26px !important;
  padding: 0 0 0 6px !important;
}

.form-sh span.form-control,
.form-horizontal-sh span.form-control {
  height: 26px !important;
  line-height: 26px !important;
  padding: 0 6px;
}

.form-horizontal-sh textarea.form-control {
  min-height: 50px;
}
.form-sh .control-label,
.form-horizontal-sh .control-label {
  line-height: 26px !important;
  padding-top: 0 !important;
}
.form-sh .input-group-addon,
.form-horizontal-sh .input-group-addon,
.form-control-sh + .input-group-addon {
  padding: 0px 6px;
}
.btn-sh {
    min-width: 100px;
  height: 26px !important;
  line-height: 26px !important;
  font-size: 12px !important;
  padding: 0 6px !important;
}
.mw0,
#sort_btn,
#visibility_btn,
.btn-sh[data-target="#column-sort-modal"],
.btn-sh[data-target="#column-hide-modal"] {
    min-width: 0 !important;
}
.form-sh .gap-text,
.form-horizontal-sh .gap-text {
  line-height: 24px;
}

.form-horizontal-sh .checkbox,
.form-horizontal-sh .checkbox-inline,
.form-horizontal-sh .radio,
.form-horizontal-sh .radio-inline {
  padding-top: 0px;
}
.form-horizontal-sh [type=checkbox],
.form-horizontal-sh [type=radio] {
  margin-top: 2px;
}
.form-sh span.form-control,
.form-horizontal-sh span.form-control,
.form-horizontal span.form-control {
  height: auto !important;
  min-height: 24px;
  display: inline-block;
  overflow: hidden;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none;
}
.form-sh span.form-control-sh,
.form-horizontal-sh span.form-control-sh,
.form-horizontal span.form-control-sh {
    font-size: 12px !important;
    line-height: 12px !important;
    padding: 7px 0 5px 0 !important;
}

.btn.pull-right + .btn.pull-right {
    margin-right: 15px;
}
.btn.pull-left + .btn.pull-left {
    margin-left: 15px;
}
.text-center > .btn {
    margin-right: 7.5px;
    margin-left: 7.5px;
}


/*------------------------------------*/
/* individuals */


/* top */
.function-box {
  border: 1px solid #DDD;
  margin: 0 0 20px 0;
  padding: 15px;
}

.calendar-table {
  width: 100%;
  margin: 0;
}
.calendar-table thead > tr > th {
  background-color: transparent;
  font-size: 11px;
}
.calendar-table tbody > tr > td {
  font-size: 12px;
}
.calendar-table tbody > tr > td.holiday,
.calendar-table thead > tr > th:nth-child(1),
.calendar-table tbody > tr > td:nth-child(1) {
  background-color: #F2DEDE;
}
.calendar-table thead > tr > th:nth-child(7),
.calendar-table tbody > tr > td:nth-child(7) {
  background-color: #D9EDF7;
}

.dl-news-list {
  margin: 0;
}
.dl-news-list dt > .label {
  font-weight: normal;
}
.dl-news-list dd {
  margin-bottom: 5px;
}

.half-gap > [class^=".col-"] {
  margin-left: 7.5px;
  margin-left: 7.5px;
}


/*  サポート管理-問合せテンプレート管理-サポート一覧照会 */
.status-list {
  float: right;
  display: inline-block;
  background-color: #337AB7;
  padding: 5px 10px;
}
.status-list > dt {
  display: inline-block;
  color: #FFF;
}
.status-list > dd {
  display: inline-block;
  color: #FFF;
  font-size: 10px;
}
.status-list > dd > span {
  font-size: 14px;
  font-weight: bold;
  margin: 0 3px;
}

/* ユーザ申請** */
#contents-box > h3.text-center:first-child {
  margin-bottom: 30px;
}


/*------------------------------------*/
/* 利用規約 */
.doc-section {
    margin: 15px 0 30px 0 !important;
}
ul.agreement-list,
.agreement-list > li > ul {
    list-style: disc !important;
    margin: 0 0 0.5em 0;
    padding-left: 25px;
}
ol.agreement-list,
.agreement-list > li > ol {
    list-style: decimal !important;
    margin: 0 0 0.5em 0;
    padding-left: 25px;
}
.agreement-list > li,
.agreement-list > li > ul > li,
.agreement-list > li > ol > li {
    margin: 0 0 0.5em 0;
}
.agreement-list > li > ul,
.agreement-list > li > ol {
    margin-top: 0.5em;
}


/* 汎用検索フォーム */
.search_form .complex_search_btn {
    display: inline-block;
    font-size: 14px;
    line-height: 1.42857;
    padding: 7px 13px;
}

#form-toggle-btn > span:nth-child(1) {
    display: none;
}
#form-toggle-btn.closed > span:nth-child(1) {
    display: inline;
}
#form-toggle-btn.closed > span:nth-child(2) {
    display: none;
}


/* 移送LTマスタ */
table tbody > tr > td > div > .input-group {
    min-width: 100px;
}

/*------------------------------------*/
/* responsive */


/*------------------------------------*/
/* 機器情報 */
#search-column-select-member-modal .modal-body > table > thead > tr > th:nth-child(1),
#search-column-select-member-modal .modal-body > table > tbody > tr > td:nth-child(1) {
    white-space: nowrap !important;
    padding-right: 8px !important;
}

/*------------------------------------*/
/* 機器所在情報 */
#search-column-select-member-modal .modal-body table > thead > tr > th:nth-child(1),
#search-column-select-member-modal .modal-body table > tbody > tr > td:nth-child(1) {
    white-space: nowrap !important;
    padding-right: 8px !important;
}

/*------------------------------------*/
/* DateTimePicker */
/* Alfonso: added !important to the background-color, for design consistency */
/* it was in confict with: .half_table tr:nth-child(2n+1) > td */ 
.datepicker td.day {
  background-color: rgba(83, 141, 213, 0.1) !important;
  border: 1px solid #FFF;
  border-radius: 0;
}
.datepicker td.day:not(.disabled):not(.active):hover {
  background-color: rgba(83, 141, 213, 0.3) !important;
}
.datepicker td.day.disabled {
  color: #DDD !important;
}


/*------------------------------------*/
/* for Table Scroll schedule */
table :not(.btn-group) > .btn + .btn {
  margin-top: 2px !important;
}

.dataTables_scrollHeadInner .current-time-label-wrapper,
.dataTables_scrollHeadInner .current-date-label-wrapper {
  position: relative;
}
.dataTables_scrollHeadInner .current-date-label {
  position: absolute;
  top: 5px;
  display: inline-block;
}

.current-time-label-wrapper > .time-label,
.current-date-label-wrapper > .date-label {
  display: inline-block;
  width: 50px;
  margin-top: 22px;
}

/* 予約一覧 */
td .schedule-back {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 45px;
}
.hourly-back {
    min-width: 1212px;
}
.daily-back {
    min-width: 4612px;
}
.schedule-back > a {
  position: absolute;
  display: block;
  color: #FFF !important;
  padding: 0 0 0 5px;
}
.plan1 {
  top: 0;
  height: 100%;
  background-color: #EEE;
}
.plan2 {
  top: 50%;
  height: 50%;
  line-height: 22.5px;
  background-color: #DDD;
}

.schedule-back .plan-move { background-color: #3BABFF; }
.schedule-back .plan-lend { background-color: #0070C0; }
.schedule-back .plan-proof { background-color: #92D050; }
.schedule-back .plan-repair { background-color: #92D050; }
.schedule-back .plan-other { background-color: #92D050; }

.plan-1h { width: 50px; }
.plan-2h { width: 100px; }
.plan-3h { width: 150px; }
.plan-4h { width: 200px; }
.plan-5h { width: 250px; }
.plan-6h { width: 300px; }
.plan-7h { width: 350px; }
.plan-8h { width: 400px; }
.plan-9h { width: 450px; }
.plan-10h { width: 500px; }
.plan-11h { width: 550px; }
.plan-12h { width: 600px; }
.plan-13h { width: 650px; }
.plan-14h { width: 700px; }
.plan-15h { width: 750px; }
.plan-16h { width: 800px; }
.plan-17h { width: 850px; }
.plan-18h { width: 900px; }
.plan-19h { width: 950px; }
.plan-20h { width: 1000px; }
.plan-21h { width: 1050px; }
.plan-22h { width: 1100px; }
.plan-23h { width: 1150px; }
.plan-24h { width: 1200px; }

.from-0h { margin-left: 6px; }
.from-1h { margin-left: 56px; }
.from-2h { margin-left: 106px; }
.from-3h { margin-left: 156px; }
.from-4h { margin-left: 206px; }
.from-5h { margin-left: 256px; }
.from-6h { margin-left: 306px; }
.from-7h { margin-left: 356px; }
.from-8h { margin-left: 406px; }
.from-9h { margin-left: 456px; }
.from-10h { margin-left: 506px; }
.from-11h { margin-left: 556px; }
.from-12h { margin-left: 606px; }
.from-13h { margin-left: 656px; }
.from-14h { margin-left: 706px; }
.from-15h { margin-left: 756px; }
.from-16h { margin-left: 806px; }
.from-17h { margin-left: 856px; }
.from-18h { margin-left: 906px; }
.from-19h { margin-left: 956px; }
.from-20h { margin-left: 1006px; }
.from-21h { margin-left: 1056px; }
.from-22h { margin-left: 1106px; }
.from-23h { margin-left: 1156px; }

.plan-1d { width: 50px; }
.plan-2d { width: 100px; }
.plan-3d { width: 150px; }
.plan-4d { width: 200px; }
.plan-5d { width: 250px; }
.plan-6d { width: 300px; }
.plan-7d { width: 350px; }
.plan-8d { width: 400px; }
.plan-9d { width: 450px; }
.plan-10d { width: 500px; }
.plan-11d { width: 550px; }
.plan-12d { width: 600px; }
.plan-13d { width: 650px; }
.plan-14d { width: 700px; }
.plan-15d { width: 750px; }
.plan-16d { width: 800px; }
.plan-17d { width: 850px; }
.plan-18d { width: 900px; }
.plan-19d { width: 950px; }
.plan-20d { width: 1000px; }
.plan-21d { width: 1050px; }
.plan-22d { width: 1100px; }
.plan-23d { width: 1150px; }
.plan-24d { width: 1200px; }
.plan-25d { width: 1250px; }
.plan-26d { width: 1300px; }
.plan-27d { width: 1350px; }
.plan-28d { width: 1400px; }
.plan-29d { width: 1450px; }
.plan-30d { width: 1500px; }
.plan-31d { width: 1550px; }
.plan-32d { width: 1600px; }
.plan-33d { width: 1650px; }
.plan-34d { width: 1700px; }
.plan-35d { width: 1750px; }
.plan-36d { width: 1800px; }
.plan-37d { width: 1850px; }
.plan-38d { width: 1900px; }
.plan-39d { width: 1950px; }
.plan-40d { width: 2000px; }
.plan-41d { width: 2050px; }
.plan-42d { width: 2100px; }
.plan-43d { width: 2150px; }
.plan-44d { width: 2200px; }
.plan-45d { width: 2250px; }
.plan-46d { width: 2300px; }
.plan-47d { width: 2350px; }
.plan-48d { width: 2400px; }
.plan-49d { width: 2450px; }
.plan-50d { width: 2500px; }
.plan-51d { width: 2550px; }
.plan-52d { width: 2600px; }
.plan-53d { width: 2650px; }
.plan-54d { width: 2700px; }
.plan-55d { width: 2750px; }
.plan-56d { width: 2800px; }
.plan-57d { width: 2850px; }
.plan-58d { width: 2900px; }
.plan-59d { width: 2950px; }
.plan-60d { width: 3000px; }
.plan-61d { width: 3050px; }
.plan-62d { width: 3100px; }
.plan-63d { width: 3150px; }
.plan-64d { width: 3200px; }
.plan-65d { width: 3250px; }
.plan-66d { width: 3300px; }
.plan-67d { width: 3350px; }
.plan-68d { width: 3400px; }
.plan-69d { width: 3450px; }
.plan-70d { width: 3500px; }
.plan-71d { width: 3550px; }
.plan-72d { width: 3600px; }
.plan-73d { width: 3650px; }
.plan-74d { width: 3700px; }
.plan-75d { width: 3750px; }
.plan-76d { width: 3800px; }
.plan-77d { width: 3850px; }
.plan-78d { width: 3900px; }
.plan-79d { width: 3950px; }
.plan-80d { width: 4000px; }
.plan-81d { width: 4050px; }
.plan-82d { width: 4100px; }
.plan-83d { width: 4150px; }
.plan-84d { width: 4200px; }
.plan-85d { width: 4250px; }
.plan-86d { width: 4300px; }
.plan-87d { width: 4350px; }
.plan-88d { width: 4400px; }
.plan-89d { width: 4450px; }
.plan-90d { width: 4500px; }
.plan-91d { width: 4550px; }
.plan-92d { width: 4600px; }

.from-0d { margin-left: 6px; }
.from-1d { margin-left: 56px; }
.from-2d { margin-left: 106px; }
.from-3d { margin-left: 156px; }
.from-4d { margin-left: 206px; }
.from-5d { margin-left: 256px; }
.from-6d { margin-left: 306px; }
.from-7d { margin-left: 356px; }
.from-8d { margin-left: 406px; }
.from-9d { margin-left: 456px; }
.from-10d { margin-left: 506px; }
.from-11d { margin-left: 556px; }
.from-12d { margin-left: 606px; }
.from-13d { margin-left: 656px; }
.from-14d { margin-left: 706px; }
.from-15d { margin-left: 756px; }
.from-16d { margin-left: 806px; }
.from-17d { margin-left: 856px; }
.from-18d { margin-left: 906px; }
.from-19d { margin-left: 956px; }
.from-20d { margin-left: 1006px; }
.from-21d { margin-left: 1056px; }
.from-22d { margin-left: 1106px; }
.from-23d { margin-left: 1156px; }
.from-24d { margin-left: 1206px; }
.from-25d { margin-left: 1256px; }
.from-26d { margin-left: 1306px; }
.from-27d { margin-left: 1356px; }
.from-28d { margin-left: 1406px; }
.from-29d { margin-left: 1456px; }
.from-30d { margin-left: 1506px; }
.from-31d { margin-left: 1556px; }
.from-32d { margin-left: 1606px; }
.from-33d { margin-left: 1656px; }
.from-34d { margin-left: 1706px; }
.from-35d { margin-left: 1756px; }
.from-36d { margin-left: 1806px; }
.from-37d { margin-left: 1856px; }
.from-38d { margin-left: 1906px; }
.from-39d { margin-left: 1956px; }
.from-40d { margin-left: 2006px; }
.from-41d { margin-left: 2056px; }
.from-42d { margin-left: 2106px; }
.from-43d { margin-left: 2156px; }
.from-44d { margin-left: 2206px; }
.from-45d { margin-left: 2256px; }
.from-46d { margin-left: 2306px; }
.from-47d { margin-left: 2356px; }
.from-48d { margin-left: 2406px; }
.from-49d { margin-left: 2456px; }
.from-50d { margin-left: 2506px; }
.from-51d { margin-left: 2556px; }
.from-52d { margin-left: 2606px; }
.from-53d { margin-left: 2656px; }
.from-54d { margin-left: 2706px; }
.from-55d { margin-left: 2756px; }
.from-56d { margin-left: 2806px; }
.from-57d { margin-left: 2856px; }
.from-58d { margin-left: 2906px; }
.from-59d { margin-left: 2956px; }
.from-60d { margin-left: 3006px; }
.from-61d { margin-left: 3056px; }
.from-62d { margin-left: 3106px; }
.from-63d { margin-left: 3156px; }
.from-64d { margin-left: 3206px; }
.from-65d { margin-left: 3256px; }
.from-66d { margin-left: 3306px; }
.from-67d { margin-left: 3356px; }
.from-68d { margin-left: 3406px; }
.from-69d { margin-left: 3456px; }
.from-70d { margin-left: 3506px; }
.from-71d { margin-left: 3556px; }
.from-72d { margin-left: 3606px; }
.from-73d { margin-left: 3656px; }
.from-74d { margin-left: 3706px; }
.from-75d { margin-left: 3756px; }
.from-76d { margin-left: 3806px; }
.from-77d { margin-left: 3856px; }
.from-78d { margin-left: 3906px; }
.from-79d { margin-left: 3956px; }
.from-80d { margin-left: 4006px; }
.from-81d { margin-left: 4056px; }
.from-82d { margin-left: 4106px; }
.from-83d { margin-left: 4156px; }
.from-84d { margin-left: 4206px; }
.from-85d { margin-left: 4256px; }
.from-86d { margin-left: 4306px; }
.from-87d { margin-left: 4356px; }
.from-88d { margin-left: 4406px; }
.from-89d { margin-left: 4456px; }
.from-90d { margin-left: 4506px; }
.from-91d { margin-left: 4556px; }



/**/
.modal-dialog > .modal-content > .modal-footer {
    text-align: center !important;
}

#column-hide-modal .modal-dialog,
#column-sort-modal .modal-dialog {
    width: 650px !important;
}
#column-hide-modal .modal-dialog .multiselect {
    width: 550px !important;
}

#column-hide-modal .ui-multiselect {
    margin-right: auto;
    margin-left: auto;
}
#column-hide-modal .ui-multiselect div.selected {
    float: right !important;
}
#column-hide-modal .ui-multiselect div.selected .ui-icon-arrowthick-2-n-s {
    display: none !important;
}
#column-hide-modal .ui-multiselect div.selected .ui-icon-minus {
    background-position: -96px 0 !important;
}
#column-hide-modal .ui-multiselect div.available {
    border-right: 1px solid #333 !important;
    border-left: none !important;
}
#column-hide-modal .ui-multiselect li > a > .ui-icon-plus {
    background-position: -32px 0 !important;
}


/* multiselect bug fix */
.ui-multiselect .selected > li {
    width: 100% !important;   
}
.ui-multiselect .available > li {
    width: 100% !important;   
}




/* aqua skin */
/*
dark blue (): #
light blue (aqua): #03a7eb
*/

#main_navi {
    background-color: #03a7eb;
}
.navi_contents > li > a {
    color: #FFF;
    background-color: #03a7eb;
}
.navi_contents .first-layer li a,
.navi_contents .second-layer li a {
    color: #03a7eb;
}

.pnkz {
    background-color: #03a7eb;
}
.pnkz > ul a {
    color: #03a7eb;
}
.pnkz > ul > li.current > a {
    color: #FFF !important;
    background-color: #03a7eb;
}
.pnkz > ul > li.current a::before {
    border-color: #03a7eb;
}
.pnkz > ul > li.ddbtn {
    background-color: #03a7eb;
}
.pnkz li.ddbtn > div > a:hover,
.pnkz li.ddbtn > div:hover > a {
    color: #03a7eb;
}

.btn-purple {
    color: #FFF !important;
    background-color: #03a7eb !important;
}
.btn-aqua {
    color: #FFF !important;
    background-color: #03a7eb !important;
}
.btn-red {
    color: #FFF !important;
    background-color: #cc4747 !important;
}
.btn-purple.btn-inverse {
    background-color: #FFF !important;
    border-color: #03a7eb !important;
    color: #03a7eb !important;
}
.btn-aqua.btn-inverse {
    background-color: #FFF !important;
    border-color: #03a7eb !important;
    color: #03a7eb !important;
}
.btn-red.btn-inverse {
    background-color: #FFF !important;
    border-color: #cc4747 !important;
    color: #cc4747 !important;
}
.btn-aqua[disabled],
.btn-aqua.btn-inverse[disabled] {
    color: #FFF !important;
    background-color: #E6E6E6 !important;
    border-color: #E6E6E6 !important;
    cursor: not-allowed !important;
}

.link-tabs {
    border-bottom: 1px solid #03a7eb !important;
}
.link-tabs > li.active {
    color: #03a7eb !important;
    background-color: #FFF !important;
    border: 1px solid #03a7eb;
    border-bottom: 1px solid #FFF;
}

.pagination > li.active > a,
.pagination > li.active > span {
    background-color: #03a7eb !important;
    border-color: #03a7eb !important;
}

.dataTables_wrapper > .DTFC_ScrollWrapper > .DTFC_LeftWrapper > .DTFC_LeftHeadWrapper > table > thead > tr > th,
.dataTables_wrapper > .DTFC_ScrollWrapper > .dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner table > thead tr th {
  border-bottom-color: #03a7eb !important;
}

.table > thead > tr > th,
.table > tbody > tr > td {
    border-color: #03a7eb !important;
}

.table:not(.no-hover) > tbody > tr:hover > th,
.table:not(.no-hover) > tbody > tr.hover > th,
.table:not(.no-hover) > tbody > tr:hover > td,
.table:not(.no-hover) > tbody > tr.hover > td,
.dataTable tbody > tr:hover > th,
.dataTable tbody > tr.hover > th,
.dataTable tbody > tr:hover > td,
.dataTable tbody > tr.hover > td {
    background-color: #FDF4E8 !important;
}

.table > thead > tr > th {
    border-bottom: none !important;
}

.ui-multiselect .ui-state-hover {
    background-color: #FDF4E8 !important;
}
.ui-multiselect .add-all,
.ui-multiselect .remove-all {
    color: #FFF;
}

.login_button {
    background-color: #03a7eb !important;
    border-color: #03a7eb !important;
}
.login_button > span,
.login_button > span > i {
    color: #FFF !important;
}


/* styling for print */
@media print {
    /* to prevent printing link URLs */
    a[href]:after {
        content: "" !important;
    }
    abbr[title]:after {
        content: "" !important;
    }
}

/* custom font size*/
.rcms-bs h4, .rcms-bs .h4{
    font-size: 12px;
}

/* CSS Document */

/* ---------------------------
テーマ 水色用 CSS
--------------------------- */
/* ナビゲーション */
div#main_navi,
.navi_contents > li > a {
  background-color:#03a7eb;
}
.navi_contents > li:hover > a,
.navi_contents .navi_btn.active > a {
  background-color:#ffffff;
  color:#03a7eb;
}

/* ぱんくず現在ページ */
.pnkz {
  background:#03a7eb;
}
.pnkz > ul > li.current > a {
  color:#FFFFFF;
  background-color: #03a7eb;
}
.pnkz > ul > li.current a:before {
  border-color: #03a7eb;
}
.pnkz > ul > li.ddbtn {
  background-color: #03a7eb;
}
/* ぱんくず右サポートメニュー */
.pnkz .right-nav .nav-box dt{
  background-color:#03a7eb;
}
.pnkz .right-nav .nav-box dl.links dt{
  background-color: #03a7eb;
}


/* 見出し */
div.list_main h3,
h3.list_main_tit,
div.list_main h3.big,
div.list_main table th {
  font-weight:normal;
}
h3.list_main_tit_big,
div#content #main h3,
div.content_ec_menu h3 {
  color:#03a7eb;
  border-color:#03a7eb;
}

/* 見出し 開閉ボタン */
.edit_close p,
.edit_open p{
  color:#03a7eb !important;
}
.edit_close:hover h3,
.edit_close:hover p,
.edit_open:hover h3,
.edit_open:hover p {
  color:#b4e0e9 !important;
  border-color:#b4e0e9 !important;
}

/* 小見出し */
div.edit_contents .title,
#menu_link p.title,
div.content_ec_menu h4 {
  border-color:#b4e0e9 !important;
}
/* データテーブルヘッダ */
.dataTable th {
  border-bottom-color:#b4e0e9 !important;
}


/* テキスト・ファイル切り替えタブ*/
ul.topics_tab,
ul.topics_tab2 {
  border-color:#03a7eb;
}
ul.topics_tab li.text,
ul.topics_tab2 li.pdf {
  background-color: #03a7eb;
}
ul.topics_tab2 li.text a,
ul.topics_tab li.pdf a,
ul.topics_tab2 li.extends {
  color: #03a7eb;
  border-color:#03a7eb;
}
ul.topics_tab2 li.text a:hover,
ul.topics_tab li.pdf a:hover,
ul.topics_tab li.extends a:hover {
  background-color:#03a7eb;
}
/* ウィジットバー */
/*
div#content #main h3 {
  background-color:#03a7eb;
  color: #fff;
}

/* ログイン画面 */
.login #login_title {
  color:#03a7eb;
}

/* メニュー一覧画面 メニュー下破線 */
#content #mainnav li {
  border-color:#03a7eb;
}

/* 管理画面設定 > お気に入り一覧 */
.ui-widget-header {
  background:#03a7eb;
}
.ui-state-default {
  color:#03a7eb;
}
.ui-state-default .ui-icon {
  background-image: url("/js/jqueryUi/1.11.4/images/ui-icons_007bbb_256x240.png");
}


/* float button box */
.float-button-box {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 30px;
    text-align: center;
    background-color: #FFF;
    border-top: 1px solid #EEE;
}
.float-button-box > .btn {
    border-radius: 4px;
    margin: 0 8px;
}


/* table style for Fixed Midashi */
table[_fixedhead] {
    table-layout: fixed;
}
table[_fixedhead] > thead > tr > th,
table[_fixedhead] > tbody > tr > th {
    box-sizing: content-box;
    background-color: #DDD;
    border: none;
    border-right: 3px solid #FFF;
    white-space: nowrap;
    padding: 8px;
}
table[_fixedhead] > tbody > tr > td {
    box-sizing: content-box;
    border: none;
    border-right: 3px solid #FFF;
    white-space: nowrap;
    padding: 8px;
}
table[_fixedhead] > tbody > tr:nth-child(odd) > th {
    background-color: #F1F1F1;
}
table[_fixedhead] > tbody > tr:nth-child(even) > th {
    background-color: #E7E7E7;
}

table[_fixedhead] > tbody > tr:nth-child(odd) > td {
    background-color: #FFF;
    overflow: hidden;
}
table[_fixedhead] > tbody > tr:nth-child(even) > td {
    background-color: #F1F1F1;
    overflow: hidden;
}
table[_fixedhead] > tbody > tr:nth-child(odd) > td.warning {
    background-color: rgba(255, 221, 255, 0.5) !important;
}
table[_fixedhead] > tbody > tr:nth-child(even) > td.warning {
    background-color: rgba(255, 221, 255, 0.8) !important;
}
table[_fixedhead] > tbody > tr:hover > td,
table[_fixedhead] > tbody > tr.hover > td {
    background-color: #FDF4E8;
}
.str-style {
    padding-top: 5px !important;
}
div#wrap_content {
    min-height: auto !important;
}

.uploadifive-button[style] {
    display: inline-block !important;
    width: auto !important;
}

/* for half width 2 columns table */
.half_table {
    table-layout: fixed;
    width: 100%;
}
.half_table tr > td {
    width: 50%;
    border-color: #fff;
    border-image: none;
    border-style: none solid none none;
    border-width: medium 3px medium medium;
    box-sizing: content-box;
    vertical-align: top;
    padding: 0px 15px;
}
.half_table tr > td .form-group {
    background-color: transparent;
}
.half_table tr:nth-child(2n+1) > td {
    background-color: #fff;
}
.half_table tr:nth-child(2n) > td {
    background-color: #f1f1f1;
}

/* fixed-width-cell */
/**** this class overwrites the '.overflow-tooltip' class if it's used together ****/
.fw-cell {
    display: inline-block;
    max-width: auto !important;
    height: 17px !important;
    line-height: 17px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 !important;
    padding: 0 !important;
}
.fw-cell.w110 {
    width: 110px !important;
}
.fw-cell.w200 {
    width: 200px !important;
}
.fw-cell.w300 {
    width: 300px !important;
}

.datepicker > .datepicker-days > .table-condensed > tbody > tr > .today {
    color: #03a7eb;
}

.datepicker > .datepicker-days > .table-condensed > tbody > tr > .active {
    background-color: #337ab7 !important;
}

.rcms-bs .input-group-addon:not(:first-child):not(:last-child), .rcms-bs .input-group-btn:not(:first-child):not(:last-child), .rcms-bs .input-group .form-control:not(:first-child):not(:last-child){
    min-width:100px !important;
}

form.form-import > div.div-import {
    margin: 3px;
    padding-bottom: 10px;
}

form.form-import > div.div-import h4 {
    padding: 5px;
    background-color: lightgrey;
    margin-bottom: 0px;
}

form.form-import {
    margin: 0 0 0 20px;
}

form.form-import > div.div-import > table > tbody td {
    padding: 2px 7px 2px 7px;
}
table[id=equipment-list] > tbody:nth-child(4) > tr:nth-child(odd) > td.warning{
    background-color: rgba(255, 221, 255, 0.5) !important;
}
table[id=equipment-list] > tbody:nth-child(4) > tr:nth-child(even) > td.warning{
    background-color: rgba(255, 221, 255, 0.8) !important;
}

body .nav-toggle-checkbox {
  display: none; }

body .pie-chart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row; }

body .pie-chart::before,
body .pie-chart::after {
  display: none !important; }

body .pie-chart__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between; }

body .pie-chart__item__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 55px; }

body .table-scroll-horizon {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll; }

body .pagination .first,
body .pagination .last,
body .pagination .back,
body .pagination .next {
  white-space: nowrap; }

body .u-fw-bold {
  font-weight: bold !important; }

body .u-ma-0 {
  margin: 0px !important; }

body .u-mt-0 {
  margin-top: 0px !important; }

body .u-mr-0 {
  margin-right: 0px !important; }

body .u-mb-0 {
  margin-bottom: 0px !important; }

body .u-ml-0 {
  margin-left: 0px !important; }

body .u-pa-0 {
  padding: 0px !important; }

body .u-pt-0 {
  padding-top: 0px !important; }

body .u-pr-0 {
  padding-right: 0px !important; }

body .u-pb-0 {
  padding-bottom: 0px !important; }

body .u-pl-0 {
  padding-left: 0px !important; }

body .u-ma-5 {
  margin: 5px !important; }

body .u-mt-5 {
  margin-top: 5px !important; }

body .u-mr-5 {
  margin-right: 5px !important; }

body .u-mb-5 {
  margin-bottom: 5px !important; }

body .u-ml-5 {
  margin-left: 5px !important; }

body .u-pa-5 {
  padding: 5px !important; }

body .u-pt-5 {
  padding-top: 5px !important; }

body .u-pr-5 {
  padding-right: 5px !important; }

body .u-pb-5 {
  padding-bottom: 5px !important; }

body .u-pl-5 {
  padding-left: 5px !important; }

body .u-ma-10 {
  margin: 10px !important; }

body .u-mt-10 {
  margin-top: 10px !important; }

body .u-mr-10 {
  margin-right: 10px !important; }

body .u-mb-10 {
  margin-bottom: 10px !important; }

body .u-ml-10 {
  margin-left: 10px !important; }

body .u-pa-10 {
  padding: 10px !important; }

body .u-pt-10 {
  padding-top: 10px !important; }

body .u-pr-10 {
  padding-right: 10px !important; }

body .u-pb-10 {
  padding-bottom: 10px !important; }

body .u-pl-10 {
  padding-left: 10px !important; }

body .u-ma-15 {
  margin: 15px !important; }

body .u-mt-15 {
  margin-top: 15px !important; }

body .u-mr-15 {
  margin-right: 15px !important; }

body .u-mb-15 {
  margin-bottom: 15px !important; }

body .u-ml-15 {
  margin-left: 15px !important; }

body .u-pa-15 {
  padding: 15px !important; }

body .u-pt-15 {
  padding-top: 15px !important; }

body .u-pr-15 {
  padding-right: 15px !important; }

body .u-pb-15 {
  padding-bottom: 15px !important; }

body .u-pl-15 {
  padding-left: 15px !important; }

body .u-ma-20 {
  margin: 20px !important; }

body .u-mt-20 {
  margin-top: 20px !important; }

body .u-mr-20 {
  margin-right: 20px !important; }

body .u-mb-20 {
  margin-bottom: 20px !important; }

body .u-ml-20 {
  margin-left: 20px !important; }

body .u-pa-20 {
  padding: 20px !important; }

body .u-pt-20 {
  padding-top: 20px !important; }

body .u-pr-20 {
  padding-right: 20px !important; }

body .u-pb-20 {
  padding-bottom: 20px !important; }

body .u-pl-20 {
  padding-left: 20px !important; }

body .u-ma-25 {
  margin: 25px !important; }

body .u-mt-25 {
  margin-top: 25px !important; }

body .u-mr-25 {
  margin-right: 25px !important; }

body .u-mb-25 {
  margin-bottom: 25px !important; }

body .u-ml-25 {
  margin-left: 25px !important; }

body .u-pa-25 {
  padding: 25px !important; }

body .u-pt-25 {
  padding-top: 25px !important; }

body .u-pr-25 {
  padding-right: 25px !important; }

body .u-pb-25 {
  padding-bottom: 25px !important; }

body .u-pl-25 {
  padding-left: 25px !important; }

body .u-ma-30 {
  margin: 30px !important; }

body .u-mt-30 {
  margin-top: 30px !important; }

body .u-mr-30 {
  margin-right: 30px !important; }

body .u-mb-30 {
  margin-bottom: 30px !important; }

body .u-ml-30 {
  margin-left: 30px !important; }

body .u-pa-30 {
  padding: 30px !important; }

body .u-pt-30 {
  padding-top: 30px !important; }

body .u-pr-30 {
  padding-right: 30px !important; }

body .u-pb-30 {
  padding-bottom: 30px !important; }

body .u-pl-30 {
  padding-left: 30px !important; }

body .u-ma-35 {
  margin: 35px !important; }

body .u-mt-35 {
  margin-top: 35px !important; }

body .u-mr-35 {
  margin-right: 35px !important; }

body .u-mb-35 {
  margin-bottom: 35px !important; }

body .u-ml-35 {
  margin-left: 35px !important; }

body .u-pa-35 {
  padding: 35px !important; }

body .u-pt-35 {
  padding-top: 35px !important; }

body .u-pr-35 {
  padding-right: 35px !important; }

body .u-pb-35 {
  padding-bottom: 35px !important; }

body .u-pl-35 {
  padding-left: 35px !important; }

body .u-ma-40 {
  margin: 40px !important; }

body .u-mt-40 {
  margin-top: 40px !important; }

body .u-mr-40 {
  margin-right: 40px !important; }

body .u-mb-40 {
  margin-bottom: 40px !important; }

body .u-ml-40 {
  margin-left: 40px !important; }

body .u-pa-40 {
  padding: 40px !important; }

body .u-pt-40 {
  padding-top: 40px !important; }

body .u-pr-40 {
  padding-right: 40px !important; }

body .u-pb-40 {
  padding-bottom: 40px !important; }

body .u-pl-40 {
  padding-left: 40px !important; }

body .u-ma-45 {
  margin: 45px !important; }

body .u-mt-45 {
  margin-top: 45px !important; }

body .u-mr-45 {
  margin-right: 45px !important; }

body .u-mb-45 {
  margin-bottom: 45px !important; }

body .u-ml-45 {
  margin-left: 45px !important; }

body .u-pa-45 {
  padding: 45px !important; }

body .u-pt-45 {
  padding-top: 45px !important; }

body .u-pr-45 {
  padding-right: 45px !important; }

body .u-pb-45 {
  padding-bottom: 45px !important; }

body .u-pl-45 {
  padding-left: 45px !important; }

body .u-ma-50 {
  margin: 50px !important; }

body .u-mt-50 {
  margin-top: 50px !important; }

body .u-mr-50 {
  margin-right: 50px !important; }

body .u-mb-50 {
  margin-bottom: 50px !important; }

body .u-ml-50 {
  margin-left: 50px !important; }

body .u-pa-50 {
  padding: 50px !important; }

body .u-pt-50 {
  padding-top: 50px !important; }

body .u-pr-50 {
  padding-right: 50px !important; }

body .u-pb-50 {
  padding-bottom: 50px !important; }

body .u-pl-50 {
  padding-left: 50px !important; }

body .u-ma-55 {
  margin: 55px !important; }

body .u-mt-55 {
  margin-top: 55px !important; }

body .u-mr-55 {
  margin-right: 55px !important; }

body .u-mb-55 {
  margin-bottom: 55px !important; }

body .u-ml-55 {
  margin-left: 55px !important; }

body .u-pa-55 {
  padding: 55px !important; }

body .u-pt-55 {
  padding-top: 55px !important; }

body .u-pr-55 {
  padding-right: 55px !important; }

body .u-pb-55 {
  padding-bottom: 55px !important; }

body .u-pl-55 {
  padding-left: 55px !important; }

body .u-ma-60 {
  margin: 60px !important; }

body .u-mt-60 {
  margin-top: 60px !important; }

body .u-mr-60 {
  margin-right: 60px !important; }

body .u-mb-60 {
  margin-bottom: 60px !important; }

body .u-ml-60 {
  margin-left: 60px !important; }

body .u-pa-60 {
  padding: 60px !important; }

body .u-pt-60 {
  padding-top: 60px !important; }

body .u-pr-60 {
  padding-right: 60px !important; }

body .u-pb-60 {
  padding-bottom: 60px !important; }

body .u-pl-60 {
  padding-left: 60px !important; }

body .u-ma-65 {
  margin: 65px !important; }

body .u-mt-65 {
  margin-top: 65px !important; }

body .u-mr-65 {
  margin-right: 65px !important; }

body .u-mb-65 {
  margin-bottom: 65px !important; }

body .u-ml-65 {
  margin-left: 65px !important; }

body .u-pa-65 {
  padding: 65px !important; }

body .u-pt-65 {
  padding-top: 65px !important; }

body .u-pr-65 {
  padding-right: 65px !important; }

body .u-pb-65 {
  padding-bottom: 65px !important; }

body .u-pl-65 {
  padding-left: 65px !important; }

body .u-ma-70 {
  margin: 70px !important; }

body .u-mt-70 {
  margin-top: 70px !important; }

body .u-mr-70 {
  margin-right: 70px !important; }

body .u-mb-70 {
  margin-bottom: 70px !important; }

body .u-ml-70 {
  margin-left: 70px !important; }

body .u-pa-70 {
  padding: 70px !important; }

body .u-pt-70 {
  padding-top: 70px !important; }

body .u-pr-70 {
  padding-right: 70px !important; }

body .u-pb-70 {
  padding-bottom: 70px !important; }

body .u-pl-70 {
  padding-left: 70px !important; }

body .u-ma-75 {
  margin: 75px !important; }

body .u-mt-75 {
  margin-top: 75px !important; }

body .u-mr-75 {
  margin-right: 75px !important; }

body .u-mb-75 {
  margin-bottom: 75px !important; }

body .u-ml-75 {
  margin-left: 75px !important; }

body .u-pa-75 {
  padding: 75px !important; }

body .u-pt-75 {
  padding-top: 75px !important; }

body .u-pr-75 {
  padding-right: 75px !important; }

body .u-pb-75 {
  padding-bottom: 75px !important; }

body .u-pl-75 {
  padding-left: 75px !important; }

body .u-ma-80 {
  margin: 80px !important; }

body .u-mt-80 {
  margin-top: 80px !important; }

body .u-mr-80 {
  margin-right: 80px !important; }

body .u-mb-80 {
  margin-bottom: 80px !important; }

body .u-ml-80 {
  margin-left: 80px !important; }

body .u-pa-80 {
  padding: 80px !important; }

body .u-pt-80 {
  padding-top: 80px !important; }

body .u-pr-80 {
  padding-right: 80px !important; }

body .u-pb-80 {
  padding-bottom: 80px !important; }

body .u-pl-80 {
  padding-left: 80px !important; }

body .u-ma-85 {
  margin: 85px !important; }

body .u-mt-85 {
  margin-top: 85px !important; }

body .u-mr-85 {
  margin-right: 85px !important; }

body .u-mb-85 {
  margin-bottom: 85px !important; }

body .u-ml-85 {
  margin-left: 85px !important; }

body .u-pa-85 {
  padding: 85px !important; }

body .u-pt-85 {
  padding-top: 85px !important; }

body .u-pr-85 {
  padding-right: 85px !important; }

body .u-pb-85 {
  padding-bottom: 85px !important; }

body .u-pl-85 {
  padding-left: 85px !important; }

body .u-ma-90 {
  margin: 90px !important; }

body .u-mt-90 {
  margin-top: 90px !important; }

body .u-mr-90 {
  margin-right: 90px !important; }

body .u-mb-90 {
  margin-bottom: 90px !important; }

body .u-ml-90 {
  margin-left: 90px !important; }

body .u-pa-90 {
  padding: 90px !important; }

body .u-pt-90 {
  padding-top: 90px !important; }

body .u-pr-90 {
  padding-right: 90px !important; }

body .u-pb-90 {
  padding-bottom: 90px !important; }

body .u-pl-90 {
  padding-left: 90px !important; }

body .u-ma-95 {
  margin: 95px !important; }

body .u-mt-95 {
  margin-top: 95px !important; }

body .u-mr-95 {
  margin-right: 95px !important; }

body .u-mb-95 {
  margin-bottom: 95px !important; }

body .u-ml-95 {
  margin-left: 95px !important; }

body .u-pa-95 {
  padding: 95px !important; }

body .u-pt-95 {
  padding-top: 95px !important; }

body .u-pr-95 {
  padding-right: 95px !important; }

body .u-pb-95 {
  padding-bottom: 95px !important; }

body .u-pl-95 {
  padding-left: 95px !important; }

body .u-ma-100 {
  margin: 100px !important; }

body .u-mt-100 {
  margin-top: 100px !important; }

body .u-mr-100 {
  margin-right: 100px !important; }

body .u-mb-100 {
  margin-bottom: 100px !important; }

body .u-ml-100 {
  margin-left: 100px !important; }

body .u-pa-100 {
  padding: 100px !important; }

body .u-pt-100 {
  padding-top: 100px !important; }

body .u-pr-100 {
  padding-right: 100px !important; }

body .u-pb-100 {
  padding-bottom: 100px !important; }

body .u-pl-100 {
  padding-left: 100px !important; }

@media screen and (max-width: 720px) {
  body .main_contents {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important; }
  body * {
    box-sizing: border-box; }
  body .button-menu {
    display: block;
    position: absolute;
    top: 25px;
    left: 15px;
    width: 30px;
    height: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 8px;
    cursor: pointer; }
    body .button-menu:hover {
      opacity: 0.7; }
    body .button-menu span {
      display: block;
      position: absolute;
      top: 50%;
      width: 30px;
      height: 2px;
      margin-left: 0;
      background: #989898; }
    body .button-menu span {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      transition: all 0.3s; }
    body .button-menu .top {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px); }
    body .button-menu .bottom {
      -webkit-transform: translateY(9px);
      transform: translateY(9px); }
  body #header {
    width: 100%;
    min-width: 100%;
    height: auto; }
  body .header-inner-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  body #main_navi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: unset; }
    body #main_navi.is-active {
      display: block; }
      body #main_navi.is-active .navi_contents {
        left: 0; }
      body #main_navi.is-active .main_navi_bg {
        display: block; }
    body #main_navi .main_navi_bg {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      content: "";
      z-index: 9100; }
    body #main_navi .navi_contents {
      position: fixed;
      top: 0;
      left: -80%;
      width: 80% !important;
      min-width: 80% !important;
      height: 100%;
      overflow: inherit !important;
      overflow-y: scroll !important;
      background-color: #03a7eb;
      z-index: 9200; }
      body #main_navi .navi_contents .logo.navi_btn > a {
        display: block;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap; }
      body #main_navi .navi_contents .logo.navi_btn .first-layer {
        display: none; }
      body #main_navi .navi_contents > li {
        margin: 0;
        float: none;
        border-bottom: solid 1px #fff; }
        body #main_navi .navi_contents > li:hover > a {
          background-color: inherit;
          color: #fff; }
      body #main_navi .navi_contents .navi_btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center; }
        body #main_navi .navi_contents .navi_btn > a {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-direction: column;
          flex-direction: column;
          -ms-flex-align: center;
          align-items: center;
          -ms-flex-pack: center;
          justify-content: center;
          width: 100%;
          height: auto;
          min-height: 40px;
          padding: 0;
          line-height: unset; }
          body #main_navi .navi_contents .navi_btn > a.is-active {
            background-color: #f3f3f3;
            color: #03a7eb; }
        body #main_navi .navi_contents .navi_btn.fav {
          display: none; }
      body #main_navi .navi_contents .first-layer,
      body #main_navi .navi_contents .second-layer {
        display: none;
        position: relative;
        top: inherit;
        width: 100%;
        min-width: 100%;
        height: auto;
        overflow: inherit;
        box-shadow: none;
        opacity: 1;
        visibility: inherit; }
        body #main_navi .navi_contents .first-layer > li,
        body #main_navi .navi_contents .second-layer > li {
          text-align: center; }
          body #main_navi .navi_contents .first-layer > li:not(:last-child),
          body #main_navi .navi_contents .second-layer > li:not(:last-child) {
            border-bottom: solid 1px #03a7eb; }
      body #main_navi .navi_contents a.is-active + .first-layer,
      body #main_navi .navi_contents a.is-active + .second-layer {
        display: block; }
      body #main_navi .navi_contents .has-sub-content a.is-active {
        background-color: #f3f3f3; }
      body #main_navi .navi_contents .second-layer {
        top: inherit;
        left: inherit;
        z-index: inherit; }
        body #main_navi .navi_contents .second-layer ul {
          width: 100%;
          float: none; }
      body #main_navi .navi_contents .has-sub-content li:not(:last-child) {
        border-bottom: solid 1px #ddd; }
      body #main_navi .navi_contents .has-sub-content > a {
        border-bottom: solid 1px #ddd; }
  body #main-column > .container-fluid {
    width: 100% !important;
    min-width: 100% !important; }
  body .rcms-bs .container-fluid {
    margin: 0;
    padding: 0; }
  body .contents-header {
    padding: 0 15px; }
  body .navi_contents .navi_btn.logo > a,
  body .navi_contents .navi_btn.logo:hover > a {
    background-size: contain; }
  body div#header .site_nm,
  body div#header_login .site_nm {
    min-height: 25px;
    margin: 10px 0px 5px 70px; }
  body .pnkz {
    position: relative;
    min-width: 100% !important; }
  body .pnkz > ul > li {
    position: inherit; }
  body .ddbtn {
    position: relative; }
  body .sub {
    top: 34px !important;
    left: 0;
    z-index: 100; }
  body #form-toggle-btn {
    margin-bottom: 10px; }
  body .input-group.pull-right.col-sm-3 {
    margin-right: 0 !important; }
  body .col-sm-12 {
    padding: 0 !important; }
  body .col-sm-6 {
    padding: 0 !important; }
  body .pnkz {
    margin-top: 0; }
  body .pnkz ul {
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    overflow: scroll; }
  body .pnkz > ul > li > a {
    white-space: pre; }
  body .d-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
  body .contents-main {
    padding: 0; }
  body .contents-header {
    padding: 0 !important; }
  body .main_left, body .main_right {
    padding: 0 10px; }
  body .half_table {
    padding: 10px !important; }
  body .half_table tr > td {
    padding: 17px 3px 17px 8px; }
  body .rcms-bs .input-group.date_tow {
    width: 100%; }
  body .fixed_header_display_none_at_print {
    display: none !important; }
  body .main_left,
  body .main_right {
    width: 100%;
    max-width: 100%;
    float: none; }
  body .half_table tr > th {
    width: 30%;
    padding: 8px; }
  body .u-sp-flex-horizon {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  body .u-sp-flex-vertical {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  body .u-sp-flex-horizon {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  body .u-sp-flex-vertical {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  body .u-sp-flex-ai-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  body .u-sp-flex-ai-center {
    -ms-flex-align: center !important;
    align-items: center !important; }
  body .u-sp-flex-ai-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  body .u-sp-flex-jc-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  body .u-sp-flex-jc-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  body .u-sp-flex-jc-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  body .is-pc {
    display: none !important; }
  body .is-sp {
    display: block !important; }
  body .u-sp-ma-0 {
    margin: 0px !important; }
  body .u-sp-mt-0 {
    margin-top: 0px !important; }
  body .u-sp-mr-0 {
    margin-right: 0px !important; }
  body .u-sp-mb-0 {
    margin-bottom: 0px !important; }
  body .u-sp-ml-0 {
    margin-left: 0px !important; }
  body .u-sp-pa-0 {
    padding: 0px !important; }
  body .u-sp-pt-0 {
    padding-top: 0px !important; }
  body .u-sp-pr-0 {
    padding-right: 0px !important; }
  body .u-sp-pb-0 {
    padding-bottom: 0px !important; }
  body .u-sp-pl-0 {
    padding-left: 0px !important; }
  body .u-sp-ma-5 {
    margin: 5px !important; }
  body .u-sp-mt-5 {
    margin-top: 5px !important; }
  body .u-sp-mr-5 {
    margin-right: 5px !important; }
  body .u-sp-mb-5 {
    margin-bottom: 5px !important; }
  body .u-sp-ml-5 {
    margin-left: 5px !important; }
  body .u-sp-pa-5 {
    padding: 5px !important; }
  body .u-sp-pt-5 {
    padding-top: 5px !important; }
  body .u-sp-pr-5 {
    padding-right: 5px !important; }
  body .u-sp-pb-5 {
    padding-bottom: 5px !important; }
  body .u-sp-pl-5 {
    padding-left: 5px !important; }
  body .u-sp-ma-10 {
    margin: 10px !important; }
  body .u-sp-mt-10 {
    margin-top: 10px !important; }
  body .u-sp-mr-10 {
    margin-right: 10px !important; }
  body .u-sp-mb-10 {
    margin-bottom: 10px !important; }
  body .u-sp-ml-10 {
    margin-left: 10px !important; }
  body .u-sp-pa-10 {
    padding: 10px !important; }
  body .u-sp-pt-10 {
    padding-top: 10px !important; }
  body .u-sp-pr-10 {
    padding-right: 10px !important; }
  body .u-sp-pb-10 {
    padding-bottom: 10px !important; }
  body .u-sp-pl-10 {
    padding-left: 10px !important; }
  body .u-sp-ma-15 {
    margin: 15px !important; }
  body .u-sp-mt-15 {
    margin-top: 15px !important; }
  body .u-sp-mr-15 {
    margin-right: 15px !important; }
  body .u-sp-mb-15 {
    margin-bottom: 15px !important; }
  body .u-sp-ml-15 {
    margin-left: 15px !important; }
  body .u-sp-pa-15 {
    padding: 15px !important; }
  body .u-sp-pt-15 {
    padding-top: 15px !important; }
  body .u-sp-pr-15 {
    padding-right: 15px !important; }
  body .u-sp-pb-15 {
    padding-bottom: 15px !important; }
  body .u-sp-pl-15 {
    padding-left: 15px !important; }
  body .u-sp-ma-20 {
    margin: 20px !important; }
  body .u-sp-mt-20 {
    margin-top: 20px !important; }
  body .u-sp-mr-20 {
    margin-right: 20px !important; }
  body .u-sp-mb-20 {
    margin-bottom: 20px !important; }
  body .u-sp-ml-20 {
    margin-left: 20px !important; }
  body .u-sp-pa-20 {
    padding: 20px !important; }
  body .u-sp-pt-20 {
    padding-top: 20px !important; }
  body .u-sp-pr-20 {
    padding-right: 20px !important; }
  body .u-sp-pb-20 {
    padding-bottom: 20px !important; }
  body .u-sp-pl-20 {
    padding-left: 20px !important; }
  body .u-sp-ma-25 {
    margin: 25px !important; }
  body .u-sp-mt-25 {
    margin-top: 25px !important; }
  body .u-sp-mr-25 {
    margin-right: 25px !important; }
  body .u-sp-mb-25 {
    margin-bottom: 25px !important; }
  body .u-sp-ml-25 {
    margin-left: 25px !important; }
  body .u-sp-pa-25 {
    padding: 25px !important; }
  body .u-sp-pt-25 {
    padding-top: 25px !important; }
  body .u-sp-pr-25 {
    padding-right: 25px !important; }
  body .u-sp-pb-25 {
    padding-bottom: 25px !important; }
  body .u-sp-pl-25 {
    padding-left: 25px !important; }
  body .u-sp-ma-30 {
    margin: 30px !important; }
  body .u-sp-mt-30 {
    margin-top: 30px !important; }
  body .u-sp-mr-30 {
    margin-right: 30px !important; }
  body .u-sp-mb-30 {
    margin-bottom: 30px !important; }
  body .u-sp-ml-30 {
    margin-left: 30px !important; }
  body .u-sp-pa-30 {
    padding: 30px !important; }
  body .u-sp-pt-30 {
    padding-top: 30px !important; }
  body .u-sp-pr-30 {
    padding-right: 30px !important; }
  body .u-sp-pb-30 {
    padding-bottom: 30px !important; }
  body .u-sp-pl-30 {
    padding-left: 30px !important; }
  body .u-sp-ma-35 {
    margin: 35px !important; }
  body .u-sp-mt-35 {
    margin-top: 35px !important; }
  body .u-sp-mr-35 {
    margin-right: 35px !important; }
  body .u-sp-mb-35 {
    margin-bottom: 35px !important; }
  body .u-sp-ml-35 {
    margin-left: 35px !important; }
  body .u-sp-pa-35 {
    padding: 35px !important; }
  body .u-sp-pt-35 {
    padding-top: 35px !important; }
  body .u-sp-pr-35 {
    padding-right: 35px !important; }
  body .u-sp-pb-35 {
    padding-bottom: 35px !important; }
  body .u-sp-pl-35 {
    padding-left: 35px !important; }
  body .u-sp-ma-40 {
    margin: 40px !important; }
  body .u-sp-mt-40 {
    margin-top: 40px !important; }
  body .u-sp-mr-40 {
    margin-right: 40px !important; }
  body .u-sp-mb-40 {
    margin-bottom: 40px !important; }
  body .u-sp-ml-40 {
    margin-left: 40px !important; }
  body .u-sp-pa-40 {
    padding: 40px !important; }
  body .u-sp-pt-40 {
    padding-top: 40px !important; }
  body .u-sp-pr-40 {
    padding-right: 40px !important; }
  body .u-sp-pb-40 {
    padding-bottom: 40px !important; }
  body .u-sp-pl-40 {
    padding-left: 40px !important; }
  body .u-sp-ma-45 {
    margin: 45px !important; }
  body .u-sp-mt-45 {
    margin-top: 45px !important; }
  body .u-sp-mr-45 {
    margin-right: 45px !important; }
  body .u-sp-mb-45 {
    margin-bottom: 45px !important; }
  body .u-sp-ml-45 {
    margin-left: 45px !important; }
  body .u-sp-pa-45 {
    padding: 45px !important; }
  body .u-sp-pt-45 {
    padding-top: 45px !important; }
  body .u-sp-pr-45 {
    padding-right: 45px !important; }
  body .u-sp-pb-45 {
    padding-bottom: 45px !important; }
  body .u-sp-pl-45 {
    padding-left: 45px !important; }
  body .u-sp-ma-50 {
    margin: 50px !important; }
  body .u-sp-mt-50 {
    margin-top: 50px !important; }
  body .u-sp-mr-50 {
    margin-right: 50px !important; }
  body .u-sp-mb-50 {
    margin-bottom: 50px !important; }
  body .u-sp-ml-50 {
    margin-left: 50px !important; }
  body .u-sp-pa-50 {
    padding: 50px !important; }
  body .u-sp-pt-50 {
    padding-top: 50px !important; }
  body .u-sp-pr-50 {
    padding-right: 50px !important; }
  body .u-sp-pb-50 {
    padding-bottom: 50px !important; }
  body .u-sp-pl-50 {
    padding-left: 50px !important; }
  body .u-sp-ma-55 {
    margin: 55px !important; }
  body .u-sp-mt-55 {
    margin-top: 55px !important; }
  body .u-sp-mr-55 {
    margin-right: 55px !important; }
  body .u-sp-mb-55 {
    margin-bottom: 55px !important; }
  body .u-sp-ml-55 {
    margin-left: 55px !important; }
  body .u-sp-pa-55 {
    padding: 55px !important; }
  body .u-sp-pt-55 {
    padding-top: 55px !important; }
  body .u-sp-pr-55 {
    padding-right: 55px !important; }
  body .u-sp-pb-55 {
    padding-bottom: 55px !important; }
  body .u-sp-pl-55 {
    padding-left: 55px !important; }
  body .u-sp-ma-60 {
    margin: 60px !important; }
  body .u-sp-mt-60 {
    margin-top: 60px !important; }
  body .u-sp-mr-60 {
    margin-right: 60px !important; }
  body .u-sp-mb-60 {
    margin-bottom: 60px !important; }
  body .u-sp-ml-60 {
    margin-left: 60px !important; }
  body .u-sp-pa-60 {
    padding: 60px !important; }
  body .u-sp-pt-60 {
    padding-top: 60px !important; }
  body .u-sp-pr-60 {
    padding-right: 60px !important; }
  body .u-sp-pb-60 {
    padding-bottom: 60px !important; }
  body .u-sp-pl-60 {
    padding-left: 60px !important; }
  body .u-sp-ma-65 {
    margin: 65px !important; }
  body .u-sp-mt-65 {
    margin-top: 65px !important; }
  body .u-sp-mr-65 {
    margin-right: 65px !important; }
  body .u-sp-mb-65 {
    margin-bottom: 65px !important; }
  body .u-sp-ml-65 {
    margin-left: 65px !important; }
  body .u-sp-pa-65 {
    padding: 65px !important; }
  body .u-sp-pt-65 {
    padding-top: 65px !important; }
  body .u-sp-pr-65 {
    padding-right: 65px !important; }
  body .u-sp-pb-65 {
    padding-bottom: 65px !important; }
  body .u-sp-pl-65 {
    padding-left: 65px !important; }
  body .u-sp-ma-70 {
    margin: 70px !important; }
  body .u-sp-mt-70 {
    margin-top: 70px !important; }
  body .u-sp-mr-70 {
    margin-right: 70px !important; }
  body .u-sp-mb-70 {
    margin-bottom: 70px !important; }
  body .u-sp-ml-70 {
    margin-left: 70px !important; }
  body .u-sp-pa-70 {
    padding: 70px !important; }
  body .u-sp-pt-70 {
    padding-top: 70px !important; }
  body .u-sp-pr-70 {
    padding-right: 70px !important; }
  body .u-sp-pb-70 {
    padding-bottom: 70px !important; }
  body .u-sp-pl-70 {
    padding-left: 70px !important; }
  body .u-sp-ma-75 {
    margin: 75px !important; }
  body .u-sp-mt-75 {
    margin-top: 75px !important; }
  body .u-sp-mr-75 {
    margin-right: 75px !important; }
  body .u-sp-mb-75 {
    margin-bottom: 75px !important; }
  body .u-sp-ml-75 {
    margin-left: 75px !important; }
  body .u-sp-pa-75 {
    padding: 75px !important; }
  body .u-sp-pt-75 {
    padding-top: 75px !important; }
  body .u-sp-pr-75 {
    padding-right: 75px !important; }
  body .u-sp-pb-75 {
    padding-bottom: 75px !important; }
  body .u-sp-pl-75 {
    padding-left: 75px !important; }
  body .u-sp-ma-80 {
    margin: 80px !important; }
  body .u-sp-mt-80 {
    margin-top: 80px !important; }
  body .u-sp-mr-80 {
    margin-right: 80px !important; }
  body .u-sp-mb-80 {
    margin-bottom: 80px !important; }
  body .u-sp-ml-80 {
    margin-left: 80px !important; }
  body .u-sp-pa-80 {
    padding: 80px !important; }
  body .u-sp-pt-80 {
    padding-top: 80px !important; }
  body .u-sp-pr-80 {
    padding-right: 80px !important; }
  body .u-sp-pb-80 {
    padding-bottom: 80px !important; }
  body .u-sp-pl-80 {
    padding-left: 80px !important; }
  body .u-sp-ma-85 {
    margin: 85px !important; }
  body .u-sp-mt-85 {
    margin-top: 85px !important; }
  body .u-sp-mr-85 {
    margin-right: 85px !important; }
  body .u-sp-mb-85 {
    margin-bottom: 85px !important; }
  body .u-sp-ml-85 {
    margin-left: 85px !important; }
  body .u-sp-pa-85 {
    padding: 85px !important; }
  body .u-sp-pt-85 {
    padding-top: 85px !important; }
  body .u-sp-pr-85 {
    padding-right: 85px !important; }
  body .u-sp-pb-85 {
    padding-bottom: 85px !important; }
  body .u-sp-pl-85 {
    padding-left: 85px !important; }
  body .u-sp-ma-90 {
    margin: 90px !important; }
  body .u-sp-mt-90 {
    margin-top: 90px !important; }
  body .u-sp-mr-90 {
    margin-right: 90px !important; }
  body .u-sp-mb-90 {
    margin-bottom: 90px !important; }
  body .u-sp-ml-90 {
    margin-left: 90px !important; }
  body .u-sp-pa-90 {
    padding: 90px !important; }
  body .u-sp-pt-90 {
    padding-top: 90px !important; }
  body .u-sp-pr-90 {
    padding-right: 90px !important; }
  body .u-sp-pb-90 {
    padding-bottom: 90px !important; }
  body .u-sp-pl-90 {
    padding-left: 90px !important; }
  body .u-sp-ma-95 {
    margin: 95px !important; }
  body .u-sp-mt-95 {
    margin-top: 95px !important; }
  body .u-sp-mr-95 {
    margin-right: 95px !important; }
  body .u-sp-mb-95 {
    margin-bottom: 95px !important; }
  body .u-sp-ml-95 {
    margin-left: 95px !important; }
  body .u-sp-pa-95 {
    padding: 95px !important; }
  body .u-sp-pt-95 {
    padding-top: 95px !important; }
  body .u-sp-pr-95 {
    padding-right: 95px !important; }
  body .u-sp-pb-95 {
    padding-bottom: 95px !important; }
  body .u-sp-pl-95 {
    padding-left: 95px !important; }
  body .u-sp-ma-100 {
    margin: 100px !important; }
  body .u-sp-mt-100 {
    margin-top: 100px !important; }
  body .u-sp-mr-100 {
    margin-right: 100px !important; }
  body .u-sp-mb-100 {
    margin-bottom: 100px !important; }
  body .u-sp-ml-100 {
    margin-left: 100px !important; }
  body .u-sp-pa-100 {
    padding: 100px !important; }
  body .u-sp-pt-100 {
    padding-top: 100px !important; }
  body .u-sp-pr-100 {
    padding-right: 100px !important; }
  body .u-sp-pb-100 {
    padding-bottom: 100px !important; }
  body .u-sp-pl-100 {
    padding-left: 100px !important; }
  body * {
    max-width: 100%; }
  body .rcms-bs .row {
    margin: 0; }
  body .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
    body .row + .row {
      margin-bottom: 10px; }
    body .row div + div {
      margin-bottom: 10px; }
  body .btn-group + * {
    margin-top: 10px !important; }
  body .u-form-zip {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  body .label-danger {
    margin-right: 10px; }
  body #content div .login {
    width: 100%;
    border: none;
    border-top: solid 1px #dddddd;
    border-radius: unset;
    box-shadow: none; }
  body .clearfix.mt-3x.text-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  body .clearfix.mt-3x.text-center button {
    margin: 0; } }

@media screen and (min-width: 721px) {
  body .u-pc-flex-horizon {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  body .u-pc-flex-vertical {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  body .u-pc-flex-horizon {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  body .u-pc-flex-vertical {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  body .u-pc-flex-ai-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  body .u-pc-flex-ai-center {
    -ms-flex-align: center !important;
    align-items: center !important; }
  body .u-pc-flex-ai-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  body .u-pc-flex-jc-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  body .u-pc-flex-jc-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  body .u-pc-flex-jc-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  body .is-pc {
    display: block !important; }
  body .is-sp {
    display: none !important; }
  body .u-pc-ma-0 {
    margin: 0px !important; }
  body .u-pc-mt-0 {
    margin-top: 0px !important; }
  body .u-pc-mr-0 {
    margin-right: 0px !important; }
  body .u-pc-mb-0 {
    margin-bottom: 0px !important; }
  body .u-pc-ml-0 {
    margin-left: 0px !important; }
  body .u-pc-pa-0 {
    padding: 0px !important; }
  body .u-pc-pt-0 {
    padding-top: 0px !important; }
  body .u-pc-pr-0 {
    padding-right: 0px !important; }
  body .u-pc-pb-0 {
    padding-bottom: 0px !important; }
  body .u-pc-pl-0 {
    padding-left: 0px !important; }
  body .u-pc-ma-5 {
    margin: 5px !important; }
  body .u-pc-mt-5 {
    margin-top: 5px !important; }
  body .u-pc-mr-5 {
    margin-right: 5px !important; }
  body .u-pc-mb-5 {
    margin-bottom: 5px !important; }
  body .u-pc-ml-5 {
    margin-left: 5px !important; }
  body .u-pc-pa-5 {
    padding: 5px !important; }
  body .u-pc-pt-5 {
    padding-top: 5px !important; }
  body .u-pc-pr-5 {
    padding-right: 5px !important; }
  body .u-pc-pb-5 {
    padding-bottom: 5px !important; }
  body .u-pc-pl-5 {
    padding-left: 5px !important; }
  body .u-pc-ma-10 {
    margin: 10px !important; }
  body .u-pc-mt-10 {
    margin-top: 10px !important; }
  body .u-pc-mr-10 {
    margin-right: 10px !important; }
  body .u-pc-mb-10 {
    margin-bottom: 10px !important; }
  body .u-pc-ml-10 {
    margin-left: 10px !important; }
  body .u-pc-pa-10 {
    padding: 10px !important; }
  body .u-pc-pt-10 {
    padding-top: 10px !important; }
  body .u-pc-pr-10 {
    padding-right: 10px !important; }
  body .u-pc-pb-10 {
    padding-bottom: 10px !important; }
  body .u-pc-pl-10 {
    padding-left: 10px !important; }
  body .u-pc-ma-15 {
    margin: 15px !important; }
  body .u-pc-mt-15 {
    margin-top: 15px !important; }
  body .u-pc-mr-15 {
    margin-right: 15px !important; }
  body .u-pc-mb-15 {
    margin-bottom: 15px !important; }
  body .u-pc-ml-15 {
    margin-left: 15px !important; }
  body .u-pc-pa-15 {
    padding: 15px !important; }
  body .u-pc-pt-15 {
    padding-top: 15px !important; }
  body .u-pc-pr-15 {
    padding-right: 15px !important; }
  body .u-pc-pb-15 {
    padding-bottom: 15px !important; }
  body .u-pc-pl-15 {
    padding-left: 15px !important; }
  body .u-pc-ma-20 {
    margin: 20px !important; }
  body .u-pc-mt-20 {
    margin-top: 20px !important; }
  body .u-pc-mr-20 {
    margin-right: 20px !important; }
  body .u-pc-mb-20 {
    margin-bottom: 20px !important; }
  body .u-pc-ml-20 {
    margin-left: 20px !important; }
  body .u-pc-pa-20 {
    padding: 20px !important; }
  body .u-pc-pt-20 {
    padding-top: 20px !important; }
  body .u-pc-pr-20 {
    padding-right: 20px !important; }
  body .u-pc-pb-20 {
    padding-bottom: 20px !important; }
  body .u-pc-pl-20 {
    padding-left: 20px !important; }
  body .u-pc-ma-25 {
    margin: 25px !important; }
  body .u-pc-mt-25 {
    margin-top: 25px !important; }
  body .u-pc-mr-25 {
    margin-right: 25px !important; }
  body .u-pc-mb-25 {
    margin-bottom: 25px !important; }
  body .u-pc-ml-25 {
    margin-left: 25px !important; }
  body .u-pc-pa-25 {
    padding: 25px !important; }
  body .u-pc-pt-25 {
    padding-top: 25px !important; }
  body .u-pc-pr-25 {
    padding-right: 25px !important; }
  body .u-pc-pb-25 {
    padding-bottom: 25px !important; }
  body .u-pc-pl-25 {
    padding-left: 25px !important; }
  body .u-pc-ma-30 {
    margin: 30px !important; }
  body .u-pc-mt-30 {
    margin-top: 30px !important; }
  body .u-pc-mr-30 {
    margin-right: 30px !important; }
  body .u-pc-mb-30 {
    margin-bottom: 30px !important; }
  body .u-pc-ml-30 {
    margin-left: 30px !important; }
  body .u-pc-pa-30 {
    padding: 30px !important; }
  body .u-pc-pt-30 {
    padding-top: 30px !important; }
  body .u-pc-pr-30 {
    padding-right: 30px !important; }
  body .u-pc-pb-30 {
    padding-bottom: 30px !important; }
  body .u-pc-pl-30 {
    padding-left: 30px !important; }
  body .u-pc-ma-35 {
    margin: 35px !important; }
  body .u-pc-mt-35 {
    margin-top: 35px !important; }
  body .u-pc-mr-35 {
    margin-right: 35px !important; }
  body .u-pc-mb-35 {
    margin-bottom: 35px !important; }
  body .u-pc-ml-35 {
    margin-left: 35px !important; }
  body .u-pc-pa-35 {
    padding: 35px !important; }
  body .u-pc-pt-35 {
    padding-top: 35px !important; }
  body .u-pc-pr-35 {
    padding-right: 35px !important; }
  body .u-pc-pb-35 {
    padding-bottom: 35px !important; }
  body .u-pc-pl-35 {
    padding-left: 35px !important; }
  body .u-pc-ma-40 {
    margin: 40px !important; }
  body .u-pc-mt-40 {
    margin-top: 40px !important; }
  body .u-pc-mr-40 {
    margin-right: 40px !important; }
  body .u-pc-mb-40 {
    margin-bottom: 40px !important; }
  body .u-pc-ml-40 {
    margin-left: 40px !important; }
  body .u-pc-pa-40 {
    padding: 40px !important; }
  body .u-pc-pt-40 {
    padding-top: 40px !important; }
  body .u-pc-pr-40 {
    padding-right: 40px !important; }
  body .u-pc-pb-40 {
    padding-bottom: 40px !important; }
  body .u-pc-pl-40 {
    padding-left: 40px !important; }
  body .u-pc-ma-45 {
    margin: 45px !important; }
  body .u-pc-mt-45 {
    margin-top: 45px !important; }
  body .u-pc-mr-45 {
    margin-right: 45px !important; }
  body .u-pc-mb-45 {
    margin-bottom: 45px !important; }
  body .u-pc-ml-45 {
    margin-left: 45px !important; }
  body .u-pc-pa-45 {
    padding: 45px !important; }
  body .u-pc-pt-45 {
    padding-top: 45px !important; }
  body .u-pc-pr-45 {
    padding-right: 45px !important; }
  body .u-pc-pb-45 {
    padding-bottom: 45px !important; }
  body .u-pc-pl-45 {
    padding-left: 45px !important; }
  body .u-pc-ma-50 {
    margin: 50px !important; }
  body .u-pc-mt-50 {
    margin-top: 50px !important; }
  body .u-pc-mr-50 {
    margin-right: 50px !important; }
  body .u-pc-mb-50 {
    margin-bottom: 50px !important; }
  body .u-pc-ml-50 {
    margin-left: 50px !important; }
  body .u-pc-pa-50 {
    padding: 50px !important; }
  body .u-pc-pt-50 {
    padding-top: 50px !important; }
  body .u-pc-pr-50 {
    padding-right: 50px !important; }
  body .u-pc-pb-50 {
    padding-bottom: 50px !important; }
  body .u-pc-pl-50 {
    padding-left: 50px !important; }
  body .u-pc-ma-55 {
    margin: 55px !important; }
  body .u-pc-mt-55 {
    margin-top: 55px !important; }
  body .u-pc-mr-55 {
    margin-right: 55px !important; }
  body .u-pc-mb-55 {
    margin-bottom: 55px !important; }
  body .u-pc-ml-55 {
    margin-left: 55px !important; }
  body .u-pc-pa-55 {
    padding: 55px !important; }
  body .u-pc-pt-55 {
    padding-top: 55px !important; }
  body .u-pc-pr-55 {
    padding-right: 55px !important; }
  body .u-pc-pb-55 {
    padding-bottom: 55px !important; }
  body .u-pc-pl-55 {
    padding-left: 55px !important; }
  body .u-pc-ma-60 {
    margin: 60px !important; }
  body .u-pc-mt-60 {
    margin-top: 60px !important; }
  body .u-pc-mr-60 {
    margin-right: 60px !important; }
  body .u-pc-mb-60 {
    margin-bottom: 60px !important; }
  body .u-pc-ml-60 {
    margin-left: 60px !important; }
  body .u-pc-pa-60 {
    padding: 60px !important; }
  body .u-pc-pt-60 {
    padding-top: 60px !important; }
  body .u-pc-pr-60 {
    padding-right: 60px !important; }
  body .u-pc-pb-60 {
    padding-bottom: 60px !important; }
  body .u-pc-pl-60 {
    padding-left: 60px !important; }
  body .u-pc-ma-65 {
    margin: 65px !important; }
  body .u-pc-mt-65 {
    margin-top: 65px !important; }
  body .u-pc-mr-65 {
    margin-right: 65px !important; }
  body .u-pc-mb-65 {
    margin-bottom: 65px !important; }
  body .u-pc-ml-65 {
    margin-left: 65px !important; }
  body .u-pc-pa-65 {
    padding: 65px !important; }
  body .u-pc-pt-65 {
    padding-top: 65px !important; }
  body .u-pc-pr-65 {
    padding-right: 65px !important; }
  body .u-pc-pb-65 {
    padding-bottom: 65px !important; }
  body .u-pc-pl-65 {
    padding-left: 65px !important; }
  body .u-pc-ma-70 {
    margin: 70px !important; }
  body .u-pc-mt-70 {
    margin-top: 70px !important; }
  body .u-pc-mr-70 {
    margin-right: 70px !important; }
  body .u-pc-mb-70 {
    margin-bottom: 70px !important; }
  body .u-pc-ml-70 {
    margin-left: 70px !important; }
  body .u-pc-pa-70 {
    padding: 70px !important; }
  body .u-pc-pt-70 {
    padding-top: 70px !important; }
  body .u-pc-pr-70 {
    padding-right: 70px !important; }
  body .u-pc-pb-70 {
    padding-bottom: 70px !important; }
  body .u-pc-pl-70 {
    padding-left: 70px !important; }
  body .u-pc-ma-75 {
    margin: 75px !important; }
  body .u-pc-mt-75 {
    margin-top: 75px !important; }
  body .u-pc-mr-75 {
    margin-right: 75px !important; }
  body .u-pc-mb-75 {
    margin-bottom: 75px !important; }
  body .u-pc-ml-75 {
    margin-left: 75px !important; }
  body .u-pc-pa-75 {
    padding: 75px !important; }
  body .u-pc-pt-75 {
    padding-top: 75px !important; }
  body .u-pc-pr-75 {
    padding-right: 75px !important; }
  body .u-pc-pb-75 {
    padding-bottom: 75px !important; }
  body .u-pc-pl-75 {
    padding-left: 75px !important; }
  body .u-pc-ma-80 {
    margin: 80px !important; }
  body .u-pc-mt-80 {
    margin-top: 80px !important; }
  body .u-pc-mr-80 {
    margin-right: 80px !important; }
  body .u-pc-mb-80 {
    margin-bottom: 80px !important; }
  body .u-pc-ml-80 {
    margin-left: 80px !important; }
  body .u-pc-pa-80 {
    padding: 80px !important; }
  body .u-pc-pt-80 {
    padding-top: 80px !important; }
  body .u-pc-pr-80 {
    padding-right: 80px !important; }
  body .u-pc-pb-80 {
    padding-bottom: 80px !important; }
  body .u-pc-pl-80 {
    padding-left: 80px !important; }
  body .u-pc-ma-85 {
    margin: 85px !important; }
  body .u-pc-mt-85 {
    margin-top: 85px !important; }
  body .u-pc-mr-85 {
    margin-right: 85px !important; }
  body .u-pc-mb-85 {
    margin-bottom: 85px !important; }
  body .u-pc-ml-85 {
    margin-left: 85px !important; }
  body .u-pc-pa-85 {
    padding: 85px !important; }
  body .u-pc-pt-85 {
    padding-top: 85px !important; }
  body .u-pc-pr-85 {
    padding-right: 85px !important; }
  body .u-pc-pb-85 {
    padding-bottom: 85px !important; }
  body .u-pc-pl-85 {
    padding-left: 85px !important; }
  body .u-pc-ma-90 {
    margin: 90px !important; }
  body .u-pc-mt-90 {
    margin-top: 90px !important; }
  body .u-pc-mr-90 {
    margin-right: 90px !important; }
  body .u-pc-mb-90 {
    margin-bottom: 90px !important; }
  body .u-pc-ml-90 {
    margin-left: 90px !important; }
  body .u-pc-pa-90 {
    padding: 90px !important; }
  body .u-pc-pt-90 {
    padding-top: 90px !important; }
  body .u-pc-pr-90 {
    padding-right: 90px !important; }
  body .u-pc-pb-90 {
    padding-bottom: 90px !important; }
  body .u-pc-pl-90 {
    padding-left: 90px !important; }
  body .u-pc-ma-95 {
    margin: 95px !important; }
  body .u-pc-mt-95 {
    margin-top: 95px !important; }
  body .u-pc-mr-95 {
    margin-right: 95px !important; }
  body .u-pc-mb-95 {
    margin-bottom: 95px !important; }
  body .u-pc-ml-95 {
    margin-left: 95px !important; }
  body .u-pc-pa-95 {
    padding: 95px !important; }
  body .u-pc-pt-95 {
    padding-top: 95px !important; }
  body .u-pc-pr-95 {
    padding-right: 95px !important; }
  body .u-pc-pb-95 {
    padding-bottom: 95px !important; }
  body .u-pc-pl-95 {
    padding-left: 95px !important; }
  body .u-pc-ma-100 {
    margin: 100px !important; }
  body .u-pc-mt-100 {
    margin-top: 100px !important; }
  body .u-pc-mr-100 {
    margin-right: 100px !important; }
  body .u-pc-mb-100 {
    margin-bottom: 100px !important; }
  body .u-pc-ml-100 {
    margin-left: 100px !important; }
  body .u-pc-pa-100 {
    padding: 100px !important; }
  body .u-pc-pt-100 {
    padding-top: 100px !important; }
  body .u-pc-pr-100 {
    padding-right: 100px !important; }
  body .u-pc-pb-100 {
    padding-bottom: 100px !important; }
  body .u-pc-pl-100 {
    padding-left: 100px !important; } }
    
/*table width full  word-wrap */
.table_fixed_width {
  table-layout: fixed;
}
.word_wrap {
  word-break: break-all;
  white-space: normal !important;
}

/* テーブル改修 */
.c-listTable {
  table-layout: fixed; }

.c-listTable > thead > tr > th,
.c-listTable > tbody > tr > th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 8px;
  border: none;
  border-right: 3px solid #fff;
  background-color: #ddd;
  white-space: nowrap; }

.c-listTable > tbody > tr > td {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 8px;
  border: none;
  border-right: 3px solid #fff;
  white-space: nowrap; }

.c-listTable > tbody > tr:nth-child(odd) > th {
  background-color: #f1f1f1; }

.c-listTable > tbody > tr:nth-child(even) > th {
  background-color: #e7e7e7; }

.c-listTable > tbody > tr:nth-child(odd) > td {
  overflow: hidden;
  background-color: #fff; }

.c-listTable > tbody > tr:nth-child(even) > td {
  overflow: hidden;
  background-color: #f1f1f1; }

.c-listTable > tbody > tr:nth-child(odd) > td.warning {
  background-color: rgba(255, 221, 255, 0.5) !important; }

.c-listTable > tbody > tr:nth-child(even) > td.warning {
  background-color: rgba(255, 221, 255, 0.8) !important; }

.c-listTable > tbody > tr:hover > td,
.c-listTable > tbody > tr.hover > td {
  background-color: #fdf4e8; }

.c-listTable > tbody > tr.no_hikitori_info > th,
.c-listTable > tbody > tr.no_hikitori_info > td {
  background-color: #ffb6c1 !important; }

.u-flex-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.u-flex-column {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.u-item-margin-row-5 > *:not(last-child) {
  margin-right: 5px !important; }

.u-radius-4 {
  border-radius: 4px !important; }

body .u-w-10 {
  width: 10px !important;
  min-width: 10px !important;
  max-width: 10px !important; }

body .u-w-20 {
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important; }

body .u-w-30 {
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important; }

body .u-w-40 {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important; }

body .u-w-50 {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important; }

body .u-w-60 {
  width: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important; }

body .u-w-70 {
  width: 70px !important;
  min-width: 70px !important;
  max-width: 70px !important; }

body .u-w-80 {
  width: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important; }

body .u-w-90 {
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important; }

body .u-w-100 {
  width: 100px !important;
  min-width: 100px !important;
  max-width: 100px !important; }

body .u-w-110 {
  width: 110px !important;
  min-width: 110px !important;
  max-width: 110px !important; }

body .u-w-120 {
  width: 120px !important;
  min-width: 120px !important;
  max-width: 120px !important; }

body .u-w-130 {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important; }

body .u-w-140 {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 140px !important; }

body .u-w-150 {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important; }

body .u-w-160 {
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important; }

body .u-w-170 {
  width: 170px !important;
  min-width: 170px !important;
  max-width: 170px !important; }

body .u-w-180 {
  width: 180px !important;
  min-width: 180px !important;
  max-width: 180px !important; }

body .u-w-190 {
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important; }

body .u-w-200 {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important; }

body .u-w-210 {
  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important; }

body .u-w-220 {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important; }

body .u-w-230 {
  width: 230px !important;
  min-width: 230px !important;
  max-width: 230px !important; }

body .u-w-240 {
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important; }

body .u-w-250 {
  width: 250px !important;
  min-width: 250px !important;
  max-width: 250px !important; }

body .u-w-260 {
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important; }

body .u-w-270 {
  width: 270px !important;
  min-width: 270px !important;
  max-width: 270px !important; }

body .u-w-280 {
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important; }

body .u-w-290 {
  width: 290px !important;
  min-width: 290px !important;
  max-width: 290px !important; }

body .u-w-300 {
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important; }

body .u-w-310 {
  width: 310px !important;
  min-width: 310px !important;
  max-width: 310px !important; }

body .u-w-320 {
  width: 320px !important;
  min-width: 320px !important;
  max-width: 320px !important; }

body .u-w-330 {
  width: 330px !important;
  min-width: 330px !important;
  max-width: 330px !important; }

body .u-w-340 {
  width: 340px !important;
  min-width: 340px !important;
  max-width: 340px !important; }

body .u-w-350 {
  width: 350px !important;
  min-width: 350px !important;
  max-width: 350px !important; }

body .u-w-360 {
  width: 360px !important;
  min-width: 360px !important;
  max-width: 360px !important; }

body .u-w-370 {
  width: 370px !important;
  min-width: 370px !important;
  max-width: 370px !important; }

body .u-w-380 {
  width: 380px !important;
  min-width: 380px !important;
  max-width: 380px !important; }

body .u-w-390 {
  width: 390px !important;
  min-width: 390px !important;
  max-width: 390px !important; }

body .u-w-400 {
  width: 400px !important;
  min-width: 400px !important;
  max-width: 400px !important; }

.c-desc-list:not(:last-child) {
  margin-top: 15px; }

.c-desc-list .c-desc-term {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 10px;
  font-weight: normal; }

.c-desc-list .c-desc-desc {
  width: 100%; }

.u-tar {
  text-align: right !important; }

.u-tal {
  text-align: left !important; }

.u-tac {
  text-align: center !important; }

.c-table-requied {
  position: absolute;
  top: 50%;
  right: 8px;
  padding: 3px 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid 1px #ff0000;
  border-radius: 4px;
  background-color: #fff;
  color: #ff0000; }

.c-listTable > thead > tr > th {
  position: relative; }

.c-table-desc-term__column {
  padding: 3px 1px 3px 0px !important;
  border: none !important; }

.c-table-desc-term {
  height: 32px;
  background-color: #ddd;
  line-height: 32px;
  text-align: center; }

.c-table-desc-term:not(:first-child) {
  margin-top: 3px; }

.u-bg-white {
  background-color: #fff !important; }

/* flextable */
.c-flexTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.c-flexTable,
.c-flexTable * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.c-flexTableHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px; }

.c-flexTableHeadItem {
  position: relative;
  margin-right: 3px;
  background-color: #ddd;
  text-align: left;
  word-break: break-all; }
  .c-flexTableHeadItem:not(:empty) {
    padding: 8px; }

.c-flexTableList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.c-flexTableListItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-flexTableListItem:not(:last-child) {
  margin-bottom: 3px; }

.c-flexTableListItem:nth-child(even) .c-flexTableListItemHeadItem,
.c-flexTableListItem:nth-child(even) .c-flexTableListItemBodyRow__inner,
.c-flexTableListItem:nth-child(even) .c-flexTableListItemBodyRowItem {
  background-color: #f1f1f1; }

.c-flexTableListItem:hover .c-flexTableListItemHeadItem,
.c-flexTableListItem:hover .c-flexTableListItemBodyRow__inner,
.c-flexTableListItem:hover .c-flexTableListItemBodyRowItem {
  background-color: #fdf4e8; }

.c-flexTableListItemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .c-flexTableListItemHeadItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    margin-right: 3px;
    word-break: break-all; }
    .c-flexTableListItemHeadItem:not(:empty) {
      padding: 8px; }

.c-flexTableListItemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .c-flexTableListItemBodyRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0; }
    .c-flexTableListItemBodyRow .input-group-addon {
      height: 100%; }
      .c-flexTableListItemBodyRow .input-group-addon i.fa {
        margin-top: 0;
        margin-right: 0; }
    .c-flexTableListItemBodyRow__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .c-flexTableListItemBodyRowItem {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      height: 100%;
      min-height: 30px;
      padding: 3px 8px;
      word-break: break-all; }
      .c-flexTableListItemBodyRowItem.-type-view {
        -ms-flex-pack: distribute;
        justify-content: space-around; }
      .c-flexTableListItemBodyRowItem input[type="text"] {
        width: 100%; }
      .c-flexTableListItemBodyRowItem .input-group-addon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 5px 14px 6px; }
      .c-flexTableListItemBodyRowItem:not(:last-child) {
        margin-right: 3px; }
      .c-flexTableListItemBodyRowItem,
      .c-flexTableListItemBodyRowItem div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 25px; }
      .c-flexTableListItemBodyRowItem .form-control.-input-calendar {
        border-radius: 4px 0 0 4px; }
      .c-flexTableListItemBodyRowItem.-label {
        padding: 0; }
      .c-flexTableListItemBodyRowItem .-label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
        min-height: 30px;
        background-color: #ddd; }
        .c-flexTableListItemBodyRowItem .-label::after {
          display: block;
          z-index: 1;
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 100%;
          height: 3px;
          background-color: #fff;
          content: ""; }
        .c-flexTableListItemBodyRowItem .-label.-label-border-none::after {
          display: none; }

.u-flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.u-ws-now {
  white-space: nowrap; }

.u-w-max {
  width: 100%; }

.u-hyphen {
  margin: 0 5px; }

@media screen and (min-width: 721px) {
  body .u-pc-w-10 {
    width: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important; }
  body .u-pc-w-20 {
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important; }
  body .u-pc-w-30 {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important; }
  body .u-pc-w-40 {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important; }
  body .u-pc-w-50 {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important; }
  body .u-pc-w-60 {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important; }
  body .u-pc-w-70 {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important; }
  body .u-pc-w-80 {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important; }
  body .u-pc-w-90 {
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important; }
  body .u-pc-w-100 {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important; }
  body .u-pc-w-110 {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important; }
  body .u-pc-w-120 {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important; }
  body .u-pc-w-130 {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important; }
  body .u-pc-w-140 {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important; }
  body .u-pc-w-150 {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important; }
  body .u-pc-w-160 {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important; }
  body .u-pc-w-170 {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important; }
  body .u-pc-w-180 {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important; }
  body .u-pc-w-190 {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important; }
  body .u-pc-w-200 {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important; }
  body .u-pc-w-210 {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important; }
  body .u-pc-w-220 {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important; }
  body .u-pc-w-230 {
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important; }
  body .u-pc-w-240 {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important; }
  body .u-pc-w-250 {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important; }
  body .u-pc-w-260 {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important; }
  body .u-pc-w-270 {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important; }
  body .u-pc-w-280 {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important; }
  body .u-pc-w-290 {
    width: 290px !important;
    min-width: 290px !important;
    max-width: 290px !important; }
  body .u-pc-w-300 {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important; }
  body .u-pc-w-310 {
    width: 310px !important;
    min-width: 310px !important;
    max-width: 310px !important; }
  body .u-pc-w-320 {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important; }
  body .u-pc-w-330 {
    width: 330px !important;
    min-width: 330px !important;
    max-width: 330px !important; }
  body .u-pc-w-340 {
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important; }
  body .u-pc-w-350 {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important; }
  body .u-pc-w-360 {
    width: 360px !important;
    min-width: 360px !important;
    max-width: 360px !important; }
  body .u-pc-w-370 {
    width: 370px !important;
    min-width: 370px !important;
    max-width: 370px !important; }
  body .u-pc-w-380 {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important; }
  body .u-pc-w-390 {
    width: 390px !important;
    min-width: 390px !important;
    max-width: 390px !important; }
  body .u-pc-w-400 {
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important; } }

@media screen and (max-width: 720px) {
  body .u-sp-w-10 {
    width: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important; }
  body .u-sp-w-20 {
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important; }
  body .u-sp-w-30 {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important; }
  body .u-sp-w-40 {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important; }
  body .u-sp-w-50 {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important; }
  body .u-sp-w-60 {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important; }
  body .u-sp-w-70 {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important; }
  body .u-sp-w-80 {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important; }
  body .u-sp-w-90 {
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important; }
  body .u-sp-w-100 {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important; }
  body .u-sp-w-110 {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important; }
  body .u-sp-w-120 {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important; }
  body .u-sp-w-130 {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important; }
  body .u-sp-w-140 {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important; }
  body .u-sp-w-150 {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important; }
  body .u-sp-w-160 {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important; }
  body .u-sp-w-170 {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important; }
  body .u-sp-w-180 {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important; }
  body .u-sp-w-190 {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important; }
  body .u-sp-w-200 {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important; }
  body .u-sp-w-210 {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important; }
  body .u-sp-w-220 {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important; }
  body .u-sp-w-230 {
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important; }
  body .u-sp-w-240 {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important; }
  body .u-sp-w-250 {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important; }
  body .u-sp-w-260 {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important; }
  body .u-sp-w-270 {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important; }
  body .u-sp-w-280 {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important; }
  body .u-sp-w-290 {
    width: 290px !important;
    min-width: 290px !important;
    max-width: 290px !important; }
  body .u-sp-w-300 {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important; }
  body .u-sp-w-310 {
    width: 310px !important;
    min-width: 310px !important;
    max-width: 310px !important; }
  body .u-sp-w-320 {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important; }
  body .u-sp-w-330 {
    width: 330px !important;
    min-width: 330px !important;
    max-width: 330px !important; }
  body .u-sp-w-340 {
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important; }
  body .u-sp-w-350 {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important; }
  body .u-sp-w-360 {
    width: 360px !important;
    min-width: 360px !important;
    max-width: 360px !important; }
  body .u-sp-w-370 {
    width: 370px !important;
    min-width: 370px !important;
    max-width: 370px !important; }
  body .u-sp-w-380 {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important; }
  body .u-sp-w-390 {
    width: 390px !important;
    min-width: 390px !important;
    max-width: 390px !important; }
  body .u-sp-w-400 {
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important; } }

@media all and (-ms-high-contrast: none) {
      .c-flexTableListItemBodyRow {
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit; }
          .c-flexTableListItemBodyRow .input-group-addon i.fa {
            position: relative;
            right: 5px; } }

.keep-all {
  word-break: keep-all;
}
