@charset "UTF-8";
/* 폰트어썸 */
@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css';
/* 폰트 */
@import url("https://fonts.googleapis.com/css?family=Black+Han+Sans:400");
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff") format("woff");
}
@font-face {
  font-family: "HSBombaram";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/HSBombaram.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "yg-jalnan";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* 디폴트 css */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Pretendard";
}

img {
  border: 0;
  vertical-align: middle;
  outline: 0;
}

ul, li, ol {
  list-style: none;
}

body {
  font-weight: 400;
  font-size: 0.9rem;
  width: 100%;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: #222;
  display: block;
  height: 100%;
}

td a {
  display: inline-block;
}

button {
  cursor: pointer;
}

button:hover {
  font-weight: bold;
}

a:focus {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  font-weight: bold;
}

input, select {
  background-color: transparent;
  width: 100%;
}

input[type=checkbox], input[type=radio] {
  width: auto;
}

input[type=button], input[type=submit], input[type=date] {
  cursor: pointer;
}

/*자주 사용 클래스 지정*/
.cf::after {
  content: "";
  display: block;
  clear: both;
}

.cf::before {
  content: "";
  display: block;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_left {
  display: flex;
  align-items: center;
}

.flex_g {
  flex-grow: 1;
}

.none {
  display: none;
}

/*width*/
.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w400 {
  width: 400px;
}

.w500 {
  width: 500px;
}

/*padding*/
.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px !important;
}

/*text*/
.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

/********************* 
*      color       * 
**********************/
#main_wrapper, #login, #join {
  background-color: #e6eeff;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#main_wrapper #main, #login #main, #join #main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  backdrop-filter: blur(3.5rem);
}

#login-body {
  background-color: #ffffff;
}
#login-body main {
  position: relative;
}
#login-body section {
  background-color: #ffffff;
  position: relative;
  width: 100%;
  height: 100%;
}
#login-body section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/main/main_bg_login3.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
#login-body .contents {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 70%;
  max-width: none;
  padding: 3rem;
  padding-top: 8rem;
  overflow: hidden;
}
#login-body .contents .left, #login-body .contents .right, #login-body .contents #section-join-popup {
  max-height: 30rem;
  box-shadow: 0 0 1rem #00000030;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
#login-body .contents .left {
  flex: 1;
  backdrop-filter: blur(5px);
  background-color: #00000010;
  background: url(../images/main/login_back_img2.jpg);
  background-position: 50%;
}
#login-body .contents .left h1 {
  font-size: 2rem;
  color: #fff;
}
#login-body .contents .left img {
  width: 5rem;
  margin-bottom: 1rem;
}
#login-body .contents .position_fixed {
  position: relative;
  width: 500px;
  height: 100%;
  display: flex;
  align-items: center;
}
#login-body .contents .right {
  background-color: #fff;
  justify-content: start;
  height: 100%;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  padding: 2rem;
}
#login-body .contents form {
  width: 100%;
}
#login-body .contents form h2 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
#login-body .contents form label {
  width: 100%;
  margin-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cdcdcd;
}
#login-body .contents form label span {
  width: 2rem;
  padding: 0 0.5rem;
  flex-grow: 0;
  flex-shrink: 0;
}
#login-body .contents form label input {
  width: 100%;
  padding: 0.5rem;
  border: none;
  background: transparent;
}
#login-body .contents form label input[type=checkbox] {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  border-radius: 0.5rem;
  margin-left: auto;
}
#login-body .contents form label.check {
  border: none;
  margin-bottom: 2rem;
  font-size: 0.8rem;
}
#login-body .contents form input[type=button] {
  padding: 0.75rem;
  width: 100%;
  border-radius: 0.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  font-weight: 600;
}
#login-body .contents form input[type=button]:hover {
  opacity: 0.8;
}
#login-body .contents .flex {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  align-items: end;
}
#login-body .contents .flex p {
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 0.25rem;
}
#login-body .contents .flex a {
  border: 1px solid #00000030;
  padding: 0.75rem 1rem;
  width: 180px;
  font-size: 0.8rem;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
}
#login-body .contents .flex a:hover {
  background-color: #00000010;
}
#login-body .contents #section-join-popup {
  display: none;
  padding: 1rem 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  background-color: #fff;
  overflow-y: scroll;
}
#login-body .contents #section-join-popup > button {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  height: 3rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: 1px solid #00000030;
}
#login-body .contents #section-join-popup > button i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
#login-body .contents #section-join-popup h2 {
  margin-bottom: 2rem;
}
#login-body .contents #section-join-popup form {
  width: 100%;
  height: fit-content;
}
#login-body .contents #section-join-popup form label {
  border: 1px solid #00000030;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
