@charset "utf-8";

body {
  height: 100%;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  background-color: #f7f7f7;
}

/* ******************************************** */
/* ==================* SCSS *================== */
/* ******************************************** */
.flex {
  display: flex !important;
}

/* 줄넘김 처리 */
.fw-w {
  flex-wrap: wrap !important;
}

.fw-nw {
  flex-wrap: nowrap !important;
}

.fw-wr {
  flex-wrap: wrap-reverse !important;
}

/* 배치 방향 설정 */
.fd-row {
  flex-direction: row !important;
}

.fd-col {
  flex-direction: column !important;
}

.fd-rr {
  flex-direction: row-reverse !important;
}

.fd-cr {
  flex-direction: column-reverse !important;
}

/* 메인축 방항 정렬 */
.jc-st {
  justify-content: flex-start !important;
}

.jc-end {
  justify-content: flex-end !important;
}

.jc-sb {
  justify-content: space-between !important;
}

.jc-sa {
  justify-content: space-around !important;
}

.jc-ct {
  justify-content: center !important;
}

.jc-se {
  justify-content: space-evenly !important;
}

/* 수직축 방향 정렬 */
.al-stch {
  align-items: stretch !important;
}

.al-st {
  align-items: flex-start !important;
}

.al-bs {
  align-items: baseline !important;
}

.al-ct {
  align-items: center !important;
}

.al-end {
  align-items: flex-end !important;
}

.al-bs {
  align-items: baseline !important;
}

/* 글씨 기준으로 정렬 */

/* MARGIN */
.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

/* PADDING */
.pd-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.w-100 {
  width: 100% !important;
}

.w-90 {
  width: 90% !important;
}

.w-80 {
  width: 80% !important;
}

.w-70 {
  width: 70% !important;
}

.w-60 {
  width: 60% !important;
}

.w-50 {
  width: 50% !important;
}

.w-40 {
  width: 40% !important;
}

.w-30 {
  width: 30% !important;
}

.w-20 {
  width: 20% !important;
}

.w-10 {
  width: 10% !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

/* ******************************************** */
/* ===============* COMPONENT *=============== */
/* ******************************************** */
/* INPUT */
.input-comm>label {
  min-width: 80px;
  display: inline-block;
  padding-left: 8px;
  position: relative;
  font-weight: 500;
}

.input-comm label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #444;
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 0;
}

.input-comm input,
.input-comm select {
  height: 32px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0 10px;
}

.input-comm input[type="date"],
.input-comm select {
  width: 180px;
}

.input-comm input.input-short {
  width: 120px;
}

.setting-box .input-comm input,
.setting-box .input-comm select {
  border: 0;
}

.input-comm input::placeholder {
  color: #adadad;
}

.input-comm select {
  position: relative;
}

.input-comm.date span {
  margin: 0 8px;
  color: #adadad;
}

.input-comm.date button {
  display: inline-block;
}

.brand-tag {
  padding-left: 112px;
  margin-top: 8px;
  display: flex;
}

.brand-tag li {
  margin-right: 24px;
  color: #ff2f61;
  font-weight: 500;
}

.textarea-wrap {
  width: 100%;
  margin-bottom: 5rem;
}

