html {
    height: 100%;
}

body {
    font-size: 1rem;
    height: 100%;
}

div.login {
    background: linear-gradient(to bottom, #343a40, #555555) fixed, url(../../img/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;

    min-height: 400px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/*
  * Sidebar
  */

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 50px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 50px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
    }
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
}

.sidebar .nav-link.active {
    color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/*
  * Content
  */

main.normal {
    padding-top: 60px; /* Space for fixed navbar */
}

.position-right-top {
    right: 10px;
    top: 10px;
}


/*
 * Form
 */
.form-control::placeholder {
    color:#cccccc;
}

label {
    text-align: right;
    font-weight: bold;
}

.invalid-feedback ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

/*
 * Decolation
 */
.no-background {
    background: none;
}

.no-border{
    border: none;
}

.icon-blink{
    animation: blinkAnime 1s infinite alternate;
}

@keyframes blinkAnime{
    0% { color: #ffff00 }
    100% { color: #0000ff }
}

.background-color-danger {
    background-color: #ef857d;
}

.background-color-success {
    background-color: #a3d6cc;
}
.form-check-inline-label {
    display: -ms-inline-flexbox;
    /* display: inline-flex; */
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem;
    font-weight: normal;
}
/*患者入力error時CSS*/
.inputnm_error {
    color: red;
    font-weight: bold;
}

.inputnm_error_boder {
    border-color: red;
}