#login-body .contents #section-join-popup form label em {
  color: red;
  font-weight: 700;
  padding-right: 0.15rem;
  font-style: normal;
}
#login-body .contents #section-join-popup form label span {
  width: 5.5rem;
  font-size: 0.8rem;
  letter-spacing: -1px;
  color: #777777;
  padding: 0;
  padding-left: 0.5rem;
}
#login-body .contents #section-join-popup form label.check {
  border: none;
}
#login-body .contents #section-join-popup form label.check em {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
#login-body .contents #section-join-popup form label.check a {
  color: blue;
  text-decoration: underline;
}
#login-body .contents #section-join-popup form .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#login-body .contents #section-join-popup form button {
  background-color: #444;
  border-radius: 0.25rem;
  height: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  display: block;
  color: #fff;
  width: 5rem;
  font-size: 0.8rem;
}
#login-body .contents #section-join-popup form input[type=submit] {
  margin-top: 3rem;
}
#login-body.me section {
  position: relative;
  width: 100%;
  height: 100%;
}
#login-body.me section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
#login-body.me section .contents .left {
  background: url(../images/main/login_back_img.webp);
  background-size: 100%;
}

/************************************************************
*****************partner_admin-main-nav**********************
*************************************************************/
#main_wraper, #login, #join {
  background-color: #e6eeff;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#main_wraper #main, #login #main, #join #main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  backdrop-filter: blur(3.5rem);
}

#main_wraper h1 {
  width: 100%;
}

#main_wraper #side_panel {
  width: 250px;
  margin-right: 10px;
  height: 100%;
  box-shadow: 0 0 10px #00000030;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

#main_wraper header {
  width: calc(100% - 2rem);
  height: 65px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 0.5rem;
  margin: 0 1rem;
  border-bottom: 1px solid #00000010;
}

#main_wraper header img {
  width: 40%;
}

#main_wraper nav {
  z-index: 2;
  position: relative;
  width: 100%;
  font-size: 1rem;
}

#main_wraper nav .email_area {
  width: calc(100% - 20px);
  height: 80px;
  text-align: center;
  padding: 20px;
  margin: 5px 10px 0 10px;
  background-color: rgba(0, 138, 108, 0.2);
  border-radius: 10px 10px 0 0;
}

#main_wraper nav .email_area li:first-child {
  margin-bottom: 5px;
}

#main_wraper nav .login_area {
  width: calc(100% - 20px);
  text-align: center;
  color: #cdcdcd;
  background-color: #008a6c;
  margin: 0 10px 10px 10px;
  border-radius: 0 0 10px 10px;
}

#main_wraper nav .login_area .menu {
  padding: 15px 0;
  width: 70px;
}

#main_wraper nav .login_area .menu a {
  color: #fff;
  font-size: 0.813rem;
}

#main_wraper nav .login_area .menu a > i {
  font-size: 18px;
  margin-bottom: 4px;
}

#main_wraper nav .email_area2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 20px);
  text-align: center;
  padding: 15px;
  margin: 10px;
  /*  background-color: #f0f0fc; */
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

#main_wraper nav .email_area2 li:first-child {
  flex: 1;
}

#main_wraper nav .email_area2 li:first-child a {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

#main_wraper nav .email_area2 li:first-child a:hover {
  font-weight: 400;
}

#main_wraper nav .email_area2 li:first-child a:hover span {
  color: #008a6c;
}

#main_wraper nav .email_area2 li:first-child a p {
  color: #777;
  font-size: 0.9rem;
}

#main_wraper nav .email_area2 li:first-child a span {
  font-weight: 700;
  font-size: 1.15rem;
  display: block;
  margin-top: 0.15rem;
}

#main_wraper nav .email_area2 li:nth-child(2) a {
  border-bottom: 1px solid #999;
  width: fit-content;
  color: #999;
  font-size: 0.9rem;
  font-weight: 400;
}

#main_wraper nav .email_area2 li:nth-child(2) a:hover {
  font-weight: 600;
}

#main_wraper nav .menu_area {
  width: 100%;
  padding: 10px;
}

#main_wraper nav .menu_area ul {
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  font-weight: normal;
}

#main_wraper nav .menu_area li {
  align-items: center;
  border-radius: 10px;
  margin-bottom: 10px;
}

#main_wraper nav .menu_area li a {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0px 15px;
}

#main_wraper nav .menu_area li a:hover {
  font-weight: bold;
}

#main_wraper nav .menu_area li a > i {
  margin-right: 10px;
  width: 18px;
  text-align: center;
  color: #98a3bb;
}

#main_wraper nav .menu_area li a span {
  float: right;
  display: none;
}

#main_wraper nav .menu_area li a:hover span {
  display: block;
}

#main_wraper nav .submenu_area {
  background-color: #f7f9ff;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

#main_wraper nav .menu_area .submenu_area li a {
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
}

#main_wraper nav .menu_area .submenu_area li a > i {
  margin-right: 8px;
  width: 12px;
  color: #04FFC9;
}

#main_wraper nav .hide {
  display: none;
}

#main_wraper nav .active {
  background-color: #D3DBEC;
  font-weight: bold;
}

#main_wraper nav .active .submenu_area li {
  border-radius: 0;
}

#main_wraper nav .all_active {
  background-color: #D3DBEC;
  font-weight: bold;
}

#main_wraper #section {
  flex-grow: 1;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px #00000030;
  display: flex;
  flex-direction: column;
}