.textarea-wrap dl dt {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.textarea-wrap dl dd {
  width: 100%;
  min-height: 110px;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0;
  padding: 1.25rem;
  display: flex;
}

.user-write {
  background-color: #f5f5f5;
}

.ai-write {
  background-color: #fff2f5;
}

.textarea-wrap dl dd textarea {
  resize: none;
  overflow-y: hidden;
  width: 100%;
  min-height: 20px;
  border: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0;
  background: none;
}

.textarea-wrap dl dd textarea:focus {
  border: 0;
  outline: 0;
}

.textarea-wrap dl dd textarea:focus-visible {
  border: 0;
  outline: 0;
}

.textarea-wrap dl dd button.del-data {
  width: 20px;
  height: 20px;
  background: url("../images/btn-del-data.png") no-repeat center center;
  margin-top: 8px;
}

.input-comm .radio {
  display: inline-block;
  height: 32px;
}

.input-comm .radio input[type="radio"] {
  margin: 0;
  vertical-align: middle;
  accent-color: #ff2f61;
  height: auto;
  cursor: pointer;
}

.input-comm .radio label {
  width: auto;
  padding-left: 0;
  cursor: pointer;
}

.input-comm .radio label::before {
  display: none;
}

/* PLACEHOLDER */
input::placeholder {
  color: #adadad;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

textarea::placeholder {
  color: #adadad;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.textarea-wrap.div2 {
  display: flex;
  justify-content: space-between;
}

.textarea-wrap.div2 dl {
  width: 49%;
}

.grey-border {
  border: 1px solid #ddd;
}

/* BUTTON */
button[class*="btn-"] {
  display: block;
  width: 190px;
  height: 38px;
  border-radius: 10px;
  margin: 0 auto;
}

button.short {
  width: 90px;
}

.btn-prim {
  background-color: #ff2f61;
  color: #fff;
}

.btn-prim-disabled {
  cursor: default;
  background-color: #cccccc;
}

.btn-prim:hover {
  background-color: #ff4d77;
}

.btn-second {
  background-color: #ffd9e2;
  color: #ff2f61;
  font-weight: 600;
}

.btn-ghost {
  border: 1px solid #ff2f61;
  color: #ff2f61;
}

.btn-text {
  color: #ff2f61;
}

/* HEADER */
header {
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  display: block;
  background-color: #fff;
  transition: transform 0.5s 0.1s ease;
  backface-visibility: hidden;
  transform: translate3d(0px, 0px, 0px);
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

header.hide-nav-bar {
  -webkit-transform: translate(0, -110%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -110%);
  transform: translate(0, -110%);
}

header.hide-nav-bar .sub-menu-box {
  display: none;
}

header .container {
  height: 64px;
  padding: 0 24px 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container .logo {
  margin-bottom: 3px;
}

nav>ul {
  display: flex;
  justify-content: end;
}

nav>ul>li {
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
}

nav>ul>li>a {
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  text-align: center;
}

nav>ul>li>a:hover {
  color: #ff2f61;
}

nav>ul>li.active>a {
  font-weight: 700;
  color: #ff2f61;
}

header button.logout i {
  margin-right: 0.5rem;
}

header button.logout span {
  font-size: 1rem;
  color: #888;
  font-weight: 700;
}

nav .sub-menu-wrap {
  position: relative;
  cursor: pointer;
}

nav .sub-menu-wrap:hover .sub-menu {
  height: auto;
  padding: 18px;
  color: #2a2a2a;
}

nav .sub-menu-box {
  width: 160px;
  height: 0;
  padding: 0;
  color: #fff;
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 10px;
}

nav .sub-menu {
  height: 0;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: ease 0.2s 0s;
}

nav .sub-menu li {
  width: 100%;
}

nav .sub-menu li a {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 1.125rem;
  letter-spacing: -0.5px;
}

nav .sub-menu li a:hover {
  color: #ff2f61;
}

/* FOOTER */
footer {
  width: 100%;
  height: 48px;
  background-color: #fff;
  border-top: 1px solid #e9e9e9;
  box-sizing: border-box;
  color: #adadad;
  font-size: 0.875rem;
}

/* ********************************************** */
/* =================* CONTENTS *================= */
/* ********************************************** */
#cont-wrapper {}

#cont-wrapper .tit-wrap {
  width: 86%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 60px;
  position: relative;
}

#cont-wrapper .tit-wrap dl dt {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}

#cont-wrapper .tit-wrap img {
  position: absolute;
  bottom: -26px;
  right: 0;
  z-index: 1;
}

.cont-box-wrap.typeA {
  width: 100%;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background-color: #fff;
  padding: 64px 0 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.setting-box {
  width: 86%;
  max-width: 1000px;
  margin: 0 auto 5rem;
}

.setting-box .input-wrap {
  width: calc(100% - 64px);
  padding: 1.5rem 2rem;
  background-color: #f3f3f3;
  border-radius: 20px;
  margin-bottom: 16px;
}

.setting-box .input-wrap button {
  height: 32px;
}

.setting-box .input-wrap select {
  margin-right: 4px;
}

.cont-box {
  width: 86%;
  max-width: 1000px;
  margin: 0 auto;
}

/* .cont-box .chart-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: stretch; } */

.cont-box .line-box {
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 2rem;
}

.cont-box .chart-wrap .line-box {
  width: 49%;
  height: auto;
  margin-bottom: 2%;
}

.cont-box .chart-wrap .line-box p.chart-tit {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.cont-box .toxic-clauses {
  margin-left: 18px;
  margin-bottom: 10px;
  color: gray;
  font-size: 0.8rem;
}

.breadcrumb {
  color: #888;
  display: flex;
  align-items: center;
  margin: 1rem auto 0.5rem;
}

.breadcrumb i.route-icon {
  display: inline-block;
  width: 5px;
  height: 9px;
  background: url("../images/route-icon.png") no-repeat center center;
  margin: 0 8px;
}

.breadcrumb span {
  color: #ff2f61;
  font-weight: 600;
}

.common-form {
  width: 100%;
  margin-bottom: 3rem;
}

.common-form>dl>dt {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lounge-wrap {
  width: 40%;
}

.lounge-wrap>li {
  width: calc(49% - 3rem);
  height: calc(31% - 2.5rem);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
}

.lounge-wrap>li.black {
  background-color: #858585;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.blue {
  background-color: #73a0e4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.jm {
  background-color: #e2be70;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.sage {
  background-color: #81bd80;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.yp {
  background-color: #f2976d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.clubjs {
  background-color: #8a7ed1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.black:hover,
.lounge-wrap>li.blue:hover,
.lounge-wrap>li.jm:hover,
.lounge-wrap>li.sage:hover,
.lounge-wrap>li.yp:hover,
.lounge-wrap>li.clubjs:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-wrap>li.black.inactive,
.lounge-wrap>li.blue.inactive,
.lounge-wrap>li.jm.inactive,
.lounge-wrap>li.sage.inactive,
.lounge-wrap>li.yp.inactive,
.lounge-wrap>li.clubjs.inactive {
  opacity: 0.5;
}

/* 비활성화 상태에서의 호버 스타일 */
.lounge-wrap>li.black.inactive:hover,
.lounge-wrap>li.blue.inactive:hover,
.lounge-wrap>li.jm.inactive:hover,
.lounge-wrap>li.sage.inactive:hover,
.lounge-wrap>li.yp.inactive:hover,
.lounge-wrap>li.clubjs.inactive:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lounge-wrap>li>dl {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.lounge-wrap>li>dl>dt {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.lounge-wrap>li>dl>dd {
  text-align: right;
}

.lounge-wrap>li>dl>dd>strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.lounge-chart {
  width: 59%;
}

.summary-wrap .line-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.summary-wrap .chart-custom {
  width: 30%;
}

.summary-wrap .textarea-wrap {
  width: 65%;
}

.common-table {
  width: 100%;
}

.common-table tr th {
  background-color: #f5f5f5;
  padding: 0.75rem 0;
  font-weight: 600;
}

.common-table tr td {
  padding: 1rem 0;
  vertical-align: middle;
  border-bottom: 1px dotted #ddd;
}

.common-table tr td:nth-child(1) {
  text-align: center;
}

.common-table tr td:nth-child(3) {
  padding-left: 1rem;
}

.common-table tbody tr:last-child {
  border-bottom: 1px solid #ddd;
}

.typeB {
  margin-top: -21px;
}

.typeB .input-wrap {
  width: calc(100% - 64px);
  padding: 1.5rem 2rem;
  border-radius: 30px;
  margin-bottom: 32px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.typeB .input-wrap input,
.typeB .input-wrap select {
  background-color: #f5f5f5;
  border: 0;
}

.typeB .input-wrap .box-tit {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.sub-textarea-wrap textarea {
  resize: none;
  overflow-y: hidden;
  width: 100%;
  min-height: 110px;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0;
  padding: 1.25rem;
  border: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
}

.section-01 {
  width: 65%;
  height: calc(100vh - 112px);
  overflow-y: scroll;
  margin-top: 64px;
}

#cont-wrapper .section-01 .tit-wrap {
  padding-top: 66px;
}

.section-02 {
  width: 35%;
  height: calc(100vh - 192px);
  background-color: #fff;
  overflow-y: auto;
  padding: 40px;
  margin-top: 64px;
}

#cont-wrapper .section-02 .tit-wrap {
  padding-top: 0;
  position: relative;
}

.section-02 .tit-wrap p {
  font-size: 1.25rem;
  font-weight: 700;
}

.section-02 .tit-wrap .btn-close {
  width: 28px;
  height: 28px;
  background: url("../images/btn-close.png") no-repeat center center;
  position: absolute;
  top: -1rem;
  right: -1rem;
}

.cont-box-wrap.briefing .input-comm {
  position: relative;
}

.cont-box-wrap.briefing .branch-wrap {
  width: 85%;
  height: 34px;
  overflow: hidden;
}

.cont-box-wrap.briefing .branch-wrap li {
  margin-bottom: 4px;
}

.cont-box-wrap.briefing .branch-wrap li button {
  height: 30px;
  padding: 0 10px;
  margin-right: 4px;
  color: #888;
  border: 1px solid #b1b1b1;
  box-sizing: border-box;
  border-radius: 16px;
}

.cont-box-wrap.briefing .branch-wrap li button.active {
  background-color: #444;
  color: #fff;
  border: 1px solid #444;
}

.cont-box-wrap.briefing button#viewMore {
  color: #ff2f61;
  position: absolute;
  right: 0;
}

.cont-box-wrap.briefing .branch-wrap.show-all {
  height: auto;
}

.intro-wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.intro-wrap header {
  background: none;
  position: static;
  box-shadow: 0 0 0 0;
}

.intro-wrap .intro-btn-wrap button.join {
  color: #ff2f61;
  margin-right: 1rem;
}

.intro-wrap .intro-btn-wrap button.login {
  width: 140px;
  height: 32px;
  background-color: #ff2f61;
  color: #fff;
  border-radius: 8px;
}

.intro-wrap #cont-wrapper {
  height: calc(100vh - 162px);
  padding-top: 50px;
}

.intro-wrap #cont-wrapper div {
  width: auto;
  position: relative;
}

.intro-wrap #cont-wrapper div image {
  position: absolute;
  top: 0;
  left: 0;
}

.intro-wrap #cont-wrapper div p {
  font-size: 40px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -1px;
}

.intro-wrap #cont-wrapper div p strong {
  font-weight: 700;
}

.intro-wrap footer {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 로그인 - INTRO */
.login-box-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 380px;
  height: auto;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 4.8rem 3.5rem;
}

.login-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.info-wrap {
  width: 90%;
  margin: 0 auto;
}

.layout-wrapper.login .id-wrap {
  margin-bottom: 1.25rem;
}

.layout-wrapper.login .pw-wrap {
  margin-bottom: 3rem;
}

.info-wrap label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.info-wrap input {
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 0.5rem;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 7px;
  box-sizing: border-box;
}

.info-wrap input:focus {
  border: 1px solid #ff2f61;
  outline: 0;
}

.login-box button {
  height: auto;
  text-align: center;
  margin: 0 auto;
}

.login-box button.login {
  width: 90%;
  height: 40px;
  margin-bottom: 3rem;
}

.layout-wrapper.login .login-box button.join {
  color: #ff2f61;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-box button.findpw {
  color: #888;
}

.mui-grid-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mui-grid-item:hover {
  transform: scale(1.03);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1131px) {
  header .container {
    padding: 0 0 0 32px;
  }
}

.spinner-wrap {
  display: flex;
  justify-content: center;
  height: 65px;
}

.spinner {
  width: 12px;
  height: 12px;
  animation: spinner-o824ag 1s infinite linear;
}

.spinner div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff2f61;
  border-radius: 50%;
  animation: spinner-vse6n7 1.25s infinite ease;
}

.spinner div:nth-child(1) {
  --rotation: 90;
}

.spinner div:nth-child(2) {
  --rotation: 180;
}

.spinner div:nth-child(3) {
  --rotation: 270;
}

.spinner div:nth-child(4) {
  --rotation: 360;
}

@keyframes spinner-vse6n7 {

  0%,
  100% {
    transform: rotate(calc(var(--rotation) * 1deg)) translateY(0);
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg)) translateY(300%);
  }
}

