@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

html,
body,
button,
input {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* ############## 관리자 마이페이지 컨텐츠 ############## */
.my-info-wrap {
  background-color: #f2f2f3;
}
.my-info-wrap .my-info {
  background-color: #fff;
  padding-bottom: 10px;
}

.my-info-wrap .my-info-top {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.my-info-wrap .my-info-top p {
  font-size: 18px;
}
.my-info-wrap .my-info-top p span {
  font-weight: bold;
}
.my-info-wrap .my-info-top button {
  color: #787878;
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-info-wrap .my-info-top button span {
  font-size: 16px;
}
.my-info-wrap .my-info-top .settings {
  width: 24px;
  height: 24px;
  color: #787878;
}
.my-info-wrap .my-info-bottom {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 7px;
}
.my-info-wrap .my-info-bottom .my-img {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eee;
}
.my-info-wrap .my-info-bottom .my-img img {
  width: 100%;
  height: 100%;
}
.my-info-wrap .my-info-bottom .my-text {
  color: #333;
  padding-top: 5px;
  font-size: 0.875rem;
}
.my-val strong {
  font-size: 1rem;
}

.mypage-mycode {
  width: 95%;
  height: 50px;
  background: #ff0000;
  background-image: linear-gradient(to bottom, #ff0000, #ff6a00);
  border-radius: 10px;
  box-shadow: 3px 3px 3px #d9d9d9;
  color: #ffffff;
  font-size: 18px;
  padding: 10px;
  border: solid #ff0022 2px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  margin: auto;
}
.mypage-mycode .red-font {
  color: rgb(255, 230, 0);
  padding-left: 10px;
}
.mypage-mycode a {
  color: inherit;
  display: block;
}
.mypage-mycode:hover {
  background: #ff6600;
  text-decoration: none;
}

.myinfo-menuset {
  border-top: 1px solid #ededed;
  padding: 10px 0px;
}

.myinfo-menuset ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  justify-content: center;
  width: 100%;
}

.myinfo-menuset ul li a {
  text-decoration: none;
  color: inherit;
}
.myinfo-menuset ul li a:hover {
  color: #ff0000;
}
.myinfo-menuset ul li {
  border-radius: 10px;
  box-shadow: 1px 1px 4px #dddddd;
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  background: #fff;
  width: 46%;
  padding: 6px 10px;
}

.my-contents-wrap {
  background-color: #f2f2f2;
  position: relative;
}
.my-contents-wrap .sub-ttl {
  padding: 10px 0px 20px 0px;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  height: 30px;
  margin-bottom: 30px;
}
.my-contents-wrap .sub-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  width: 40%;
  height: 17px; /* 선의 두께를 설정 */
  background-color: rgb(255, 94, 0); /* 선의 색상을 설정 */
  opacity: 0.1;
}

.my-contents-wrap ul {
  border-radius: 10px;
  background: #fff;
  padding: 5px 0px 5px 0px;
  width: 94%;
  margin: auto;
}
.my-contents-wrap ul li {
  border-bottom: 1px solid #eee;
}
.my-contents-wrap ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  color: #333;
  font-weight: 600;
  background: #fff;
}
.my-contents-wrap ul li p {
  flex: 1;
}
.my-contents-wrap ul li span:first-child {
  margin-left: 10px;
  margin-right: 20px;
  border-radius: 50%;
  background: #ffeae0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: orangered;
  flex-shrink: 0;
}
.my-contents-wrap ul li span:last-child {
  flex-basis: 2;
}
.my-contents-wrap ul li a .arrow {
  position: absolute;
  right: 15px;
  color: #bdbdbd;
}

.my-contents-wrap ul li:last-child {
  border-bottom: none;
}

/* 앱공유하기 */
.layer-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.2s ease-in-out;
  z-index: 999;
  visibility: hidden;
}
.layer-pop.open {
  opacity: 1;
  visibility: visible;
}
.layer-pop .cont h6 {
  padding: 4px 0;
  margin-bottom: 5px;
  font-weight: bold;
  border-bottom: 1px solid #e1e1e1;
  font-size: 16px;
}
.layer-pop .cont .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
}
.layer-pop .cont {
  position: fixed;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 10px;
  height: 200px;
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}
.layer-pop .cont div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  height: 60%;
  font-size: 14px;
  color: #121212; /* background-color: #f3f3f3; */
  font-weight: 600;
}
.layer-pop .cont .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  color: #361f1f;
  font-size: 16px;
  background-color: #f6df00;
}

