/*-----------------------------------------------------------------------------------*/
/*  Member Menu - 회원 페이지들 메뉴
/*-----------------------------------------------------------------------------------*/
.member {
  position: relative;
}
.member .member-menu {
  top: 55px;
  z-index: 12;
  background: #707273;
}
.member .member-menu .container, .member .member-menu .container-xl {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.member .member-menu .menu-title {
  font-size: 18px;
  color: #fff;
}
.member .member-menu .menu-title .vertical-line {
  display: inline-block;
  position: relative;
  top: 4px;
  width: 1px;
  height: 15px;
  border-left: 1px solid #a5a9af;
  margin: 0 10px;
  padding: 7px 0;
}
.member .member-menu ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin: 0;
}
.member .member-menu ul li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #d6dde4;
  padding: 10px 15px;
  position: relative;
}
.member .member-menu ul li a::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: 3px;
  position: absolute;
  bottom: 0;
  background: #b3b9c1;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.member .member-menu ul li a:hover {
  color: #fff;
}
.member .member-menu ul li a:hover::after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.member .member-menu ul li a:not([href]):not([tabindex]):focus, .member .member-menu ul li a:not([href]):not([tabindex]):hover {
  color: #fff;
}
.member .member-menu ul li:last-child a {
  padding-right: 0;
}
.member .member-menu ul li:last-child a:hover::after {
  width: calc(100% - 15px);
}
.member .member-menu ul li:last-child.current a::after {
  width: calc(100% - 15px);
}
.member .member-menu ul li.current a::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: 3px;
  position: absolute;
  bottom: 0;
  background: #d6dde4;
  -webkit-transform: none;
  transform: none;
}
@media (max-width: 1199px) {
  .member .member-menu {
    z-index: 12;
  }
}
@media (max-width: 1023px) {
  .member .member-menu {
    top: 0;
  }
}
@media (max-width: 575px) {
  .member .member-menu {
    display: none;
  }
}
@media (max-width: 359px) {
  .member .member-menu ul li a {
    padding: 10px 7px;
  }
  .member .member-menu ul li a:hover::after {
    width: calc(100% - 14px);
  }
  .member .member-menu ul li.current a::after {
    width: calc(100% - 14px);
  }
}

.side-menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 300px;
  height: 100%;
  background-color: #F5F5F5;
  -webkit-backface-visibility: hidden;
  -webkit-transition: left 0.4s ease;
  -o-transition: left 0.4s ease;
  transition: left 0.4s ease;
}
.side-menu-wrapper > div {
  float: right;
  width: 150px;
  margin-right: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 145px;
}
.side-menu-wrapper .member-account {
  border-bottom: 1px solid #191919;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.side-menu-wrapper .member-account p {
  font-size: 16px;
  color: #191919;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.side-menu-wrapper .member-account a {
  font-size: 13px;
  color: #2d4697;
}
.side-menu-wrapper ul {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin: 0;
  margin-bottom: 20px;
}
.side-menu-wrapper ul li {
  font-size: 13px;
}
.side-menu-wrapper ul li a, .side-menu-wrapper ul li a:not([href]):not([tabindex]) {
  color: #777;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.side-menu-wrapper ul li a:hover, .side-menu-wrapper ul li a:not([href]):not([tabindex]):hover {
  color: #191919;
}
.side-menu-wrapper ul li.selected a {
  color: #2d4697;
  font-weight: 500;
}
.side-menu-wrapper ul li.selected a:hover {
  color: #2d4697;
  font-weight: 500;
}
.side-menu-wrapper ul .title {
  color: #191919;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.member .page-title {
  position: relative;
}
.member .member-menu-trigger {
  display: none;
}
.member .body-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (max-width: 1919px) {
  .member .container, .member .container-xl {
    margin-right: 10%;
  }
}
@media (max-width: 1759px) {
  .member .container, .member .container-xl {
    margin-right: 5%;
  }
}
@media (max-width: 1699px) {
  .member .container, .member .container-xl {
    margin-right: 3%;
  }
}
@media (max-width: 1599px) {
  .side-menu-wrapper {
    width: 245px;
  }
  .member .container, .member .container-xl {
    margin-right: 0;
  }
}
@media (max-width: 1499px) {
  .member .container, .member .container-xl {
    margin-left: 200px;
  }
  .side-menu-wrapper {
    width: 245px;
  }
}
@media (max-width: 1399px) {
  .side-menu-wrapper {
    width: 215px;
  }
}
@media (max-width: 1199px) {
  .member .container, .member .container-xl {
    margin-right: auto;
    margin-left: auto;
  }
  .member .member-menu-trigger {
    display: block;
    position: fixed;
    top: 145px;
    left: 63px;
    right: auto;
    z-index: 9;
    -webkit-transition: left ease-in-out 500ms;
    transition: left ease-in-out 500ms;
  }
  .member .member-menu-trigger.affix {
    top: 139px;
  }
  .member .member-menu-trigger input {
    display: none;
  }
  .member .member-menu-trigger label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0;
    border: 2px solid #707273;
    background: rgba(0, 0, 0, 0.07);
    display: block;
    position: relative;
    text-indent: -9999em;
  }
  .member .member-menu-trigger label::before, .member .member-menu-trigger label::after, .member .member-menu-trigger label > span::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    left: 8px;
    background: #191919;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .member .member-menu-trigger label::before {
    top: 10px;
  }
  .member .member-menu-trigger label::after {
    bottom: 10px;
  }
  .member .member-menu-trigger label span::before {
    top: 18px;
  }
  .side-panel-open .body-overlay {
    opacity: 1;
    z-index: 44;
    pointer-events: auto;
  }
  .side-panel-open .body-overlay:hover {
    cursor: url(/assets/images/close.png) 15 15, default;
  }
  .side-menu-wrapper {
    left: -300px;
    z-index: 44;
  }
  .side-menu-wrapper.open {
    left: 0;
    box-shadow: 6px 0px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: left 0.4s ease;
    -o-transition: left 0.4s ease;
    transition: left 0.4s ease;
  }
  .side-menu-wrapper > div {
    top: 80px;
  }
}
@media (max-width: 991px) {
  .member .member-menu-trigger {
    left: 15px;
  }
}
@media (max-width: 1023px) {
  .member .member-menu-trigger.affix {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .side-menu-wrapper > div {
    top: 30px;
  }
}
@media (max-width: 575px) {
  .side-menu-wrapper > div {
    top: 50px;
  }
  .side-menu-wrapper > div.affix {
    top: 105px;
  }
  .member .member-menu-trigger {
    top: 105px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .member .member-menu-trigger {
    top: 223px;
  }
  .member .member-menu-trigger.affix {
    top: 200px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .member .member-menu-trigger {
    top: 145px;
  }
  .member .member-menu-trigger.affix {
    top: 120px;
  }
}
/*-----------------------------------------------------------------------------------*/
/*  주문.배송 내역 - /member/include/
/*-----------------------------------------------------------------------------------*/
#order-detail .template-detail-wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  align-items: unset;
  height: 100%;
  max-height: calc(100vh - 100px);
  min-height: 768px;
}
#order-detail .template-detail-wrapper .tmp-img-box {
  width: calc(100% - 400px);
}
#order-detail .template-detail-wrapper .tmp-img-box .img-wrap {
  flex-direction: column;
  width: 100%;
}
#order-detail .template-detail-wrapper .tmp-img-box .img-wrap.vertical {
  display: block;
}
#order-detail .template-detail-wrapper .tmp-img-box .img-wrap.vertical .left, #order-detail .template-detail-wrapper .tmp-img-box .img-wrap.vertical .right {
  width: calc((100% - 30px) / 2);
}
#order-detail .template-detail-wrapper .tmp-img-box .img-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
#order-detail .template-detail-wrapper .tmp-img-box .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1199px) {
  #order-detail .template-detail-wrapper .tmp-img-box .img-wrap {
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  #order-detail .template-detail-wrapper {
    max-height: unset;
    min-height: unset;
  }
  #order-detail .template-detail-wrapper .tmp-img-box .img-wrap img {
    position: unset;
  }
}