@keyframes spinner-o824ag {
  to {
    transform: rotate(360deg);
  }
}

/* 토글 */
.toggle-wrap {
  display: flex;
}

.toggle-wrap div {
  margin-right: 16px;
}

.form-group.lng-option {
  margin-top: 8px;
}

.form-group.lng-option h4 {
  font-size: 1rem;
}

.toggle-label {
  position: relative;
  display: block;
  width: 180px;
  height: 30px;
  padding: 4px;
  border-radius: 19px;
  margin-bottom: 0;
  cursor: pointer;
  background-color: #ededed;
  margin-bottom: 0.5rem;
}

.toggle-label input[type="checkbox"] {
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 254px;
  height: 30px;
}

.toggle-label input[type="checkbox"]+.back {
  position: absolute;
  width: 180px;
  height: 30px;
  transition: background 150ms linear;
}

.toggle-label input[type="checkbox"]+.back .toggle {
  display: block;
  position: absolute;
  content: " ";
  background: #fff;
  width: 50%;
  height: 100%;
  transition: margin 200ms ease-out;
  border-radius: 24px;
  background-color: #fff;
}

.toggle-label input[type="checkbox"]:checked+.back .toggle {
  margin-left: 90px;
}

.toggle-label .label {
  display: block;
  position: absolute;
  width: 50%;
  color: #ff2f61;
  line-height: 30px;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
}