#main_wraper .contents_area {
  flex-grow: 1;
}

#main_wraper .contents_area iframe {
  width: 100%;
  height: 100%;
}

.wave {
  width: 100%;
  height: 100%;
  animation: drift 170s infinite linear;
  top: -100px;
  position: relative;
  left: -50px;
}

#main_wraper.index {
  background-color: rgba(0, 138, 108, 0.1);
}
#main_wraper.index .wave {
  filter: invert(30%) sepia(63%) saturate(5245%) hue-rotate(70deg) brightness(94%) contrast(101%);
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}
/************************************************************
********************개별페이지 전체지정(반복)*********************
*************************************************************/
mark {
  border: 1px solid #0B44A5;
  background-color: #e6eeff;
  border-radius: 5px;
  padding: 3px 10px;
  margin-left: 5px;
}

.hidden {
  visibility: hidden;
}

.edit {
  border: 1px solid #D3DBEC;
  background-color: #F9FAFE;
  border-radius: 5px;
}

/*scroll*/
*::-webkit-scrollbar {
  width: 20px;
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #0B44A550;
  border-radius: 20px;
  background-clip: padding-box;
  border: 6px solid transparent;
}

*::-webkit-scrollbar-track {
  border-radius: 10px;
}

/*wrap_box*/
.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

main {
  overflow-y: auto;
  padding: 20px;
}

.contents {
  height: auto;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #D3DBEC;
}

.list_title {
  border: 1px solid #D3DBEC;
  padding: 0 20px;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  background-color: #f7f9ff;
}

.list_title {
  width: 100%;
  height: 45px;
}

.list_title h4 {
  flex-grow: 1;
  font-size: 1rem;
}

.list_title h4 > i {
  margin-right: 8px;
  color: #008a6c;
  font-size: 17px;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  margin: 0 0 15px 10px;
}

.ask {
  font-size: 1rem;
}

.ask::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.ask span {
  color: #04FFC9;
  text-decoration: underline 1px solid #04FFC9;
}

/*개별 메뉴 title*/
.title_wrap_main {
  width: 100%;
  height: 75px;
  border-bottom: 2px solid #04FFC9;
  background-color: #fff;
  line-height: 40px;
  padding: 20px 30px;
  box-shadow: 0 5px 5px #5b2ffc10;
}

.title_wrap_main span {
  font-size: small;
  font-weight: 300;
  float: right;
}

.title_wrap_sub {
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  grid-auto-flow: column;
  grid-template-rows: auto auto auto;
  border-bottom: 1px solid #D3DBEC;
  margin: 0 20px;
}

/*상단 menu_wrap*/
.menu_wrap {
  width: 100%;
  height: auto;
  border-radius: 10px;
  font-size: 1rem;
}

.menu_wrap ul {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 30px;
}

.menu_wrap ul li {
  height: auto;
  margin-right: 15px;
}

.menu_wrap ul li:last-child {
  margin-right: 0;
}

.menu_wrap ul li a {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0 0 3px #55555550;
}

.menu_wrap ul li a.on {
  background-color: #008a6c;
  color: #fff;
  font-weight: bold;
}

.menu_wrap ul li.right_go_btn {
  margin-left: auto;
}
.menu_wrap ul li.right_go_btn a {
  font-weight: 600;
  color: #008a6c;
  box-shadow: 0 0 3px rgba(0, 138, 108, 0.3);
}
.menu_wrap ul li.right_go_btn a i {
  margin-left: 0.25rem;
  color: #999999;
  rotate: -45deg;
}

/*table*/
table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  border: 1px solid #d3dbec;
  border-radius: 10px;
  table-layout: fixed;
  font-size: 0.85rem;
}

th, td {
  border: 0.5px solid #747373;
  padding: 10px;
  text-align: center;
  line-height: 150%;
}

th {
  background-color: #454d55;
  color: #fff;
}

tr {
  background-color: #fff;
}

tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.03);
}

td {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 0.5px solid #dee2e6;
}

td .btn_laber {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  width: calc(100% - 60px);
  float: left;
  padding-top: 5px;
  vertical-align: middle;
}

.td_left {
  text-align: left;
  padding-left: 20px;
}

tr.total {
  background-color: #D3DBEC80;
  font-weight: bold;
}

.total button {
  font-weight: bold;
}

.total_profit {
  color: #1580eb;
}

.pay {
  color: darkgreen;
}

.normal_box {
  border: 1px solid #999;
  background-color: #fff;
  padding: 4px;
  border-radius: 6px;
  width: 100%;
}

.im_box {
  background-color: #69b0f1;
  color: #fff;
  border: 1px solid #69b0f1;
}

.b_box {
  background-color: #707070;
  color: #fff;
  border: 1px solid #707070;
}

.g_box {
  background-color: #6bd8a7;
  color: #fff;
  border: 1px solid #6bd8a7;
}

.profit_td {
  font-size: 1.1rem;
  font-weight: bold;
}

