@charset "UTF-8";

@font-face {
	font-family: play;
	font-style: normal;
	src:local(※), url('../fonts/Play-Regular.ttf');
}

@font-face {
	font-family: Segoe UI;
	font-style: normal;
	src:local(※), url('../fonts/SEGOEUI.TTF');
}

@font-face {
	font-family: Noto Sans;
	font-style: normal;
	src:local(※), url('../fonts/NotoSansKR-Regular.otf');
}

@font-face {
	font-family: Noto Sans Kr;
	font-style: normal;
	src:local(※), url('../fonts/NotoSans-Regular.ttf');
}

@font-face {
	font-family: sans-serif;
	font-style: normal;
	src:local(※), url('../fonts/MICROSS.TTF');
}

.section-admin {
	width: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.section_main_menu {
    width: 40%;
    height: 100%;
    padding: 5px 30px 30px 30px;
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
	background-color: hsla(0, 0%, 100%, 1);
}
.section_sub_menu {
    width: 60%;
    height: 100%;
    padding: 5px 30px 30px 30px;
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
	background-color: hsla(0, 0%, 100%, 1);
}
.sortable-list, .sortable-list-sub {
  height: calc(100% - 56px);
  width: 100%;
  overflow-y: scroll !important;
}
.sortable-list .myItem, .sortable-list-sub .myItem{
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 11px;
	width: 80%;
}
.sortable-list .item, .sortable-list-sub .item{
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* cursor: move; */
  cursor: pointer;
  background: #fff;
  align-items: center;
  border-radius: 5px;
  padding: 10px 13px;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.06); */
  border: 1px solid #ccc;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sortable-list .item:hover, .sortable-list-sub .item:hover {
  /*opacity: 0.6;*/
  font-weight: 600;
  /*border: 1px solid dodgerblue;*/
  /*background-color: red;*/
}
.item .details img {
  height: 43px;
  width: 43px;
  pointer-events: none;
  margin-right: 12px;
  object-fit: cover;
  border-radius: 50%;
}
.item .details span {
  font-size: 1rem;
}
.item i.fa-grip-vertical {
  font-size: 0.8rem;
}
.item.dragging {
  opacity: 0.8;
  border: 1px solid dodgerblue;
}
.item.dragging :where(.details, i) {
  /*opacity: 0.6;*/
  color:dodgerblue;
  font-weight: 600;
}
.item_config{
	flex-direction: row;
	display: none;
}

.item_config.open{
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
}

.item_config_btn {
    padding: 11px;
    /* background-color: rgba(40, 104, 176, 1); */
    /* font-weight: 600; */
    font-size: 0.8rem;
    color: white;
    /* vertical-align: middle; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1.5px;
    width: 75px;
    margin-left: 7px;
}

.item_config_btn.edit {
	background-color: steelblue;
}
.item_config_btn.del{
	background-color: lightcoral;
}
.item_config_btn:hover {
	opacity: 0.8;
}

.item_config_btn > i {
	padding-right: 5px;
}

.item.open{
	background-color: lightblue;
	box-sizing: border-box;
}

.section_admin_all{
	width: 100%;
	height: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	padding: 30px;
	/*box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);*/
	/*border: 0 1px 1px 1px solid black;*/
	align-items: center;
    justify-content: center;
    position: relative;
}

.section_admin_top {
    width: 100%;
    /* box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2); */
    padding: 0 40px;
    height: 60px;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 1px 7px 0 hsla(155, 30%, 30%, 0.2);
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 3px solid skyblue;
    border-radius: 5px 5px 0 0;
}
    
.section_admin_bot {
    width: 100%;
    height: calc(100% - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    border-radius: 0 0 5px 5px;
}

.main_menu_button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    height: 56px;
}

.main_menu_button_title {
    padding: 5px 5px 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    /* border: 1px solid black; */
}

.sub_menu_button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    height: 56px;
}
.sub_menu_button_title {
    padding: 5px 5px 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    /* border: 1px solid black; */
}

.menu-config {
	padding-left: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

.menu-config:hover {
	opacity: 0.6;
}

span.main_menu_nm {
    padding-left: 20px;
    color: darkcyan;
    /* font-size: 1.1rem; */
}


.menuInfo {
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.menuInfo > i {
	padding-left: 30px;
}

.menuFeature > i.fa-newspaper, .menuFeature > i.fa-calendar-days ,.menuFeature > i.fa-clipboard-question {
    padding-right: 8px;
}
.menuFeature {
    opacity: 0.6;
    width: 100px;
}

.item_idx, .item_feature{
	display: none;
}

#mainMenu_pop{
    position: absolute;
	/*width: 100%;
	height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;*/
    z-index: 12;
    background-color: rgb(255,255,255);
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5);
    padding: 0 15px;
    display: none;
}
#mainMenu_pop.on{
    display: block;
}