.toggle-label .label b {
  font-size: 0.75rem;
  font-weight: 400;
}

.toggle-label .label.on {
  left: 0px;
}

.toggle-label .label.off {
  right: 0px;
}

.toggle-label input[type="checkbox"]:checked+.back .label.on {
  color: #999;
}

.toggle-label input[type="checkbox"]+.back .label.off {
  color: #999;
}

.toggle-label input[type="checkbox"]:checked+.back .label.off {
  color: #ff2f61;
}

/* 키워드 랭킹 표시 */
.search-wrapper {
  width: 300px;
  height: 40px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  right: 20px;
  border-radius: 20px;
  cursor: pointer;
  background-color: #fff;
  z-index: 700;
}

.search-wrapper.open-all {
  height: 240px;
}

.search-container {
  /* width: 300px; */
  padding: 0 24px 0 48px;
  position: relative;
  overflow: hidden;
}

.search-rolling {
  height: 40px;
  overflow: hidden;
  position: relative;
}

.search-container p {
  position: absolute;
  top: 15%;
  left: 16px;
}

#search-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  width: 100%;
}

#search-list li {
  height: 40px;
  line-height: 45px;
  text-align: left;
  background-color: white;
  position: relative;
}

li strong {
  margin-right: 16px;
}

li i.rank-icon {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

li i.rank-icon.rise {
  background: url("../images/icon-rise.png") no-repeat center center;
}

li i.rank-icon.drop {
  background: url("../images/icon-drop.png") no-repeat center center;
}

li i.rank-icon.maintain {
  background: url("../images/icon-maintain.png") no-repeat center center;
}

.rank-list-all {
  padding: 0;
  font-size: 0.875rem;
  margin-top: 0px;
}

.rank-list-all li {
  padding: 0 24px;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
}

.rank-list-all li i.rank-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.rank-list-all li:last-child {
  height: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: default;
  line-height: 1;
}

.rank-list-all li:last-child img {
  margin-right: 4px;
}

.rank-list-all li p {
  text-align: center;
  font-size: 0.8125rem;
  color: #888;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 10px;
}

.rank-list-all li img {
  vertical-align: middle;
  /* 이미지와 텍스트를 중앙 정렬 */
}

span.new-rank {
  font-size: 14px;
  margin-left: 10px;
  font-weight: bold;
  color: #f29100;
}

.select-wrapper {
  position: absolute;
  right: 325px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 702;
}

.select_wrap {
  position: relative;
  user-select: none;
}

.select_wrap .default_option {
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.select_wrap .default_option li {
  width: 160px;
  height: 40px;
  line-height: 14px;
  padding-left: 16px;
  list-style-type: none;
}

.select_wrap .default_option:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 11px;
  background: url("../images/naver-select-arr.png") no-repeat center center;
}

.select_wrap .select_ul {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  display: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.select_wrap .select_ul::-webkit-scrollbar {
  width: 10px;
}

.select_wrap .select_ul::-webkit-scrollbar-thumb {
  height: 30%;
  background: #ddd;
  padding: 10px 0;
  border-radius: 10px;
  border: 3px solid #fff;
}

.select_wrap .select_ul::-webkit-scrollbar-track {
  background: #fff;
  border: 2px solid #fff;
}

.select_wrap .select_ul li {
  cursor: pointer;
  font-size: 0.875rem;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid #ddd;
}

.select_wrap .select_ul li:last-child {
  border-bottom: 0;
}

.select_wrap .select_ul li:hover {
  background-color: #efefef;
}

.select_wrap .option {
  display: flex;
  align-items: center;
}

.select_wrap.active .select_ul {
  display: block;
}

.mtm-16 {
  margin-top: -16px !important;
}

.tobe {
  color: #ff2f61;
}

/* .float-rolling {
    position: fixed;
    top: 10%;
    right: 10%;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
} */

/* 임시 */
.temptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  text-align: left;
}

.temptable table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  text-align: left;
  border-radius: 10px;
}