.return_info {
  font-size: 1rem;
  display: flex;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

.return_info p {
  margin-bottom: 2px;
  font-size: 0.85rem;
}

.return_info p:last-child {
  margin-bottom: 0px;
}

.return_info p::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.return_info button {
  background-color: transparent;
  color: #4C85E8;
  text-decoration: underline 1px solid #4C85E8;
}

/*btn*/
.btn_wrap button {
  margin-right: 5px;
}

.btn_wrap button:last-child {
  margin-right: 0;
}

.btn {
  padding: 6px 15px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9rem;
}

.normal_btn {
  border: 1px solid #999;
  background-color: #fff;
  padding: 6px;
  border-radius: 6px;
  width: 100%;
}

.normal_btn a {
  width: 100%;
}

.btn:hover {
  box-shadow: 0 0 5px #00000030;
}

.round {
  border-radius: 30px;
}

.blue {
  background-color: #008a6c;
  border: 1px solid #008a6c;
  color: #fff;
  width: 140px;
  height: 30px;
}

.blue_all {
  background-color: #008a6c;
  color: #fff;
  border: 1px solid #008a6c;
}

/* .blue_all:hover{background-color: #0B44A590;} */
/* .blue:hover{background-color: #463aa099;} */
.sky {
  border: 1px solid #6EEAD2;
  background-color: #fff;
  color: #6EEAD2;
}

.sky:hover {
  background-color: #6EEAD2;
  color: #fff;
}

.green {
  border: 1px solid #04FFC9;
  background-color: #fff;
  color: #04FFC9;
}

.green:hover {
  background-color: #04FFC9;
  color: #fff;
}

.orange {
  border: 1px solid #FF6C3D;
  color: #FF6C3D;
  background-color: #fff;
}

.orange:hover {
  background-color: #FF6C3D;
  color: #fff;
}

.gray {
  border: 1px solid #98a3bb;
  background-color: #fff;
  color: #98a3bb;
}

.gray:hover {
  background-color: #98a3bb90;
  color: #fff;
}

.text_sky {
  color: #6EEAD2;
}

/*매체명 버튼*/
.name {
  width: 100%;
  background-color: #fff;
  border: 1px solid #6EEAD2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.name:hover {
  background-color: #6EEAD2;
  color: #fff;
}

.sdk:first-child {
  margin-bottom: 15px;
}

.sdk_btn {
  width: 320px;
  text-align: center;
  height: 55px;
  background-color: #69b0f1;
  font-size: 1rem;
  border-radius: 10px;
  color: #fff;
}

.sdk_btn_modoc {
  background-color: #6bd8a7;
}

/*Search_wrap*/
.search_wrap {
  width: 100%;
  height: auto;
}

.search_wrap li {
  display: flex;
  background-color: #F9FAFE;
  border-radius: 5px;
  border: 1px solid #D3DBEC;
  margin-right: 10px;
  overflow: hidden;
  height: 40px;
}

.search_wrap li:last-child {
  margin-right: 0;
  border: none;
}

.search_wrap li label {
  height: 40px;
  text-align: center;
  padding: 10px 25px;
  white-space: nowrap;
  background-color: #fff;
  border-right: 1px solid #d3dbec;
}

.search_wrap li input {
  height: 40px;
  padding: 10px;
  width: 200px;
}

.search_wrap li select {
  padding: 10px;
  margin-right: 10px;
  font-weight: bold;
  height: 100%;
}

/*tab_menu*/
.tab_menu .tab {
  width: 100%;
  margin-bottom: 20px;
}

.tab_menu .tab ul {
  width: 100%;
}

.tab_menu .tab li {
  flex-grow: 1;
  text-align: center;
}

.tab_menu .tab li a {
  background-color: #e6eeff;
  padding: 20px;
  border: 1px solid #d3dbec;
  font-size: 1.1rem;
}

.tab_menu .tab li a.on {
  background-color: #fff;
  border: 1px solid #4C85E8;
  color: #4C85E8;
  font-weight: bold;
}

.tab_menu .tabcon {
  display: none;
}

.tab_menu .tabcon.on {
  display: block;
}

/*navigation */
.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.pagination li {
  margin-right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #d3dbec;
}

.pagination li:hover {
  box-shadow: 0 0 5px #d3dbec90;
}

.pagination li:hover a {
  color: #d3dbec;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li.active {
  background-color: #0B44A5;
  font-weight: bold;
  box-shadow: 0 0 5px #d3dbec90;
  border: 1px solid #0B44A5;
}

.pagination li.active a {
  color: #fff;
}

.pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 30px;
  color: #98a3bb;
}

/************************************************************
********************개별페이지 각자지정**************************
*************************************************************/
/*home*/
#home main {
  height: 100%;
}

#home .contents_wrap {
  height: 100%;
}

#home .contents_wrap .contents {
  margin-bottom: 20px;
}

#main_income_wrap {
  text-align: center;
  display: flex;
  height: 300px;
}

#main_income_wrap ul {
  flex-direction: column;
  flex: 1;
}

#main_income_wrap .income_title {
  font-size: 1.5rem;
  font-weight: bold;
}

#main_income_wrap .income_title h4 {
  font-size: 1.6rem;
}

