/* 버튼 */
.button_s {
  width: 80px;
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #e1e1e1;
} /* 삭제버튼 */
.button_m {
  width: 110px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #ccc;
}
.main_btn {
  background-color: #ffb400;
  color: #fff;
  border: none;
} /* 메인버튼 */
.main_line_btn {
  border: 1px solid #ffb400;
  color: #ffb400;
} /* 메인라인버튼 */
.excel_btn {
  background-color: #fff;
  color: #1f6f43;
  border: 1px solid #1f6f43;
} /* 엑셀버튼 */
.search_Btn {
  float: left;
} /* 검색조회*/
.search_Btn > button {
  width: 130px;
  height: 40px;
  line-height: 32px;
  color: #fff;
  background-color: #666;
  border: none;
  font-weight: 500;
}
.list_btn {
  min-width: 80px;
  height: 35px;
  line-height: 33px;
  font-weight: 400;
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #e1e1e1;
  text-align: center;
  border-radius: 3px;
} /*목록*/
.list_btn > a {
  display: block !important;
}

/* 삭제 버튼 바 */
.btn_bar {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.btn_bar div * {
  float: none;
  display: inline-block;
  vertical-align: middle;
}
.btn_bar div *:not(:last-child) {
  margin-right: 5px;
}
.btn_bar .btn_left {
  width: 50%;
  float: left;
}
.btn_bar .btn_right {
  width: 50%;
  float: right;
  text-align: right;
}

/* 헤더 */
.header {
  width: 100%;
  float: left;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
}
.header > div {
  width: 100%;
  float: left;
  height: 100%;
}
.header .logo_wrap {
  width: calc(100% - 290px);
  float: left;
  line-height: 80px;
  padding: 0 40px;
  border-right: 1px solid #e5e5e5;
}
.header .logo_wrap .logo_box {
  float: left;
  font-size: 18px;
  font-weight: 600;
}
.header .logo_wrap .logo_box span {
  margin-left: 10px;
}
.header .logo_wrap .status_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.header .logo_wrap .status_box .title {
  font-size: 15px;
  font-weight: 600;
}
.header .logo_wrap .status_box .status_bar {
  width: 400px;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  margin-left: 15px;
  font-size: 14px;
  color: #666;
  background-color: #ebebeb;
  border-radius: 5px;
}
.header .logo_wrap .status_box .status_bar > div {
  width: 50%;
  float: left;
}
.header .logo_wrap .status_box .status_bar .status_list > div {
  float: left;
}
.header .logo_wrap .status_box .status_bar .status_list .title {
  font-weight: 500;
}
.header .logo_wrap .status_box .status_bar .status_list .value {
  font-weight: 600;
  margin-left: 18px;
  color: #999;
}
.header .user_wrap {
  float: left;
}
.header .user_wrap .top_setting {
  width: 60px;
  float: left;
  line-height: 80px;
  font-size: 18px;
  text-align: center;
}
.header .user_wrap .top_userbox {
  width: 230px;
  float: left;
  height: 79px;
  background-color: #fff8e6;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.header .user_wrap .top_userbox .left_box {
  width: 130px;
  float: left;
  cursor: pointer;
}
.header .user_wrap .top_userbox .point_box {
  width: 60px;
  float: left;
  height: 17px;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background-color: #ffb400;
  border-radius: 100px;
}
.header .user_wrap .top_userbox .title {
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.header .user_wrap .top_userbox .right_box {
  float: left;
  font-size: 16px;
  margin-left: 20px;
  color: #666;
  text-align: right;
  cursor: pointer;
}
.mainContainer {
  display: flex;
  width: 100%;
}
.rightContainer {
  display: flex;
  flex-grow: 1;
}
.rightContainer .main_content {
  width: 1300px;
  flex-grow: 1;
  height: 100%;
  background-color: var(--back-color);
  display: flex;
  flex-direction: column;
  min-width: 1300px;
  min-height: 100vh;
}
/* 왼쪽 메인메뉴 */
.leftContainer {
  display: flex;
  background-color: var(--main-color);
  height: auto;
  flex-direction: column;
  z-index: 2;
  min-height: 100vh;
  width: 90px;
}
.leftContainer .left_menu {
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  overflow: hidden;
}
.leftContainer .left_menu > li {
  width: 100%;
  float: left;
  height: 100px;
  line-height: 98px;
  position: relative;
}
.leftContainer .left_menu > li > a {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 26px;
  color: #fff;
  opacity: 0.5;
}
.leftContainer .left_menu > li > a:hover {
  opacity: 1;
}
.leftContainer .left_menu > li.active > a {
  opacity: 1;
}

/* 알림 상태값 */
.status {
  width: 20px;
  float: left;
  height: 20px;
  line-height: 18px;
  border-radius: 100px;
  color: #fff;
  background-color: #cc3333;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 55px;
  z-index: 9;
}

/* 왼쪽 서브메뉴 */
.left_submenu {
  width: 0;
  float: left;
  height: 100vh;
  border-right: 1px solid #e7e7e7;
  background-color: #fff;
  transition: all 0.5s;
}
.left_submenu.active {
  width: 230px;
}
.left_submenu .title_box {
  width: 100%;
  float: left;
  height: 100px;
  line-height: 98px;
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #e7e7e7;
}
.left_submenu .menu_box {
  width: 100%;
  float: left;
}
.left_submenu .menu_box > div {
  width: 100%;
  float: left;
  padding: 40px 20px;
}
.left_submenu .menu_box > div > div {
  width: 100%;
  float: left;
}
.left_submenu .menu_box .main_menu,
.left_submenu .menu_box .sub_menu {
  overflow: hidden;
  white-space: nowrap;
}
.left_submenu .menu_box .main_menu {
  width: 100%;
  float: left;
}
.left_submenu .menu_box .main_menu > li {
  width: 100%;
  float: left;
  line-height: 40px;
  font-size: 15px;
  font-weight: 500;
}
.left_submenu .main_menu > li > * {
  cursor: pointer;
}
.left_submenu .main_menu .menu_name {
  float: left;
}
.left_submenu .main_menu .menu_more {
  float: right;
  color: #999;
  text-align: right;
  font-size: 13px;
}
.left_submenu .sub_menu {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.left_submenu .sub_menu > li {
  width: 100%;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
}
.left_submenu .sub_menu > li.active {
  background-color: #fffbf2;
  border-radius: 5px;
  color: #ffb400;
  font-weight: 600;
}
.left_submenu .sub_menu > li > a {
  width: 100%;
  float: left;
}
.left_submenu .sub_menu > li:not(:first-child) {
  margin-top: 5px;
}

/* 오른쪽 영역 */
/* 왼쪽메뉴 닫힘 버튼 */
.leftside {
  width: 50px;
  float: left;
  height: 50px;
  font-size: 17px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
}
.leftside > * {
  width: 50px;
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: 0.5s all;
  cursor: pointer;
}
#rightContent {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 1300px;
  min-height: 100vh;
  background-color: #f0f1f2;
  transition: all 0.5s;
}
#rightContent.active {
  transition: all 0.5s;
}
/* 상단정보 */
.top_infowrap {
  width: 100%;
  float: left;
  padding: 20px 50px 35px 50px;
  border-bottom: 1px solid #e4e4e4;
}
.top_infowrap > div {
  width: 50%;
  float: left;
}
.top_infowrap .top_title > ul {
  width: 100%;
  float: left;
}
.top_infowrap .top_title > ul > li {
  float: left;
  line-height: 40px;
}
.top_infowrap .top_title .icon {
  width: 40px;
  float: left;
  height: 40px;
  font-size: 18px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ffb400;
  border-radius: 100px;
}
.top_infowrap .top_title .title_box {
  width: calc(100% - 40px);
  padding-left: 15px;
}
.top_infowrap .top_title .title {
  font-size: 18px;
  float: left;
}
.top_infowrap .top_title .sub {
  font-size: 13px;
  float: left;
  color: #666;
  margin-left: 10px;
}
.top_infowrap .top_nav {
  text-align: right;
  padding-top: 14px;
}
.top_infowrap .top_nav * {
  color: #666;
  font-size: 13px;
}
.top_infowrap .top_nav > span {
  margin: 0 3px;
}
.top_infowrap .top_nav > span:last-of-type {
  font-weight: 600;
}

.top_info {
  width: 100%;
  float: left;
  padding: 0 50px;
}
.top_info > div {
  width: 100%;
  float: left;
  height: 80px;
  line-height: 80px;
  padding: 0 40px;
  background-color: #ffb400;
  border-radius: 10px;
}
.top_info .left_box {
  width: 50%;
  float: left;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.top_info .left_box .info_icon {
  width: 3%;
  float: left;
  cursor: pointer;
}
.top_info .left_box .info_name {
  float: left;
  margin-left: 10px;
}
.top_info .right_box {
  min-width: 570px;
  float: right;
  padding: 0 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  font-weight: 600;
  border-radius: 100px;
}
.top_info .right_box > div {
  width: 50%;
  float: left;
}
.top_info .right_box .left_info {
  height: 45px;
  line-height: 45px;
}
.top_info .right_box .left_info > div {
  width: 50%;
  float: left;
}
.top_info .right_box .left_info .category {
  font-size: 14px;
  color: #333;
}
.top_info .right_box .left_info .txt {
  margin-left: 15px;
  font-size: 13px;
  color: #666;
}
.top_info .right_box .right_info {
  height: 45px;
  line-height: 45px;
  padding-left: 20px;
}
.top_info .right_box .right_info .icon {
  border-left: 1px solid #dadada;
  padding-left: 20px;
}
.top_info .right_box .right_info .icon > i {
  font-size: 18px;
  transform: translateY(1px);
}
.top_info .right_box .right_info .charge {
  font-size: 14px;
  margin-left: 5px;
}
.top_info .right_box .right_info .name {
  font-size: 13px;
  color: #666;
  margin-left: 10px;
}
.top_info .right_box .right_info .tel {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  margin-left: 5px;
}

/* 오른쪽 컨텐츠 영역 */
.content_wrap {
  width: 100%;
  float: left;
}
.content_box {
  width: 100%;
  float: left;
  margin-top: 15px;
  padding: 35px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}


.content_box.medium_box {
  width: 845px;
}
.content_box.small_box {
  width: 620px;
  margin-left: 10px;
}

.top_box{
  width: 100%
}

.content_box.pop_medium_box {
  width: calc(70% - 10px);
}
.content_box.pop_small_box {
  width: 30%;
  margin-left: 10px;
}

.content_box.content_info {
  padding: 20px 15px;
  height: 175px;
}
.content_box.content_info .title {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding: 0 10px 10px 10px;
  border-bottom: 1px solid #ccc;
}
.content_box.content_info .con {
  width: 100%;
  float: left;
  font-size: 14px;
  padding: 15px 10px 0 10px;
}
.content_box.content_info .con > ul {
  width: 100%;
  float: left;
}
.content_box.content_info .con > ul:not(:first-child) {
  margin-top: 15px;
}
.content_box.content_info .con > ul > li {
  width: 27%;
  float: left;
}
.content_box.content_info .con > ul > li:not(:nth-child(3n + 1)) {
  margin-left: 3%;
}
.content_box.content_info .con > ul > li > span {
  float: left;
}
.content_box.content_info .con .con1 {
  font-weight: 600;
  color: #555;
}
.content_box.content_info .con .con2 {
  width: 65%;
  font-weight: 500;
  color: #666;
  margin-left: 20px;
}
.content_box.content_info .con .w_40 {
  width: 40%;
}
.content_box.content_info .con .w_40 .adrress {
  width: 80%;
}

.mms_status {
  width: 100%;
  float: left;
  height: 78px;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  background-color: #e7e7e7;
}
.mms_status > div {
  width: 46%;
  float: left;
  display: flex;
  align-items: center;
}
.mms_status .left_box {
  width: 40%;
  float: left;
}
.mms_status .left_box .main {
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.mms_status .left_box .sub {
  width: 100%;
  float: left;
  font-size: 13px;
  color: #888;
}
.mms_status .right_box {
  width: 60%;
  float: left;
  font-size: 16px;
  font-weight: 600;
  color: #474747;
  text-align: right;
}
.mms_status .line {
  margin: 0 20px;
  width: 1px;
  float: left;
  height: 100%;
  background-color: #fff;
}

/* 탭메뉴 */
.tab_menu {
  width: 100%;
  float: left;
}
.tab_menu > ul {
  width: 100%;
  float: left;
}
.tab_menu > ul > li {
  width: 20%;
  float: left;
  height: 50px;
  line-height: 48px;
  color: #6d6d6d;
  background-color: #fcfcfc;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e8e8e8;
}
.tab_menu > ul > li:not(:last-child) {
  border-right: none;
}
/*라인 노중복*/
.tab_menu > ul > li.active {
  font-weight: 600;
  color: #ffb400;
  background-color: #fff;
  border-bottom: none;
}
.tab_menu > ul > li > a {
  width: 100%;
  float: left;
}

/* 검색 조회 */
.txtBox {
  width: auto;
  height: 35px;
  line-height: 35px;
}
.data_search_wrap .txtBox {
  height: 32px;
  line-height: 32px;
}
.type_form .txtBox {
  width: 100%;
  margin-left: 0;
}

.date_select_btn {
  width: 65px;
  float: left;
  background-color: #ebebeb;
  font-size: 13px;
  margin-left: 5px;
  text-align: center;
  cursor: pointer;
} /* 검색조회 기간버튼*/
.data_search_wrap {
  width: 100%;
  float: left;
  border: 1px solid #ebebeb;
  padding: 30px 40px;
  margin-bottom: 15px;
}
.data_search_wrap > form {
  width: 100%;
  float: left;
  display: table;
  table-layout: fixed;
}
.data_search_wrap > form > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data_search_wrap .frmWrap {
  width: 84%;
  vertical-align: middle;
  display: table-cell;
  border-right: 1px solid #ebebeb;
}
.data_search_wrap .frmWrap > ul {
  width: 100%;
  float: left;
}
.data_search_wrap .frmWrap > ul > li {
  width: 100%;
  float: left;
  height: 32px;
  line-height: 32px;
  margin: 5px 0;
}
.data_search_wrap .frmWrap > ul > li > * {
  float: left;
}
.data_search_wrap .label {
  width: 80px;
  float: left;
  font-size: 14px;
}
.data_search_wrap .frmWrap > ul > li > select {
  width: 150px;
  margin-right: 10px;
}
.data_search_wrap .frmWrap > ul > li > input {
  width: 530px;
  margin-right: 10px;
}
.data_search_wrap .input_wrap {
  margin-left: 5px;
}
.data_search_wrap .input_wrap > div {
  float: left;
}
.data_search_wrap .input_wrap .tilde {
  float: left;
  margin: 0 10px;
}
.data_search_wrap .input_wrap .search {
  width: 140px;
  float: left;
  height: 32px;
  color: #666;
  border: 1px solid #e1e1e1;
  padding: 0 10px;
  letter-spacing: 0px;
  background-color: #fff;
}
.type_list {
  width: 100%;
  float: left;
  padding: 35px;
  border: 1px solid #ebebeb;
  border-top: none;
}

/* 리스트 상단 total 및 셀렉트박스 */
.listSet {
  width: 100%;
  float: left;
  margin-top: 60px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
}
.listSet.pop {
  margin-top: 0px !important;
}

.listSet .leftBox {
  width: 50%;
  float: left;
}
.listSet .leftBox .pageCnt {
  width: auto;
  float: left;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
}
.listSet .leftBox .pageCnt > span {
  font-weight: 600;
}
.listSet .rightBox {
  width: 50%;
  float: right;
  text-align: right;
}
.listSet .rightBox div {
  display: inline-block;
  vertical-align: middle;
}
.btn_bar .gray_line {
  margin: 0;
}
.gray_line {
  margin: 0 12px;
  width: 1px;
  float: left;
  height: 32px;
}
.gray_line::after {
  content: " ";
  width: 1px;
  height: 24px;
  background-color: #ebebeb;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* 리스트 테이블 */
.row_hover:hover td {
  background-color: rgba(255, 180, 0, 0.06);
  cursor: pointer;
} /* 테이블 호버 시 배경색상 변경 */
.list {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.list > div {
  width: 100%;
  float: left;
}
.list table {
  width: 100%;
  float: left;
}
.list table thead th {
  background-color: #f8f8f8;
  height: 60px;
  font-weight: 500;
  border-left: 1px solid #e2e2e2;
}
.list table thead th:not(:first-of-type) {
  border-left: 1px solid #e2e2e2;
}
.list table thead tr:first-of-type th {
  border-top: 1px solid #e2e2e2;
}
.list table thead tr:nth-of-type(2) th {
  background-color: #ededed;
  border-top: 1px solid #e2e2e2;
  height: 45px;
}
.list table thead tr:nth-of-type(2) th:first-child {
  border-left: 1px solid #e2e2e2;
}
.list table thead th:first-child {
  border-left: none;
}
.list table tbody tr:first-of-type td {
  border-top: 1px solid #e2e2e2;
}
.list table tbody td:not(:first-of-type) {
  border-left: 1px solid #e2e2e2;
}
.list table tbody td {
  color: #666;
  background-color: #fff;
  height: 60px;
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
  padding: 0 10px;
}
.list table tbody td .icon {
  font-size: 16px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.list table tbody td .icon.blue_point {
  transform: translateY(-6px);
}
.list table tbody td .blue_point {
  font-weight: 500;
}
.list table tbody td .point {
  font-weight: 500;
}

/* 페이징 */
.paging_wrap {
  width: 100%;
  float: left;
  margin-top: 45px;
  text-align: center;
}
.paging_wrap > ul {
  width: 100%;
  float: left;
}
.paging_wrap > ul > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.paging_wrap > ul > li * {
  width: 27px;
  float: left;
  height: 27px;
  line-height: 27px;
  border-radius: 5px;
}
.paging_wrap > ul > li.active {
  background-color: #fff8e6;
  color: #ffb400;
  font-weight: 600;
}

/* 푸터 */
.footer {
  width: 100%;
  float: left;
  margin-top: 30px;
}
.footer > div {
  width: 100%;
  float: left;
  border-top: 1px solid #e7e7e7;
  padding: 0 50px;
}
.footer > div > div {
  width: 100%;
  float: left;
}
.footer .footer_top ul {
  width: 100%;
  float: left;
}
.footer .footer_top .leftBox {
  width: 50%;
  float: left;
}
.footer .footer_top .leftBox ul li {
  width: auto;
  float: left;
}
.footer .footer_top .leftBox ul li:not(:first-child) {
  margin-left: 40px;
}
.footer .footer_top .leftBox ul li * {
  line-height: 50px;
  font-size: 13px;
  font-weight: 500;
}
.footer .footer_top .rightBox {
  width: 50%;
  float: right;
  text-align: right;
}
.footer .footer_top .rightBox ul li {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.footer .footer_top .rightBox ul li a {
  width: 100%;
  float: left;
  line-height: 50px;
  padding: 0 10px;
  color: #666;
  letter-spacing: 0;
}
.footer .footer_btm {
  width: 100%;
  float: left;
  border-bottom: 1px solid #e7e7e7;
}
.footer .footer_btm > div > div {
  padding: 25px 0;
}
.footer .footer_btm p {
  color: #666666;
  font-size: 13px;
  line-height: 25px;
}

/* 등록 */
.importantLabel:after {
  content: "*";
  color: #cc3333;
} /*필수값*/
.type_form {
  width: 100%;
  float: left;
}
.type_form .form_box {
  width: 100%;
  float: left;
}
.type_form .form_box table {
  width: 100%;
  float: left;
  margin-top: 15px;
  border-top: 2px solid #666;
}
.type_form .form_box .table_title {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: 500;
}
.type_form .form_box .table_write {
  width: 100%;
  float: left;
}

.type_form .form_box .table_write.minh520 {
  width: 100%;
  float: left;
  min-height:520px;
}

.type_form .table_write .label {
  height: 60px;
  padding: 8px 15px;
  color: #333;
  background-color: #f8f8f8;
  font-weight: 600;
  vertical-align: middle;
}
.type_form .table_write .value {
  padding: 8px 25px;
  background-color: #fff;
  font-weight: 400;
}
.type_form table tr > * {
  border-bottom: 1px solid #e4e4e4;
}

/* 등록 팝업 */
.popup_wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.popup_wrap .pop_content {
  width: 1200px;
  float: left;
  height: 715px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 14px 0.75px rgba(0, 0, 0, 0.2);
}
.popup_wrap .full {
  height: 100% !important;
}

.popup_wrap .pop_title {
  width: 100%;
  float: left;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ffb400;
}

.popup_wrap .pop_title.business{
  width: 100%;
  float: left;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #333 !important;
}
.popup_wrap .pop_title > ul {
  width: 100%;
  float: left;
  line-height: 60px;
}
.popup_wrap .pop_title > ul > li {
  float: left;
}
.popup_wrap .pop_title .pop_text {
  width: 95%;
  padding: 0 33px;
  font-size: 18px;
  font-weight: 666;
  color: #fff;
}
.popup_wrap .pop_title .pop_close {
  width: 5%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.popup_wrap .pop_title .pop_close > i {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

/* 팝업 아이프레임 */
.pop_ifram {
  width: 100%;
  float: left;
  height: calc(100% - 60px);
}
/* .pop_ifram iframe{width: 100%; float: left; border: none; height: calc(100% - 60px);} */
.pop_cont {
  width: 100%;
  float: left;
  padding: 20px 30px;
}
.pop_cont.type_form table tr > * {
  font-size: 14px;
}

/* 팝업닫기버튼 */
.popbtn_wrap {
  width: 100%;
  float: left;
  margin-top: 35px;
  text-align: center;
}
.popbtn_wrap > div {
  display: inline-block;
  vertical-align: middle;
}

/* 로딩바 */
.load-wrapp {
  width: 100%;
  height: 100%;
  display: none;
  float: left;
  text-align: center;
  z-index: 99999999;
  top: 0;
  left: 0;
  position: fixed;
}
.load-wrapp .load-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.load-wrapp .ring {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #f34d33;
  margin-left: 7px;
}
.load-wrapp .load-3 .ring:nth-last-child(1) {
  animation: loadingC 0.7s 0.1s linear infinite;
}
.load-wrapp .load-3 .ring:nth-last-child(2) {
  background-color: #f77764;
  animation: loadingC 0.7s 0.2s linear infinite;
}
.load-wrapp .load-3 .ring:nth-last-child(3) {
  background-color: #ffada0;
  margin-left: 0px;
  animation: loadingC 0.7s 0.3s linear infinite;
}
@keyframes loadingC {
  0 {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* 상단 구분탭 */
.tab_warp {
  width: 100%;
  float: left;
  padding: 0 50px;
  margin-top: 25px;
}
.tab_warp > div {
  width: auto;
  float: left;
  background-color: white;
  border-radius: 50px;
  border: 1px solid #e2e2e2;
}
.tab_warp > div ul {
  width: 100%;
  float: left;
}
.tab_warp > div ul li {
  width: 150px;
  float: left;
  text-align: center;
  color: #333;
  font-weight: bold;
}
.tab_warp > div ul a {
  width: 100%;
  float: left;
  line-height: 40px;
  color: inherit;
}
.tab_warp > div .active {
  background-color: #ffb400;
  color: white;
  border-radius: 50px;
}

/* 대시보드 박스 */
.dashboardBox {
  width: 100%;
  float: left;
  border: 2px solid #e2e2e2;
  padding: 25px 10px;
  margin-bottom: 30px;
}
.dashboardBox .dbl {
  width: 150px;
  float: left;
  border-right: 2px solid #e3e3e3;
  text-align: center;
  padding: 3px 0;
}
.dashboardBox .dbl i {
  color: #cbcbcb;
}
.dashboardBox .dbr {
  width: calc(100% - 150px);
  float: left;
  line-height: 48px;
  padding-left: 50px;
}
.dashboardBox .dbr .dbItem {
  width: auto;
  float: left;
  font-size: 18px;
}
.dashboardBox .dbr .dbItem:not(:first-of-type) {
  margin-left: 3%;
}
.dashboardBox .dbr .dbItem * {
  font-size: inherit;
}
.dashboardBox .dbr .tit {
  font-weight: bold;
  color: #333;
}
.dashboardBox .dbr .subtit {
  font-weight: normal;
  font-size: 14px !important;
  color: #9c9c9c;
}
.dashboardBox .dbr .val {
  margin-left: 25px;
  color: #ff6004;
  font-weight: bold;
}
.dashboardBox .dbr .subVal {
  color: inherit;
  font-weight: 400;
  font-size: 14px;
}
.dashboardBox .dbr .dbLine {
  width: 1px;
  float: left;
  margin-left: 25px;
}
.dashboardBox .dbr .dbLine:after {
  content: " ";
  width: 1px;
  height: 25px;
  background-color: #9b9b9b;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}

/* 상단 제목 */
.top_title_wrap {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.top_title_wrap .background {
  width: 100%;
  float: left;
  background-color: #f6f6f6;
  padding: 5px 40px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}

.top_title_wrap .background.pop {
  background-color: #ffffff;
  border: 1px solid #ffb400;
}

.top_title_wrap .background > div {
  width: 50%;
  height: 56px;
  float: left;
}
.top_title_wrap .background > div .top_title_left {
  width: 100%;
  float: left;
  padding: 13px 0px;
}
.top_title_wrap .background > div .top_title_left .left_cont1 {
  width: 4%;
  float: left;
}
.top_title_wrap .background > div .top_title_left .left_cont1 i {
  color: #999999;
  font-size: 20px;
  line-height: 30px;
}
.top_title_wrap .background > div .top_title_left .left_cont2 {
  width: auto;
  color: #ffb400;
  float: left;
  font-size: 20px;
  margin-right: 4px;
}
.top_title_wrap .background > div .top_title_left .left_cont3 {
  width: auto;
  color: #333333;
  float: left;
  font-size: 20px;
}
.top_title_wrap .background > div .top_title_right {
  width: 90%;
  float: right;
  height: auto;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 8px 20px;
  margin-top: 5px;
  line-height: 1.8;
  min-width: 600px;
}

.top_title_wrap .background > div .top_title_right.pop {
  background-color: #f6f6f6;
}

.right_info.pop {
  line-height: 30px;
}

.right_info.pop .icon {
  margin-right: 5px;
}
.right_info.pop .charge {
  color: #a6a6a6;
  font-weight: bold;
  margin-right: 10px;
}

.right_info.pop .name {
  font-weight: bold;
}

.right_info.pop .icon i {
  color: #a6a6a6;
}

.top_title_wrap .background > div .top_title_right .price_box {
  float: left;
  margin-right: 10px;
}
.top_title_wrap .background > div .top_title_right .label {
  display: inline-block;
  padding: 2px 12px;
  background-color: #999999;
  color: #ffffff;
  font-size: 12px;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 600;
  vertical-align: middle;
}
.top_title_wrap .background > div .top_title_right .label.main_c {
  background-color: #ffb400;
}
.top_title_wrap .background > div .top_title_right .txt {
  display: inline-block;
  font-size: 13px;
  line-height: 30px;
}
.top_title_wrap .background > div .top_title_right .divider {
  float: left;
  border-left: 1px solid #cccccc;
  height: 24px;
  margin: 4px 12px;
}

.pop_cont .price_list {
  width: 100%;
  font-size: 15px;
  margin-top: 10px;
}

.pop_cont .price_list li {
  float: left;
  width: 40% !important;
  margin-bottom: 10px;
  margin-right: 15%;
}

.pop_cont .price_list li:nth-child(2n) {
  margin-right: 0;
}
.pop_cont .price_list li:not(:nth-child(3n + 1)) {
  margin-left: 0% !important;
}

.pop_cont .price_list .label {
  float: left;
  font-weight: bold;
  color: #444;
}

.pop_cont .price_list .price {
  float: right !important;
  color: #444;
}

.

input_btnpop_cont .price_list .highlight {
  color: #d92b2b;
  font-weight: bold;
}

/* 비밀번호 수정 화면 */
.input-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-password-wrap input {
  width: 100%;
  padding-right: 35px; /* 아이콘 공간 확보 */
}

.input-password-wrap i {
  position: absolute;
  right: 10px;
  color: #999;
  cursor: pointer;
}
.client_top_tab {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.client_top_tab .background {
  background-color: var(--main-color);
  width: 100%;
  float: left;
  padding: 5px 40px;
  border-radius: 5px;
}
.client_top_tab .background > div {
  width: 50%;
  height: 56px;
  float: left;
}
.client_top_tab .background > div .client {
  width: 100%;
  float: left;
  padding: 13px 0px;
}
.client_top_tab .background > div .client .client1 {
  width: 4%;
  float: left;
  cursor: pointer;
}
.client_top_tab .background > div .client .client1 > i {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}
.client_top_tab .background > div .client .client2 {
  width: auto;
  color: #fff;
  float: left;
  font-size: 20px;
  margin-right: 4px;
}
.client_top_tab .background > div .client .client3 {
  width: auto;
  color: #fff;
  float: left;
  font-size: 20px;
}
.support_top {
  width: 100%;
  float: left;
}
.support_top .support_info {
  width: 100%;
  height: 100%;
  float: left;
  background-color: white;
}
.support_top .support_info .info_title {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  font-weight: bold;
  margin-right: 15px;
}
.info_main_title {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}
.info_sub {
  width: 100%;
  float: left;
  font-size: 12px;
}
.info_sub > span {
  float: left;
}
.clientCloseText {
  float: left;
  margin-left: 10px;
  font-weight: 600;
  line-height: 30px;
  color: #1ce865;
}
.support_top .support_info .info_content {
  width: 100%;
  float: left;
  border-top: 1px solid #e2e2e2;
  padding-top: 40px;
  overflow: hidden;
}
.support_top .support_info .info_content .client_img {
  width: 450px;
  float: left;
}
.support_top .support_info .info_content .client_info {
  width: 100%;
  float: left;
  padding-left: 30px;
}
.titEditBtn {
  width: 60px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  float: left;
}
.clientCloseText {
  float: left;
  margin-left: 15px;
  font-weight: 500;
  line-height: 30px;
}
.info_sub .titEditBtn::after {
  content: "";
  border: 1px solid #e9e9e9;
  position: absolute;
  height: 100%;
  left: 100%;
}
.support_top .support_info .info_content .client_info > ul {
  width: 33.3%;
  float: left;
  margin-bottom: 18px;
}
.support_top .support_info .info_content .client_info > ul > li:first-child {
  width: 25%;
  float: left;
  font-weight: 600;
  color: #333;
}
.support_top .support_info .info_content .client_info > ul > li:last-child {
  width: 75%;
  float: left;
}
.support_top .support_info .info_content .sms_info > ul {
  width: 100%;
  float: left;
  margin-bottom: 18px;
}
.support_top .support_info .info_content .sms_info > table {
  width: 100%;
  float: left;
  text-align: left;
}
.support_top .support_info .info_content .sms_info > table > tbody > tr > th,
.support_top .support_info .info_content .sms_info > table > tbody > tr > td {
  padding: 10px 5px;
}
.support_top
  .support_info
  .info_content
  .sms_info
  > table
  > tbody
  > tr
  > td
  > p {
  font-weight: 600;
  font-size: 16px;
}
.support_top
  .support_info
  .info_content
  .sms_info
  > table
  > tbody
  > tr
  > td
  > p
  > span:nth-child(1) {
  font-weight: 600;
  color: #cc3333;
}
.client_info_1 {
  width: calc(100% - 460px);
  height: 290px;
}
.client_info_2 {
  width: 450px;
  height: 290px;
  margin-left: 10px;
}
.support_top .operating_info .info_title {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}


.input_btn{
  width: calc(100% - 125px) !important;
}

.paretnDetailBtn{
  float:left;
  font-size:15px;
  margin-left:10px;
  cursor:pointer;
  line-height:32px;
}

.textarea_box {
  border: 1px solid #e1e1e1;
  padding: 0 15px;
  height: 100px;
}

.width20{
  width :20% !important;
}

.width10{
  width :10% !important;
}

/*검색영역*/
.datasearchWrap {
  width: 100%;
  float: left;
  border: 1px solid #ebebeb;
  padding: 20px 30px;
  margin-bottom: 15px;
}

.datasearchWrap button {
  cursor: pointer;
}

.datasearchWrap a {
  cursor: pointer;
}

.datasearchWrap > div {
  width: 100%;
  float: left;
  display: table;
  table-layout: fixed;
}

.datasearchWrap .frmWrap {
  width: 650px;
  height: 25px;
  vertical-align: middle;
  display: table-cell;
}

.datasearchWrap .frmWrap > li {
  width: 100%;
  float: left;
  margin: 5px 0;
}

.datasearchWrap .label {
  width: 80px;
  height: 32px;
  line-height: 32px;
  float: left;
  font-size: 14px;
  font-weight: bold;
}

.datasearchWrap .frmWrap > li > select {
  width: 130px;
  height: 32px;
  line-height: 32px;
  margin-right: 10px;
  margin-left: 5px;
  border: 1px solid #ebebeb;
  color: #888;
  padding-left: 10px;
}

.datasearchWrap .frmWrap > li > select > option {
  color: #888;
}

.datasearchWrap .frmWrap > li > input {
  width: 530px;
  height: 32px;
  line-height: 32px;
  margin-right: 10px;
  border: 1px solid #ebebeb;
  padding-left: 10px;
}

.datasearchWrap .drag {
  width: 100%;
  float: left;
  margin: 5px 0;
}

.datasearchWrap .drag .reg_term {
  width: 80px;
  height: 32px;
  line-height: 32px;
  float: left;
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
  text-align: inherit;
}

.datasearchWrap .drag .search {
  width: 140px;
  float: left;
  height: 32px;
  color: #666;
  border: 1px solid #ebebeb;
  padding: 0 10px;
  letter-spacing: -0.5px;
  margin-right: 20px;
}

.datasearchWrap .search_Btn {
  position: absolute;
  right: 20px;
  top: 50%;
  padding: 0 0px 0 40px;
  border-left: 1px solid #e1e1e1;
  margin-top: -30px;
}

.datasearchWrap .search_Btn > button {
  color: #fff;
  background-color: #666;
  margin-bottom: 10px;
  margin-top: 10px;
  border: none;
  width: 130px;
  height: 40px;
  line-height: 32px;
  float: left;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.datasearchWrap .drag span {
  width: 50px;
  height: 32px;
  line-height: 32px;
  float: left;
  cursor: pointer;
  background-color: #ebebeb;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  margin-right: 5px;
}

.settle .title_box{width:100%; float:left; margin-top:20px;}
.settle .title_box .title {width:40%; float:left; text-align:center; font-size:35px; font-weight:bold;}
.content_wrap .date_area {width:100%; float:left; text-align:right; color:#cccccc}
.width40{width:40% !important}
.width30{width:30% !important}
.margint-left10{margin-left:10px !important;}
.select_box{float:left; width:30%; margin-top:12px;}
.settle_info{width:100%; float:left; margin-top:30px;}
.settle_info table {
  width: 100%;
  float: left;
  margin-top: 15px;
  border-top: 2px solid #666;
}
.settle_info .table_title {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: bold;
}
.settle_info .table_write {
  width: 100%;
  float: left;
}
.settle_info .table_write .label {
  height: 60px;
  padding: 8px 15px;
  color: #333;
  background-color: #f8f8f8;
  font-weight: 600;
  vertical-align: middle;
}
.settle_info .table_write .value {
  padding: 8px 25px;
  background-color: #fff;
  font-weight: 400;
}
.settle_info table tr > * {
  border-bottom: 1px solid #e4e4e4;
}
.settle_info .table_write .line{
    width:100%;
    float:left;
    border-top:1px solid #000000;
    margin-top:10px;
}
.settle_info .table_write .line2{
    width:100%;
    float:left;
    border-top:1px solid #cccccc;
    margin-top:10px;
}
.settle_info .client_list{
    width:100%;
    float:left;
    padding: 5px 10px;
    background-color:#F8F8F8;
    margin-top:10px;
}
.settle_info .client_list div{
    width:50%;
    float:left;
}
.settle_info .client_list .price{
    width:50%;
    float:left;
    text-align:right;
}
.settle_info .payout{
    width:100%;
    float:left;
    padding: 5px 10px;
    background-color:#FFE8E8;
    margin-top:10px;
}
.settle_info .total_payout{
    width:100%;
    float:left;
    padding: 5px 10px;
    background-color:#FFF4D9;
    margin-top:10px;
    font-weight:bold;
}
.settle_info .payout div{
    width:50%;
    float:left;
}
.settle_info .payout .price{
    width:50%;
    float:left;
    text-align:right;
}
.settle_info .total_payout div{
    width:50%;
    float:left;
}
.settle_info .total_payout .price{
    width:50%;
    float:left;
    text-align:right;
}
.settle_info .head_list{
    float:left;
    width:100%;
    padding: 10px 10px 0px 10px;
    font-weight:bold;
}
.settle_info .head_list div{
    float:left;
}
.wd20{
    width:20% !important;
}
.wd30{
    width:30% !important;
}
.wd25{
    width:25% !important;
}
.wd15{
    width:15% !important;
}
.wd10{
    width:10% !important;
}
.font-bold{
    font-weight:bold !important;
}
.min_height{
    height:1px;
}
.noresult{
  float: left;
  width: 100%;
  text-align: center;
  height: 100px;
  line-height: 100px;
  font-size: 20px;
}

.toggle_txt{
  margin-left: 5px;
  color: #cccccc;
}

.ml15{
  margin-left:15px !important;
}

.margin0{
  margin : 0px !important;
}

.fa-2x{
  font-size:18px !important;
}

.settlement.btn_area {
  width:100%; 
  float:left; 
  text-align:center; 
  margin-top:50px;
}
