html, body {
    font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    background: #fff none repeat scroll 0 0;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

a {
    color: #089870;
    text-decoration: underline;
}

body > .header .navbar {
    overflow: inherit;
}

html, body {
    min-height: 100% !important;
}

.text-jobz {
    color: #089870;
}

:focus {
    outline: none;
}

.text-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.background-jobz {
    background-color: #089870;
}

#loading-bar {
    height: 3px;
    width: 100%;
    position: fixed;
    overflow: hidden;
    background-color: #fff;
    z-index: 5000;
}
#loading-bar:before{
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 3px;
    background-image: linear-gradient(to right, #fff 0%, #00a5e7 20%, #00a5e7 80%, #fff 100%);
    /*background-image: linear-gradient(to right, #fff 0%, #FFC963 20%, #EDA338 30%, #F7724D 50%, #EDA338 70%, #FFC963 80%, #fff 100%);*/
    /*background-image: linear-gradient(to right, #fff 0%, #EDA338 50%, #fff 100%);*/
    -webkit-animation: loading 1.0s linear infinite forwards;
    -moz-animation: loading 1.0s linear infinite forwards;
    -o-animation: loading 1.0s linear infinite forwards;
    animation: loading 1.0s linear infinite forwards;
}
/* スマホ対応(読み込み時、transformでないとanimationが動作しないため) */
@media screen and (max-width: 768px) {
    #loading-bar:before {
        -webkit-animation: loadingSP 1.0s linear infinite forwards;
        -moz-animation: loadingSP 1.0s linear infinite forwards;
        -o-animation: loadingSP 1.0s linear infinite forwards;
        animation: loadingSP 1.0s linear infinite forwards;
    }
}
@-webkit-keyframes loading {
    from { left: -200px; width: 30%;}
    50% { width: 30%;}
    70% { width: 70%;}
    80% { left: 50%;}
    95% { left: 120%;}
    to { left: 100%;}
}
@-moz-keyframes loading {
    from { left: -200px; width: 30%;}
    50% { width: 30%;}
    70% { width: 70%;}
    80% { left: 50%;}
    95% { left: 120%;}
    to { left: 100%;}
}
@-o-keyframes loading {
    from { left: -200px; width: 30%;}
    50% { width: 30%;}
    70% { width: 70%;}
    80% { left: 50%;}
    95% { left: 120%;}
    to { left: 100%;}
}
@keyframes loading {
    from { left: -200px; width: 30%;}
    50% { width: 30%;}
    70% { width: 70%;}
    80% { left: 50%;}
    95% { left: 120%;}
    to { left: 100%;}
}
@-webkit-keyframes loadingSP {
    50% { transform: scaleX(3) }
    100% { transform: translateX(1024px) scaleX(3); }
}
@-moz-keyframes loadingSP {
    50% { transform: scaleX(3) }
    100% { transform: translateX(1024px) scaleX(3); }
}
@-o-keyframes loadingSP {
    50% { transform: scaleX(3) }
    100% { transform: translateX(1024px) scaleX(3); }
}
@keyframes loadingSP {
    50% { transform: scaleX(3) }
    100% { transform: translateX(1024px) scaleX(3); }
}

/* 見出し前後表示切替ボタン */
.box-title:not(.sub-title) {
    padding: 8px 10px 12px 10px !important;
}
.box-title a.dropdown-toggle {
    text-decoration: none;
}
.box-title a.dropdown-toggle span {
    color: #333 !important;
}
.title-change .title-change-btn {
    padding: 0 !important;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 0;
    -webkit-border-radius: 0;}
.title-change .title-change-btn i {
    color: #333 !important;
    margin: 9px;}
