@import '../fonts/pretendard.css';
html,
body {
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}

.login-wrap {
  background-color: #fff;
  position: relative;
  height: 100%;
}

.wrapper {
  background-color: #fafafa;
  position: relative;
  padding-left: 282px;
  height: 100%;
}
@media (max-width: 1000.1px) {
  .wrapper {
    padding-left: 60px;
  }
}

em {
  font-style: inherit;
}

ol, ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.s-hide {
  position: absolute !important;
  top: auto;
  left: -10000em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  background-color: unset;
  border: 0;
}

input {
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  color: #212121;
  padding: 16px 12px;
  height: 40px;
}

input::-moz-placeholder {
  font-size: 16px;
  color: #d9d9d9;
}

input::placeholder {
  font-size: 16px;
  color: #d9d9d9;
}

input[type=date] {
  padding-left: 48px;
  position: relative;
  background: url(../images/icon_calendar.svg) 16px center/16px 16px no-repeat;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

input[type=date]::before {
  content: attr(placeholder);
  width: 100%;
  color: #6f757c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

input[type=date]:valid::before {
  display: none;
}

select {
  height: 40px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  height: 40px;
}
.btn.btn-primary:hover {
  background-color: #3F6DF9;
  color: #fff;
}
.btn.btn-primary {
  background-color: #3F6DF9;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.btn.btn-primary:hover {
  background-color: #3F6DF9;
  color: #fff;
}
.btn.btn-outline-primary {
  border-color: #3F6DF9;
}
.btn.btn-lg {
  height: 48px;
}
.btn.btn-xl {
  height: 56px;
}
.btn.btn-full {
  width: 100%;
}

.form-control {
  border: 1px solid #dfe1e5;
  font-size: 14px;
  color: #000;
}
.form-control:focus {
  box-shadow: none;
}
.form-control::-moz-placeholder {
  font-size: 14px;
  color: #6f757c;
}
.form-control::placeholder {
  font-size: 14px;
  color: #6f757c;
}

.form-select {
  font-size: 14px;
  color: #000;
}

[class*=col-] + [class*=col-] {
  padding-left: 1rem;
  padding-right: 0;
}
@media (max-width: 1400px) {
  [class*=col-] + [class*=col-] {
    padding-left: 0;
  }
}

.row {
  --bs-gutter-x:0;
}

.form-check__none-label {
  padding-left: 0;
}
.form-check__none-label .form-check-input {
  width: 16px;
  height: 16px;
  padding: 0;
  float: none;
  margin-left: 0;
}

.icon-button + .icon-button {
  margin-left: 16px;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.icon--bank {
  background: url(../images/icon_bank.svg) center/contain no-repeat;
}
.icon--card {
  background: url(../images/icon_card.svg) center/contain no-repeat;
}
.icon--menu {
  width: 24px;
  height: 24px;
  background: url(../images/icon_list.svg) center/contain no-repeat;
}
.icon--link {
  background: url(../images/icon_link.svg) center/contain no-repeat;
}
.icon + .icon {
  margin-left: 16px;
}

.modal .modal-dialog {
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}
.modal .modal-header {
  border-bottom: 0;
}
.modal .modal-title {
  font-size: 16px;
  font-weight: bold;
}
.modal .modal-body {
  padding: 0 19px;
}
.modal .modal-footer {
  border-top: 0;
  padding: 17px;
  width: 100%;
}
.modal .modal-footer > * {
  margin: 0;
}
.modal .modal-footer .btn {
  width: 100%;
}

.check-btn {
  position: relative;
}
.check-btn__input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 100%;
  height: 100%;
}
.check-btn__label {
  min-width: 90px;
  height: 38px;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  text-align: center;
}
.check-btn__label--wait {
  border: 1px solid #9EB5D0;
  background-color: rgba(158, 181, 208, 0.1);
  color: #9EB5D0;
}
.check-btn__input:checked + .check-btn__label--wait {
  background-color: #9EB5D0;
  color: #fff;
}
.check-btn__label--ing {
  border: 1px solid #3F6DF9;
  background-color: rgba(63, 109, 249, 0.1);
  color: #3F6DF9;
}
.check-btn__input:checked + .check-btn__label--ing {
  background-color: #3F6DF9;
  color: #fff;
}
.check-btn__label--end {
  border: 1px solid #32A9A2;
  background-color: rgba(50, 169, 162, 0.1);
  color: #32A9A2;
}
.check-btn__input:checked + .check-btn__label--end {
  background-color: #32A9A2;
  color: #fff;
}
.check-btn__label--finish {
  border: 1px solid #556372;
  background-color: rgba(85, 99, 114, 0.1);
  color: #556372;
}
.check-btn__input:checked + .check-btn__label--finish {
  background-color: #556372;
  color: #fff;
}
.check-btn__label--private {
  border: 1px solid #FF5267;
  background-color: rgba(255, 82, 103, 0.1);
  color: #FF5267;
}
.check-btn__input:checked + .check-btn__label--private {
  background-color: #FF5267;
  color: #fff;
}

.login {
  max-width: 300px;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.login__logo {
  height: 32px;
}
.login__box {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  margin-top: 48px;
}
.login__phonebox {
  display: flex;
}
.login__input > input {
  border: 0;
}
.login__input > input:focus {
  border-color: transparent;
  box-shadow: none;
}
.login__input > label {
  color: #dbdbdb !important;
}
.login__input--certification {
  border-top: 1px solid #d9d9d9;
  border-radius: 0 0 6px 6px;
  width: 100%;
}
.login__certi-btn {
  border-radius: 0 6px 0 0;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 30.5px;
}
.login__certi-btn:disabled {
  background-color: rgba(0, 0, 0, 0.2);
}
.login .btn {
  margin-top: 62px;
}

.dropdown .dropdown-toggle {
  text-decoration: none;
  display: block;
  color: #000;
}

.col-label {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.sidebar {
  width: 282px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  padding: 1rem;
  display: flex;
  flex-flow: column;
  border-right: 1px solid #e8e9ec;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  z-index: 2;
}
@media (max-width: 1000.1px) {
  .sidebar {
    width: 60px;
  }
}
.sidebar__logo img {
  height: 20px;
}
@media (max-width: 1000.1px) {
  .sidebar__logo {
    display: none;
  }
}
.sidebar__logobox {
  display: flex;
  justify-content: space-between;
  padding: 7px 0 25px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e9ec;
}
@media (max-width: 1000.1px) {
  .sidebar__logobox {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.sidebar__menu-btn {
  width: 24px;
  height: 24px;
  background: url(../images/icon_list.svg) center/contain no-repeat;
}
@media (min-width: 1000px) {
  .sidebar__menu-btn {
    display: none;
  }
}
.sidebar .nav {
  display: flex;
  flex-flow: column;
}
@media (max-width: 1000.1px) {
  .sidebar .nav {
    display: none;
  }
}
.sidebar .nav li .nav-link {
  font-weight: 500;
  color: #000;
}
.sidebar .nav li .nav-link.active {
  background-color: #3f6df9;
  color: #fff;
  font-weight: bold;
}
.sidebar--active {
  width: 282px;
}
.sidebar--active .sidebar__logo {
  display: block;
}
.sidebar--active .sidebar__logobox {
  padding: 7px 0 25px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e9ec;
}
.sidebar--active .sidebar__menu-btn {
  background-image: url(../images/icon_close.svg);
}
.sidebar--active .nav {
  display: flex;
}

.header {
  padding: 0 0 0 1.5rem;
  background-color: #fff;
  height: 69px;
  border-bottom: 1px solid #e8e9ec;
  position: relative;
  z-index: 1;
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.header__nick {
  font-size: 14px;
  font-weight: 500;
}
.header .dropdown {
  padding: 0 29px;
}

.content-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  height: calc(100% - 69px);
  overflow-y: auto;
}

.content {
  height: 100%;
  position: relative;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 1400px) {
  .content {
    flex-flow: column;
  }
}
.content .card {
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
}
.content .card .card-body {
  padding: 0;
}
.content .card__service {
  max-width: 390px;
  width: 100%;
}
.content .card__service + .card__service {
  margin-left: 1.5rem;
}
@media (max-width: 1400px) {
  .content .col-md-6 {
    width: 100%;
    flex: unset;
    height: 100%;
  }
}
@media (max-width: 1400px) {
  .content .col-md-6 + .col-md-6 {
    margin-top: 16px;
  }
}

.search-box {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
}
.search-box.border-top {
  border-top: 1px solid #EAEFF5 !important;
}
.search-box .col-md-1:first-child {
  width: 80px;
}
.search-box .col-md-1:first-child .col-label {
  text-align: left;
}
@media (max-width: 1400px) {
  .search-box [class*=col-md-] {
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .search-box .col-label {
    text-align: left;
    margin-top: 16px;
  }
}
@media (max-width: 1400px) {
  .search-box .btn {
    width: 100%;
    margin-top: 16px;
  }
}

.manage-box {
  border: 0;
}
.manage-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  min-height: 72px;
}
@media (max-width: 1400px) {
  .manage-box__header {
    flex-flow: column;
    align-items: flex-start;
    min-height: unset;
  }
}
.manage-box__resultbox {
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .manage-box__resultbox {
    width: 100%;
    margin-top: 16px;
    flex-flow: column;
    align-items: flex-start;
  }
}
.manage-box__result {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-right: 24px;
}
.manage-box__result em {
  color: #3F6DF9;
  margin-left: 8px;
  display: inline-block;
}
.manage-box__btn-box {
  display: flex;
  gap: 12px;
}
@media (max-width: 1400px) {
  .manage-box__btn-box {
    width: 100%;
    margin-top: 16px;
    flex-flow: column;
  }
}
@media (max-width: 1400px) {
  .manage-box__btn-box .btn {
    width: 100%;
  }
}
.manage-box__tablebox {
  width: 100%;
  overflow-x: auto;
  position: relative;
}
.manage-box__table {
  width: 100%;
}
.manage-box__table thead {
  white-space: nowrap;
}
.manage-box__table thead th {
  padding: 12px 0;
  background-color: #EAEFF5;
  text-align: left;
  padding: 0 16px;
  height: 40px;
}
.manage-box__table tbody {
  white-space: nowrap;
}
.manage-box__table tbody td {
  height: 60px;
  text-align: center;
  padding: 0 16px;
}
.manage-box__table tbody .manage-box__blue {
  background-color: rgb(248, 249, 250);
}
.manage-box__table tbody .manage-box__blue .manage-box__table-state {
  color: #3F6DF9;
}
.manage-box__table tbody .manage-box__gray {
  background-color: rgb(248, 249, 250);
}
.manage-box__table tbody .manage-box__gray .manage-box__table-state {
  color: #556372;
}
.manage-box__table tbody .manage-box__red {
  background-color: rgba(255, 82, 103, 0.1);
}
.manage-box__table tbody .manage-box__red .manage-box__table-txt {
  color: #FF5267;
}
.manage-box__table tbody .manage-box__red .manage-box__table-state {
  color: #FF5267;
}
.manage-box__table tbody .manage-box__disabled .manage-box__table-state,
.manage-box__table tbody .manage-box__disabled .manage-box__table-txt {
  color: rgba(0, 0, 0, 0.3);
}
.manage-box__table tbody tr:hover {
  background-color: rgba(63, 109, 249, 0.3);
}
.manage-box__table-tit {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}
.manage-box__table-txt {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}
.manage-box__table-txt .manage-box__red .manage-box__table-txt {
  color: #FF5267;
}
.manage-box__table-state {
  font-weight: bold;
  color: #32A9A2;
}
.manage-box__icon-box {
  display: flex;
  justify-content: center;
}
.manage-box__sort-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1400px) {
  .manage-box__sort-box {
    margin-top: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 1400px) {
  .manage-box .check-btn__label {
    width: 100%;
  }
}

.modal-list li {
  display: flex;
  align-items: center;
}
.modal-list li + li {
  margin-top: 8px;
}
.modal-list__tit {
  font-size: 14px;
}
.modal-list__desc {
  font-size: 14px;
}

.c-paging {
  margin-top: auto;
  padding: 22px 0;
  border-top: 1px solid #E8E9EC;
}
.c-paging .pagination {
  justify-content: center;
}
.c-paging .pagination .page-item--active .page-link {
  background-color: #3F6DF9;
  color: #fff;
}

.pop-detail {
  height: calc(100vh - 11.75rem);
  overflow-y: auto;
}

.ck .ck-toolbar {
  border-left: 0 !important;
  border-right: 0 !important;
  border-color: #EAEFF5 !important;
}
.ck .ck-content {
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-color: #EAEFF5 !important;
  height: 100%;
}
.ck .ck-editor__editable.ck-focused:not(.ck-edior__nested-editable) {
  box-shadow: none !important;
  border-top: 1px solid #EAEFF5 !important;
  border-color: #EAEFF5 !important;
}

.modal-pop {
  display: none;
  position: absolute;
}
.modal-pop__show {
  display: block;
}

.auction-detail {
  width: 100%;
  position: relative;
}
.auction-detail__img {
  width: 100%;
}
.auction-detail__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.auction-detail__time-box {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.auction-detail__time-txt {
  display: flex;
  flex-flow: column;
}
.auction-detail__time-tag {
  font-size: 12px;
  font-weight: 400;
  color: #9e9e9e;
}
.auction-detail__time-start {
  font-size: 14px;
  color: #000;
}
.auction-detail__remain-box {
  border-radius: 5px;
  padding: 6px 12px;
  background-color: #e23636;
}
.auction-detail__remain-box--red {
  background-color: #e23636;
}
.auction-detail__remain-box--blue {
  background-color: #223dff;
}
.auction-detail__remain-box--black {
  background-color: #000;
}
.auction-detail__remain-box--gray {
  background-color: #9e9e9e;
}
.auction-detail__remain-time {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.auction-detail__tit-box {
  margin-top: 16px;
  display: flex;
  flex-flow: column;
}
.auction-detail__tit-tag {
  font-size: 12px;
  color: #808080;
  font-weight: 400;
  margin-bottom: 4px;
}
.auction-detail__tit {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.auction-detail__tit-info {
  font-size: 12px;
  font-weight: 400;
  color: #9e9e9e;
  margin-bottom: 30px;
}
.auction-detail__info-box {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}
.auction-detail__info-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auction-detail__info-txt + .auction-detail__info-txt {
  margin-top: 18px;
}
.auction-detail__info-tit {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
}
.auction-detail__info {
  font-size: 18px;
  font-weight: bold;
}
.auction-detail__info em {
  font-weight: normal;
  margin-left: 2px;
}
.auction-detail__loop {
  margin-bottom: 20px;
}
.auction-detail__loop--active .auction-detail__loop-descbox {
  display: block;
}
.auction-detail__loop-titbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.auction-detail__desc-tit {
  font-size: 16px;
  font-weight: bold;
}
.auction-detail__loop-descbox {
  display: none;
}
.auction-detail__loop-descbox--event {
  display: block;
}
.auction-detail__loop-desc {
  font-size: 14px;
  font-weight: 400;
  color: #616161;
}
.auction-detail__event {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auction-detail__event + .auction-detail__event {
  margin-top: 16px;
}
.auction-detail__event-tit {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
}
.auction-detail__event-info {
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}
.auction-detail__map {
  background-color: #f5f5f5;
  margin: 0 -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  height: 162px;
}
.auction-detail__collapse-btn {
  width: 30px;
  height: 30px;
  background: url(../images/icon_arrow_down.svg) center/contain no-repeat;
}

.auction-profile {
  margin: 20px -16px 30px;
  padding: 20px 16px 0;
  border-top: 6px solid #f5f5f5;
  display: flex;
  align-items: center;
}
.auction-profile__img {
  width: 60px;
  height: 60px;
}
.auction-profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auction-profile__text {
  display: flex;
  flex-flow: column;
  margin-left: 9px;
}
.auction-profile__nick {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.auction-profile__tag {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
.auction-profile__info {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
}
.auction-profile__link-box {
  margin-left: auto;
  margin-bottom: auto;
  display: flex;
  gap: 12px;
}
.auction-profile__link-btn {
  width: 24px;
  height: 24px;
  display: block;
  background: url(../images/icon_simple_daum.svg) center/contain no-repeat;
}
.auction-profile__link-btn--facebook {
  background: url(../images/icon_simple_facebook.svg) center/contain no-repeat;
}
.auction-profile__link-btn--youtube {
  background: url(../images/icon_simple_youtube.svg) center/contain no-repeat;
}
.auction-profile__link-btn--instar {
  background: url(../images/icon_simple_instar.svg) center/contain no-repeat;
}
.auction-profile__link-btn--linked {
  background: url(../images/icon_simple_link.svg) center/contain no-repeat;
}
.auction-profile__link-btn--naver {
  background: url(../images/icon_simple_naver_blank.svg) center/contain no-repeat;
}
.auction-profile__link-btn--snapchat {
  background: url(../images/icon_simple_snapchat.svg) center/contain no-repeat;
}
.auction-profile__link-btn--tictok {
  background: url(../images/icon_simple_tictok.svg) center/contain no-repeat;
}
.auction-profile__link-btn--twiter {
  background: url(../images/icon_simple_twiter.svg) center/contain no-repeat;
}
.auction-profile__link-btn--whatsapp {
  background: url(../images/icon_simple_whatsapp.svg) center/contain no-repeat;
}

.auction-review {
  display: flex;
  flex-flow: column;
  padding: 0 16px 16px;
  margin: 0 -16px;
}
.auction-review + .auction-review {
  border-top: 1px solid #f6f5f5;
  padding-top: 16px;
}
.auction-review__time {
  font-size: 14px;
  font-weight: 400;
  color: #616161;
  margin-bottom: 7px;
}
.auction-review__nick {
  font-size: 14px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 7px;
}
.auction-review__box {
  display: flex;
}
.auction-review__txtbox {
  display: flex;
  flex-flow: column;
  width: calc(100% - 180px);
  margin-left: 8px;
}
.auction-review__img {
  max-width: 172px;
  width: 100%;
  height: 94px;
}
.auction-review__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.auction-review__title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 4px;
}
.auction-review__sell-nick {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.auction-review__tag {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
}
.auction-review__price {
  font-size: 14px;
  font-weight: bold;
  color: #9e9e9e;
  margin-top: auto;
}
.auction-review__starbox {
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 7px;
}
.auction-review__star {
  font-size: 14px;
  color: #f5f5f5;
}
.auction-review__star--active {
  color: #223dff;
}
.auction-review__more {
  padding: 0;
  margin-top: 7px;
  display: inline-block;
  text-align: left;
  color: #9e9e9e;
}

.bid-list__header {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.bid-list__back-btn {
  background: url(../images/img_arrow_back.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
}
.bid-list__header-tit {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.bid-list__cont {
  position: relative;
}
.bid-list__item {
  display: flex;
  align-items: center;
  width: 100%;
}
.bid-list__item--pay-complete .bid-list__state {
  font-weight: bold;
}
.bid-list__item--buy-confirm .bid-list__profile {
  border: 1px solid #223dff;
  border-radius: 50%;
}
.bid-list__item--buy-confirm .bid-list__profile::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -6px;
  right: -6px;
  background: #fff url(../images/icon_blue_check.svg) center/contain no-repeat;
  border-radius: 50%;
}
.bid-list__item--buy-confirm .bid-list__num {
  color: #223dff;
}
.bid-list__item--buy-confirm .bid-list__nick {
  color: #223dff;
}
.bid-list__item--buy-confirm .bid-list__price {
  color: #223dff;
}
.bid-list__item--buy-confirm .bid-list__price em {
  color: #223dff;
}
.bid-list__item--buy-confirm .bid-list__state {
  font-weight: bold;
  color: #223dff;
}
.bid-list__item--refund-confirm .bid-list__profile {
  border: 1px solid #e23636;
  border-radius: 50%;
}
.bid-list__item--refund-confirm .bid-list__profile::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -6px;
  right: -6px;
  background: #fff url(../images/icon_red_check.svg) center/contain no-repeat;
  border-radius: 50%;
}
.bid-list__item--refund-confirm .bid-list__num {
  color: #E23636;
}
.bid-list__item--refund-confirm .bid-list__nick {
  color: #E23636;
}
.bid-list__item--refund-confirm .bid-list__price {
  color: #E23636;
}
.bid-list__item--refund-confirm .bid-list__price em {
  color: #E23636;
}
.bid-list__item--refund-confirm .bid-list__state {
  font-weight: bold;
  color: #E23636;
}
.bid-list__item--refund-request .bid-list__num {
  color: #E23636;
}
.bid-list__item--refund-request .bid-list__nick {
  color: #E23636;
}
.bid-list__item--refund-request .bid-list__price {
  color: #E23636;
}
.bid-list__item--refund-request .bid-list__price em {
  color: #E23636;
}
.bid-list__item--refund-request .bid-list__state {
  font-weight: bold;
  color: #E23636;
}
.bid-list__item + .bid-list__item {
  margin-top: 20px;
}
.bid-list__num {
  font-size: 12px;
  color: #808080;
  font-weight: 700;
}
.bid-list__profile {
  width: 40px;
  height: 40px;
  margin-left: 12px;
  position: relative;
}
.bid-list__profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bid-list__txtbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 60px);
  margin-left: 8px;
}
.bid-list__nick {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  width: calc((100% - 100px) / 2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.bid-list__price {
  font-size: 14px;
  color: #000;
  width: calc((100% - 100px) / 2);
  text-align: right;
}
.bid-list__price em {
  font-size: 12px;
  color: #616161;
  margin-left: 2px;
}
.bid-list__state {
  font-size: 14px;
  color: #212121;
  width: 75px;
  text-align: center;
  margin-left: 20px;
}
.bid-list__state--btn {
  border: 1px solid #E23636;
  border-radius: 4px;
  padding-right: 0;
}
.bid-list__state--btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_right_red.svg) center/contain no-repeat;
  display: inline-block;
  vertical-align: middle;
}

.service-manage {
  height: 100%;
}
.service-manage__header {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-manage__header span {
  color: #000;
  font-size: 16px;
}
.service-manage__cont {
  display: flex;
  flex-flow: column;
  height: calc(100% - 126px);
  overflow-y: auto;
}

.c-chat {
  padding: 20px;
}
.c-chat__date {
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px auto;
  padding: 0 17px;
}
.c-chat__date span {
  font-size: 14px;
  color: #212121;
}
.c-chat__item {
  display: flex;
  flex-flow: column;
  margin-left: auto;
}
.c-chat__item--left {
  margin-left: unset;
  margin-right: auto;
}
.c-chat__item--left .c-chat__box {
  background-color: #f5f5f5;
}
.c-chat__item + .c-chat__item {
  margin-top: 27px;
}
.c-chat__box {
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(34, 61, 255, 0.2);
}
.c-chat__nickbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-chat__nick {
  font-size: 14px;
  color: #000;
}
.c-chat__talk {
  margin-top: 4px;
  font-size: 14px;
  color: #000;
}
.c-chat__talk em {
  color: #223dff;
  margin-right: 4px;
}
.c-chat__link {
  display: inline;
}
.c-chat__time {
  margin-top: 4px;
  font-size: 12px;
  color: #9e9e9e;
}
.c-chat__room {
  display: flex;
  align-items: center;
  padding: 16px;
}
.c-chat__room .c-chat__img {
  width: 60px;
  height: 60px;
  margin-right: 12px;
}
.c-chat__room .c-chat__img img {
  width: 100%;
  height: 100%;
}
.c-chat__room--active {
  background-color: rgba(34, 61, 255, 0.2);
}
.c-chat__room-txt {
  width: calc(100% - 110px);
  display: flex;
  flex-flow: column;
}
.c-chat__room-nick {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.c-chat__room-talk {
  font-size: 14px;
  color: #757575;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-chat__new {
  height: 20px;
  padding: 0 6px;
  background-color: #E23636;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-left: auto;
}
.c-chat__new span {
  font-size: 12px;
  color: #fff;
}
.c-chat__new--dot {
  width: 6px;
  height: 6px;
  padding: 0;
}

.input-box {
  height: 82px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-box__btn {
  border: 1px solid #9e9e9e;
  border-radius: 8px;
  height: 50px;
  width: 50px;
  background-color: #fff;
}
.input-box__input {
  width: calc(100% - 116px);
  border: 1px solid #9e9e9e;
  border-radius: 8px;
  height: 50px;
  font-size: 14px;
  color: #212121;
}
.input-box__input::-moz-placeholder {
  color: 9000000000e9e;
}
.input-box__input::placeholder {
  color: 9000000000e9e;
}
.input-box__input span {
  color: #9e9e9e;
  font-weight: 700;
  font-size: 14px;
}/*# sourceMappingURL=styles.css.map */