/* ---------관리자 페이지 공통 스타일-------------- */
.ad-contents-wrap .title {
  position: fixed;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding: 9px 10px;
  background-color: #fff;
  top: 0;
}
.ad-contents-wrap .back {
  position: fixed;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
}
.ad-contents {
  overflow-y: auto;
  padding: 55px 10px 20px;
  background-color: #f4f4f4;
}

.ad-contents02 {
  overflow-y: auto;
  padding: 12px 10px 20px;
  background-color: #f4f4f4;
  margin-top: 10px;
  margin-bottom: 80px;
}

.ad-contents02 h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.wbg {
  background-color: #fff;
}

/* ############## 관리자코드 ############## */
.ad-contents .code-wrap {
  width: calc(100% - 100px);
  margin: 20px auto;
}
.ad-contents .code-wrap .admin-code {
  width: 100%;
  background-color: #3072eb;
  border-radius: 5px;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* ############## 고객리스트 ############## */
.ad-contents .cust-wrap .box {
  margin-bottom: 8px;
  padding: 10px 20px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.ad-contents .cust-wrap .box .top {
  display: flex;
  align-items: center;
}
.ad-contents .cust-wrap .box .top a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #3072eb;
  font-weight: bold;
}
.ad-contents .cust-wrap .box .cust-level {
  margin-left: 10px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  color: #3072eb;
  background-color: rgb(230, 238, 253);
}
.ad-contents .cust-wrap .box .mid {
  position: relative;
  margin: 4px 0;
  font-size: 14px;
  font-weight: 600;
}
.ad-contents .cust-wrap .box .mid .cont {
  margin-top: 4px;
  position: absolute;
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-radius: 3px;
  border: 2px solid #3072eb;
  background-color: #fff;
  opacity: 0;
  transition: 0.2s ease-in-out;
  visibility: hidden;
}
.ad-contents .cust-wrap .box .mid .cont.open {
  opacity: 1;
  visibility: visible;
}
.ad-contents .cust-wrap .box .mid .cont p {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #333;
}
.ad-contents .cust-wrap .box .mid .cont p ~ p::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 20px;
  background-color: #eee;
}
.ad-contents .cust-wrap .box .mid .cont p span {
  font-size: 20px;
  margin-right: 8px;
  color: #b4c7ed;
}
.ad-contents .cust-wrap .box .mid .cont .close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  padding: 6px;
  font-size: 14px;
  border-radius: 50%;
  color: #fff;
  background-color: #3072eb;
}
.ad-contents .cust-wrap .box .cust-name {
  display: inline-block;
  padding-right: 10px;
  border-right: 1px solid #ebf2ff;
}
.ad-contents .cust-wrap .box .cust-tell {
  margin-left: 10px;
}
.ad-contents .cust-wrap .box .cust-sales {
  padding: 4px 10px;
  text-align: right;
  border-radius: 5px;
  background-color: #f7f7f7;
}
.ad-contents .cust-wrap .box .cust-sales span {
  font-weight: bold;
}

/* ############## 사용기간 ############## */
.ad-contents .use-wrap {
  text-align: center;
}
.ad-contents .use-wrap .use {
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #3072eb;
  border: 1px solid #3072eb;
  background-color: #fff;
  margin-bottom: 20px;
}
.ad-contents .use-wrap p.d-day {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  border-top: 2px dashed #e3e3e3;
}
.ad-contents .use-wrap p.d-day span {
  font-weight: bold;
  color: #ff0000;
}
.ad-contents .use-wrap p.txt {
  font-size: 14px;
  color: #555;
}

