/* Container
-------------------------------------------------- */
.container {
    max-width: 100%;
}

/* BreadCrumb
-------------------------------------------------- */
.breadcrumb {
    background: transparent;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: black;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    padding-bottom: 120px;
}

.footer {
    background: #fff;
}

.footer .container .text-light {
    margin: 20px 0;
}

/* custom button color warning*/
.btn-warning {
    background: #ff6600;
    border: #ff6600;
    color: white;
}

.btn-warning:hover, .btn-warning:focus,
.btn-warning:active, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning:active.focus,
.btn-warning.active, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning,
.open > .dropdown-toggle.btn-warning:hover,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning.focus,
.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
    background: #ff8200 !important;
    border: #ff8200 !important;
    color: white !important;
}

.btn-warning.outline {
    border: 3px solid #ff6600;
    color: #ff6600;
}

/* custom button color primary*/
.btn-primary {
    background: #3399cc;
    border: #3399cc;
    color: white;
}

.btn-primary:disabled,
.btn-primary.disabled,
fieldset:disabled .btn-primary {
    background: #3399cc !important;
    border-color: #3399cc !important;
    color: white !important;
    opacity: 0.8 !important;
}

.btn-primary:hover, .btn-primary:focus,
.btn-primary:active, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:active.focus,
.btn-primary.active, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-primary:hover,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary.focus,
.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
    background: #3dabd8 !important;
    border: #3dabd8 !important;
    color: white !important;
}

/* custom button color btn-outline-secondary (hover only)*/
.btn-outline-secondary:hover, .btn-outline-secondary:focus,
.btn-outline-secondary:active, .btn-outline-secondary:active:focus, .btn-outline-secondary:active:hover, .btn-outline-secondary:active.focus,
.btn-outline-secondary.active, .btn-outline-secondary.active:focus, .btn-outline-secondary.active:hover, .btn-outline-secondary.active.focus,
.open > .dropdown-toggle.btn-outline-secondary,
.open > .dropdown-toggle.btn-outline-secondary:hover,
.open > .dropdown-toggle.btn-outline-secondary:focus,
.open > .dropdown-toggle.btn-outline-secondary.focus,
.btn-outline-secondary.disabled:hover, .btn-outline-secondary[disabled]:hover, fieldset[disabled] .btn-outline-secondary:hover,
.btn-outline-secondary.disabled:focus, .btn-outline-secondary[disabled]:focus, fieldset[disabled] .btn-outline-secondary:focus,
.btn-outline-secondary.disabled.focus, .btn-outline-secondary[disabled].focus, fieldset[disabled] .btn-outline-secondary.focus {
    background: #AAAAAA !important;
    color: white !important;
}


th .orange-header {
    background-color: #FF6600;
}

.light-green-header {
    background-color: #ccffcc !important;
}

.btn-outline-danger:hover {
    color: #fff !important;
}

/**
　bootstrapと衝突してダイアログのクローズボタンが上手く表示できない問題に対応
 */
button.ui-dialog-titlebar-close::before {
    content: "×";
    position: absolute;
    top: 1px;
    left: 3px;
    line-height: 1rem;
}