.title-change .title-change-btn:hover {
    background-color: #f4f4f4;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition-property: none;}
/*.title-change .title-change-btn:active {*/
    /*opacity: 1.0;*/
/*}*/
.sub-header .title-change .title-change-btn:hover {
    background-color: #45ad8e;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition-property: none;}
.sub-header {
    background-color: #089870;
    color: #fff !important;
    padding: 2px 0 0 2px;
}
.sub-header .sub-title {
    padding: 11px 10px 9px 10px;
}
.sub-header .title-change .title-change-btn i {
    color: #fff !important;
    margin: 10px;
}

/* 勤務形態、時給などの行追加可能テーブル */
.rowAddTable tbody tr td {
    vertical-align: middle;
}
.rowAddTable tbody tr:first-child:hover {
    background: transparent;
}

.content-header h1{
    font-size: 18px;
    border-bottom: #089870;
    font-weight: bold;
    margin: 0;
}
.content-body {
    width: 95%;
    margin: auto;
}
.green .content > .content-header {
    background: #fff none repeat scroll 0 0;
    /*box-shadow: 1px 1px 2px #089870;*/
    border-bottom: 1px solid #098970;
}
.content.strech > .content-header {
    margin-top: 0;
}
.content > .content-header {
    padding: 15px 15px 10px 20px;
    position: relative;
}
.content.strech {
    margin-left: 0;
    overflow: inherit;
}
.content {
    display: block;
    min-height: 100%;
    background-color: #fff;
    margin-left: 220px;
    padding: 0;
    overflow: auto;
}
.content-body {
    margin-top: 10px;
}
.page-header {
    font-size: 18px;
    border-bottom: 1px solid #089870;
}
.nav-tabs-custom > .nav-tabs > li.active {
    border-top-color: #098970;
}
.navbar-nav > .notifications-menu > .dropdown-menu.common-menu {
    padding: 15px !important;
    width: 275px;
}
@media screen and (max-width: 787px) {
    .dropdown-menu.common-menu {
        left: 0 !important;
    }
}
.navbar-nav > .user-menu > .dropdown-menu.user-setting-menu:after{
    content: normal !important;
}
ul.common-menu li, ul.common-menu a {
    display: block;
    float: left;
    width: 80px;
    font-size: 12px;
}

ul.common-menu li a {
    margin-bottom: 5px;
    text-align: center;
    color: #000 !important;
    /*color: #089870 !important;*/
    text-decoration: none;
    padding: 0 !important;
}
ul.common-menu li a:hover {
    color:#066D50 !important;
    opacity: 0.7;
    background-color: #fff !important;
}
ul.common-menu li img {
    width: 60px;
    height: 60px;
}
ul.page-menu {
    padding: 0;
}
ul.page-menu a{
    padding-right:3px;
    text-decoration: none;
}
ul.page-menu a i{
    margin-top: 2px;
}
.page-menu .dropdown-submenu>a:after {
    content: none;
}
ul.dropdown-menu.page-menu li:not(.divider):hover, ul.page-menu li a:hover {
    background-color: #EFF5F0;
    color: #066D50;
}
ul.dropdown-menu.page-menu li:not(.divider):hover i, ul.page-menu li a:hover i{
    color: #333;
}
  .dropdown-menu.page-menu li:not(.divider) {
    min-height: 44px;
    padding-top: 9px;
}
.dropdown-menu .divider {
    margin:0;
}
.dropdown-menu.page-menu .dropdown-menu.page-menu {
    border-radius: 0;
}
.nav-tabs-custom {
    box-shadow: none;
}
.nav-tabs-custom > .nav-tabs > li.active {
    border-top: none;
}
.nav-tabs-custom > .nav-tabs > li.active > a {
    border: none;
    background-color: #EEF4EF;
}
.nav-tabs-custom > .nav-tabs > li > a {
    text-decoration: none;
}
.btn.btn-primary {
    background-color: #089870 !important;
    border-color: #089870 !important;
}
.btn.btn-primary:hover{
    background-color: #089870 !important;
}
.btn.btn-primary:hover, .btn:active {
    opacity: 0.8;
    box-shadow: none !important;
    outline: none !important; /* クリック時の青枠を削除 */
}
.btn.btn-default {
    /*color: #089870;*/
    border-color: #e3eae8;
}
.btn {
    text-decoration: none;
    padding: 4px 20px;
    box-shadow: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn-group {
    display: block;
}
.btn-group > .btn {
    transition: none;
}
@media screen and (max-width: 480px) {
    .btn-group .btn + .btn {
        margin-left: 0
    }
    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 3px !important;
        border-bottom-left-radius: 0 !important
    }
    .btn-group > .btn:last-child:not(:first-child),
    .btn-group > .dropdown-toggle:not(:first-child) {
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 3px !important;
    }
    .btn-group > .btn:not(:last-child) {
        border-bottom: none;
    }
}
/*.appOnly {*/
/*    display: none !important;*/
/*}*/
.box {
    border: none;
    box-shadow: none;
}
.box .box-header {
    border-bottom: 1px solid #089870;
    margin-bottom: 8px;
}
.box .box-header a {
    color: #089870;
}
.box .box-header > .fa, .box .box-header > .glyphicon, .box .box-header > .ion, .box .box-header .box-title {
    font-size: 16px;
}
.box.box-solid > .box-header .btn.btn-default {
    background-color: #fafafa;
}
.menu-side {
    width: 230px;
    padding-top: 50px;
    top: 0;
    right: 0;
    position: absolute;
    background-color: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: -3px 0 8px -4px rgba(0, 0, 0, 0.07) inset;
}
@media screen and (max-width: 560px) {
    .menu-side {
        padding-top: 100px;
    }
}
.block {
    display: block !important;
}
.index-quickReport .small-box:hover {
    opacity: 0.8;
    color: #000;
}
.index-quickReport .small-box.right-border {
    border-right: 1px solid #E3EAE8;
}
.index-quickReport .small-box > .inner {
    margin: 10px;
    padding: 0;
}
.sidebar-menuSlider ul.sidebar-menu li a span, .sidebar-menuSlider ul.sidebar-menu li a i,
.sidebar-menuSlider ul.sidebar-menu li ul li a {
    color: #000;
}
.nav-tabs {
    border-bottom: 3px solid #EFF5F0 !important;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    border-top: 1px solid #E3EAE8;
    vertical-align: middle;
}
.table tbody tr:hover {
    background-color: #F9FBF9;
}
.table>thead>tr>th {
    border-bottom: none;
}
a:hover, a:focus{
    color: #066D50;
}
.input-group .input-group-addon {
    background-color: #fff;
}
.modal {
    z-index: 5000;
}
/* ログイン */
#login-box {
    background-color: #089870;
}

/* ダッシュボード */
.news {
    margin-bottom: 20px;
}
.news ol {
    list-style: none;
    padding-left: 10px;
}
/*@media(max-width: 768px){*/
/*    .news #noticeListLarge{*/
/*        display:none;*/
/*    }*/
/*    .news #noticeListSmall .threeTitles{*/
/*        padding-right: 15px;*/
/*        padding-left: 15px;*/
/*    }*/
/*}*/
/*@media(min-width: 769px){*/
/*    .news #noticeListSmall{*/
/*        display:none;*/
/*    }*/
/*}*/





.news ol li {
    margin-bottom: 8px;
}
.navbar-nav > .user-menu > .dropdown-menu {
    border-radius: 4px;
    border-top-width: 1px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
    /*background-color: #089870 !important;*/
    background-color: #ffffff !important;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > div {
    z-index: 5;
    color: #333333;
    font-size: 14px;
    text-shadow: none;
    margin-top: 10px;
    display: grid;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-footer {
    background-color: #ffffff;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default{
    color:#089870;
    padding: 10px 30px;
}
.xs-menu .small-box > .inner {
    padding: 10px 0 !important;
}
.xs-menu .small-box p {
    text-decoration: underline;
}
/*@media screen and (max-width: 480px) {*/
    /*.xs-menu .small-box p {*/
        /*font-size: 14px;*/
    /*}*/
/*}*/
.index-menu {
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}
.index-menu ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
}
.index-menu ul li, .index-menu a {
    /*display: block;*/
    /*float: left;*/
    display: inline-block;
    width: 140px;
}
.index-menu a {
    margin-bottom: 12px;
    text-align: center;
}
.index-menu ul li img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
.index-menu div {
    list-style: none;
}
@media screen and (max-width: 775px) {
    .index-menu div{
        padding-left: 0 !important;
    }
    .index-menu div img{
        width: 90px !important;
        height: 90px !important;
    }
    .index-menu ul li, .index-menu a {
        width: 120px !important;
    }
}
@media screen and (min-width: 992px) {
    .index-menu div{
        width: 125px !important;
    }
}
@media screen and (max-width: 320px) {
    .index-menu div, .index-menu a {
        width: 99px !important;
    }
    .index-menu div img{
        width: 90px !important;
        height: 90px !important;
    }
}
.index-menu div img {
    width: 125px;
    height: 125px;
}
/* メニュー画面 */
.menu-list-box .row ul li, .menu-list-box .row ul li a {
    display: block;
    /*float: left;*/
    width: 90px;
}
.menu-list-box .row ul li {
    margin-right: 18px;
}
.menu-list-box .row ul li a {
    /*margin-bottom: 5px;*/
    /*text-align: center;*/
    margin-bottom: 12px;
    font-size: 14px;
    color: #089870 !important;
}
.menu-list-box .row ul li a:hover {
    opacity: 0.7;
    background-color: #fff !important;
}
.menu-list-box .row ul li img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}
.input-group-btn .btn.btn-comment-save {
    border-radius: 4px !important;
}