#subMenu_pop{
    position: absolute;
	/*width: 100%;
	height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;*/
    z-index: 12;
    background-color: rgb(255,255,255);
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5);
    padding: 0 15px;
    display: none;
}

#subMenu_pop.on{
    display: block;
}

.popup_subject{
	padding: 10px 0 10px 0;
	font-size: 1.1rem;
	font-weight: 800;
	border-bottom: 1px solid rgba(228, 228, 228, 1);
}
.popup_subject i{
	padding-right: 10px;
}
.popup_content{
	padding: 0 15px;
	color:rgba(44,117,135,1); 
}
.content_div{
	/*border: 1px solid black;*/
	padding-bottom: 15px;
    padding-top: 15px;
	border-bottom: 1px solid rgba(228, 228, 228, 1);
}


.popup_row{
	padding: 3px 0 3px 16px;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	white-space: nowrap;
	font-size: 1rem;
}
.popup_row > .popup_title{
	width: 110px;
	font-weight: 600;
	line-height: 30px;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: row;
}
.popup_title > .nec{
	color: rgba(221,80,68,1);
	padding-left: 2px;
}
.popup_row > .popup_value{
	width: calc(100% - 110px);
	line-height: 30px;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.popup_row > .popup_value > .popup_value_radio{
	width: 162px;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.popup_row > .popup_value > .popup_value_radio > input{
	margin-right: 10px;
}
.popup_row > .popup_value > .popup_input{
	width: 162px;
	padding: 4px;
	border: 2px solid rgba(228, 228, 228, 1);
	border-radius: 5px;
}

.popup_row > .popup_value > select {
	height: 30px;
    background-color: white;
    color: black;
    background: url(../images/bottomArrow_black.png) 99% center no-repeat;
    background-size: 32px;
    padding: 3px 33px 3px 10px;
}

.popup_button{
	padding: 10px;
	border-top: 1px solid rgba(228, 228, 228, 1);
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup_button button.btn_save{
	border: none;
    padding: 8px 5px;
    background-color: rgba(3, 151, 214, 1);
    color: white;
    font-weight: 600;
    width: 80px;
    font-size: 9pt;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    position: relative;
}
.popup_button button.btn_save:hover{
	opacity: 0.7;
}

.popup_button button.btn_close{
	border: 2px solid rgba(228, 228, 228, 1);
    padding: 8px 5px;
    background-color: white;
    color: black;
    font-weight: 600;
    width: 80px;
    font-size: 9pt;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    position: relative;
}
.popup_button button.btn_close:hover{
	opacity: 0.7;
}



.section_main_site{
	width: 100%;
    height: 100%;
    padding: 20px;
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
	background-color: hsla(0, 0%, 100%, 1);
	overflow-x: hidden;
    overflow-y: scroll;
}

.section_main_site.table_container{
	overflow-y: hidden;
}

.main_site_button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 10px 0 10px 10px;
}


.section_admin_login {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 32px;
}
.login-box {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 340px;
}
.admin_form {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    border: 1px solid darkgray;
    flex-direction: column;
    border-radius: 5px;
    background-color: rgb(246, 248, 250);
}
.afterAuth {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.login-title-logo {
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
img.login_logo_mark {
    height: 100%;
}
.login-title-vaule {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 15px 0;
    font-size: 1.4rem;
    color: gray;
    flex-direction: row;
    flex-flow: wrap;
}
.user-box {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 0.9rem;
    box-sizing: border-box;
    position: relative;
    
}
.user-box > label {
    padding-bottom: 8px;
}
.user-box > input[type=text], .user-box > input[type=password], .user-box > input[type=email]{
	border-radius: 5px;
	padding: 5px 12px;
    margin: 4px 0 30px 0;
    border: 1px solid darkgray;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
} 

.user-box > input[type=text]:focus, .user-box > input[type=password]:focus , .user-box > input[type=email]:focus {
	border-color: rgb(9 105 218);
    outline: none;
    box-sizing: border-box;
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
}

input.login_input.myBtn {
    padding: 10px;
    margin-top: 5px;
}

input.login_input.adminBtn {
    padding: 10px;
    margin-top: 5px;
}

.site_nm_pre {
    padding-right: 10px;
}

.divBtn{
    padding: 16px;
    border: 1px solid rgb(208 215 222);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 8px;
}
.divBtn .dAsk{
	padding: 0 5px;
}

.underAtag{
	color: rgb(9 105 218);
}
.underAtag:hover{
	text-decoration: underline;
}

@media(max-width: 520px) {
	.section_admin_all{padding: 10px;}
}