#main_income_wrap .income_date {
  color: #7b8497;
  margin-top: 10px;
}

#main_income_wrap .income_money {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: bold;
}

#main_income_wrap .blue_bg {
  flex-grow: 1;
  background-color: #f9fafe;
  height: 100%;
}

#main_income_wrap .all_income .income_money {
  color: #008a6c;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#main_income_wrap .line {
  width: 1px;
  height: 70%;
  background-color: #cdcdcd;
}

#main_notice {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#main_notice .list_title a {
  color: #555;
  line-height: 45px;
}

#main_notice .list_title a > i {
  margin-left: 4px;
}

#main_notice tr td:nth-child(3) {
  text-align: left;
}

#main_notice .notice_wrap .accordion {
  transition: none;
  border-left: 0.5px solid #dee2e6;
  border-bottom: 0.5px solid #dee2e6;
  justify-content: space-between;
}

#main_notice .notice_wrap .list:nth-of-type(even) .accordion {
  background-color: rgba(0, 0, 0, 0.03);
}

#main_notice .notice_wrap .accordion p {
  border: none;
}

#main_notice .notice_wrap .accordion:after {
  display: none;
}

/*프로필*/
#profile main {
  height: 100vh;
}

#profile main > .container {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  margin-bottom: 0;
  margin-right: 20px;
}

#profile main > .container.contents {
  overflow: scroll;
}

#profile main > .container:last-child {
  width: 50%;
  margin-right: 0;
}

#profile main > .container > .contents {
  height: 100%;
}

#profile main > .container > .contents:last-child {
  margin-bottom: 0;
}

.form_profile {
  width: 100%;
}

.form_profile li {
  display: flex;
  align-items: center;
  height: 40px;
  background-color: #F9FAFE;
  overflow: hidden;
  border: 1px solid #D3DBEC;
  margin-bottom: 15px;
  border-radius: 5px;
}

.form_profile li label {
  width: 170px;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
  border-right: 1px solid #d3dbec;
  color: #7b8497;
}

.form_profile li label i {
  margin-right: 5px;
  color: #D3DBEC;
}

.form_profile li input {
  padding: 10px;
}

.form_profile li select {
  margin: 10px;
  font-weight: 500;
}

.form_profile .title {
  margin-top: 25px;
  background-color: transparent;
  border: none;
  font-weight: bold;
  border-bottom: 2px solid #0B44A5;
  border-radius: 0;
  height: 30px;
  color: #0B44A5;
}

.form_profile .title:first-child {
  margin-top: 0px;
}

.form_profile .title i {
  margin-right: 5px;
}

.form_profile .file {
  background: transparent;
  border: none;
}

.form_profile .file label {
  width: 100px;
  border: 1px solid #0B44A5;
  color: #0B44A5;
  margin-left: 5px;
  height: 35px;
  padding: 8px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.form_profile .file label:hover {
  color: #fff;
}

.form_profile .file input {
  margin-right: 5px;
  width: 100px;
  height: 35px;
  padding: 0;
}

.form_profile .file input[type=file] {
  padding: 10px;
  flex-grow: 1;
  width: 200px;
  border-radius: 5px;
  background-color: #d3dbec;
  margin-right: 0;
  margin-left: 5px;
}

input::file-selector-button {
  display: none;
}

#frofile .btn {
  padding: 15px 20px;
}

.profile_end_btn {
  width: 150px;
  height: 35px;
  float: right;
}

.profile_end_btn input {
  height: 100%;
}

/*매체관리*/
/*통계관리*/
.chart_wrap {
  width: 100%;
  height: 450px;
  background-color: #F9FAFE;
  border: 1px solid #D3DBEC;
}

.list_sub_title {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}

.list_sub_title span {
  display: block;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  margin-top: 6px;
  margin-right: 5px;
}

/*정산관리*/
/*고객센터*/
.qna {
  font-size: 1.2rem;
  font-weight: bold;
}

.qna ul {
  display: flex;
}

.qna ul li {
  margin-right: 15px;
}

.qna li:nth-child(3) {
  width: 300px;
  flex-grow: 1;
  margin-right: 0;
  font-weight: 400;
}

.qna .line {
  width: 100%;
  margin: 15px auto;
  background-color: #cdcdcd;
  height: 1px;
}

/*공지사항*/
.notice_table {
  font-size: 1.1rem;
}

.notice_table td span {
  display: inline-block;
  width: 80px;
  margin-left: 5px;
  font-weight: bold;
}

.notice_wrap .notice_contents {
  display: none;
}

.notice_wrap .notice_title:active .notice_contents {
  display: block;
}

/*맵*/
#map_popup {
  width: auto;
  min-width: 300px;
  padding: 15px;
  max-width: 350px;
  height: auto;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 10px #00000030;
  position: relative;
  z-index: 30;
}

#map_popup .inner {
  width: 100%;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

#map_popup .inner span {
  display: block;
}

#map_popup .inner a {
  height: 25px;
  padding: 0px 10px;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  line-height: 25px;
  font-weight: bold;
}