/* 日報速報 */
.ranking-content h4 {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #089870;
}
.ranking-box {
    clear: both;
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .ranking-box {
        margin-top: 16px;
    }
    .threeCountBox {
        margin-top: -10px;
    }
}
.ranking-list {
    list-style: none;
    padding: 0;
}
.ranking-title {
    font-size: 16px;
    margin-bottom: 8px;
}
.ranking-list li {
    padding: 8px 0;
    border-bottom: 1px solid #E3EAE8;
    /*display: flow-root;*/
    line-height: 20px;
    clear: both;
    overflow: hidden;
}
.ranking-list span {
    float: right;
    font-size: 18px;
}
.ranking-office-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ranking-office-list span {
    float: right;
    font-size: 16px;
}
.ranking-office-list li {
    padding: 4px 0;
    border-bottom: 1px solid #E3EAE8;
    display: flow-root;
    line-height: 20px;
}
.nav-tabs-custom > .nav-tabs > li {
    border: 1px;
}
.nav-tabs-custom .nav-tabs li.active, .nav-tabs-custom .ranking-tab {
    background-color: #EFF5F0 !important;
    margin: 0;
    border-bottom: none;
}
.nav-tabs-custom .nav-tabs li.active a:hover {
    background-color: #EFF5F0 !important;
    opacity: 0.8;
}
.ranking-nav li a {
    padding: 10px 6px;
    font-size: 14px;
}
.threeCountBox {
    overflow: hidden;
    display: inherit;
}
.c3-ygrid-line.grid400000 line {
    stroke: #089870;
}

/* 組織図履歴 */
#organizationList .collapsed-box {
    margin-bottom: 8px;
}
#organizationList a[data-toggle="collapse"] {
    background-color: #EFF5F0;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}
#organizationList .sticky_table {
    height: 65vh;
    min-height: 600px;
    border-collapse: separate;
    -webkit-overflow-scrolling: touch;
}
#organizationList .sticky_table thead th.blank {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
}
#organizationList .sticky_table thead th.blank:nth-child(1),
#organizationList .sticky_table tbody th:not(.employee-col):nth-child(1) {
    left: 0;
}
#organizationList .sticky_table thead th.blank:nth-child(2),
#organizationList .sticky_table tbody th:not(.employee-col):nth-child(2) {
    left: 100px;
}
#organizationList .sticky_table thead th.blank:nth-child(3),
#organizationList .sticky_table tbody th:not(.employee-col):nth-child(3) {
    left: 200px;
}
#organizationList .sticky_table thead th.blank:nth-child(4),
#organizationList .sticky_table tbody th:not(.employee-col):nth-child(4) {
    left: 300px;
    border-right: 1px solid #ddd !important;
}
@media screen and (max-width: 767px) {
    #organizationList .sticky_table tbody th,
    #organizationList .sticky_table thead th.blank {
        position: inherit !important;
    }
}
#organizationList .sticky_table thead th {
    border-bottom: 1px solid #089870 !important;
}
#organizationList .sticky_table tr.section-row th,
#organizationList .sticky_table tr.section-row td,
#organizationList .sticky_table tbody tr th:first-child {
    background-color: #EFF5F0 !important;
}
#organizationList .sticky_table tbody tr:first-child th,
#organizationList .sticky_table tbody tr:first-child td {
    border-top: none !important;
}
#organizationList .sticky_table tbody tr th.section-col,
#organizationList .sticky_table tbody tr th.branch-col,
#organizationList .sticky_table tbody tr th.area-col,
#organizationList .sticky_table tbody tr th.office-col {
    border-right: 1px solid #ddd !important;
}
#organizationList .sticky_table th.organize-col {
    border: none;
}
#organizationList .sticky_table .organize-col {
    min-width: 100px;
    width: 100px;
}
#organizationList .sticky_table .section-col {
    min-width: 400px;
    width: 400px;
}
#organizationList .sticky_table .branch-col {
    min-width: 300px;
    width: 300px;
}
#organizationList .sticky_table .area-col {
    min-width: 200px;
    width: 200px;
}
#organizationList .sticky_table .office-col {
    min-width: 100px;
    width: 100px;
}
#organizationList .sticky_table .employee-col {
    min-width: 135px;
    width: 135px !important;
}
table#organization tr td:not(.chief):not(.general),
table#organization tr th {
    font-size: 12px !important;
}
table#organization tr td select,
table#organization tr td input[type="text"] {
    height: 24px !important;
}
table#organization tr td input[type="text"] {
    float: left;
    padding: 6px !important;
}
table#organization th {
    background-color: #fff;
}
table#organization .sortable-select {
    color: #089870;
}
.editLink {
    color: #fff !important;
}
#organization tr {
    height: 35px;
}
table#organization tbody tr td {
    padding: 8px;
}
table#organization td.line_other,
table#organization th.line_other {
    border-top: 1px solid #089870;
}
table#organization td.line,
table#organization th.line {
    border-left: 1px solid #089870;
    border-top: 1px solid #089870 !important;
}
table#organization td.line_left,
table#organization th.line_left {
    border-left: 1px solid #089870 !important;
}
table#organization td.line.line_other,
table#organization th.line.line_other {
    border-left: none !important;
}
table#organization thead tr th {
    border-bottom: none;
}
table#organization tbody tr td i:not(.flagship) {
    color: #089870;
    cursor: pointer;
}
table#organization tbody tr td .btn.btn-app.sortable-select i {
    cursor: move;
}

