@charset "utf-8";

:root {
    --color-red: #dd3208;
    --color-red-hover: #ff3301;
    --color-white: #fff;
    --input-color: #373737;
    --border-nomal: #ccc;
    --disabled-background: #eaeaea;
    --disabled-border: #c0c0c0;
    --disabled-color: #666;
    --bg-base: #fcfcfc;
    --bg-strong: #222;
    --bg-middle: #444;
    --bg-middle-hover: #555;
    --bg-soft: #eaeaea;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
menu,
nav,
section,
article,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
hr,
input,
button,
textarea,
object,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

legend {
    font-size: 12px;
}

html,
body {
    width: 100%;
}

html {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
input,
select,
textarea,
button {
    border: none;
}

ul,
ol,
li {
    list-style: none;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

img,
fieldset {
    border: 0;
}

address,
cite,
code,
em {
    font-style: normal;
    font-weight: normal;
}

label,
img,
input,
select,
textarea,
button {
    vertical-align: middle;
    resize: none;
}

button[type=submit] {
    cursor: pointer;
}

.hide,
caption {
    line-height: 0;
    font-size: 1px;
    overflow: hidden;
}

hr {
    display: none;
}

main,
header,
section,
nav,
footer,
aside,
article,
figure {
    display: block;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

select {
    height: 30px;
    font-size: 12px;
    padding: 0 10px;
    color: var(--input-color);
    border: 1px solid var(--border-nomal);
    background: #fff;
    box-sizing: border-box
}

select[disabled] {
    background: var(--disabled-background);
    border-color: var(--disabled-border);
    color: var(--disabled-color);
    cursor: not-allowed;
}

input[type=tel],
input[type=time],
input[type=text],
input[type=password],
input[type=search],
input[type=email],
input[type=file],
input[type=url],
input[type=number],
input[type=date] {
    width: 300px;
    height: 30px;
    font-size: 12px;
    color: var(--input-color);
    border: 1px solid var(--border-nomal);
    background: #fff;
    padding: 0 10px;
    transition: all 0.5s;
    vertical-align: middle;
    box-sizing: border-box
}

textarea {
    width: 100%;
    height: 150px;
    font-size: 12px;
    color: var(--input-color);
    padding: 10px;
    border: 1px solid var(--border-nomal);
    background: #fff;
    transition: all 0.5s;
    vertical-align: middle;
    box-sizing: border-box
}

input::-webkit-input-placeholder {
    color: #b5b5b5;
    font-size: 1em;
    line-height: 100%;
    box-sizing: border-box
}

select:focus,
textarea:focus,
input:focus {
    border: 1px solid #727272;
    outline: none;
}

input[type=number][readonly],
input[type=tel][readonly],
input[type=date][readonly],
input[type=text][readonly],
input[type=password][readonly],
input[type=email][readonly],
input[type=search][readonly],
input[type=number][disabled],
input[type=tel][disabled],
input[type=tel][disabled],
input[type=text][disabled],
input[type=password][disabled],
input[type=search][disabled],
input[type=email][disabled], 
input[type=date][disabled] {
    background: var(--disabled-background);
    border-color: var(--disabled-border);
    color: var(--disabled-color);
    font-size: 1em;
    cursor: not-allowed;
}

textarea[readonly],
textarea[disabled] {
    padding: 11px;
    font-size: 1em;
    font-weight: normal;
    line-height: 140%;
    height: 78px;
    background: var(--disabled-background);
    border-color: var(--disabled-border);
    color: var(--disabled-color);
    cursor: not-allowed;
}

input[type="checkbox"] {
    position: absolute;
    left: -5000%
}

input[type="checkbox"]+label {
    font-weight: normal;
    margin-right: 10px;
    margin-bottom: 0;
}

input[type="checkbox"]+label:last-child {
    margin-right: 0;
}

input[type="checkbox"]+label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px #a6a6a6 solid;
    margin: 0 3px 0 0;
    position: relative;
    top: 3px;
    border-radius: 0;
    box-sizing: border-box;
}

input[type="checkbox"]+label.no-margin:before {
    margin: 0;
    top: 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: 10px;
    margin-bottom: 0;
}

input[type="radio"]+label:last-child {
    margin-right: 0;
}

input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px #a6a6a6 solid;
    margin: 0 3px;
    position: relative;
    top: 3px;
    border-radius: 14px;
    box-sizing: border-box;
}

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: var(--disabled-background);
    border-color: var(--disabled-border);
    color: var(--disabled-color);
    font-size: 1em;
    cursor: not-allowed;
}

input[type=checkbox]:checked[disabled]+label:before {
    background: url("/images/checkbox-checked-disabled.jpg") no-repeat;
}

input.error {
    border-color: #ffabac;
}

span.error {
    color: var(--color-red-hover);
    font-size: 12px;
}

.clear {
    clear: both;
}

.clear:after {
    content: "";
    display: block;
    clear: both;
}

.hide {
    display: none !important
}

.btn {
    border-radius: 0;
}

.btn[disabled] {
    cursor: not-allowed;
}

.btn-edit {
    display: inline-block;
    width: 40px;
    font-size: 12px;
    text-align: center;
    border: 1px var(--border-nomal) solid;
    padding: 3px;
    background-color: var(--color-white);
}

.mall-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.mall-top-nav-group li {
    margin-left: 20px;
}

.mall-top-nav-group li a {
    color: #eaeaea;
}

.mall-top-nav-group li a i {
    font-size: 18px;
}

.nav-sidebar .nav-item:not(.nav-item-header):first-child {
    padding-top: 0;
}

.mall-top-menu li {
    border-left: 1px var(--gray-dark) solid;
    font-weight: 900;
    min-width: 90px;
    text-align: center;
}

.mall-top-menu li:last-child {
    border-right: 1px var(--gray-dark) solid;
}

.mall-top-menu li:first-child {
    min-width: 48px;
    width: 48px;
}

.mall-top-menu li:first-child a {
    height: 48px;
    line-height: 48px;
}

.table-col,
.table-row {
    border-top: 1px solid var(--bg-strong);
}

.table-col {
    table-layout: fixed;
}

.table-col th {
    background-color: var(--bg-soft);
    text-align: left;
    padding: .5em 1em;
    border-right: 1px solid var();
    border-bottom: 1px solid var(--border-nomal);
    font-size: 13px;
}

.table-col td {
    padding: .5em;
    border-bottom: 1px solid var(--border-nomal);
    font-size: 12px;
    height: 43px;
}

.table-row th {
    background-color: var(--dark);
    color: var(--color-white);
    padding: .5em;
    border-right: 1px solid var(--border-nomal);
    font-size: 13px;
    text-align: center;
    height: 30px;
}

.table-row td {
    padding: .5em;
    border-right: 1px solid var(--border-nomal);
    border-bottom: 1px solid var(--border-nomal);
    font-size: 12px;
}

.table-row th:last-child,
.table-row td:last-child {
    border-right: 0;
}

.table-row tfoot td {
    padding-top: 1em;
    border-bottom: 0;
}

.page-item.active .page-link {
    background-color: var(--teal);
    border-color: var(--teal);
}

.page-warp {
    display: flex;
    justify-content: center;
}

.footer-menus li {
    float: left;
    margin-right: 10px;
}

.footer-menus li:last-child {
    margin-right: 0;
}

.login-warp {
    display: flex;
    height: calc(100% - 50px);
    justify-content: center;
    align-items: center;
}

.login-warp .card {
    min-height: 300px;
    width: 400px;
}

.login-warp .card ul li {
    margin-bottom: 15px;
}

.login-warp .card ul li:last-child {
    margin-bottom: 0;
}

label.error {
    color: var(--danger);
}

label.error::before {
    content: '\ed63';
    font-family: icomoon;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 5px;
}

.modal-dialog .modal-content .modal-header {
    padding: 0;
    margin: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px var(--dark) solid;
}

.modal-dialog .modal-content .modal-header .modal-title {
    font-size: 25px;
    font-weight: 900;
}

.modal-dialog .modal-content .modal-body {
    font-size: 14px;
}

.modal-dialog .modal-content .modal-footer {
    justify-content: center;
}

.post-no {
    display: block;
    width: 100px !important;
    float: left;
    margin-bottom: 5px;
}

.post-label {
    display: block;
    float: left;
    color: #FFF;
    background-color: var(--dark);
    font-size: 12px;
    margin-left: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    cursor: pointer;
}

.post-add {
    display: block;
    float: left;
    clear: left;
}

.post-ress {
    display: block;
    float: left;
    width: 250px !important;
    margin-left: 5px;
}

input[type=file] {
    display: none;
}

.btn-file:before {
    content: attr(data-content);
    display: inline-block;
    width: 220px;
    height: 30px;
    line-height: 30px;
    vertical-align: bottom;
    padding: 0 5px;
    border: 1px #c0c0c0 solid;
    background: #eaeaea;
    color: #666;
    overflow: hidden;
}

.btn-file:after {
    content: "파일검색";
    display: inline-block;
    padding: 0 14px;
    height: 30px;
    line-height: 30px;
    vertical-align: bottom;
    font-size: 12px;
    margin-left: 5px;
    background: var(--dark);
    color: #FFF;
    cursor: pointer;
}

select[multiple],
select[size] {
    height: 150px;
    padding: 0.5rem;
}

select[multiple] option,
select[size] option {
    padding: 0.3em 0.5rem;
    border-radius: 0;
}

.navbar-header-menu {display: inline-block; width: 100%; background: #263238; color: #FFF; }
.navbar-header-menu li {float: left; height: 45px; line-height: 45px; padding: 0 15px; border-right: 1px rgba(255,255,255,.1) solid; font-size: 1.1em}
.navbar-header-menu li i {margin-right: 15px}
.navbar-header-menu li.active {background: #26a69a}

.list-footer {display: flex; flex-wrap: nowrap; justify-content: space-between;}
.list-checkbox {height: 14px}
.list-checkbox::before{ margin: 0 !important; top: 0 !important }

@media only screen and (max-width: 768px){
	input {width: 100%}
}
.chart {min-height: 500px}

.navbar-md-md-top {
    padding-top: 3.3rem;
}
.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.table-over {width: 100%; overflow: auto;}
.table-over table {white-space: nowrap;}

.box-label input[type="radio"],
.box-label input[type="checkbox"] {display: none;}
.box-label input[type="radio"] + span,
.box-label input[type="checkbox"] + span {
	display: inline-block;
	padding: 15px 10px;
	border: 1px solid #dfdfdf;
	background-color: #ffffff;
	text-align: center;
	cursor: pointer;
}
.box-label input[type="radio"]:checked + span,
.box-label input[type="checkbox"]:checked + span {
	background-color: var(--dark);
	color: #ffffff;
}

.box-label input[type="radio"][disabled] + span,
.box-label input[type="checkbox"][disabled] + span {
	background-color: var(--disabled-background);
	color: var(--disabled-color);
}