@media (max-width: 1199px) {
  #soft-proof .modal-xl {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  #soft-proof .modal-xl {
    max-width: unset;
  }
}

.template-detail-wrapper .tmp-detail-box dl {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin-bottom: 3px;
}
.template-detail-wrapper .tmp-detail-box dl:last-child {
  margin-bottom: 0;
}
.template-detail-wrapper .tmp-detail-box dl dt, .template-detail-wrapper .tmp-detail-box dl dd {
  font-size: 13px;
  margin-bottom: 0;
}
.template-detail-wrapper .tmp-detail-box dl dt {
  color: #999;
  margin-right: 10px;
  font-weight: 500;
}
.template-detail-wrapper .tmp-detail-box .info p:not(.title) {
  font-size: 13px;
}

.payment-shipping-wrapper {
  padding: 50px 30px;
}
.payment-shipping-wrapper .each-table-wrapper {
  margin-bottom: 50px;
}
.payment-shipping-wrapper .each-table-wrapper h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #191919;
}
.payment-shipping-wrapper .each-table-wrapper table {
  table-layout: fixed;
  min-width: 100%;
  max-width: none;
  width: auto;
}
.payment-shipping-wrapper .each-table-wrapper table th, .payment-shipping-wrapper .each-table-wrapper table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}
.payment-shipping-wrapper .each-table-wrapper table th {
  width: 135px;
  background-color: #f5f5f5;
  font-weight: 500;
}
.payment-shipping-wrapper .each-table-wrapper table td {
  width: calc(100% - 135px);
  min-height: 40px;
}
.payment-shipping-wrapper .divide-2 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  align-items: baseline;
  flex-wrap: wrap;
}
.payment-shipping-wrapper .divide-2 > div:not(.rowspan) {
  width: 50%;
}
.payment-shipping-wrapper .divide-2 > div:not(.rowspan) td p {
  margin-bottom: 0;
}
.payment-shipping-wrapper .divide-2 > .each-table-wrapper {
  margin-bottom: 0;
}
.payment-shipping-wrapper .divide-2 .rowspan {
  flex: 1 1 100%;
  width: 100%;
}
.payment-shipping-wrapper .divide-2 .rowspan table {
  width: 100%;
}
.payment-shipping-wrapper .divide-2 .rowspan table th, .payment-shipping-wrapper .divide-2 .rowspan table td {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}
.payment-shipping-wrapper .divide-2 .rowspan table th {
  width: 110px;
  background-color: #f5f5f5;
}
.payment-shipping-wrapper .divide-2 .rowspan table td {
  width: calc(100% - 110px);
}
@media (min-width: 976px) {
  .payment-shipping-wrapper .each-table-wrapper table td {
    min-width: 285px;
  }
}
@media (max-width: 767px) {
  .payment-shipping-wrapper .divide-2 {
    flex-direction: column;
  }
  .payment-shipping-wrapper .divide-2 > div:not(.rowspan) {
    width: 100%;
  }
  .payment-shipping-wrapper .divide-2 > .each-table-wrapper:first-child {
    margin-bottom: 50px;
  }
}
@media (max-width: 699px) {
  .payment-shipping-wrapper .each-table-wrapper table th, .payment-shipping-wrapper .each-table-wrapper table td {
    display: inline-block;
  }
  .payment-shipping-wrapper .divide-2 > div th, .payment-shipping-wrapper .divide-2 > div td {
    display: table-cell;
  }
}
@media (max-width: 575px) {
  .payment-shipping-wrapper .each-table-wrapper table th, .payment-shipping-wrapper .each-table-wrapper table td {
    display: block;
    border-bottom: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .payment-shipping-wrapper .each-table-wrapper table th {
    background-color: unset;
    padding-top: 15px;
    padding-bottom: 3px;
    color: #999;
  }
  .payment-shipping-wrapper .each-table-wrapper table td {
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaedf1;
  }
  .payment-shipping-wrapper .each-table-wrapper table:last-child {
    border-bottom: 3px solid #eaedf1;
  }
  .payment-shipping-wrapper .each-table-wrapper.nobottommargin table:last-child {
    border-bottom: 0;
  }
  .payment-shipping-wrapper .divide-2 > div th, .payment-shipping-wrapper .divide-2 > div td {
    display: block;
    border-bottom: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .payment-shipping-wrapper .divide-2 > div th {
    background-color: unset;
    padding-top: 15px;
    padding-bottom: 3px;
    color: #999;
  }
  .payment-shipping-wrapper .divide-2 > div td {
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaedf1;
  }
  .payment-shipping-wrapper .divide-2 > div .each-table-wrapper table:last-child {
    border-bottom: 3px solid #eaedf1;
  }
}

.add-edit-address-wrapper {
  padding: 30px;
}
.add-edit-address-wrapper table {
  width: 100%;
}
.add-edit-address-wrapper table th, .add-edit-address-wrapper table td {
  margin-bottom: 10px;
  font-size: 13px;
}
.add-edit-address-wrapper table th {
  width: 120px;
}
.add-edit-address-wrapper table td {
  padding: 8px 0;
}
.add-edit-address-wrapper .input-st01, .add-edit-address-wrapper .input-st01 ~ .select2-container {
  max-width: 340px;
}
.add-edit-address-wrapper .input-st03 {
  max-width: 100px;
}
.add-edit-address-wrapper .postcode > div:first-child {
  width: calc(100% - 180px);
  max-width: 340px;
  margin-right: 20px;
}
.add-edit-address-wrapper .postcode > div button, .add-edit-address-wrapper .postcode > div a {
  padding: 10px;
  height: 40px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 160px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
}
.add-edit-address-wrapper .button-wrapper {
  width: 100%;
  text-align: center;
}
.add-edit-address-wrapper .button-wrapper button {
  min-width: 200px;
  min-height: 35px;
}
@media (max-width: 575px) {
  .add-edit-address-wrapper {
    padding: 10px 30px 0;
  }
  .add-edit-address-wrapper table th, .add-edit-address-wrapper table td {
    display: block;
    width: 100%;
  }
  .add-edit-address-wrapper table th {
    margin-bottom: 0;
  }
  .add-edit-address-wrapper table td {
    padding: 0;
    margin-bottom: 15px;
  }
  .add-edit-address-wrapper .input-st01, .add-edit-address-wrapper .input-st01 ~ .select2-container, .add-edit-address-wrapper .input-st03 {
    max-width: 100%;
  }
  .add-edit-address-wrapper .postcode > div:first-child {
    width: calc(100% - 140px);
    max-width: calc(100% - 140px);
  }
  .add-edit-address-wrapper .postcode > div button, .add-edit-address-wrapper .postcode > div a {
    width: 120px;
  }
  .add-edit-address-wrapper .button-wrapper button {
    min-width: 100%;
  }
}
@media (max-width: 375px) {
  .add-edit-address-wrapper .postcode > div:first-child {
    width: calc(100% - 130px);
    max-width: calc(100% - 130px);
  }
  .add-edit-address-wrapper .postcode > div button, .add-edit-address-wrapper .postcode > div a {
    width: 110px;
  }
}

/* 회원탈퇴 */
#account-withdraw .modal-body {
  padding: 50px 30px 40px 30px;
}
#account-withdraw .modal-body .withdraw-title {
  border-bottom: 1px solid #191919;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 17px;
  color: #191919;
}
#account-withdraw .modal-body > p {
  text-align: center;
  margin-bottom: 40px;
}
#account-withdraw .modal-body ul {
  margin: 0;
  margin-bottom: 50px;
  background: #f5f5f5;
  padding: 30px 20px 1px;
}
#account-withdraw .modal-body ul li h5 {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 10px;
  margin-bottom: 5px;
}
#account-withdraw .modal-body ul li h5::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  margin-right: 5px;
  background: #666;
  vertical-align: middle;
}
#account-withdraw .modal-body ul li p {
  color: #666;
  font-size: 14px;
  margin-left: 9px;
  margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------*/