/* 日報閲覧 */
#reportView table tr th,
#reportView table tr td
{
    background-color: #fff;
    /*border-right: none;*/
}
#reportView #report-view-box #report-view.table>tbody>tr>th:not(:last-child),
#reportView #report-view-box #report-view-area .table>tbody>tr>td:not(:last-child),
#reportView #report-view-box .budgetComparisonTable.fixBudgetEntryRight .table>tbody>tr>td:not(:last-child)
{
    /*border-right:none;*/
    border-right:1px solid #dddddd;
}
#reportView #report-view-box #report-view.table>tbody>tr>th.compartment,
#reportView #report-view-box #report-view-area .table>tbody>tr>td.compartment,
#reportView #report-view-box .budgetComparisonTable.fixBudgetEntryRight .table>tbody>tr>td.compartment
{
    /*border-right:none;*/
    border-right:1px solid #999999;
}
#reportView table tr:first-child {
    border-top: none;
}
.reportLeftTable .report-group {
    color: #089870;
}
.reportLeftTable .report-group i {
    margin-right: 10px;
    margin-left: -18px;
}
.reportLeftTable tr th {
    padding-left: 28px !important;
}
#reportView table tr th.headerTh {
    border-top: none;
}
th.total, th.sum, th.office_sum, th.area_sum, th.branch_sum {
    background-color: #fff !important;
}
.dropdown-menu.search-menu.reportView {
    width: 380px;
    right: 0 !important;
    left: auto;
}
.dropdown-menu.search-menu.reportView ul {
    list-style: none;
}
.search-menu.reportView div .box-body {
    text-align: left;
}
.search-menu.reportView .control-label {
    margin-left: 14px;
    margin-bottom: 4px;
}
.search-menu.reportView .radio-button label.btn {
    width: 80px;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 8px;
    margin-right: 2px;
    background-color: #EFF5F0;
    border: none;
}
.search-menu.reportView .radio-button label.btn.active {
    background-color: #089870 !important;
}
.search-menu.reportView .radio-button label.btn:hover {
    background-color: #089870 !important;
    color: #fff;
}
.search-menu.reportView .radio-button label.btn.active:hover {
    background-color: #089870 !important;
}
.search-menu.reportView div .box-body fieldset fieldset {
    margin-bottom: 8px;
}
#report-view-area #report-view tr:first-child th {
    border-top: none;
}
.budgetComparisonTable.fixBudgetEntryRight #report-view tr:first-child th {
    border-top: none;
}
.search-menu.reportView fieldset.group-toggle,
.search-menu.reportView fieldset.range-toggle {
    padding-top: 10px;
}
@media screen and (max-width: 767px) {
    .search-menu.reportView {
        width: 290px !important;
    }
    .search-menu.reportView .radio-button label.btn {
        width: 75px;
        margin-bottom: 2px;
    }
    #form_month div.input-group:first-child, #date-form div.input-group:first-child {
        margin-bottom: 2px;
    }
}
/* 日報閲覧の罫線 */
#report-view-area #report-view tbody tr th:first-child,
#report-view-area #report-view tbody tr td:first-child {
    /*border-left: 1px solid #999;*/
}
#report-view-area #report-view.viewRight tbody tr th:first-child,
#report-view-area #report-view.viewRight tbody tr td:first-child {
    border-left: none;
}

.reportDayView tbody tr th:not(:first-child), .reportDayView tbody tr td:not(:first-child),
#report-view-box .reportWeekView tbody tr th:not(:first-child).officeName,
#report-view-box .reportMonthView tbody tr th:not(:first-child).officeName {
    border-left: 1px solid #999;
}
#report-view-box .reportWeekView tbody tr .sum,
#report-view-box .reportWeekView tbody tr .office_sum,
#report-view-box .reportWeekView tbody tr .area_sum,
#report-view-box .reportWeekView tbody tr .branch_sum,
#report-view-box .reportMonthView tbody tr .sum,
#report-view-box .reportMonthView tbody tr .office_sum,
#report-view-box .reportMonthView tbody tr .area_sum,
#report-view-box .reportMonthView tbody tr .branch_sum {
    border-right: 1px solid #999;
}


/* 日報入力 */
.table.reportInputList tbody tr.info td {
    background-color: #EFF5F0 !important;
}
.table.reportInputList td {
    padding:0;
}
.table.reportInputList a {
    display: block;
    width: 100%;
    padding: 8px;
}
.report-input-search-tools {
    display: inline-block;
    margin-left: 18px;
    font-size: 14px;
}
.report-input-search-tools .search-menu.blockApprovalViewSearch {
    padding: 15px;
}
.report-input-search-tools .search-menu.blockApprovalViewSearch .box {
    margin-bottom: 0;
}
.report-input-search-tools .search-menu.blockApprovalViewSearch .control-label{
    margin-left: 14px;
    margin-bottom: 4px;
    text-align: left;
    padding-left: 0;
    font-size: 12px;
}