.temptable th,
.temptable td {
  padding: 12px;
  text-align: center;
  /* 가운데 정렬 */
}

.temptable th {
  background-color: #f4f4f4;
}

.temptable tr:nth-child(even) {
  background-color: #f9f9f9;
}

.temptable thead tr th:first-child {
  border-top-left-radius: 10px;
}

.temptable thead tr th:last-child {
  border-top-right-radius: 10px;
}

.temptable tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.temptable tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.temptable .status-new {
  color: #ff9d00;
  /* background-color: #d1ecf1; */
  padding: 4px 8px;
  border-radius: 8px;
}

.temptable .status-in-progress {
  color: #29abc0;
  /* background-color: #fff3cd; */
  padding: 4px 8px;
  border-radius: 8px;
}

.temptable .status-completed {
  color: #34bb57;
  /* background-color: #d4edda; */
  padding: 4px 8px;
  border-radius: 8px;
}

.temptable .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.temptable .edit-icon {
  width: 16px;
  height: 16px;
}

.temptable .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* display: inline-block; */
  /* 테이블 셀 안에서 작동하도록 설정 */
  /* max-width: 200px; */
  /* 각각 필요한 너비로 설정 */
}

.centerbtnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  /*margin-top: 24px;*/
}

/*popup*/
.popupDimmed {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
}