/*  마이페이지 - /member/dashboard/
/*-----------------------------------------------------------------------------------*/
.member-dashboard .div-table.dashboard-table {
  margin-bottom: 80px;
  position: relative;
}
.member-dashboard .div-table.dashboard-table .table-head .order-date-no, .member-dashboard .div-table.dashboard-table .table-body .order-date-no {
  width: 170px;
  text-align: center;
}
.member-dashboard .div-table.dashboard-table .table-head .order-info .info-box, .member-dashboard .div-table.dashboard-table .table-body .order-info .info-box {
  flex: 0 0 calc(100% - 90px);
  max-width: calc(100% - 90px);
}
.member-dashboard .div-table.dashboard-table .table-head .order-info .status, .member-dashboard .div-table.dashboard-table .table-body .order-info .status {
  flex: 0 0 90px;
  max-width: 90px;
}
.member-dashboard .div-table.dashboard-table .table-head {
  background: #191919;
  color: #fff;
  font-weight: 400;
}
.member-dashboard .div-table.dashboard-table .table-head .order-info {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding-right: 20px;
}
.member-dashboard .div-table.dashboard-table .table-body > div {
  padding: 30px 20px;
}
.member-dashboard .div-table.dashboard-table .table-body > div:last-child {
  color: #ffde40;
  font-size: 14px;
  font-weight: 600;
  width: 150px;
}
.member-dashboard .div-table.dashboard-table .table-body:nth-child(odd) {
  background: #f8f9fa;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 2px dashed #eee;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info .product-category {
  background: #243878;
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  margin-right: 3px;
  vertical-align: middle;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info .project-name {
  color: #191919;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info .status .step-1, .member-dashboard .div-table.dashboard-table .table-body .ov-order-info .status.step-2, .member-dashboard .div-table.dashboard-table .table-body .ov-order-info .status.step-3 {
  color: #191919;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info .status .step-4 {
  color: #508edb;
}
.member-dashboard .div-table.dashboard-table .table-body .ov-order-info .status .step-cancel {
  color: #e7505a;
}
.member-dashboard .dashboard-order-more {
  position: absolute;
  width: 100%;
  text-align: right;
  font-size: 14px;
  margin: 40px 0 20px;
}
.member-dashboard .dashboard-order-more a {
  color: #666;
  border-bottom: 1px solid #aaa;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.member-dashboard .dashboard-order-more a:hover {
  color: #191919;
  border-bottom: 1px solid #191919;
}
@media (max-width: 991px) {
  .member-dashboard .div-table.dashboard-table .table-body > div:last-child {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .member-dashboard .dashboard-table {
    display: none;
  }
  .member-dashboard .order-track {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 70px;
  }
  .member-dashboard .order-track dl {
    text-align: center;
  }
  .member-dashboard .order-track dl dt {
    font-size: 33px;
    font-weight: 600;
  }
  .member-dashboard .order-track dl dd {
    font-size: 14px;
  }
  .member-dashboard .order-track .dashboard-order-more {
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .member-dashboard .block {
    padding: 30px 18px;
  }
  .member-dashboard .order-track dl dt {
    font-size: 30px;
  }
  .member-dashboard .order-track dl dd {
    font-size: 13px;
  }
}
.member-dashboard .cash-info {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.member-dashboard .cash-info .info-txt {
  font-size: 13px;
  color: #7F8FA4;
}
.member-dashboard .cash-info .member-no {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 3px !important;
}
.member-dashboard .cash-info .cash {
  font-size: 28px;
  font-weight: 500;
}

/*-----------------------------------------------------------------------------------*/
/*  주문.배송 내역 - /member/orders/
/*-----------------------------------------------------------------------------------*/
.order-search {
  position: relative;
  margin: 50px 0 75px 0;
  padding: 25px;
  background: #f9f9f9;
}
.order-search .col:first-child {
  max-width: 120px;
}
.order-search .col:nth-child(2) {
  max-width: 300px;
}
.order-search .col:nth-child(3) {
  max-width: 280px;
}
.order-search .form-group {
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .order-search .col:first-child {
    max-width: 95px;
  }
  .order-search .col:nth-child(2) {
    max-width: 275px;
  }
  .order-search .col:nth-child(3) {
    max-width: 220px;
  }
}
@media (max-width: 1254px) {
  .order-search .col:first-child {
    max-width: 85px;
  }
  .order-search .col:nth-child(2) {
    max-width: 260px;
  }
  .order-search .col:nth-child(3) {
    max-width: 195px;
  }
}
@media (max-width: 904px) {
  .order-search .col:nth-child(odd) {
    max-width: 250px;
    flex: 0 0 250px;
  }
  .order-search .col:nth-child(even) {
    max-width: calc(100% - 250px);
    flex: 0 0 calc(100% - 250px);
  }
  .order-search .col:nth-child(3), .order-search .col:nth-child(4) {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .order-search .col:nth-child(odd) {
    max-width: 203px;
    flex: 0 0 203px;
  }
  .order-search .col:nth-child(even) {
    max-width: calc(100% - 203px);
    flex: 0 0 calc(100% - 203px);
  }
}
@media (max-width: 575px) {
  .order-search {
    margin: 0 0 30px 0;
  }
  .order-search .col:nth-child(odd) {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .order-search .col:nth-child(even) {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .order-search .col:nth-child(even):nth-child(2) {
    margin-top: 15px;
  }
}

.order-status {
  position: relative;
  width: 100%;
  text-align: center;
}
.order-status > a {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  color: #191919;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.order-status > a:hover {
  background: #f9f9f9;
}
.order-status > a.selected {
  background: #eee;
}
.order-status span {
  display: block;
  width: 100%;
  font-size: 35px;
}
.order-status p {
  font-size: 14px;
  margin-bottom: 10px;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 575px) {
  .order-status {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 25px 15px 20px;
  }
  .order-status > a {
    margin-bottom: 0;
    padding: 0;
    border: 0;
  }
  .order-status > a:hover {
    background: transparent;
  }
  .order-status > a.selected {
    background: transparent;
    color: #2d4697;
    font-weight: 500;
  }
  .order-status > a:first-child span {
    font-weight: 500;
  }
  .order-status > a:first-child p {
    font-size: 13px !important;
    font-weight: 500;
  }
  .order-status span {
    font-size: 30px;
  }
  .order-status p {
    font-size: 13px;
  }
}
@media (max-width: 359px) {
  .order-status > a:first-child p {
    font-size: 12px !important;
    font-weight: 500;
  }
  .order-status span {
    font-size: 28px;
  }
  .order-status p {
    font-size: 12px;
  }
}

.postcontent, .sidebar, .col_full, .col_half, .col_one_third, .col_two_third, .col_three_fourth, .col_one_fourth, .col_one_fifth, .col_two_fifth, .col_three_fifth, .col_four_fifth, .col_one_sixth, .col_five_sixth {
  display: block;
  position: relative;
  margin-right: 4%;
  margin-bottom: 50px;
  float: left;
}

.col_one_fifth {
  width: 16.8%;
}

.col_one_fifth:last-child {
  margin-right: 0;
}

.div-table.orders-table {
  margin-bottom: 80px;
  position: relative;
}
.div-table.orders-table .table-head {
  background: #191919;
  color: #fff;
  font-weight: 400;
}
.div-table.orders-table .table-head > div {
  padding: 0 20px;
}
.div-table.orders-table .table-head > div:nth-child(2) {
  padding-left: 260px;
}
.div-table.orders-table .table-head > div:nth-child(2) .status {
  padding-right: 31px;
}
.div-table.orders-table .table-head > div:nth-child(2) .etc {
  width: 110px;
}
.div-table.orders-table .table-body {
  background: #f9f9f9;
}
.div-table.orders-table .table-body > div {
  padding: 30px 20px;
}
.div-table.orders-table .table-body > div:first-child {
  width: 180px;
  padding: 0;
}
.div-table.orders-table .table-body > div:first-child ul li {
  padding: 3px 0;
}
.div-table.orders-table .table-body > div:last-child {
  width: auto;
}
.div-table.orders-table .table-body > div:last-child .order-set {
  background: #fff;
  padding: 20px;
}
.div-table.orders-table .table-body > div:last-child .order-set > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.div-table.orders-table .table-body > div:last-child .order-set.reupload-file {
  background: #ffe5e7;
}
.div-table.orders-table .table-body > div .orders-payment {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 13px;
  text-transform: uppercase;
  background: #fff;
  color: #191919;
  border: 1px solid #ddd;
  font-size: 13px;
  letter-spacing: 0.3px;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.div-table.orders-table .table-body > div .orders-payment.unpaid {
  background: #e7505a;
  border: 1px solid #e7505a;
  color: #fff;
}
.div-table.orders-table .table-body > div .orders-payment.unpaid:hover {
  opacity: 0.7;
}
.div-table.orders-table .table-body > div .orders-payment.paid:hover {
  background: #eee;
}
.div-table.orders-table .table-body > div .shipping-status {
  font-size: 15px;
}
.div-table.orders-table .table-body > div .order-set {
  margin-bottom: 20px;
}
.div-table.orders-table .table-body > div .order-set:last-child {
  margin-bottom: 0;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  width: 190px;
  height: 190px;
  background: #f5f5f5;
  margin-right: 30px;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent > div {
  width: 60%;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent > div img {
  -webkit-box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.03);
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent .left {
  margin-left: 15px;
  margin-right: auto;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent .right {
  margin: 8px 15px auto auto;
  background: #fff;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent.vertical {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  height: 100%;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent.vertical > div {
  width: calc((100% - 50px) / 2);
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent.vertical .left {
  margin: 20px 0 auto auto;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img .target-parent.vertical .right {
  margin: auto auto 20px 8px;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img.single .target-parent {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  width: 100%;
  height: 100%;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img.single .target-parent > div.left {
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img.single .target-parent .empty-img {
  display: none;
}
.div-table.orders-table .table-body > div .order-set .thumbnail-img.single .target-parent img {
  max-height: 100%;
  object-fit: contain;
}
.div-table.orders-table .table-body > div .order-set .order-contents {
  float: left;
  text-align: left;
  width: calc(100% - 220px - 72px - 115px);
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-title h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-title h5 span {
  display: inline-block;
  font-weight: 500;
  vertical-align: -2px;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-title h5 span:not(.title-span) {
  font-size: 12px;
  padding: 0 5px 2px;
  margin-right: 5px;
  vertical-align: middle;
  font-weight: 300;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option {
  margin-top: 15px;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul {
  margin: 0;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul li {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  padding-left: 8px;
  position: relative;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul li:last-child {
  margin-bottom: 0;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #2d4697;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul li > span {
  display: inline-block;
  margin-right: 10px;
  font-weight: 500;
  color: #999;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ul li > span:last-child {
  font-weight: 400;
}
.div-table.orders-table .table-body > div .order-set .order-contents .order-option ~ .order-option {
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.div-table.orders-table .table-body > div .order-set .order-process {
  float: right;
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 72px;
  margin-left: auto;
  flex-direction: column;
}
.div-table.orders-table .table-body > div .order-set .order-process.step-1, .div-table.orders-table .table-body > div .order-set .order-process.step-2, .div-table.orders-table .table-body > div .order-set .order-process.step-3 {
  color: #191919;
}
.div-table.orders-table .table-body > div .order-set .order-process.step-4 {
  color: #508edb;
}
.div-table.orders-table .table-body > div .order-set .order-process.step-cancel {
  color: #e7505a;
}
.div-table.orders-table .table-body > div .order-set .etc {
  float: right;
  text-align: center;
  display: flex;
  align-items: center;
  width: 85px;
  flex-direction: column;
  margin-left: 25px;
}
.div-table.orders-table .table-body > div .order-set .etc button {
  color: #000000;
  font-size: 12px;
  border: 1px solid #dee2e6;
  background: #ffffff;
  border-radius: 0;
  padding: 7px 0 5px;
  width: 100%;
}
.div-table.orders-table .table-body > div .order-set .etc button:hover {
  border: 1px solid #ddd;
  background: #f9f9f9;
}
.div-table.orders-table .table-body > div .order-set .etc button:not(:first-child) {
  margin-top: 8px;
}
.div-table.orders-table .btn-order-cancel-wrapper {
  text-align: center;
  width: 100%;
}
@media (max-width: 1399px) {
  .div-table.orders-table .table-body > div:first-child {
    min-width: 150px;
    max-width: 160px;
  }
  .div-table.orders-table .table-body > div .order-set .thumbnail-img {
    width: 170px;
    height: 170px;
    margin-right: 20px;
  }
  .div-table.orders-table .table-body > div .order-set .order-contents {
    width: calc(100% - 190px - 70px - 110px);
  }
}
@media (max-width: 991px) {
  .div-table.orders-table .table-body > div:first-child {
    padding-right: 0;
  }
  .div-table.orders-table .table-body > div .order-set .thumbnail-img {
    width: 150px;
    height: 150px;
  }
  .div-table.orders-table .table-body > div .order-set .order-contents {
    width: calc(100% - 170px - 70px - 110px);
  }
}
@media (max-width: 904px) {
  .div-table.orders-table {
    display: block;
    border-top: 0;
  }
  .div-table.orders-table .table-head {
    display: none;
  }
  .div-table.orders-table .table-body {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-top: 1px solid #191919;
    border-bottom: 5px solid #eee;
    margin-bottom: 50px;
    padding-bottom: 70px;
  }
  .div-table.orders-table .table-body > div {
    width: 100% !important;
    max-width: unset !important;
    padding: 15px 20px;
  }
  .div-table.orders-table .table-body > div:first-child {
    padding: 15px 20px;
  }
  .div-table.orders-table .table-body > div ul {
    display: flex;
    display: -webkit-flex;
    align-items: center;
  }
  .div-table.orders-table .table-body > div ul li {
    display: inline-block;
    float: left;
    padding: 0;
  }
  .div-table.orders-table .table-body > div:first-child {
    padding-right: 20px;
    border-bottom: 1px solid #eaeaea;
  }
  .div-table.orders-table .table-body > div:first-child ul li {
    margin-right: 5px;
    padding: 0;
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(3)::before {
    content: "(";
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(3)::after {
    content: ")";
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(4) {
    font-size: 13px !important;
    margin-left: auto;
    margin-right: 0;
    align-self: flex-start;
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(4)::before {
    content: "お支払い金額: ";
    color: #999;
    font-weight: 500;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child {
    position: absolute;
    bottom: 15px;
    right: 20px;
    margin-right: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .orders-payment {
    order: 2;
    justify-self: flex-end;
    margin-left: auto;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .transfer-account {
    order: 1;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .transfer-account p {
    display: inline-block;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .transfer-account p:last-child {
    margin-left: 5px;
  }
  .div-table.orders-table .table-body > div:nth-child(2) {
    padding-right: 20px;
  }
  .div-table.orders-table .table-body > div:nth-child(2) ul {
    justify-content: space-between;
  }
  .div-table.orders-table .table-body > div:nth-child(2) ul li.topmargin-10 {
    margin-top: 0 !important;
  }
  .div-table.orders-table .table-body > div:nth-child(3) {
    padding-right: 20px;
  }
  .div-table.orders-table .table-body > div:nth-child(3) ul {
    justify-content: space-between;
  }
  .div-table.orders-table .table-body > div:nth-child(3) ul li.topmargin-10 {
    margin-top: 0 !important;
  }
  .div-table.orders-table .table-body > div .shipping-status {
    font-size: 13px;
  }
  .div-table.orders-table .table-body > div .order-set .thumbnail-img {
    width: 150px;
    height: 150px;
  }
  .div-table.orders-table .table-body > div .order-set .order-contents {
    width: calc(100% - 170px - 70px - 110px);
  }
  .div-table.orders-table .table-body > div .order-set .order-contents .order-option ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .div-table.orders-table .btn-order-cancel-wrapper {
    text-align: right;
    margin-top: 5px !important;
  }
}
@media (max-width: 767px) {
  .div-table.orders-table .btn-order-cancel-wrapper {
    margin-top: -9px !important;
  }
  .div-table.orders-table .table-body > div {
    padding: 15px;
  }
  .div-table.orders-table .table-body > div:first-child {
    padding: 15px;
    padding-right: 15px;
  }
  .div-table.orders-table .table-body > div:first-child ul {
    align-items: flex-start;
    height: 33px;
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(2) {
    display: block;
    position: absolute;
    top: 40px;
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(3) {
    display: block;
    position: absolute;
    top: 40px;
    left: 110px;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child {
    right: 15px;
    bottom: 25px;
    margin-right: 0;
    width: calc(100% - 30px);
    display: block;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .orders-payment {
    width: 100%;
    order: 1;
  }
  .div-table.orders-table .table-body > div:first-child ul li:last-child .transfer-account {
    order: 2;
  }
  .div-table.orders-table .table-body > div:nth-child(2), .div-table.orders-table .table-body > div:nth-child(3) {
    padding-right: 15px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set {
    padding: 20px 15px 15px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set > div {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img {
    order: 6;
    position: absolute;
    top: 45px;
    left: 0;
    width: 140px;
    height: 140px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent > div {
    width: 66%;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent .left {
    margin-left: 8px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent .right {
    margin: 5px 8px auto auto;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical > div {
    width: calc((100% - 20px) / 2);
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical .left {
    margin: 24px 0 auto auto;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical .right {
    margin: auto auto 24px 5px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents {
    order: 1;
    width: 100%;
    max-width: 100%;
    min-height: 190px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents .order-option {
    margin-top: 13px;
    margin-left: 160px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-process {
    order: 12;
    margin-top: 12px;
    padding-top: 10px;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    justify-content: center;
    align-items: flex-end;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-process > a {
    margin-right: 2px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-process img {
    width: 72px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .etc {
    position: absolute;
    bottom: 0;
    margin-left: 0;
    width: calc(100% - 80px);
    flex-direction: column;
    align-items: flex-start;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .etc button {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img {
    order: 6;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100px;
    height: 100px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent > div {
    width: 66%;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent .left {
    margin-left: 8px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent .right {
    margin: 5px 8px auto auto;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical > div {
    width: calc((100% - 20px) / 2);
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical .left {
    margin: 24px 0 auto auto;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img .target-parent.vertical .right {
    margin: auto auto 24px 5px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents {
    min-height: 175px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents .order-title .title-span {
    display: block;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents .order-option {
    margin-top: 13px;
    margin-left: 115px;
  }
}
@media (max-width: 359px) {
  .div-table.orders-table .table-body > div:first-child ul {
    align-items: flex-start;
    height: 33px;
  }
  .div-table.orders-table .table-body > div:first-child ul li {
    font-size: 12px;
  }
  .div-table.orders-table .table-body > div:first-child ul li:nth-child(4) {
    font-size: 12px !important;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .thumbnail-img {
    width: 80px;
    height: 80px;
  }
  .div-table.orders-table .table-body > div:last-child .order-set .order-contents .order-option {
    margin-left: 93px;
    min-height: 90px;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  회원 정보 변경 및 전자세금계산서 - /member/profile/, /member/business-info/
/*-----------------------------------------------------------------------------------*/
.edit-profile, .business-info {
  font-size: 13px;
}
.edit-profile h5, .business-info h5 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #191919;
}
.edit-profile input, .business-info input {
  margin-bottom: 0;
}
.edit-profile table, .business-info table {
  table-layout: fixed;
  border-top: 1px solid #191919;
  border-collapse: collapse;
  min-width: 100%;
  max-width: none;
  width: auto;
}
.edit-profile table p, .business-info table p {
  margin: 10px 0 7px;
}
.edit-profile table tr, .business-info table tr {
  border-bottom: 1px solid #eee;
}
.edit-profile table th, .edit-profile table td, .edit-profile table tr:last-child, .business-info table th, .business-info table td, .business-info table tr:last-child {
  border: 0;
}
.edit-profile table th, .business-info table th {
  width: 170px;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  vertical-align: top;
  padding: 20px 0 10px;
  text-align: left;
}
.edit-profile table td, .business-info table td {
  width: calc(100% - 150px);
  vertical-align: middle;
  padding: 10px 0;
}
.edit-profile .required, .business-info .required {
  color: #e7505a;
  font-size: 12px;
  padding-left: 2px;
}
.edit-profile .add-profile h5, .business-info .add-profile h5 {
  color: #666;
}
.edit-profile .add-profile th, .business-info .add-profile th {
  color: #666;
}
.edit-profile .basic-profile button, .business-info .basic-profile button {
  background: #fff;
  color: #191919;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 9px 20px;
  font-size: 13px;
  transition: all ease 0.4s;
}
.edit-profile .basic-profile button:hover, .business-info .basic-profile button:hover {
  border: 1px solid #191919;
}
.edit-profile .basic-profile .md-checkbox, .business-info .basic-profile .md-checkbox {
  margin-top: 15px;
}
.edit-profile .basic-profile .md-checkbox label > .box, .business-info .basic-profile .md-checkbox label > .box {
  top: 0px;
}
.edit-profile .basic-profile .md-checkbox label > .check, .business-info .basic-profile .md-checkbox label > .check {
  top: -2px;
}
.edit-profile .basic-profile label, .business-info .basic-profile label {
  margin-bottom: 0;
  font-size: 13px;
}
.edit-profile .edit-password table, .business-info .edit-password table {
  border-top: 0;
  margin-bottom: 0;
  display: none;
}
.edit-profile .edit-password table.displayed, .business-info .edit-password table.displayed {
  display: table;
}
.edit-profile .edit-password table tr, .business-info .edit-password table tr {
  border-bottom: 0;
}
.edit-profile .edit-password table th, .business-info .edit-password table th {
  color: #666;
}
.edit-profile .edit-password table button.canel-password, .business-info .edit-password table button.canel-password {
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  color: #e7505a;
  letter-spacing: 0.3px;
}
.edit-profile .btn-profile-wrap, .business-info .btn-profile-wrap {
  width: 100%;
  margin: 30px auto 70px;
  text-align: center;
}
.edit-profile .btn-profile-wrap button, .business-info .btn-profile-wrap button {
  min-width: 200px;
  padding: 7px 30px;
  text-transform: uppercase;
  transition: all ease 0.4s;
}
.edit-profile .btn-profile-wrap button:first-child, .business-info .btn-profile-wrap button:first-child {
  border: 1px solid #7F8FA4;
  background-color: #fff;
  color: #191919;
  margin-right: 5px;
}
.edit-profile .btn-profile-wrap button:first-child:hover, .business-info .btn-profile-wrap button:first-child:hover {
  border: 1px solid #191919;
}
.edit-profile .btn-profile-wrap button:last-child, .business-info .btn-profile-wrap button:last-child {
  border: 1px solid #191919;
  background-color: #191919;
  color: #fff;
}
.edit-profile .btn-profile-wrap button:last-child:hover, .business-info .btn-profile-wrap button:last-child:hover {
  opacity: 0.7;
}
.edit-profile .option-msg, .business-info .option-msg {
  margin: 0;
}
.edit-profile .option-msg li, .business-info .option-msg li {
  position: relative;
  padding: 0 0 5px 10px;
}
.edit-profile .option-msg li::before, .business-info .option-msg li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #191919;
}
.edit-profile .option-msg li.color-red::before, .business-info .option-msg li.color-red::before {
  background: #e7505a;
}
@media (max-width: 767px) {
  .edit-profile table th, .edit-profile table td, .business-info table th, .business-info table td {
    display: table-cell;
  }
  .edit-profile table th, .business-info table th {
    width: 160px;
    padding: 20px 0 10px;
    font-size: 14px;
  }
  .edit-profile table td, .business-info table td {
    width: calc(100% - 140px);
    padding: 10px 0;
  }
  .edit-profile .basic-profile button, .business-info .basic-profile button {
    width: auto;
  }
  .edit-profile .edit-password table.displayed, .business-info .edit-password table.displayed {
    display: flex;
  }
  .edit-profile .edit-password table.displayed > tbody, .business-info .edit-password table.displayed > tbody {
    display: block;
    width: 100%;
  }
  .edit-profile .edit-password table.displayed tr, .business-info .edit-password table.displayed tr {
    display: block;
    width: inherit;
  }
  .edit-profile .edit-password table.displayed th, .business-info .edit-password table.displayed th {
    display: block;
    width: 100%;
    padding: 10px 0 0;
    text-align: left;
    font-size: 14px;
  }
  .edit-profile .edit-password table.displayed td, .business-info .edit-password table.displayed td {
    display: block;
    width: 100%;
    vertical-align: middle;
    padding: 10px 0;
  }
  .edit-profile .add-profile, .business-info .add-profile {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .edit-profile table, .business-info table {
    display: flex;
  }
  .edit-profile table > tbody, .business-info table > tbody {
    display: block;
    width: 100%;
  }
  .edit-profile table tr, .business-info table tr {
    display: block;
    width: inherit;
  }
  .edit-profile table th, .business-info table th {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    text-align: left;
    font-size: 14px;
  }
  .edit-profile table td, .business-info table td {
    display: block;
    width: 100%;
    padding: 10px 0 20px;
  }
  .edit-profile .basic-profile button, .business-info .basic-profile button {
    width: 100%;
  }
  .edit-profile .edit-password table, .business-info .edit-password table {
    display: none;
  }
  .edit-profile .edit-password table button.canel-password, .business-info .edit-password table button.canel-password {
    width: initial;
  }
  .edit-profile .btn-profile-wrap button:last-child, .business-info .btn-profile-wrap button:last-child {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .business-info table th, .business-info table td {
    display: table-cell;
  }
  .business-info table th {
    width: 150px;
    padding: 20px 0 10px;
  }
  .business-info table td {
    width: calc(100% - 150px);
    padding: 10px 0;
  }
}
@media (max-width: 575px) {
  .business-info table {
    display: flex;
  }
  .business-info table > tbody {
    display: block;
    width: 100%;
  }
  .business-info table tr {
    display: block;
    width: inherit;
  }
  .business-info table th {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    text-align: left;
    font-size: 14px;
  }
  .business-info table td {
    display: block;
    width: 100%;
    padding: 10px 0 20px;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  주소록관 - /member/dashboard/
/*-----------------------------------------------------------------------------------*/
.address-book .nav-tabs {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: none;
}
.address-book .nav-tabs li {
  min-width: 160px;
}
.address-book .nav-tabs li a {
  border: 2px solid #dee2e6;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  line-height: 1;
}
.address-book .nav-tabs li a.active {
  border-color: #191919;
  background: #191919;
  color: #fff;
}
.address-book .nav-tabs li:first-child {
  margin-right: 10px;
}
@media (max-width: 339px) {
  .address-book .nav-tabs li {
    min-width: calc(50% - 10px);
  }
}
.address-book .address-search {
  position: relative;
  margin: 50px 0;
  padding: 25px;
  background: #f9f9f9;
}
.address-book .address-search .row {
  justify-content: space-between;
}
.address-book .address-search .col:first-child {
  max-width: 120px;
}
.address-book .address-search .col:nth-child(2) {
  max-width: 170px;
  margin-left: auto;
}
.address-book .address-search .col:nth-child(3) {
  max-width: 350px;
}
.address-book .address-search .col:last-child {
  max-width: 160px;
  max-width: 200px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.address-book .address-search .col:last-child button {
  width: calc(100% - 6px);
  font-size: 13px;
}
@media (max-width: 991px) {
  .address-book .address-search .col:first-child {
    max-width: 110px;
  }
  .address-book .address-search .col:nth-child(2) {
    max-width: 140px;
    margin-left: auto;
  }
  .address-book .address-search .col:nth-child(3) {
    max-width: 350px;
  }
  .address-book .address-search .col:last-child {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .address-book .address-search .col:first-child {
    max-width: 90px;
    flex: 0 0 90px;
  }
  .address-book .address-search .col:nth-child(2) {
    max-width: 120px;
    flex: 0 0 120px;
  }
  .address-book .address-search .col:nth-child(3) {
    max-width: calc(100% - 210px);
    flex: 0 0 calc(100% - 210px);
  }
  .address-book .address-search .col:nth-child(3) .btn.btn-default {
    padding: 5px 10px;
  }
  .address-book .address-search .col:last-child {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 18px;
  }
  .address-book .address-search .col:last-child button {
    height: 100%;
    margin-left: 3px;
  }
}
@media (max-width: 575px) {
  .address-book .address-search .col:first-child {
    max-width: 120px;
    flex: 0 0 120px;
  }
  .address-book .address-search .col:nth-child(2) {
    max-width: calc(100% - 120px);
    flex: 0 0 calc(100% - 120px);
  }
  .address-book .address-search .col:nth-child(3) {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 15px;
  }
  .address-book .address-search .col:last-child {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 18px;
  }
}
.address-book .empty .empty-table-contents .informer {
  top: -15px;
  right: -5px;
}
.address-book .address-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 30px;
}
.address-book .address-card p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #191919;
}
.address-book .address-card .addr-head {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.address-book .address-card .addr-title {
  width: calc(100% - 45px);
}
.address-book .address-card .addr-title h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #191919;
}
.address-book .address-card .addr-title > p {
  font-size: 13px;
  color: #7F8FA4;
}
.address-book .address-card .addr-title > button {
  position: absolute;
  top: 15px;
  right: 15px;
}
.address-book .address-card .addr-body {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.address-book .address-card .addr-footer {
  position: relative;
  padding: 15px;
}
.address-book .address-card .addr-footer > button {
  font-size: 13px;
  padding: 6px 0;
  border-radius: 3px;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.address-book .address-card .addr-footer > button:first-child {
  width: 70px;
  margin-right: 10px;
  float: left;
  background: #f5f5f5;
  border: 1px solid #ddd;
}
.address-book .address-card .addr-footer > button:first-child:hover {
  background: #fff;
  border: 1px solid #191919;
}
.address-book .address-card .addr-footer > button:last-child {
  width: 100%;
  border: 1px solid #191919;
  background-color: #191919;
  color: #ddd;
}
.address-book .address-card .addr-footer > button:last-child:hover {
  opacity: 0.7;
  color: #fff;
}
.address-book .address-card .addr-footer > span {
  display: none;
  width: calc(100% - 80px);
  float: right;
  border: 1px solid #2d4697;
  background-color: #2d4697;
  color: #ffffff;
  padding: 6px 0;
  border-radius: 3px;
  text-align: center;
}
.address-book .address-card.set-default {
  border: 1px solid #7F8FA4;
}
.address-book .address-card.set-default .addr-footer > button.btn-set {
  display: none;
}
.address-book .address-card.set-default .addr-footer > span {
  display: block;
  font-size: 13px;
}
.address-book .btn.btn-icon {
  padding-left: 0;
  padding-right: 0;
  width: 40px;
}
.address-book .btn-icon span {
  line-height: 28px;
  float: left;
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 20px;
  text-indent: 2.5px;
}