/*연동가이드*/
.support_list_wrap {
  width: 100%;
  height: auto;
}

.support_list_wrap .accordion {
  display: flex;
  justify-content: space-between;
}

.support_list_wrap .accordion {
  background-color: #FFF;
  cursor: pointer;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
  text-align: left;
  padding: 10px;
}

.support_list_wrap .accordion > p {
  float: left;
  margin-left: 10px;
  width: 76%;
}

.support_list_wrap .accordion.active {
  color: #0B44A5;
}

.support_list_wrap .accordion:after {
  background-image: url("../images/icon/arrow.png");
  transition: 0.3s;
  background-size: 24px 24px;
  display: inline-block;
  width: 18px;
  height: 24px;
  content: "";
}

.support_list_wrap .accordion.active:after {
  transform: rotate(90deg);
  content: "";
  transition: 0.3s;
}

.support_list_wrap .panel {
  padding: 0 18px;
  background-color: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-top: 1px solid #F0F0F0;
  color: #666666;
}

.support_list_wrap .panel p {
  padding: 10px 0;
}

/*공지사항*/
.notice_wrap {
  width: 100%;
  height: auto;
  font-size: 0.85rem;
}

.notice_wrap li.table_header {
  background-color: #454d55;
  display: flex;
  justify-content: left;
  width: 100%;
  cursor: pointer;
  width: 100%;
  border: none;
  font-weight: bold;
  line-height: 150%;
}

.notice_wrap li.table_header p {
  border: 0.5px solid #747373;
  padding: 10px;
  color: #fff;
}

.notice_wrap li.table_header .title {
  text-align: center;
}

.notice_wrap li .date {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
}

/* .notice_wrap li .type{width:  150px; flex-shrink: 0; text-align: center;} */
.notice_wrap li .title {
  width: 300px;
  flex-grow: 1;
  text-align: left;
}

.notice_wrap .accordion {
  background-color: #FFF;
  cursor: pointer;
  width: 100%;
  border: none;
  transition: 0.5s;
  text-align: left;
  display: flex;
  border-right: 0.5px solid #dee2e6;
  line-height: 150%;
}

.notice_wrap .accordion p {
  border-left: 0.5px solid #dee2e6;
  padding: 10px;
}

.notice_wrap .accordion .title {
  padding-left: 20px;
}

.notice_wrap .accordion.active {
  color: #008a6c;
  font-weight: bold;
}

.notice_wrap .accordion:after {
  background-image: url("../images/icon/arrow.png");
  transition: 0.3s;
  background-size: 24px 24px;
  margin-top: 10px;
  margin-right: 20px;
  display: inline-block;
  width: 18px;
  height: 24px;
  content: "";
}

.notice_wrap .accordion.active:after {
  transform: rotate(90deg);
  content: "";
  transition: 0.3s;
}

.notice_wrap .panel {
  padding: 0 45px;
  background-color: rgba(0, 0, 0, 0.03);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-top: 1px solid #dee2e6;
  color: #666666;
  border-left: 0.5px solid #dee2e6;
  border-right: 0.5px solid #dee2e6;
}

.notice_wrap .panel p {
  padding: 10px 0;
}

.notice_wrap .panel p:first-child {
  margin-top: 10px;
}

.notice_wrap .panel p:last-child {
  margin-bottom: 10px;
}

/* 모케이션 - 매체홍보하기 */
#media_publicity {
  /* 2차 */
}
#media_publicity .top_ment {
  padding-bottom: 1rem;
  color: #777;
  line-height: 1.5;
}
#media_publicity .top_ment p:nth-child(1) {
  color: #008a6c;
  font-size: 1rem;
  font-weight: 600;
}
#media_publicity .list_title p {
  color: #008a6c;
  font-weight: 600;
}
#media_publicity .file_wrap {
  gap: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#media_publicity .file_wrap input[type=file] {
  grid-column: 1/span 2;
  border: 1px solid #dadada;
  background-color: #fff;
  height: 45px;
  line-height: 45px;
  padding-left: 1rem;
  color: #777;
  position: relative;
}
#media_publicity .file_wrap input[type=file]::file-selector-button {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 0.4rem 0.5rem;
}
#media_publicity .file_wrap button, #media_publicity .file_wrap a {
  border-radius: 0.25rem;
  border: none;
  color: white;
  background-color: #0B44A5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
#media_publicity .file_wrap a {
  color: white !important;
}
#media_publicity .normal_btn {
  padding: 0.5rem;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadada;
  color: #dadada;
  font-weight: 600;
}
#media_publicity .normal_btn.change {
  background-color: #ff4356;
  color: white;
  border-color: #ff4356;
}
#media_publicity .btn_wrap {
  display: flex;
  gap: 1rem;
}
#media_publicity .btn_wrap li a {
  display: block;
  padding: 1rem 2rem;
  min-width: 150px;
  text-align: center;
  border: 1px solid #cdcdcd;
  border-radius: 0.5rem;
  font-weight: 600;
}
#media_publicity .btn_wrap li.on a {
  background-color: #008a6c;
  color: white;
  border-color: #008a6c;
}
#media_publicity .divide_section {
  display: flex;
  padding-top: 2rem;
  gap: 1.5rem;
  height: calc(100vh - 18.2rem);
  margin-bottom: 0;
}
#media_publicity .divide_section section {
  flex: 1;
  border: 1px solid #cdcdcd;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