.popupD {
  background: #fff;
  border-radius: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.popupD.top {
  background: #fff;
  border-radius: 24px;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  z-index: 1000;
}

.popup380 {
  width: 380px;
  /*height:520px;*/
  padding: 32px;
}

.popup580 {
  width: 580px;
  /*height:520px;*/
  padding: 32px;
}

.popup860 {
  width: 860px;
  /*height:520px;*/
  padding: 32px;
}

.popup960 {
  width: 960px;
  padding: 32px;
}

.popTop {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.popTop .popTit {
  font-weight: 700;
  font-size: 20px;
}

.popTop .btnPopClose {
  width: 20px;
  height: 20px;
  margin-left: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -100px;
  background: url("../images/ico_popclose.png") no-repeat center;
}

.popCont {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  /*height: 375px;*/
  box-sizing: border-box;
}

.popCont label {
  font-weight: 500;
  font-size: 16px;
  color: #666;
  display: inline-block;
}

.popCont label span.required {
  position: relative;
  padding-right: 6px;
}

.popCont label span.required:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #b60000;
  position: absolute;
  top: 0;
  right: 0;
}

.popCont input,
.popCont select {
  height: 40px;
  line-height: 1;
}

.popCont input,
.popCont select,
.popCont textarea {
  font-size: 16px;
  border-radius: 6px;
  padding-left: 10px;
}

.popCont .popbtnArea {
  margin-top: auto;
}

.popCont .formD .line,
.popCont .formD .line .tdD {
  display: flex;
  justify-content: flex-start;
}

.popCont .formD .line .tdD+.tdD {
  margin-left: 32px;
}

.popCont .formD .line+.line {
  margin-top: 24px;
}

.popCont .formD .lineTitle {
  width: 64px;
  padding-top: 6px;
}

.popCont .formD .lineWrite {
  width: calc(100% - 64px);
}

.popCont .formD .lineWrite .inquiryTextarea {
  height: 250px;
}

.popCont .formD .w224 {
  width: 224px;
}

.popCont .formD .w300 {
  width: 300px;
}

.popCont .formD .w540 {
  width: 540px;
}

.popCont .formD .whalf {
  width: 240px;
}

.popCont .formD .wFull,
.popCont .wFull {
  width: 97%;
}

.popCont textarea.modify {
  display: block;
  height: 180px;
}

.popCont .csTextBorder {
  border: 1px solid gray;
  width: 100%;
  border-radius: 5px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.popCont .csTextBorder p {
  color: black;
  margin-left: 10px;
  white-space: pre-wrap;
}

.popBottomD {
  position: relative;
}

.popBottomD .popBtm {
  display: none;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 30px;
  z-index: 1000;
}

.popborder {
  border: 1px solid #e5e5d5;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
}

/*dashboard 최신비자정보 팝업*/
.popCont .newVisaTop {
  display: flex;
  justify-content: space-between;
}

.popCont .newVisaTop .country {
  line-height: 24px;
}

.popCont .newVisaTop .country>img {
  width: 24px;
  display: inline-block;
  margin-right: 6px;
}

.popCont .newVisaTop .rightBtnArea {
  margin-left: auto;
}

.popCont .newVisaCont table,
.popCont .newVisaCont th,
.popCont .newVisaCont td {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.popCont .newVisaCont table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: center;
  border-top: 2px solid #222;
}

.popCont .newVisaCont table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.popCont .newVisaCont table th {
  padding: 12px 12px;
  background: #faf7fa;
  vertical-align: top;
}

.popCont .newVisaCont table th>span {
  display: block;
  margin-bottom: 6px;
}

.popCont .newVisaCont table td {
  padding: 12px 12px;
  line-height: 24px;
  text-align: left;
}

.popCont .newVisaCont table td>.scroll {
  max-height: 180px;
}

.popCont .newVisaCont table col.tit {
  width: 96px;
}

.popCont .newVisaCont table col.cont {
  width: calc(100% - 96px);
}

.popupD .infoTop {
  font-weight: 500;
}

.popupD .infoTop>p {
  margin-top: 12px;
}

.popupD .reason .writeReason {
  width: 100%;
  height: 120px;
  border-radius: 6px;
}

.teams-root {
  margin-bottom: 56px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff !important;
}

.teams-root>div.teams-container {
  height: 100%;
}

.input-container {
  padding: 24px 24px 24px 24px;
}

.multi-modal-box {
  display: flex;
  align-items: center;
}

.teams-container-home {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: space-between;
  padding: 0 24px;
}

.teams-logo-box {
  width: 100%;
  padding: 0px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.paperStyle {
  padding: 8px !important;
  border-radius: 8px !important;
  display: flex !important;
  justify-content: space-between !important;
  background-color: #f3f3f3 !important;
}

.titleStyle {
  font-weight: 700 !important;
  margin-left: 8px !important;
}

.contentStyle {
  text-align: left !important;
  margin-left: auto !important;
}

/* Hart Login Page */
.wrapper.hart-login {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
}

.wrapper.hart-login .hart-login-box {
  width: 90%;
  max-width: 960px;
  padding: 7rem 1.5rem;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: -2rem;
}

.hart-login-box h2 {
  margin-bottom: 2rem;
}

.hart-login-box h2 img {
  width: 170px;
}

.hart-login-box p {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  word-break: keep-all;
  color: #777;
}

.form-wrap {
  line-height: 1;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323232;
}

.hart-footer {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  text-align: center;
}

.hart-footer p.copyright {
  width: 60%;
  margin: 0 auto;
  color: #999;
  font-size: 0.8rem;
  line-height: 1rem;
}

@media screen and (max-width: 767px) {
  .wrapper.hart-login .hart-login-box {
    padding: 4rem 1.5rem;
  }
}

/* Hart Login Page */

/* 처리상태 css  */
.processing-status {
  display: flex;
  justify-content: center;
  align-items: center;
}

.processing-status .status-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
}

.processing-status .status-item {
  position: relative;
  text-align: center;
  color: #ff8092;
  flex-grow: 1;
  /* 모든 아이템의 너비를 동일하게 */
  flex-basis: 0;
  /* 아이템 텍스트 아래로 밀어냄 */
  padding-top: 60px;
  transition: font-size 0.1s ease, transform 0.1s ease;
}

/* .processing-status .status-item:hover {
  font-size: 1.1em;
  transform: scale(1.1);
} */

.processing-status .status-item.active {
  font-weight: bold;
  color: #ff4257;
}

.processing-status .status-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #ff8092;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.1s ease, height 0.1s ease;
}

/* .processing-status .status-item:hover::before {
  width: 18px;
  height: 18px;
} */


.processing-status .status-item.active::before {
  background-color: #ff4257;
}

.processing-status .status-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 47%;
  left: 58%;
  width: 99%;
  height: 2px;
  border-bottom: 2px dashed #ff8092;
  transform: translateX(0%);
}