@media screen and (max-width: 775px) {
    .report-input-search-tools.pull-right {
        float: none !important;
        width: 100%;
        text-align: right;
        padding-right: 29px;
        padding-top: 8px;
    }
}

@media screen and (max-width: 320px) {
    .report-input-search-tools.pull-right {
        float: none !important;
        width: 100%;
        text-align: right;
        padding-right: 29px;
        padding-top: 8px;
    }
}

/* 設定・管理 一覧 */
.table.listTable tr th {
    border-top: none;
}
#advanced_companyRole {
    width: 150px;
}

/* 従業員一覧 */
a.filter-advanced:hover {
    color: #000 !important;
    background-color: #EFF5F0 !important;
}
/* 従業員登録/編集 */
h4.organization {
    background-color: #EFF5F0;
}

/* 予算 */
.itemizationTable thead tr, #item ul.nav-tabs li.active a, #expenses ul.nav-tabs li.active a {
    background-color: #EFF5F0 !important;
}
/* 予算入力 */
.dropdown-menu.search-menu.budgetSetting {
    width: 980px;
    right: 0 !important;
    left: auto;
    padding: 15px;
}
@media screen and (max-width: 1100px) {
    .dropdown-menu.search-menu.budgetSetting {
        width: 700px !important;
    }
    #itemSearch,#personalExpenseSearch {
        display: block;
        margin-top:5px !important;
        margin-left:0 !important;
    }
}
@media screen and (max-width: 900px) {
    .dropdown-menu.search-menu.budgetSetting {
        width: 550px !important;
    }
}
@media screen and (max-width: 700px) {
    .dropdown-menu.search-menu.budgetSetting {
        width: 300px !important;
    }
    .dropdown-menu.search-menu.budgetSetting .form-group .control-label{
        text-align: left;
        padding-left: 0;
    }
    .initializeData-display {
        margin-top:5px !important;
        margin-left:0 !important;
    }

}
@media screen and (max-width: 500px) {
    .dropdown-menu.search-menu.budgetSetting {
        right: -105px !important;
    }
}
.search-menu.budgetSetting div .box-body {
    text-align: left;
}
.search-menu.budgetSetting .control-label {
    margin-left: 14px;
    margin-bottom: 4px;
}
.search-menu.budgetSetting, .search-menu.budgetSetting .input-group-addon {
    font-size: 12px;
}
.search-menu.budgetSetting .nav-tabs-custom {
    margin-bottom: 0;
}
.search-menu.budgetSetting .nav-tabs > li > a {
    border: none;
}
.search-menu.budgetSetting .nav-tabs-custom .nav-tabs li.active {
    margin-right: 5px;
    margin-bottom:-2px;
}
#report-view-box .table>tbody>tr:first-child th {
    background-color: #fff !important;
}
#report-view-box .table>tbody>tr.primary:first-child th {
    background-color: #E0EBE2 !important;
}
#report-view-box .table>tbody>tr.report-group:first-child th {
    background-color: #EFF5F0 !important;
}
.budgetEntryTable tbody tr:nth-child(1) th, .budgetEntryTable tbody tr:nth-child(2) th {
    background-color: #fff;
}
.budgetEntryTable-left tbody tr th {
    color: #089870;
    height: 25px;
}
.budgetEntryTable tbody tr th {
    min-width: 50px;
}
.budgetEntryTable tbody tr td {
    height: 25px;
}
.budgetEntryTable-left tr th:first-child {
    width: 140px;
}
.budgetEntryTable-left tr th div:nth-child(1) {
    display: inline-block;
}
.budgetEntryTable-left tr th div input {
    float: left;
}
.budgetEntryTable-left tr th div:nth-child(1):not(.data_label) {
    width: 115px !important;
}
.budgetEntryTable-left tr th div:nth-child(2) {
    width: 40px !important;
    font-size: 11px;
}
.budgetEntryTable tr:hover {
    background-color: inherit !important;
}
#report-view-box .table>thead>tr>th, #report-view-box .table>tbody>tr>th, #report-view-box .table>tfoot>tr>th, #report-view-box .table>thead>tr>td, #report-view-box .table>tbody>tr>td, #report-view-box .table>tfoot>tr>td {
    border-top: 1px solid #E3EAE8;
    border-right: none;
}
.budgetEntryTable-left tr,.budgetEntryDataTable tr {
    height: 24px;
}
#report-view-area table.budgetEntryTable.oneCompareBorder tbody tr:not(:first-child) th:not(:first-child),
#report-view-area table.budgetEntryTable.oneCompareBorder tbody tr:not(:first-child) td:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.oneCompareBorder tbody tr:not(:first-child) th:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.oneCompareBorder tbody tr:not(:first-child) td:not(:first-child){
    border-left: 1px solid #E3EAE8 !important;
}
#report-view-area table.budgetEntryTable.oneCompareBorder tbody tr:first-child th:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.oneCompareBorder tbody tr:first-child th:not(:first-child){
    border-left: 1px solid #E3EAE8 !important;
}
#report-view-area table.budgetEntryTable tbody tr:first-child th:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable tbody tr:first-child th:not(:first-child){
    border-left: 1px solid #999 !important;
}
.dropdown-menu.search-menu.submit {
    right: 0 !important;
    left: auto;
}
.dropdown-menu.search-menu.submit input {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.dropdown-menu.search-menu.submit input:last-child {
    margin-bottom: 0;
}
.budgetSetting #budgetInitialTable .input-group-addon.percent {
    padding: 0 5px !important;
}
.search-menu.budgetSetting .tab-content {
    padding-bottom: 0;
}