#media_publicity .divide_section section .list_title {
  border: none;
}
#media_publicity .divide_section section .btn_wrap {
  margin: 0;
  padding: 1rem;
  background-color: #f7f9ff;
  display: flex;
  justify-content: end;
  position: absolute;
  width: 100%;
  bottom: 0;
}
#media_publicity .divide_section section .btn_wrap button {
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  background-color: #008a6c;
  color: white;
}
#media_publicity .divide_section .content_wrap {
  padding: 1rem;
}
#media_publicity .divide_section .content_wrap textarea {
  width: 100%;
  height: calc(100vh - 30rem);
  padding: 1rem;
  resize: none;
  font-size: 1rem;
  border: 1px solid #999;
}
#media_publicity .divide_section .guide_sec {
  grid-row: 1/span 2;
  position: relative;
}
#media_publicity .divide_section .guide_sec .slide_wrap {
  overflow: hidden;
  padding: 1rem 0;
  height: 95%;
}
#media_publicity .divide_section .guide_sec .slide_wrap ul {
  display: flex;
  position: relative;
  height: 90%;
}
#media_publicity .divide_section .guide_sec .slide_wrap li {
  width: 80%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
#media_publicity .divide_section .guide_sec .slide_wrap li img {
  margin: 0;
  height: 90%;
  width: auto;
}
#media_publicity .divide_section .icon_sec ul {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
#media_publicity .divide_section .icon_sec ul li {
  width: 5rem;
  height: 5rem;
  background-color: #efefef;
}
#media_publicity .divide_section .icon_sec ul img {
  width: 100%;
  display: block;
}
#media_publicity .modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 500px;
  background-color: #fff;
  border: 1px solid #999;
  padding: 1rem;
}
#media_publicity .modal h5 {
  height: 3rem;
  font-size: 1rem;
  line-height: 3rem;
}
#media_publicity .modal .btn_wrap {
  margin: 0;
  padding: 1rem;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
  justify-content: end;
  width: 100%;
}
#media_publicity .modal .btn_wrap button {
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  background-color: #008a6c;
  color: white;
}
#media_publicity .modal .btn_wrap button:nth-child(1) {
  background-color: #adadad;
}

/************************************************************
****************************팝업******************************
*************************************************************/
#popup h3 {
  font-weight: 400;
  color: #707070;
  margin-left: 0;
}

/*팝업 input*/
.form_wrap {
  width: 100%;
  font-size: 1.2rem;
}

.form_wrap li {
  display: flex;
  line-height: 40px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.form_wrap li input {
  font-size: 1rem;
}

.form_wrap li label {
  height: 100%;
  width: 150px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 2px;
}

.form_wrap li .radio_none label {
  font-weight: normal;
  color: #707070;
}

.form_wrap li select {
  font-size: 1rem;
}

.form_wrap li span {
  width: 50px;
  flex-grow: 1;
  background-color: #f9fafe;
  flex-grow: 1;
  border: 1px solid #d3dbec;
  border-radius: 5px;
  padding: 0px 10px;
  margin-left: 5px;
}

.form_wrap li .radio {
  font-weight: 400;
  margin-left: 5px;
}

.form_btn_wrap input {
  margin-right: 10px;
  height: 40px;
  width: 200px;
}

.form_btn_wrap input:last-child {
  margin-right: 0px;
}

/*매채등록하기 팝업*/
.floating_popup {
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  margin-left: 2px;
}

.floating_popup .floating_btn {
  line-height: 17px;
  margin-left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  border: 2px solid #fff;
  color: #008a6c;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  padding: 0;
}

.floating_popup .floating_btn:hover {
  box-shadow: 0 0 10px #0B44A550;
  background-color: #008a6c;
  color: #fff;
}

.floating_popup .floating_con {
  display: none;
  position: absolute;
  top: -10px;
  left: 35px;
  width: 500px;
  line-height: 150%;
  cursor: pointer;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px #0B44A550;
  color: #222;
}

.floating_popup .floating_con ul {
  margin-bottom: 20px;
  margin-left: 0;
}

.floating_popup .floating_con ul:last-child {
  margin-bottom: 0px;
}

.floating_popup .floating_con ul li {
  line-height: 150%;
  margin-bottom: 0;
  color: #4d4d4d;
  display: inline-block;
}

.floating_popup .floating_con ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #707070;
  vertical-align: middle;
  margin-bottom: 3px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}

.floating_popup .floating_con ul li:first-child {
  margin-bottom: 5px;
}

.floating_popup .floating_con ul li:first-child span {
  display: inline;
  width: 110px;
  margin-left: 0;
  flex-grow: 0;
  font-weight: bold;
  color: #222;
}

.floating_popup .floating_con ul li:first-child:before {
  display: none;
}