/* ############## 상품관리 ############## */
.ad-contents .prod-wrap .prod-add {
  margin: 0 0 6px auto;
  width: 80px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #3072eb;
  border-radius: 3px;
}
.ad-contents .prod-wrap .prod-add a {
  display: block;
  padding: 2px 0;
  color: #fff;
}
.ad-contents .prod-wrap .box {
  margin-bottom: 8px;
  padding: 10px 20px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.ad-contents .prod-wrap .box .date {
  font-size: 14px;
  font-weight: bold;
}
.ad-contents .prod-wrap .box .date-wrap {
  display: flex;
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #eee;
}
.ad-contents .prod-wrap .box .date-wrap .img-wrap {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.ad-contents .prod-wrap .box .date-wrap .text-wrap {
  width: 100%;
  padding-left: 10px;
  font-size: 14px;
}

.ad-contents .prod-wrap .box .date-wrap .text-wrap .pr-name {
  padding: 4px 0;
  font-size: 13px;
  color: #000;
  line-height: 1.2;
}
.ad-contents .prod-wrap .box .date-wrap .text-wrap .pr-price {
  display: inline;
  margin-top: 6px;
  font-weight: bold;
}
.ad-contents .prod-wrap .box .date-wrap .text-wrap .del {
  float: right;
  margin-top: 4px;
}
.ad-contents .prod-wrap .box .date-wrap .text-wrap .del button {
  padding: 2px 6px;
  margin-left: 2px;
  font-size: 12px;
  border: 1px solid #ccc;
  color: #555;
  border-radius: 3px;
}

/* ############## 입점상품 판매내역 ############## */
.his-wrap .date-picker {
  width: calc(100% + 20px);
  margin-left: -10px;
  padding: 0px 10px 20px;
  border-bottom: 10px solid #eee;
}
.his-wrap .date-picker p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.his-wrap .date-picker01 {
  width: 100%;
  padding: 0px;
}

.his-wrap .date-picker02 {
  width: 100%;
  padding: 0px 0px 0px;
}

.his-wrap .date-picker02 p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.his-wrap .date-picker01 p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.his-wrap .date-picker input[type='date'],
.his-wrap .date-picker01 input[type='date'],
.his-wrap .date-picker02 input[type='date'] {
  padding: 3px;
  width: 25%;
  height: 36px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}

.his-wrap .date-picker input[type='text'],
.his-wrap .date-picker01 input[type='text'],
.his-wrap .date-picker02 input[type='text'],
.his-wrap .date-picker input[type='tel'],
.his-wrap .date-picker01 input[type='tel'],
.his-wrap .date-picker02 input[type='tel'] {
  padding: 3px;
  width: 30%;
  height: 36px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  margin: 0px 1%;
}
.his-wrap .date-picker button,
.his-wrap .date-picker01 button {
  background-color: orangered;
  padding: 8px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  width: 150px;
}
.his-wrap .date-picker01 button.order-search {
  background-color: orangered;
  padding: 10px 0px;
  width: 170px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  font-size: 12px;
}
.his-wrap .date-picker01 select {
  font-size: 11px;
  letter-spacing: -1px;
}
.his-wrap > p {
  margin: 20px 0 10px;
  font-size: 13px;
  text-align: center;
}

.his-wrap > p.text-color {
  margin: 20px 0 10px;
  font-size: 13px;
  text-align: center;
}

.his-wrap > p em {
  color: orangered;
  font-weight: bold;
}

.p-padding input[type='text'],
.p-padding textarea {
  width: 100% !important;
  padding: 10px !important;
  margin: 3px !important;
}

/***** 1대1, 1:1, 일대일 문의 *****/
/* 첨부파일 업로드 버튼 스타일 */
.file-upload-button {
  display: inline-block;
  padding: 0px 10px;
  border: 1px solid #c0c0c0;
  background-color: #ffffff; /* 원하는 배경색으로 변경하세요 */
  color: #747474;
  border-radius: 2px;
  cursor: pointer;
  font-size: 20px;
  width: 35px;
  text-align: center;
}

/* input 정렬 */
.input-container {
  text-align: left !important; /* 자식 요소들을 가로 방향으로 왼쪽 정렬합니다. */
}

.input-row {
  display: flex !important; /* 요소들을 가로로 나열합니다. */
  align-items: center !important; /* 세로 정렬을 중앙으로 설정합니다. */
  margin-bottom: 5px !important; /* 요소들 간의 간격을 조절합니다. */
}

.input-row input[type='checkbox'],
.input-row label,
.input-row input[type='email'],
.input-row input[type='tel'] {
  margin-right: 10px !important; /* 요소들 간의 간격을 조절합니다. */
  margin: 1px !important;
  padding: 6px !important;
}

.input-row input[type='checkbox'] {
  width: 20px !important;
}

.input-row label {
  min-width: 50px !important; /* label 요소의 최소 너비를 지정합니다. */
}

/* 문의버튼 */
.question-button {
  text-align: center;
  margin: 20px;
}
.question-button button {
  border-radius: 10px;
  color: #fff;
  background: orangered;
  font-weight: 700;
  padding: 10px !important;
  width: 150px !important;
  text-align: center;
  font-size: 22px !important;
}

/* 구매목록-버튼-선택 */
.button-select {
  border-radius: 5px;
  color: #5a5a5a;
  padding: 5px;
  margin-top: 10px;
  border: 1px solid rgb(104, 104, 104);
}

/* 왼쪽배너 */
.left-banner {
  height: 250px;
  padding: 20px 0px;
  background: #f2f2f2;
  text-align: center;
}

.left-banner img {
  border-radius: 10px;
  box-shadow: 1px 1px 2px #d9d9d9;
  margin-bottom: 60px;
  width: 94%;
}

.left-banner img:hover {
  transform: translateY(2px);
}

.left {
  text-align: left;
}

.left span {
  vertical-align: middle;
}

.blink {
  animation-duration: 0.3s;
  animation-name: blink-motion;
  animation-iteration-count: infinite;
  font-size: 20px;
  color: orangered;
}
@keyframes blink-motion {
  from {
    opacity: 1;
    transform: translateY(1px);
  }
  to {
    opacity: 0;
    transform: translate(0px);
  }
}

/* 나의qr코드 */
.qrcode {
  padding: 50px 30px;
  text-align: center;
  border: 5px solid #ededed;
}
.qrcode img {
  width: 50%;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.qrcode button {
  background: #ddd;
  color: #333;
  padding: 10px 20px;
  margin: auto;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.qrcode button:hover {
  background: #ededed;
}
.qrcode button span {
  font-size: 18px;
  margin-right: 10px;
}
.qrcode .underline {
  border-top: 1px dashed #ddd;
  width: 80%;
  margin: 30px auto;
}
.qrcode .text {
  margin: auto;
  width: 100%;
  padding: 20px;
  font-size: 12px;
}

/* 회원탈퇴 */
.secede-wrap textarea {
  width: 95%;
}
.secede-wrap .imp {
  text-align: left;
  color: orangered;
  animation-duration: 0.3s;
  animation-name: imgchange;
  animation-iteration-count: infinite;
}

@keyframes imgchange {
  from {
    color: #ff7300;
  }
  to {
    color: orangered;
  }
}
.secede-wrap .txtcenter {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.1;
}

.secede-wrap .button {
  text-align: center;
}
.secede-wrap button {
  border-radius: 10px;
  color: #fff;
  background: orangered;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 40px;
  margin: 30px;
}

/* 테이블 스타일 */
.tbl02,
.tbl01,
.tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px auto 5px;
  overflow: auto;
  text-align: center;
  font-size: 13px;
  color: #0e0e0e;
}
.tbl02 th {
  border-top: 2px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #eeeeee;
  color: #333;
  text-align: left;
  padding-left: 10px;
}

.tbl01 th {
  border-top: 2px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #eeeeee;
  color: #333;
}

.tbl thead th {
  border-top: 2px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #eeeeee;
  color: #000;
}
.tbl02 tbody,
.tbl01 tbody,
.tbl tbody {
  border-bottom: 2px solid #ddd;
}

.tbl tr:hover {
  background: #f1f1f1;
}

.tbl02 th,
.tbl02 td,
.tbl01 th,
.tbl01 td,
.tbl th,
.tbl td {
  border: 1px solid #ddd;
  padding: 10px 3px;
  border-left: none;
  border-right: none;
  line-height: 1;
}

.left {
  text-align: left;
}

.tbl01 td button {
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 5px;
  margin-left: 20px;
  vertical-align: middle;
  font-weight: bold;
  color: #666;
}

.tbl01 td button:hover {
  color: #000;
  background-color: #ededed;
}

.tbl .order a {
  color: #121212;
  line-height: 1;
  letter-spacing: -0.8px;
}

.tbl a {
  color: inherit;
}
.tbl img {
  width: 35%;
}

input.per1 {
  width: 1% !important;
}
input.per5 {
  width: 5% !important;
}
input.per15 {
  width: 15% !important;
}
input.per20 {
  width: 20% !important;
}
input.per30 {
  width: 30% !important;
}
input.per50 {
  width: 50% !important;
}
input,
textarea.per70 {
  width: 70% !important;
}
input,
textarea.per90 {
  width: 90% !important;
}

.red-text {
  font-size: 15px;
  color: red;
  font-weight: 700;
  background: #fff1b4;
  animation-duration: 0.9s;
  animation-name: red-colorchange;
  animation-iteration-count: infinite;
}

@keyframes red-colorchange {
  from {
    color: red;
  }
  to {
    color: tomato;
  }
}

.number {
  text-align: center;
  letter-spacing: 5px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.number a span {
  color: #c2c2c2;
  padding: 15px;
}

.secede-wrap .imp {
  display: flex;
  text-align: left;
  color: orangered;
  animation-duration: 0.3s;
  animation-name: imgchange;
  animation-iteration-count: infinite;
  justify-content: flex-start;
}

@keyframes imgchange {
  from {
    color: #ff7300;
  }
  to {
    color: orangered;
  }
}

/* 탭메뉴 */
.tab-wrap01 {
  margin-top: 0px;
}
.tab-wrap {
  margin-top: 50px;
}

.tab-wrap01 .category,
.tab-wrap .category {
  width: 100%;
  background-color: #fff;
  border-bottom: 3px solid #eee;
  font-size: 0;
  margin-bottom: 10px;
}

.tab-wrap01 .category li,
.tab-wrap .category li {
  display: inline-block;
}

.tab-wrap01 .category li a,
.tab-wrap .category li a {
  padding: 3px 10px;
  box-sizing: border-box;
  color: #777;
  display: inline-block;
  font-size: 16px;
  border: 1px solid #e1e1e1;
  background-color: #f3f3f3;
  color: #000;
}

.tab-wrap01 .category li a.on,
.tab-wrap .category li a.on {
  font-weight: 500;
  color: #fff;
  background-color: #ff6000;
  border: 1px solid orangered;
  transition: 0.5s;
}
/* 탭메뉴 */

/* 관리자 가입 계약 */
.contract-join-wrap {
  margin-bottom: 90px;
  padding: 10px;
}
.contract-join-wrap .button {
  text-align: center;
}
.contract-join-wrap button.ok {
  border-radius: 10px;
  color: #fff;
  background: orangered;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 30px;
  margin: 30px;
}

.imp01 {
  text-align: left;
  color: orangered;
  animation-duration: 0.3s;
  animation-name: imgchange01;
  animation-iteration-count: infinite;
  font-size: 12px;
}
@keyframes imgchange01 {
  from {
    color: #ff7300;
  }
  to {
    color: orangered;
  }
}

.contract-data {
  background-color: #ededed;
  padding: 10px;
}

.contract-dealer-wrap .txtcenter {
  text-align: center;
  color: #666;
}
.contract-dealer-wrap .button {
  text-align: center;
}
.contract-dealer-wrap button {
  border-radius: 10px;
  color: #fff;
  background: orangered;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 40px;
  margin: 30px;
}
.contract-dealer-wrap button:hover {
  background: #ff6600;
}

.contract-data h3 {
  display: flex;
  color: black;
  font-weight: 800;
  font-size: 15px;
  padding: 0px 0px 10px 0px;
}

.contract-data h3 span {
  color: orangered;
  margin-right: 5px;
}

.contract-data-in {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 1px 1px 3px #ddd;
  width: 100%;
}

.txtcenter {
  text-align: center;
  color: #666;
  font-size: 13px;
}

.contract-data01-in img {
  width: 40px;
  object-fit: contain;
}

/* 관리자코드 */
.admincode {
  padding: 20px;
  text-align: center;
  border: 5px solid #ededed;
}

.admincode button {
  background: #ddd;
  color: 333;
  padding: 10px;
  margin: auto;
  border-radius: 20px;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
  width: 95%;
  display: block;
  background-image: linear-gradient(to bottom, #ff0000, #ff6a00);
  box-shadow: 3px 4px 6px #d9d9d9;
  color: #ffffff;
  border: solid #ff0022 2px;
  text-decoration: none;
  font-weight: 800;
}

.admincode button:hover {
  background-image: linear-gradient(to bottom, #838383, #868686);
  border: solid #333 2px;
}

.admincode button span {
  color: yellow;
}

.admincode .underline {
  border-top: 1px dashed #ddd;
  width: 90%;
  margin: 30px auto 20px;
}
.admincode .text {
  margin: auto;
  width: 100%;
  padding: 20px;
}

/* 모달팝업 */
.modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 80%;
  border-radius: 10px;
  border: 2px solid orangered;
  font-size: 13px;
}
/* 배경 블러 효과 스타일 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

.modal h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.modal p {
  padding: 10px 10px;
  display: flex;
}

.modal p span:first-child {
  font-weight: 800;
  width: 20%;
}

.modal p span:last-child {
  width: 80%;
}

.modal button {
  margin: 5px auto;
  border-radius: 10px;
  background: orangered;
  color: white;
  padding: 10px 20px;
}

.modal input[type='checkbox'] {
  width: 25px !important; /* 원하는 가로폭으로 설정 */
  padding: 10 !important; /* 원하는 패딩 값으로 설정 */
}

/* 직수입/직구관리 */
.master-direct {
  font-size: 12px;
  margin: 10px 0px 50px 0px;
  color: #666;
  background: Cornsilk;
  padding: 2px 10px 5px 15px;
  border-radius: 10px;
}

.master-direct h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 15px 0px 10px 0px;
  border-left: 6px solid orange;
  padding-left: 10px;
  line-height: 20px;
  color: #303030;
}

.master-direct > ul > li {
  margin-bottom: 24px;
}

.master-direct > ul > li > p {
  font-weight: 700;
  font-size: 13px;
}

.master-direct-title h3 {
  color: #303030;
  font-weight: 700;
  font-size: 16px;
  color: Teal;
  margin-bottom: 18px;
}
.master-direct-title p {
  text-align: left;
  width: 100%;
  font-size: 14px;
}
.master-direct-title input[type='checkbox'] {
  width: 15px !important;
  height: 15px;
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
  display: inline-block;
}
.bt-write {
  background: teal !important;
  border-radius: 5px !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  padding: 5px; /* 예시로 패딩 값 조정 */
  height: 35px; /* 예시로 높이 값 조정 */
}
.font-13 {
  font-size: 13px !important;
  text-align: left !important;
  line-height: 13px;
  font-weight: 500;
  color: #777777;
  border-left: 5px solid #ddd;
  line-height: 16px;
  padding-left: 5px;
}
.font-13-red {
  font-size: 13px !important;
  text-align: center !important;
  line-height: 13px;
  color: orangered !important;
}

.font-16 {
  font-size: 16px !important;
  text-align: left !important;
  line-height: 13px;
  font-weight: 500;
  color: #333;
  border-left: 5px solid #ddd;
  line-height: 16px;
  padding-left: 5px;
}

.bt-master-save button {
  border-radius: 10px;
  background: orangered;
  color: #fff;
  font-weight: bold;
  width: 100px;
  height: 45px;
  margin: auto;
  font-size: 18px;
}
.bt-master-save button:hover {
  background: rgb(255, 115, 0);
  border: 1px solid orangered;
  transition: 0.5s;
}

/* 회원정보수정 */
.myinfo-edit {
  margin: 50px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.myinfo-edit h3 {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  align-items: center;
  width: 100%;
}

.myinfo-edit .bt {
  font-size: 13px;
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-weight: 500;
}

button.big-bt {
  border: 1px solid #ddd;
  color: orangered;
  padding: 10px 30px;
  margin: 0px 0px 50px 0px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 18px;
}
button.big-bt01 {
  border: 1px solid #ddd;
  color: orangered;
  padding: 10px 30px;
  margin: px 0px 80px 0px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 18px;
}
button.big-bt02 {
  border: 1px solid #ddd;
  color: orangered;
  padding: 10px 30px;
  margin: 50px 0px 0px 0px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 18px;
}
.address {
  margin: 10px 20px 10px 0px;
  display: flex;
  justify-content: flex-start;
  width: 95%;
  font-weight: bold;
  color: black;
}
.address span {
  color: teal;
  margin-left: 10px;
}
.address button {
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 5px;
  color: rgb(95, 95, 95);
}
.address button:hover {
  color: rgb(87, 87, 87);
  font-weight: 600;
}
.myinfo-edit ul {
  width: 97%;
  font-size: 14px;
  color: #696969;
}
.myinfo-edit .bank-info {
  width: 97%;
  font-size: 15px;
  margin: 20px 10px;
  color: #696969;
}

.myinfo-edit01 {
  margin: 50px 0px 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.myinfo-edit01 h3 {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  align-items: center;
  width: 100%;
}

.myinfo-edit01 .bt {
  font-size: 13px;
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-weight: 500;
}

.myinfo-edit01 .address {
  display: flex;
  align-items: center;
}

.myinfo-edit01 ul {
  width: 97%;
  font-size: 14px;
  color: #696969;
  border-bottom: 1px dashed #c5c5c5;
  padding: 10px 0px;
  margin-bottom: 50px;
}

p.info-pd {
  margin-bottom: 100px !important;
  font-size: 12px !important;
  color: #525252;
}

p.info-pd01 {
  margin-bottom: 50px !important;
  font-size: 14px !important;
  color: #525252;
}

.myinfo-edit > h3 {
  margin-bottom: 25px;
}