/* 2項目比較用 */
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(3),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(5),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(7),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(9),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(11),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(13),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(15),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(17),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(19),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(21),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(23),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(25),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(27),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(3),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(5),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(7),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(9),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(11),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(13),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(15),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(17),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(19),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(21),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(23),
#report-view-area table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(25),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(27),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(3),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(5),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(7),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(9),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(11),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(15),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(17),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(19),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(21),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(23),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(25),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr td:nth-child(27),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(3),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(5),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(7),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(9),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(11),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(15),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(17),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(19),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(21),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(23),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(25),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.twoCompareBorder tbody tr:not(:first-child) th:nth-child(27)
{
    border-left: 1px solid #999 !important;
}

/* 3項目比較用 */
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(5),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(9),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(13),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(17),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(21),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(25),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(29),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(33),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(37),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(41),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(45),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(49),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(53),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(5),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(9),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(13),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(17),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(21),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(25),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(29),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(33),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(37),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(41),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(45),
#report-view-area table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(49),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(53),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(5),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(9),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(17),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(21),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(25),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(29),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(33),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(37),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(41),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(45),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(49),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr td:nth-child(53),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(5),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(9),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(17),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(21),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(25),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(29),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(37),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(41),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(45),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(49),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.threeCompareBorder tbody tr:not(:first-child) th:nth-child(53){
    border-left: 1px solid #999 !important;
}
/* 4項目比較用 */
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(5),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(9),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(13),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(17),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(21),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(25),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(29),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(33),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(37),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(41),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(45),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(49),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td:nth-child(53),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(5),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(9),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(13),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(17),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(21),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(25),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(29),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(33),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(37),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(41),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(45),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(49),*/
/*#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th:nth-child(53)*/
#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th.budget-cell,
#report-view-area table.budgetEntryTable.fourCompareBorder tbody tr td.budget-cell:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.fourCompareBorder tbody tr:not(:first-child) th.budget-cell,
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.fourCompareBorder tbody tr td.budget-cell:not(:first-child)
{
    border-left: 1px solid #999 !important;
}
/* 5項目比較用 */
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(7),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(13),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(19),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(25),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(31),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(37),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(43),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(49),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(55),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(61),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(67),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(73),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td:nth-child(79),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(7),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(13),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(19),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(25),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(31),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(37),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(43),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(49),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(55),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(61),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(67),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(73),*/
/*#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th:nth-child(79)*/
#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th.budget-cell,
#report-view-area table.budgetEntryTable.fiveCompareBorder tbody tr td.budget-cell:not(:first-child),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.fiveCompareBorder tbody tr:not(:first-child) th.budget-cell,
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.fiveCompareBorder tbody tr td.budget-cell:not(:first-child)
{
    border-left: 1px solid #999 !important;
}
/* 6項目比較用 */
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(7),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(13),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(20),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(27),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(34),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(41),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(48),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(55),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(62),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(69),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(76),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(83),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(90),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(7),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(13),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(20),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(27),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(34),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(41),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(48),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(55),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(62),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(69),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(76),
#report-view-area table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(83),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(90),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(7),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(20),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(27),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(34),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(41),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(48),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(55),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(62),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(69),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(76),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(83),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr td:nth-child(90),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(7),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(13),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(20),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(27),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(34),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(41),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(48),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(55),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(62),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(69),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(76),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(83),
.budgetComparisonTable.fixBudgetEntryRight table.budgetEntryTable.sixCompareBorder tbody tr:not(:first-child) th:nth-child(90){
    border-left: 1px solid #999 !important;
}
@media all and (-ms-high-contrast:none) {
    .codeHeight {
        height: 50px !important;
    }
}
@media all and (-ms-high-contrast:none){
    .codeHeight {
        height: 50px !important;
    }
}
@-moz-document url-prefix() {
    .codeHeight {
        height: 51px !important;
    }
}


/* 予算閲覧 */
.monthListTable thead tr th {
    border: none !important;
}
.monthListTable tbody tr td {
    border-top: 1px solid #E3EAE8;
    min-width: 90px;
}
.monthListTable tbody tr th label, .monthListTable tbody tr td label {
    cursor: pointer;
}
.monthListTable tbody tr:hover, .monthListTable tbody tr td:hover, .monthListTable tbody tr th:hover {
    background-color: #fff !important;
}
.budgetViewTable.budgetEntryTable-left tr th div:nth-child(2) {
    width: 25px !important;
}
.dropdown-menu.search-menu.budgetViewSearch {
    width: 505px;
    right: 0 !important;
    left: auto;
    margin: 2px 0 0 0;
}
@media screen and (max-width: 320px) {
    .dropdown-menu.search-menu.budgetViewSearch form .box-body {
        padding: 10px 0;
    }
}
.search-menu.budgetViewSearch div .box-body {
    text-align: left;
}
.search-menu.budgetViewSearch .control-label {
    margin-left: 14px;
    margin-bottom: 4px;
}
.search-menu.budgetViewSearch, .search-menu.budgetViewSearch .input-group-addon {
    font-size: 12px;
}
.search-menu.budgetViewSearch .radio-button label.btn {
    width: 80px;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 8px;
    margin: 0 1px 1px 0;
    background-color: #EFF5F0;
    border: none;
}
.search-menu.budgetViewSearch .radio-button label.btn.active {
    background-color: #089870 !important;
}
.search-menu.budgetViewSearch .radio-button label.btn:hover {
    background-color: #089870 !important;
    color: #fff;
}
.search-menu.budgetViewSearch .radio-button label.btn.active:hover {
    background-color: #089870 !important;
}

/* 予算取込画面 */
#budgetImportSelectForm select {
     display: inline-block;
     width: 120px;
 }

#budgetImportSelectForm select.pfImport {
    width: 255px;
}

