/* style.css 1.0.0 | rami console ui style | default theme-set */

html, body {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: none;
}
body, input, select, textarea {
	font-family: 'notokr-sans', Dotum, '굴림', Gulim, Helvetica, sans-serif;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: -0.015em;
}
.latin {
	font-family: 'Poppins', Tahoma, Arial, Helvetica, sans-serif;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	text-decoration: none;
	color: #3699FF;
	/*border-bottom: dotted 1px;*/
}
a:hover {
	border-bottom-color: transparent !important;
	text-decoration: none;
	color: #111;
}

.led {
  position: relative;
  width: 10px; 
  height: 10px; 
  border-radius: 50%;
  margin: 0 auto;
}

.on {
  background-color: #0f0;
  top: 2px;
  box-shadow: 0 0 1.5px #00ff00, 0 0 3px #00ff00, 0 0 4.5px #00ff00, 0 0 6px #00ff00;
  animation: none;
}

.off {
  background-color: #f00;
  top: 2px;
  box-shadow: 0 0 1.5px #f00, 0 0 3px #f00, 0 0 4.5px #f00, 0 0 6px #f00;
  animation: neon-animation 1s infinite alternate;
}

@keyframes neon-animation {
            0% {
                box-shadow: 0 0 1.5px #f00, 0 0 3px #f00, 0 0 4.5px #f00, 0 0 6px #f00;
            }
            100% {
                box-shadow: 0 0 5px #f00, 0 0 10px #f00, 0 0 15px #f00, 0 0 20px #f00;
            }
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 40px;
  vertical-align:middle;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  top: 7px;
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
mark {
	background-color: transparent;
	color: inherit;
}
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

.rami-btn {
	-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	vertical-align: middle;
	color: #aaa;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	font-weight: 500;
	letter-spacing: 0.025em;
	cursor: pointer;
}
a.rami-btn {
	border-width: 1px !important;
}
a.rami-btn:hover {
	border: 1px solid #3699FF !important;
}

.rami-btn.rami-btn-primary {
	border: 1px solid #3699FF;
	background-color: #ebf5ff;
	color: #3699FF;
}
.rami-btn.rami-btn-success {
	border: 1px solid #1BC5BD;
	background-color: #e8f9f8;
	color: #1BC5BD;
}
.rami-btn.rami-btn-info {
	border: 1px solid #8950FC;
	background-color: #f3edff;
	color: #8950FC;
}
.rami-btn.rami-btn-warning {
	border: 1px solid #FFA800;
	background-color: #fff6e5;
	color: #FFA800;
}
.rami-btn.rami-btn-danger {
	border: 1px solid #F64E60;
	background-color: #feedef;
	color: #F64E60;
}
.rami-btn.rami-btn-clean {
	border: none !important;
	outline: none !important;
	background-color: transparent !important;
}
.rami-btn.rami-btn-icon-only {
	padding: 0 0.12em !important;
	font-size: 1.92em !important;
}

.rami-btn:hover {
	background-color: #fff;
	border: 1px solid #363839;
	color: #111;
}
.rami-btn.rami-btn-sm {
	border-radius: 4px;
	font-size: 0.82rem;
	padding: 0.5em 0.75em;
}
.rami-btn.rami-btn-lg {
	border-radius: 5px;
	font-size: 0.94rem;
	padding: 0.68em 1em;
	letter-spacing: 0.02em;
}
.rami-btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}
/** rami Layout & ui style sheet **/
body {
	background-color: #f4f6f8;
	height: 100vh;
}
.wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.wrapper.fixed-width {
	min-width: 1600px;
}
.header {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	height: 90px;
}
.header > .brand {
	flex: none;
	width: 170px;
	text-align: center;
}
.header > .gnb {
	flex: 0 1 auto;
	-ms-flex: 0 1 auto;
}
.header > .util {
	flex: none;
	margin-left: auto;
}
.util > ul > li {
	position: relative;
}
.util .combo-language {
	width: 120px;
}
.util .header-search {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: relative;
	flex: 1;
	-ms-flex: 1 0 0;
}
.header-search > input {
	height: 2.75em;
	width: 200px;
	padding: 0 0.5em;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
}
.header-search > input:focus {
	border: 1px solid #3699FF;
	outline: 1px solid transparent;
}
.header-search > button {
	position: absolute;
	height: 2.75em;
	right: 0;
	top: 0;
	border: none;
	background-color: transparent;
	color: #3699FF;
}
.util .header-btn {
	display: block;
	background-color: transparent;
	border: none;
	height: 2.75em;
	color: #96999a;
	width: 50px;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.util .header-btn:hover {
	color: #464646;
}
.util .header-btn.active {
	color: #3699FF !important;
}
.util .header-btn > .fa {
	font-size: 2em;
}
.header .header-fulldown {
	position: absolute;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1;
	-ms-flex: 1 0 0;
	flex-direction: column;
	background-color: #fff;
	margin-top: 2.5em;
	height: auto;
	max-height: 0;
	overflow: hidden;
	-moz-transition: max-height 0.2s ease-in-out;
	-webkit-transition: max-height 0.2s ease-in-out;
	-ms-transition: max-height 0.2s ease-in-out;
	transition: max-height 0.2s ease-in-out;
	z-index:29;
}
.header-fulldown.on {
	max-height: 180px;
}
.header-fulldown.fullmenu-right {
	right: 10px;
}
.header-fulldown > dd {
	white-space: nowrap;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.header-fulldown > dd:first-child {
	border-top: 1px solid #ddd;
}
.header-fulldown > dd:last-child {
	border-bottom: 1px solid #ddd;
}
.header-fulldown > dd > p {
	display: block;
	padding: 10px;
	color: #68696a;
}
.header-fulldown > dd > a {
	display: block;
	padding: 10px;
	color: #68696a;
}
.header-fulldown > dd > a:hover {
	color: #3699FF;
}
.header-fulldown > dd > .divider {
	display: block;
	width: calc(100% - 16px);
	height: 1px;
	background-color: #eee;
	margin: 0 auto;
}
.brand > ul,
.gnb > ul,
.util > ul {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1; /* flex: 1 1 0 */
	-ms-flex: 1 0 0;
	align-items: center;
}
.brand > ul > li,
.gnb > ul > li,
.util > ul > li {
	flex: 1; /* flex: 1 1 0 */
	-ms-flex: 1 0 0;
	padding: 0 1em;
}
.brand > a {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	padding: 0;
}
.brand > a > img {
	width: 75%;
	padding: 0;
	margin: 0 auto;
}
.gnb > ul {
	padding: 0 0.5em;
}
.gnb > ul > li > a {
	color: #9aabcc;
}
.gnb > ul > li > a:hover {
	color: #3699FF;
}
.gnb > ul > li.active > a {
	color: #3699FF !important;
	border-bottom: 2px solid #3699FF !important;
}

.content-body {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1; /* flex: 1 1 0 */
	-ms-flex: 1 0 0;
	min-height: 580px;
	overflow: auto;
}
.fixed-width > .content-body {
	/*max-width: 1600px;*/
}
.header > .brand,
.content-body > .side-menu {
	width: 200px;
}
.content-body > .side-menu {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	flex: none;
	background-color: #394449;
	overflow: auto;
}

.side-menu > ul {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	padding: 2em 0;
	width: 100%;
}
.side-menu > ul > li {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	height: 60px;
	padding: 0 1.5em;
}
.side-menu > ul > li.devider {
	padding: 0.25em 1.5em !important;
	height: 5px;
}
.side-menu  > ul > li > .icon {
	color: #e0e0e0;
}
.side-menu > ul > li.devider > p{
	display: block;
	border-top: 1px solid #465156;
	width: 100%;
	margin: 0;
}
.side-menu > ul > li > a {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #859c9d;
	font-size: 0.78em;
	letter-spacing: 0.02em;
}
.side-menu > ul > li > a:hover {
	color: #fafafa;
}
.side-menu > ul > li.active {
	background-image: url('../images/menu_active_mark.png');
	background-repeat: no-repeat;
	background-position: right center;
}
.side-menu > ul > li.active > a {
	color: #fff;
}

.side-menu > .copyright {
	display: block;
	margin-top: auto;
	text-align: center;
	padding: 1em 0 2em;
	color: #859c9d;
	font-size: 0.76em;
	letter-spacing: 0.025em;
}

.content-body > .contents {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1;
	-ms-flex: 1 0 0;
	flex-direction: column;
	/*overflow: auto;*/
	align-items: flex-start;
	padding: 1.5em 2.5em;
}
.contents > .content-title {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-items: center;
	align-items: center;
	border-bottom: 1px solid #dadadd;
	margin-bottom: 1em;
	height: 50px;
	width: 100%;
}
.content-title > dl {
	margin-left: auto;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
}
.content-title > dl > dd {
	color: #9aabcc;
	position: relative;
	margin-left: 1.45em;
}
.content-title > dl > dd:first-child:after {
	content: '';
	display: none;
}
.content-title > dl > dd:after {
	content: '';
	display: block;
	position: absolute;
	left: -0.9em;
	top: 7px;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: #9aabcc;
}

.widget-container {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	margin: 0 auto;
	width: 100%;
}
.widget-container.widget-column {
	flex-flow:  wrap;
}
.widget-container > .widget {
	box-sizing: border-box;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	min-height: 100px;
	width: 100%;
	margin: 10px 0;
	color: #34464a;
}
.widget.wd50 {
	width: calc(50% - 10px);
}
.widget > .widget-box {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1;
	-ms-flex: 1 0 0;
	align-content: flex-start;
	justify-content: flex-start;
	vertical-align: top;
	flex-direction: column;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: .5em;
	padding: 1.5em 2em;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	-moz-box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.widget.widget-mid > .widget-box {
	padding: 1.5em 2em;
}
.widget.widget-full > .widget-box {
	padding: 2.5em 2em;
}
.widget-box .widget-footer,
.widget-box .widget-header {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	/*flex: 1;*/
	align-items: center;
}
.widget-box .widget-header {
	height: 24px;
	margin-bottom: 1em;
}
.widget-box .widget-footer {
	height: 40px;
	margin-top: 1em;
}
.widget-header > .message {
	margin-left: 0.5em;
	font-size: 0.92em;
	color: #3699FF;
}
.message.message-danger {
	color: #F64E60;
}
.widget-footer > .widget-function,
.widget-header > .widget-function {
	margin-left: auto;
}
.widget-footer > .widget-information,
.widget-header > .widget-information {
	margin-right: auto;
}

.widget-function > button {
	margin-left: 0.25em;
}

.widget-box > .widget-body {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	/*flex: 1;*/
	flex-direction: column;
}
.widget-row {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: relative;
	flex: 1;
	-ms-flex: 1 0 0;
	flex-direction: column;
}
.widget-row.widget-with-toolbar {
	padding-top: 15px;
}
.widget-row.widget-with-form {
	padding: 25px 0;
}
.widget-table-toolbar {
	position: absolute;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	z-index: 2;
	flex: 1;
	-ms-flex: 1 0 0;
	flex-direction: row;
	right: 0;
	top: 10px;
	align-items: center;
}
.widget-table-toolbar > .dropdown > button,
.widget-table-toolbar > button,
.widget-table-toolbar > input,
.widget-table-toolbar > label {
	box-sizing: border-box;
	margin-left: 10px;
	height: 2.25em;
}
.widget-table-toolbar label {
	box-sizing: border-box;
	padding: 0;
	display: flex;
	flex: 1;
  flex-direction: row;
  flex-wrap: nowrap;
	align-items: center;
}
.widget-table-toolbar label > select {
	height: 2.5em !important;
	margin: 0 !important;
}
.widget-table-toolbar label > button {
	box-sizing: border-box;
	margin-left: 5px;
	height: 2.25em;
	white-space: nowrap;
}

.widget-row .dropdown-menu {
  padding: 0.75em 1em;
}
.dropdown-menu > .rami-widget-drop {
  position: relative;
}
.rami-widget-drop > .navi-header {
  color: #c9c9c9;
  font-size: 0.86em;
  border-bottom: 1px solid #eee;
  padding: 0.25em 0.12em;
  margin-bottom: 0.5em;
}
.rami-widget-drop > .navi-item {
  display: block;
  position: relative;
}
.rami-widget-drop > .navi-item > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 0.12em;
  border: 1px solid transparent;
  color: #64696a;
}
.rami-widget-drop > .navi-item > a > .navi-icon {
    margin-right: 0.5em;
}
.rami-widget-drop > .navi-item > a:hover {
    color: #3699FF;
}
.widget-row .widget-table-title,
.widget-row .widget-table-basic {
    position: relative;
	width: 99%;
}
.widget-row .widget-table-title {
    font-size: 1.08rem;
    margin: 1em auto 0.42em;
    text-indent: 0.5em;
}
.widget-row .widget-table-title:before {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    left: 0;
    top: 4px;
    height: 12px;
    background-color: #8950FC;
}
.widget-row .widget-table-basic {
    margin: 0.25em auto 1.5em;
}

.widget-table-basic th,
.widget-table-basic td {
	border: 1px solid #ddd;
	background-color: #fff;
	padding: 0.75em 0.75em;
}
.widget-table-basic td.td-head {
	background-color: #edefef;
	font-weight: 600;
	text-align: center;
	vertical-align: top;
}
.status-count {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: 1;
	-ms-flex: 1 0 0;
	justify-content: space-around;
	align-content: space-around;
	align-items: center;
	padding: 1.25em 1em;
	margin: 0.12em 0;
}
.status-count > li {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-items: center;
	text-align: center;
}
.status-count > li > label {
	font-size: 0.92rem;
	font-weight: 400;
	color: #68797b;
	vertical-align: middle;
}
.status-count > li > .bdg-no {
	display: block;
	border: 1px solid transparent;
	background-color: #e9eef3;
	font-size: 1.12rem;
	margin: 0 0.5em;
	padding: 0.24em 0.75em;
	border-radius: 5px;
}
.bdg-no > small {
	position: relative;
	font-size: 0.72em;
	color: #868686;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
.txt-perc:before {
	content: '/';
	font-size: 0.92em;
	vertical-align: middle;
	margin: 0 0.2em;
}

.widget-divider {
	display: block;
	position: relative;
	height: 1px;
	width: 100%;
	margin: 5px auto;
	background-color: #eee;
}
.widget-divider.progress-divider {
	background-color: #dedddf;
	margin: 10px auto;
}
.progress-divider > .progress-divider-bar {
	position: absolute;
	width: 1px;
	height: 3px;
	left: 0;
	top: -1px;
	background-color: #3699FF;
	border-radius: 1px;
}

.cell-50 {
	display: inline-block;
	box-sizing: border-box;
	width: 52%;
	text-align: left;
	padding: 0 0 0 0.75em;
	font-size: 0.82em;
	font-weight: 200;
}
.rami-form {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	width: 100%;
	flex: 1;
	-ms-flex: 1 0 0;
	flex-direction: column;
	height: 2.75em;
}
.rami-form.rami-form-inline {
	flex-direction: row;
  flex-wrap: nowrap;
	align-content: space-between;
	justify-content: space-between;
  align-items: center;
}
.rami-form .rami-form-group {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	align-content: start;
	justify-content: start;
}
.rami-form.rami-form-inline .rami-form-group {
	flex-direction: row;
	align-content: space-between;
	justify-content: space-between;
	align-items: center;
}
.rami-form-group input[type="text"],
.rami-form-group input[type="password"],
.rami-form-group input[type="email"],
.rami-form-group input[type="date"],
.rami-form-group input[type="datetime-local"],
.rami-form-group select,
.rami-form-group textarea {
	background-color: #fff;
	height: 2.75em;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.rami-form-group.inline-group {
	flex-direction: row;
}
.rami-form-group.rami-form-disabled {
	opacity: .5 !important;
}
.rami-form-group.rami-form-disabled input,
.rami-form-group.rami-form-disabled button,
.rami-form-group.rami-form-disabled a {
	pointer-events: none !important;
}
.rami-form-group label {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: none;
	-ms-flex: 1 0 0;
	font-weight: 500;
	align-items: center;
    margin-right: 10px;
}
/* label 클릭 시 자동포커스 방지  */
.rami-form-group .multi-div {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex: none;
	-ms-flex: 1 0 0;
	font-weight: 500;
	align-items: center;
	margin-right: 10px;
}
.flex-row-layout {
	flex-direction: column;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start !important;
	width: 75%;
	min-width: 480px;
}
.rami-form-group > .form-item > span,
.rami-form-group > .form-item > label > span,
.rami-form-group > label > span {
	white-space: nowrap;
	font-weight: 600;
	padding: 0 0.5em;
	letter-spacing: 0.05em;
}
.widget-with-form .rami-form-group {
	margin: 12px 0;
}

.widget-with-form .rami-form-group > .form-item {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 0;
	margin: 0;
}
.widget-with-form .rami-form-group > .form-label,
.widget-with-form .rami-form-group > label > .form-label {
	width: 18%;
	margin-right: 15px;
	font-weight: 600;
	padding: 0 15px;
}
/* label 클릭 시 자동포커스 방지  */
.widget-with-form .rami-form-group > .multi-div > .form-label {
	width: 18%;
	margin-right: 15px;
	font-weight: 600;
	padding: 0 15px;
}
.modal-content .widget-with-form .rami-form-group > .form-label,
.modal-content .widget-with-form .rami-form-group > label > .form-label {
}
.form-label > span {
	display: block;
	width: 100%;
	padding: 0 !important;
	word-break: break-word;
	white-space: normal !important;
}
.rami-form-group.inline-group .form-label {

}

.rami-form-group.inline-group .form-label > span {
	text-align: right;
}
.widget-with-form .rami-form-group .form-description,
.widget-with-form .rami-form-group > label .form-description {
	font-size: 0.92em;
	margin: 0 .5em;
	white-space: nowrap;
	font-weight: 500;
	color: #3699FF;
	padding: 0.5em 0;
}
.rami-form-group .rami-form-sm { width: 25%; min-width: 250px; margin-right: 0.5em; }
.rami-form-group .rami-form-md { width: 50%; min-width: 500px; margin-right: 0.5em; }
.rami-form-group .rami-form-xl { width: 50%; min-width: 900px; margin-right: 0.5em; }

.form-required {
	position: relative;
}
.form-required:after {
	content: ' *';
	position: absolute;
	right: 0.2em;
	top: 50%;
	margin-top: -0.5rem;
	font-size: 1rem;
	color: #F64E60;
}
.rami-form-group button {
	font-size: 0.92em;
	height: 2.75em;
	border: 1px solid transparent;
	border-radius: 5px;
	padding: 0 1em;
	letter-spacing: 0.05em;
	color: #86898a;
	background-color: rgba(144, 144, 144, 0.075);
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.rami-form-group button:hover {
	background-color: #e3e5e6;
	color: #58595a;
}
.rami-form-group button.rami-primary {
	background-color: rgba(80, 175, 255, 0.125);
	color: #3699FF;
}
.rami-form-group button.rami-primary:hover {
	background-color: rgba(80, 175, 255, 0.25);
	color: #3699FF;
}
.rami-form-group .form-control {
	width: auto;
}
.rami-form-group .tox-tinymce {
	/*min-width: 900px;*/
	border-radius: 5px;
	width: 90%;
	border: 1px solid #e6e6e6;
}
.rami-form-group .tox .tox-toolbar,
.rami-form-group .tox .tox-toolbar__overflow,
.rami-form-group .tox .tox-toolbar__primary {
	background: none;
	background-color: #fff;
	border-bottom: 1px solid #e6e6e6;
}
.rami-form-inline > .rami-form-group .tox-tinymce {
	clear: both;
	width: 100%;
}

.rami-form-bottom {
	display: flex;
	flex: 1;
	-ms-flex: 1 0 0;
	align-items: center;
	align-content: center;
	justify-items: center;
	justify-content: center;
}
.rami-form-bottom > button,
.rami-form-bottom > label > button{
	margin: 0.5em 1em;
}

button > .icon,
a > .icon {
	color: inherit;
	font-size: 1.42em;
	margin-right: 0.75em;
	width: 1.42em;
	text-align: center;
}

/* ui reset */
table.dataTable {
	font-size: 0.92em;
}
table.dataTable.no-footer {
	border-bottom: 1px solid transparent;
}
table.dataTable thead th, table.dataTable thead td {
	padding: 5px 12px;
	border-bottom: 1px solid #ddd;
	font-weight: 500;
	vertical-align: middle;
	line-height: 1.25em;
}
table.dataTable .rami-table-btn {
	background-color: rgba(144, 144, 144, 0.075);;
	padding: 0.5em 0.75em;
	border: 1px solid transparent;
	border-radius: 5px;
	color: #86898a;
}
table.dataTable .rami-table-btn:hover {
	color: #58595a;
	background-color: #e3e5e6;
}
table.dataTable.rami-datatable-widget {
	margin-bottom: 0.75em;
}
.dataTables_info {
	font-size: 0.82rem;
	text-indent: 0.25em;
	color: #86898a;
}
.dataTables_pager {

}

.datatable.datatable-default > .datatable-table > .datatable-head .datatable-row > .datatable-cell.datatable-cell-check > span >
.checkbox, .datatable.datatable-default > .datatable-table > .datatable-body .datatable-row > .datatable-cell.datatable-cell-check > span > .checkbox,
.datatable.datatable-default > .datatable-table > .datatable-foot .datatable-row > .datatable-cell.datatable-cell-check > span > .checkbox {
	top: 2px;
	padding: 0;
	margin: 0 0 0 0;
}
.rami-form .radio,
.rami-form .checkbox,
.rami-datatable-widget .radio,
.rami-datatable-widget .checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	text-align: left;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	top: 1px;
	padding: 0;
	margin: 0 0 0 0;
}
.rami-form .radio > input,
.rami-form .checkbox > input,
.rami-datatable-widget .radio > input,
.rami-datatable-widget .checkbox > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	overflow: visible;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
.rami-form .radio > span,
.rami-datatable-widget .radio > span,
.rami-form .checkbox > span,
.rami-datatable-widget .checkbox > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background-color: #EBEDF3;
	border: 1px solid transparent;
	height: 18px;
	width: 18px;
	margin: 0 .25em;
}
.rami-form .checkbox > span,
.rami-datatable-widget .checkbox > span {
	border-radius: 0.42rem;
}
.rami-form .radio > span,
.rami-datatable-widget .radio > span {
	border-radius: 50%;
}
.rami-form .radio > span:after,
.rami-datatable-widget .radio > span:after {
	content: '';
	width: 6px;
	height: 6px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 50%;
	margin: 0 auto;
}
.checkbox > span:after,
.rami-datatable-widget .checkbox > span:after {
	content: '';
	width: 5px;
	height: 10px;
	border-color: transparent;
	border-style: solid;
	border-width: 0 2px 2px 0;
	margin-top: -2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.rami-form .radio > input:checked ~ span,
.rami-datatable-widget .radio > input:checked ~ span,
.checkbox > input:checked ~ span,
.rami-datatable-widget .checkbox > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #3699FF;
}
.rami-form .radio > input:checked ~ span:after,
.rami-datatable-widget .radio > input:checked ~ span:after,
.checkbox > input:checked ~ span:after,
.rami-datatable-widget .checkbox > input:checked ~ span:after {
	border-color: #ffffff;
}
.rami-form .radio > input:checked ~ span:after,
.rami-datatable-widget .radio > input:checked ~ span:after {
	background-color: #fff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	/*color: #333 !important;*/
	border: 1px solid transparent;
	background: none;
	background-color: #d9dadf;
	background-color: rgba(80, 175, 255, 0.25);
	color: #3699FF !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: .25em .92em .15em;
	margin-left: 2px;
	font-size: 0.92em;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	/*cursor: hand;*/
	color: #6a6869 !important;
	border: 1px solid transparent;
	border-radius: 2px;
	font-family: 'Poppins', Tahoma, Arial, Helvetica, sans-serif;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
	opacity: .32;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: none;
	background-color: #2b2b2b;
	background: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: white !important;
	border: 1px solid transparent;
	background: none;
	background-color: #a8aaad;
}

.rami-datatable-widget tbody td {
	border-bottom: 1px solid #e9eaef;
	color: #646869;
}
.rami-datatable-widget tbody tr:hover td {
	background-color: #fafafa;
}
.rami-datatable-widget.linked tbody tr:hover td {
	cursor: pointer;
}
.widget-with-toolbar .dataTables_wrapper .dataTables_filter {
	float: left;
	text-align: left;
	margin-bottom: 1em;
}
.widget-with-toolbar .dataTables_wrapper .dataTables_filter input {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 5px;
	background-color: transparent;
	margin-left: 5px;
}
.widget-with-toolbar .dataTables_wrapper .dataTables_filter label {
	font-weight: 500;
}
.widget-with-toolbar .dataTables_wrapper .dataTables_filter input:focus {
	outline: 0;
	border-color: #3699FF;
}

/***** dropzone init *****/
.rami-dropzone {
	padding: 0.5em 0;
	min-height: auto;
	border: none;
	width: 100%;
}
.rami-dropzone.dropzone-multi .dropzone-panel {
	height: 40px;
}
.rami-dropzone.dropzone-multi .dz-message {
	display: none;
}
.rami-dropzone.dropzone-multi .dropzone-panel .dropzone-upload,
.rami-dropzone.dropzone-multi .dropzone-panel .dropzone-remove-all {
	display: none;
}

.rami-dropzone.dropzone-multi .dropzone-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 0.75rem;
	border-radius: 0.42rem;
	padding: 0.5rem 1rem;
	background-color: #F3F6F9;
}
.dropzone.dropzone-multi .dropzone-item .dropzone-file {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-file .dropzone-filename {
	font-size: 0.78rem;
	font-weight: 400;
	color: #7E8299;
	text-overflow: ellipsis;
	margin-right: 0.5rem;
}
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-file .dropzone-error {
	margin-top: 0.25rem;
	font-size: 0.9rem;
	font-weight: 400;
	color: #F64E60;
	text-overflow: ellipsis;
}
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-progress {
	width: 15%;
}
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-progress .progress {
	height: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-toolbar {
	margin-left: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.rami-dropzone.dropzone-multi .dropzone-item .dropzone-toolbar .dropzone-start,
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-toolbar .dropzone-cancel,
.rami-dropzone.dropzone-multi .dropzone-item .dropzone-toolbar .dropzone-delete {
	height: 25px;
	width: 25px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}

.rami-dropzone.dropzone-multi .dropzone-item .dropzone-toolbar .dropzone-start {
	-webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}

/** modal **/
body.modal-open:before {
	content: '';
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 998;
	background-color: rgba(0, 0, 0, .25);
	left: 0;
	top: 0;
}


/** 신규 추가 **/
.list-container {
	display: flex;
	flex-direction: row; /* 리스트를 세로로 나열 */
	align-items: center; /* 가운데 정렬 */
	justify-content: left; /* 가운데 정렬 */
	flex-wrap: wrap;
}

.list-item {
	position: relative;
	width: 170px;
	padding: 10px;
	border: 1px solid #3699FF;
	background-color: #ebf5ff;
	color: #3699FF;
	margin: 5px;
	text-align: left;
	position: relative;
}

.group-check {
	position: absolute;
	top: 37%;
	margin-top: -6px;
}

.group-text {
	margin-left: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
}
