
/* FORM */

.form-check-inline .form-check-input,
.form-check-inline .form-check-label {
    margin-top: 0.4rem;
}

.has-error .col-form-label {
    color: red;
}

.form-group-header {
    color: #898989;
    font-weight: bold;
    padding: 10px 0;
}

.help-inline {
    font-size: 93%;
    color: #676767;
}

.input-additional-link a,
.input-additional-link a:visited,
.input-additional-link a:hover {
    font-size: 83%;
    margin-top: 4px;
}

.required-mark {
    display: inline-block;
    font-size: 10px;
    color: #ef5050;
    border: solid 1px #ef5050;
    padding: 1px 2px;
    margin: 1px 6px 1px 1px;
    border-radius: 3px;
}
.normal-mark {
    display: inline-block;
    font-size: 10px;
    color: #888;
    border: solid 1px #888;
    padding: 1px 2px;
    margin: 1px 6px 1px 1px;
    border-radius: 3px;
}

.input-format {
    font-size: 12px;
    margin-top: 3px;
    color: #606060;
}


/* PASSWORD CHECK */

#pwindicator {
    margin-top: 2px;
}
#pwindicator .label {
    display: block;
    padding: 5px;
    font-size: 83%;
    font-weight: normal;
}
.pw-very-weak .label {
    color: #333333;
    background-color: #fcb6b1;
}
.pw-weak .label {
    color: #333333;
    background-color: #fccab1;
}
.pw-mediocre .label {
    color: #333333;
    background-color: #fcfbb1;
}
.pw-strong .label {
    color: #333333;
    background-color: #dafcb1;
}
.pw-very-strong .label {
    color: #333333;
    background-color: #bcfcb1;
}

/* TABLE */

.table thead tr th {
    text-align: center;
    vertical-align: middle;
}
.table tr td {
    vertical-align: middle;
}
.table tr td .btn {
    font-size: 13px;
}
/*
@media screen and (min-width: 680px) {
    form .form-group.row label {
        text-align: right;
    }
}
*/

.table-responsive table th {
    white-space: nowrap !important;
}

/* Bootstrap3 Form like */

.has-error input,
.has-error select,
.has-error textarea {
    background-color: #faefef;
}


/* Font Awesome */

.fa {
    margin-right: 3px;
}

/* Layout */

.mobile-only,
.mobile-only-inline-block,
.mobile-only-inline {
    display: none;
}
.pc-only,
.pc-only-inline-block,
.pc-only-inline {
    display: none;
}
@media screen and (max-width: 680px) {
    /* MOBILE ONLY */
    .mobile-only {
        display: block;
    }
    .mobile-only-inline-block {
        display: inline-block;
    }
    .mobile-only-inline {
        display: inline;
    }
}
@media screen and (min-width: 681px) {
    /* PC ONLY */
    .pc-only {
        display: block;
    }
    .pc-only-inline-block {
        display: inline-block;
    }
    .pc-only-inline {
        display: inline;
    }
}

@media screen and (max-width: 680px) {
    .dropdown-menu.show {
        background-color: #f3f3f3;
        margin-bottom: 1em;
    }
}

.paging .btn {
    margin: 1em 0;
    font-size: 12px;
}
.sidebar {
    margin-bottom: 20px;
}
.container-section {
    margin-top: 20px;
    margin-bottom: 20px;
}
.container-footer {
    margin-top: 50px;
    background-color: #f3f3f3;
    padding-top: 15px;
    padding-bottom: 15px;
}
.container-footer button {
    background-color: #fff;
}
.header-title {
    padding: 20px 28px;
    margin-bottom: 25px;
    background-color: #d9edf7 !important;
    color: #31708f;
    font-size: 120%;
}

/* Breadcrumbs */

.breadcrumbs {
    background-color: rgba(0,0,0,.03);
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #e5e5e5 #ccc;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumbs li {
    float: left;
    font-size: 11px;
}
.breadcrumbs a {
    padding: .9em 1em .9em 2em;
    float: left;
    text-decoration: none;
    color: #444;
    position: relative;
    background-color: #dfdfdf;
}
.breadcrumbs li:first-child a {
    padding-left: 1em;
    border-radius: 5px 0 0 5px;
}
.breadcrumbs a:hover {
    background: #fff;
}
.breadcrumbs a::after,
.breadcrumbs a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1em solid;
    right: -1em;
}
.breadcrumbs a::after {
    z-index: 2;
    border-left-color: #dfdfdf;
}
.breadcrumbs a::before {
    border-left-color: #aaa;
    right: -1.1em;
    z-index: 1;
}
.breadcrumbs a:hover::after {
    border-left-color: #fff;
}
.breadcrumbs .current {
    padding: .9em 1em .9em 2em;
    float: left;
    text-decoration: none;
    color: #444;
    font-weight: bold;
    position: relative;
}
.breadcrumbs .current:hover {
    font-weight: bold;
    background: none;
}
.breadcrumbs .current::after,
.breadcrumbs .current::before {
    content: normal;
}

/* PRINT */

@media print {
    .noprint {
        display: none;
    }
    table tr.table-info > th,
    table tr.table-info > td {
      background-color: #bee5eb !important;
    }
    table tr.table-success > th,
    table tr.table-success > td {
      background-color: #c3e6cb !important;
    }
}