li.type {
  position: relative;
}

li.type .floating_popup {
  position: absolute;
  left: 60px;
  top: 8px;
}

.qp {
  position: relative;
}

.qp .floating_popup {
  /* position: absolute; right: 100px; top: 8px; */
  display: inline-block;
  position: relative;
}

.qp .floating_popup .floating_con {
  top: 40px;
  left: -140px;
  width: 250px;
}

.floating_popup:hover .floating_con {
  display: block;
}

/************************************************************
*************************login,joinv*************************
*************************************************************/
/* 보관
.login #main .container{width: 1000px; height: 80vh;  border-radius: 20px; position: relative;}
.login #main .container .login_deb{font-size: 1.1rem; width: 50%; padding: 70px; line-height: 150%; height: 100%;}
.login #main .container .login_deb>h1{margin-bottom: 20px;}
.login #main .container .login_deb button{background-color: transparent; width: 100px; border: 1px solid #000; padding: 5px; margin-top: 20px; font-size: 18px; font-weight: bold; }
.login #main .container div>img{position: absolute; bottom: -15px; left: -75px;}
.login #main .container .login_main{width: 50%; margin:50px;}
.login #main .container .login_main .login_wrap{ background-color: #ffffff90; border-radius: 20px; flex-direction: column; margin-top: 20px; height: 650px; }
.login #main .container .login_main .login_wrap h1 {text-align: center;height: 240px; padding: 80px;}
.login #main .container .login_main .login_wrap h1 img{width: 80%;}
.login #main .container .login_main .login_wrap form{width: 85%; height: auto;}
.login #main .container .login_main .login_wrap form div{display: flex; margin-bottom: 15px; line-height: 45px; overflow: hidden; }
.login #main .container .login_main .login_wrap form div span{width: 50px; font-size: 1.2rem; color: #98a3bb; display: inline-block; height: 100%; border-right: 1px solid #d3dbec; text-align: center;}
.login #main .container .login_main .login_wrap form div input{flex-grow: 1; background-color: transparent;height: 45px; padding: 15px;}
.login #main .container .login_main .login_wrap form .login_btn{border: none; background-color: transparent; margin-bottom: 0;}
.login #main .container .login_main .login_wrap form .login_btn input{padding: 0; margin-right: 5px; height: 50px; line-height: 55px;  background-color: $colorMain2; color: #fff; font-size: 20px; font-weight: bold; letter-spacing: 3px; border-radius: 5px;}
.login #main .container .login_main .login_wrap form .login_btn input:last-child{margin-right: 0; background-color: #fff; border: 1px solid $colorMain2; color: $colorMain2;}
.login #main .container .login_main .login_wrap form .select input{background-color: #eeeeee; margin-right:8px; border-radius:10px; font-size:16px; border:1px solid #cdcdcd; padding:0; font-weight:500;}
.login #main .container .login_main .login_wrap form .select input:last-child{margin-right:0;}
.login #main .container .login_main .login_wrap form .select input.activ{color:#ffffff;border-color: #8581b8;background-color: #8581b8;}
.login #main .container .login_main .btn_wrap{width: 85%; margin-bottom: 20px; margin-top: 10px;}
.login #main .container .login_main .btn_wrap ul{width: 100%; justify-content: end;}
.login #main .container .login_main .btn_wrap li a{padding: 5px 10px; text-align: center; margin-left: 10px;}
.login #main .container .login_main .btn_wrap li a:hover{background-color: #e6eeff;}
.login #main .container .login_main .btn_wrap .btn_join a{margin-left: 0; padding: 10px; margin-top: 15px; font-size: 18px; margin-bottom: 50px;}
.login #main .container .login_main .btn_wrap div:last-child .btn{width: 130px; float: right;}
.login #main .container .login_main .btn_wrap2{width: 95%;}


#join h2{margin-top:30px; margin-bottom:25px; font-size: 1.7rem;}
#join .join_wrap select{background-color:#eee; border:1px solid #cdcdcd; border-radius:5px; padding-left:10px;}
#join .join_wrap li{height: auto; display: flex; align-items: center; margin-bottom: 20px;}
#join .join_wrap label{font-weight: bold; font-size: 1.1rem; width: 170px;}
#join .join_wrap input, #join .join_wrap select{height: 40px; padding: 5px;}
#join .join_wrap .email input{margin-right: 5px;}
#join .join_wrap li:nth-last-child(2){background-color: #f4f4f4; padding: 5px; padding-top: 0px; padding-left: 10px; border-radius: 5px; margin-top: 20px;}
#join .join_wrap li:nth-last-child(2) input{margin: 0; margin-bottom: 12px; }
#join .join_wrap li:nth-last-child(2) label{font-weight: 400;  width: 350px;  margin-left: 5px; font-size: 0.8rem;}
#join .join_wrap li:nth-last-child(2) label a{text-decoration: underline; padding: 3px 0; color: #0B44A5; font-size: .9rem;}
#join .join_wrap input.btn{height: 50px; color: #fff; padding: 0; font-size: 18px;}
*/