/* 期首予算・修正予算作成者設定 */
@media screen and (max-width: 767px) {
    .budgetAssignFrom #date-form .year {
        width: 100% !important;
    }
}
/* green navbar */
.green .navbar {
    background-color: #089870;
}
.green .navbar .nav a {
    color: rgba(255, 255, 255, 0.8);
}
.green .navbar .nav > li > a:hover,
.green .navbar .nav > li > a:active,
.green .navbar .nav > li > a:focus,
.green .navbar .nav .open > a,
.green .navbar .nav .open > a:hover,
.green .navbar .nav .open > a:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #f6f6f6;
}
.green .navbar .navbar-right > .nav {
    margin-right: 10px;
}
.green .navbar .sidebar-toggle .icon-bar {
    background: rgba(255, 255, 255, 0.8);
}
.green .navbar .sidebar-toggle:hover .icon-bar {
    background: #f6f6f6 !important;
}
/* green logo */
.green .logo {
    background-color: #089870;
    color: #f9f9f9;
}
.green .logo > a {
    color: #f9f9f9;
}
.green .logo:hover {
    background: #089870;
    opacity: 0.8;
}
/* green content header */
.green .right-side > .content-header {
    background: #fbfbfb;
    box-shadow: 1px 1px 2px #089870;
}
/* green user panel */
.green .user-panel > .image > img {
    border: 1px solid #dfdfdf;
}
.green .user-panel > .info,
.green .user-panel > .info > a {
    color: #555555;
}
/* green sidebar */
.green .sidebar {
    border-bottom: 1px solid #fff;
}
.green .sidebar > .sidebar-menu > li {
    /*border-top: 1px solid #fff;*/
    border-bottom: 1px solid #dbdbdb;
}
.green .sidebar > .sidebar-menu > li:first-of-type {
    border-top: 1px solid #dbdbdb;
}
/*.green .sidebar > .sidebar-menu > li:first-of-type > a {*/
    /*border-top: 1px solid #fff;*/
/*}*/
.green .sidebar > .sidebar-menu > li > a {
    margin-right: 1px;
    padding-top: 13px;
}
.green .sidebar > .sidebar-menu > li > a:hover,
.green .sidebar > .sidebar-menu > li.active > a {
    color: #089870;
    background: #EFF5F0;
    text-decoration: none;
}
.green .sidebar > .sidebar-menu > li > .treeview-menu {
    margin: 0 1px;
    background: #fff;
}
.green .left-side {
    background: #f4f4f4;
    -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
}
.green .sidebar a {
    color: #089870;
    text-decoration: none;
}
.green .sidebar a:hover {
    background-color: #EFF5F0;
    text-decoration: none;
}
.green .treeview-menu > li > a {
    color: #089870;
    text-decoration: none;
}
.green .treeview-menu > li.active > a,
.green .treeview-menu > li > a:hover {
    color: #089870;
    text-decoration: none;
}
.green .sidebar-form {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #dbdbdb;
    margin: 10px 10px;
}
.green .sidebar-form input[type="text"],
.green .sidebar-form .btn {
    box-shadow: none;
    background-color: #fafafa;
    border: 1px solid #fafafa;
    height: 35px;
}
.green .sidebar-form input[type="text"] {
    color: #666;
    -webkit-border-top-left-radius: 2px !important;
    -webkit-border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
    -webkit-border-bottom-left-radius: 2px !important;
    -moz-border-radius-topleft: 2px !important;
    -moz-border-radius-topright: 0 !important;
    -moz-border-radius-bottomright: 0 !important;
    -moz-border-radius-bottomleft: 2px !important;
    border-top-left-radius: 2px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 2px !important;
}
.green .sidebar-form input[type="text"]:focus,
.green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
    background-color: #fff;
    color: #666;
}
.green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
    border-left-color: #fff;
}
.green .sidebar-form .btn {
    color: #999;
    -webkit-border-top-left-radius: 0 !important;
    -webkit-border-top-right-radius: 2px !important;
    -webkit-border-bottom-right-radius: 2px !important;
    -webkit-border-bottom-left-radius: 0 !important;
    -moz-border-radius-topleft: 0 !important;
    -moz-border-radius-topright: 2px !important;
    -moz-border-radius-bottomright: 2px !important;
    -moz-border-radius-bottomleft: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    border-bottom-left-radius: 0 !important;
}

/* ドロップダウンのネスト */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*table-responsiveのボーダーを削除*/
@media screen and (max-width: 767px) {
    .table-responsive {
        border: none !important;
    }
}

/*右下に出るショートカットメニュー*/
.btn-shortcut {
    position: fixed;
    bottom: 5px;
    right:5px;
    z-index:1040;
    width:50px;
    height:50px;
    border-radius:50%;
    border: 1px solid #089870;
    box-shadow: 0 0 2px #808080, 0 0 2px #808080, 0 0 1px #C5C5C5;
    background-color: #EFF5F0;
    padding: 8px 15px;
}
@media screen and (max-width: 767px) {
    .btn-shortcut {
        bottom: 28px;
    }
}
.btn-shortcut:hover {
    color:#089870;
    opacity: 0.7;
}
#myModal .modal-body .small-box{
    text-align: center;
}
#myModal a .bg:hover, #myModal a .bg:active,#myModal a .small-box:hover p {
    color:#066D50;
    text-decoration: none;
}
#myModal a p{
    text-decoration: underline;
}
#myModal .small-box > .inner {
    padding:0;
}

/* モーダル読み込み */
.modal .modal-content-loading {
    padding: 15px;
    text-align: center;
}

/*データテーブルのソートアイコンの色を指定*/
table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting:after{
    color:#089870;
    opacity: 1 !important;
    text-decoration: underline;
}
table.dataTable thead .sorting_asc:hover:after,table.dataTable thead .sorting_desc:hover:after,table.dataTable thead .sorting:hover:after{
    color: #066D50;
    text-decoration: none;
}

