@charset "UTF-8";

input[type="checkbox"] {
    position: absolute;
    left: -5000%
}

input[type="checkbox"]+label {
    font-weight: normal;
    margin-right: 1.5em;
    margin-bottom: 0;
}

input[type="checkbox"]+label:last-child {
    margin-right: 0;
}

input[type="checkbox"]+label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px #a6a6a6 solid;
    position: relative;
    top: 3px;
    margin-right: .5em;
    border-radius: 0;
    box-sizing: border-box;
    background-color: #FFF;
}

input[type="checkbox"]+label.no-margin:before {
    margin-right: 0;
}

input[type="checkbox"]+label.mg-0:before {
    margin: 0;
}

input[type="checkbox"]:checked+label:before {
    background: url("/images/checkbox-checked.jpg") no-repeat;
}

input[type="radio"] {
    position: absolute;
    left: -5000%
}

input[type="radio"]+label {
    font-weight: normal;
    margin-right: 1.5em;
    margin-bottom: 0;
}

input[type="radio"]+label:last-child {
    margin-right: 0;
}

input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px #a6a6a6 solid;
    position: relative;
    margin-right: .5em;
    top: 3px;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: #FFF;
}

input[type="radio"]+label.no-margin:before {
    margin-right: 0;
}

input[type="radio"]:checked+label:before {
    background: url("/images/radio-checked.jpg") no-repeat;
}

input[type=checkbox][disabled]+label:before,
input[type=radio][disabled]+label:before {
    background: #eaeaea;
    border-color: #726969;
    color: #666;
    font-size: 1em;
    cursor: not-allowed;
}

.table-row {
    width: 100%;
    border-top: 1px solid #222;
}
.table-row th {
    background-color: var(--dark);
    color: var(--white);
    padding: .5em;
    border-right: 1px solid #ccc;
    text-align: center;
    height: 30px;
}

.table-row td {
    padding: .5em;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table-row th:last-child,
.table-row td:last-child {
    border-right: 0;
}

.table-row tfoot td {
    padding-top: 1em;
    border-bottom: 0;
}

.table-col {
    width: 100%;
    border-top: 1px #324148 solid;
    font-size: 1em;
    table-layout: fixed;
}

.table-col th,
.table-col td {
    padding: 7px 10px;
    border-bottom: 1px #ccc solid;
}

.table-col th {
    vertical-align: middle;
    height: 45px;
}

.table-col th {
    background: #f5f5f5;
    width: 15%;
}

.table-col td {
    border-left: 1px #ccc solid
}
@media only screen and (max-width:768px) {
    .table-col th, .table-col td {
        width: 100%;
		display: block;
        height: auto;
        border-left: 0;
        border-right: 0;
	}
    .table-col td {
        padding: .5em .1em;
    }
}


.modal-dialog .modal-content .modal-header {
    padding: 0;
    margin: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px var(--gray-dark) solid;
}

.modal-dialog .modal-content .modal-header .modal-title {
    font-size: 2em;
    font-weight: 900;
}


.modal-dialog .modal-content .modal-footer {
    justify-content: center;
}

.uniform-uploader {width: 100%;}
.uniform-uploader .filename,
.uniform-uploader .action {
    border-radius: 0;
}

.btn, .form-control {
    border-radius: 0 !important;
}

.btn-edit,
.btn-edit:focus{
    font-size: .9em;
    padding: .3em .5em;
    background: #fff;
    color: #222;
    border: 1px #ccc solid
}

.btn-edit:hover{
    background: #fff;
    color: #1a1a1a;
    border: 1px #1a1a1a solid;
    width: auto;
}

.list-per-page {
    position: absolute;
    right: 21px;
    width: 130px;
    top: 21px;
}

.table-over {width: 100%; overflow: auto;}
.table-over table {white-space: nowrap;}

div.error-wrapper {
    position: relative;
    height: 0;
}
label.error {
    color: var(--red);
    font-weight: 700;
    bottom: 0;
    right: 10px;
    z-index: 99;
}
textarea.error,
textarea.error:focus,
input.error,
input.error:focus {
    border-color: var(--red) !important;
}

button.js-pass-view {border-left: 0;}


.hide {
    line-height: 0;
    font-size: 1px;
    overflow: hidden;
    display: none;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50; /* 배경색 */
    color: white; /* 글자색 */
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}

.search-date-dash {
    height: 36px;
    line-height: 36px;
    padding: 0 .5em;
}

.js-back {cursor: pointer;}