.processing-status .status-item.active:not(:last-child)::after {
  border-bottom: 2px dashed #ff4257;
}

.processing-status .admin-id {
  margin-top: 5px;
  font-size: 0.8em;
  color: #777;
  /* 관리자 이름의 색상을 회색으로 지정 */
}

.summary-card {
  text-align: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 16px;
}


.summary-card-value {
  font-weight: bold;
}

.stat-card {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-card-content {
  flex: 1;
}

.circular-progress-container {
  position: relative;
  display: inline-flex;
}

.circular-progress-text {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 처리상태 css end*/


/* error page css start */
.not-found-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f9f9f9;
  text-align: center;
}

.not-found-content {
  max-width: 600px;
}

.not-found-img {
  margin: auto;
  margin-bottom: 20px;
}

.not-found-title {
  font-size: 25px;
  font-weight: bold;
  color: #333;
}

.not-found-message {
  font-size: 15px;
  color: #666;
  margin: 20px 0;
}

.not-found-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.not-found-button:hover {
  background-color: #0056b3;
}

/* error page css end */

/* 이미지 슬라이더 */
/* 슬라이더 전체 컨테이너 */
.slider-container {
  position: relative;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

/* 이미지 슬라이더 */
.image-slider {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
  border-radius: 10px;
  margin: 10px;
  scrollbar-width: none;
  /* Firefox에서 스크롤바 숨기기 */
  -ms-overflow-style: none;
  /* IE 및 Edge에서 스크롤바 숨기기 */
}

.image-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera에서 스크롤바 숨기기 */
}

/* 각 이미지 아이템 */
.image-item {
  display: inline-block;
  margin-right: 10px;
  border-radius: 5px;
}

/* 슬라이더 이미지 스타일 */
.slider-image {
  width: 200px;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
  /* 모서리를 약간 둥글게 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 부드러운 그림자 효과 */
}

/* 좌우 화살표 버튼 공통 스타일 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  /* 화살표가 이미지보다 위에 있도록 설정 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* 동그란 버튼 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 좌측 화살표 */
.left-arrow {
  left: 10px;
  /* 이미지와 간격을 두기 위한 left 값 설정 */
}

/* 우측 화살표 */
.right-arrow {
  right: 10px;
  /* 이미지와 간격을 두기 위한 right 값 설정 */
}