/*firefoxのためのh1のドロップダウンメニュー用スタイル*/
@-moz-document url-prefix() {
    .dropdown-menu > li > a{
        white-space: normal;
    }
}
.table.divisionTable tr:first-child th {
    border-top: none;
}

/* 着地見込み */
.expenseComment .non_active {
    display: none;
}

/* 日報 行列固定 */
.fixReportLeft {
    width: 225px;
    height: 690px;
    float: left;
}
.fixReportLeftTitle {
    height: 652px;
    overflow: hidden;
}
.fixReportLeftTitle.headerRow2 {
    height: 623px;
}
.fixReportLeftTitle.headerRow3 {
    height: 592px;
}
.fixReportLeftTitle.headerRow4 {
    height: 560px;
}
#report-view-box .fixReportRightTitle table tr:first-child th {
    border-top: none;
}
#report-view-box .fixReportRightTitle table tr th:first-child {
    /*border-left: 1px solid #999;*/
}
.fixReportRight {
    width: 1755px;
    height: 700px;
    float: left;
    border-left: 1px solid #999999;
}
.fixReportRightTitle {
    width: 1805px;
    overflow: hidden;
}
.fixBudgetMonthRightTitle {
    width: 1804px;
    overflow: hidden;
}
.fixReportRightData {
    width: 1820px;
    height: 668px;
    overflow: scroll;
}
.fixReportRightData.headerRow2 {
    height: 639px;
}
.fixReportRightData.headerRow3 {
    height: 608px;
}
.fixReportRightData.headerRow4 {
    height: 577px;
}
.fixReportRightData table tr td, .fixReportRightData table tr .sum, .fixReportRightData table tr .total {
    width: 110px;
    min-width: 110px;
}

/* 勤怠確認 行列固定 */
.fixAttendanceLeft {
    width: 155px;
    height: 597px;
    float: left;
}
.fixAttendanceLeftTitle {
    /*height: 652px;*/
    height: 597px;
    overflow: hidden;
}
.fixAttendanceLeftTitle td.dummy, .fixAttendanceLeftTitle th.dummy,
.fixAttendanceRightData td.dummy, .fixAttendanceRightData th.dummy,
.fixAttendanceRightTitle td.dummy, .fixAttendanceRightTitle th.dummy {
    display: none !important;
}
.fixAttendanceRight {
    width: 1710px;
    height: 700px;
    float: left;
}
.fixAttendanceRightTitle {
    width: 1795px;
    overflow: hidden;
}
.fixAttendanceRightTitle table.dataTable, .fixAttendanceRightData table.dataTable, .fixAttendanceLeft table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.fixAttendanceLeft table.dataTable tr th {
    padding: 8px 5px;
}
.fixAttendanceLeft table.dataTable tr.sortingTitle th {
    text-align: left !important;
}
.fixAttendanceRightData {
    width: 1710px;
    height: 614px;
    overflow: scroll;
}
#workEntry .fixAttendanceRightData table tr td, #workEntry .fixAttendanceRightTitle table tr.sortingTitle th {
    width: 76px;
    min-width: 76px !important;
}
.fixAttendanceLeft table thead tr:last-child th, .fixAttendanceRightTitle table thead tr:last-child th {
    border-bottom: 1px solid #999999 !important;
}
.fixAttendanceLeftTitle table.dataTable tbody tr:first-child td, .fixAttendanceRightData #fixAttendanceRightData tbody tr:first-child td {
    border-top: none !important;
}
/*#report-view-box .fixAttendanceLeftTitle table.dataTable tbody tr td.employeeNo, #report-view-box .fixAttendanceLeft table thead tr th:last-child {*/
    /*border-right: 1px solid #E3EAE8 !important;*/
/*}*/
.fixAttendanceRight {
    border-left: 1px solid #999999 !important;
}
.fixAttendanceLeftTitle table tbody tr.even, .fixAttendanceRightData table tbody tr.even {
    background: none !important;
}
/* 期首予算作成・修正予算作成 */
.fixBudgetEntryLeft {
    width: 170px;
    height: 670px;
    float: left;
}
.fixBudgetEntryLeftTitle {
    height: 620px;
    overflow: hidden;
}
.fixBudgetEntryLeftTitle.headerRow2 {
    height: 623px;
}
.fixBudgetEntryLeftTitle.headerRow3 {
    height: 592px;
}
.fixBudgetEntryLeftTitle.headerRow4 {
    height: 560px;
}
#report-view-box .fixBudgetEntryRightTitle table tr:first-child th {
    border-top: none;
}
#report-view-box .fixBudgetEntryRightTitle table tr th:first-child {
    /*border-left: 1px solid #999;*/
}
.fixBudgetEntryRight {
    width: 1695px;
    height: 670px;
    float: left;
    border-left: 1px solid #999999;
}
.fixBudgetEntryRightTitle {
    width: 1695px;
    overflow: hidden;
}
.fixBudgetEntryRightData {
    width: 1695px;
    height: 620px;
    overflow: scroll;
}
.fixBudgetEntryRightData.headerRow2 {
    height: 639px;
}
.fixBudgetEntryRightData.headerRow3 {
    height: 608px;
}
.fixBudgetEntryRightData.headerRow4 {
    height: 577px;
}
.fixBudgetEntryRightData table tr td, .fixBudgetEntryRightData table tr .sum, .fixBudgetEntryRightData table tr .total {
    width: 65px;
    min-width: 65px;
}
.fixBudgetEntryRightData table.fixRightData tr td,.fixBudgetEntryRightData table.fixRightData tr th{
    width: 65px;
    min-width: 65px;
    max-width: 65px;
}
/* 20190124 murayama ローディングバー */
.pace.pace-active{
    display:none !important;
}

/* 20190124 フッター下部にスペースを開ける */
.wrapper{
    padding-bottom: 60px;
}

div.item-lock, tr.item-lock > *, input.item-lock {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: .65 !important;
}
