@charset "UTF-8";
:root {
  --color-primary: #ee6575;
}
/* Button */
.btn {
  display: inline-block;
  border-radius: 8px;
  text-align: center;
}
.btn-mini {
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  border-radius: 4px;
}
.btn-sm {
  height: 36px;
  line-height: 36px;
  font-size: 13px;
}
.btn-md {
  height: 44px;
  line-height: 44px;
}
.btn-lg {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 700;
}
.btn-big {
  height: 56px;
  line-height: 56px;
  font-size: 18px;
}
.btn_round {
  border-radius: 800px;
}
.btn-w100p {
  width: 100%;
}
.btn-textType {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  color: var(--info_text);
}
.btn_p16 {
  padding: 0 16px;
}
.btn_p24 {
  padding: 0 24px;
}
.btn_primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn_secondary {
  background-color: #fef3f4;
  color: #ee6575;
}
.btn_outlined_primary {
  background-color: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn_outlined_gray {
  background-color: #fff;
  border: 1px solid #e5e5ec;
  color: #111;
}
.btn_transparent {
  background-color: transparent;
  color: #767676;
}
.btn_navy {
  background-color: #2b3748;
  color: #fff;
}
.btn_gray {
  background-color: #f1f1f5;
  color: #111111;
}
.btn_gray2{
    background-color: #767676;
    width: 90px;
    height: 22px;
    line-height: 22px;
    color: #fff;
}
.btn_gray_disabled {
  background-color: #d2d8e0;
  color: #fff;
}
.btn_icon span {
  padding-left: 26px;
  position: relative;
}
.btn_icon span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}
.btn_kakao {
  background-color: #fae100;
  border: 1px solid #e5e5ec;
}
.btn_kakao span {
  color: #505050;
}
.btn_kakao span::before {
  background-image: url(../_img/icon/icon_kakao.svg);
}
.btn_naver {
  background-color: #01c73c;
}
.btn_naver span {
  color: #fff;
}
.btn_naver span::before {
  background-image: url(../_img/icon/icon_naver.svg);
}
.btn_list {
  width: 120px;
}
.btn:disabled {
  background-color: #d2d8e0;
  color: #fff;
}
.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn_area.column {
  flex-direction: column;
  row-gap: 8px;
}
.btn_go span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-right: 28px;
}
.btn_go span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_go_white.svg) no-repeat center / contain;
}
.btn_like {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #f7f7fb;
}
.btn_like span.heart {
  display: inline-block;
  width: 18px;
  height: 15px;
  background: url(../_img/icon/icon_like.svg) no-repeat center / contain;
}
.btn_like.active span.heart {
  background-image: url(../_img/icon/icon_like_active.svg);
  animation: likeAnimation 0.3s linear;
}

/* #### Color #### */
.bg_gray {
  background-color: #f1f1f5;
}
.c_primary {
  color: var(--color-primary);
}
.c_gray {
  color: #767676;
}
/* #### TEXT #### */
.info_txt {
  display: none;
  font-size: 13px;
  margin-top: 8.5px;
  padding-left: 20px;
  position: relative;
  line-height: 18px;
  color: #767676;
}
.info_txt.on {
  display: block;
}
.info_txt:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_info_gray.svg) no-repeat center / contain;
}
.info_txt.invalid {
  padding-left: 20px;
  position: relative;
  color: #e80808;
}
.info_txt.invalid::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_invalid.svg) no-repeat center / contain;
}
.info_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f8fb;
  border: 1px solid #e5e5ec;
  padding: 13px 0;
  border-radius: 8px;
  text-align: center;
}
.info_box .info_txt {
  display: block;
  margin-top: 0;
  line-height: 20px;
  color: #505050;
}
.info_box .info_txt:before {
  width: 20px;
  height: 20px;
  left: 0;
  background-image: url(../_img/icon/icon_info.svg);
}
/* #### Modal #### */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
}
.modal.open {
  z-index: 100001;
  opacity: 1;
}
.modal__inner {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  border-radius: 16px;
  background-color: #fff;
  transition: 0.45s;
  opacity: 0;
}
.modal.open .modal__inner {
  top: 50%;
  opacity: 1;
  padding-bottom: 32px;
}
.modal__close {
  display: inline-block;
  width: 100%;
  height: 56px;
  position: relative;
}
.modal__close .btn_modal-close {
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 24px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_modal_close.svg) no-repeat center / contain;
}
.modal__header {
  padding: 0 32px;
  padding-bottom: 16px;
  text-align: center;
}
.modal__header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.modal__header p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #767676;
}
.modal__content {
  padding: 0 32px;
  padding-bottom: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: 4px;
  max-height: 70vh;
}
.modal__content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal__content::-webkit-scrollbar-thumb {
  height: 30%;
  background: #ee6575;
  border-radius: 10px;
}
.modal__content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}
.modal__btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  padding: 16px 20px 0px;
}
.modal--primary .modal__inner {
  max-width: 420px;
}
.modal--primary .modal__content p {
  font-size: 14px;
  font-weight: 500;
  color: #767676;
}
/* 인기콘텐츠 모달 */
.modal--best_content .modal__inner {
  max-width: 800px;
}
.modal--best_content .modal__content {
  padding: 0 20px;
}
.modal--best_content .modal__content .video_wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.modal--best_content .modal__content .video_wrap .video_cont {
  width: 100%;
  height: 100%;
}
.modal--best_content .modal__content .video_wrap .play_btn {
  width: 56px;
  height: 56px;
  background: url(../_img/icon/icon_play_btn.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* layerPopup */
.modal__content.layerPopContent{
  padding: 0;
  margin-right: 0;
  max-height: initial;
}
.modal__btns.layerPopBtns{
    padding: 5px 10px;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
}
.modal__btns.layerPopBtns a {
  cursor: pointer;
}
/* Form */
.form-control {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  background-color: #fff;
  padding: 0 16px;
  color: #111;
  font-size: 16px;
}
/* 예술인 등록/수정 소개글 항목 */
.form-control[name="gdntc"] {
  padding-right: 80px;
}
.form-control::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}
.form-control:focus {
  border: 1px solid #111111;
}
.form-control.invalid,
.form-control:invalid {
  border: 1px solid #e80808;
}
.form-control:disabled {
  background-color: #f7f7fb;
}
/* datepicker */
.datepicker {
  width: 100%;
  max-width: 335px;
  height: 52px;
  border-radius: 800px;
  background-color: #fff;
  border: 1px solid #e5e5ec;
  padding: 0 20px;
  padding-left: 52px;
  font-weight: 500;
  background: url(../_img/icon/icon_datepicker.svg) no-repeat center left 20px / 24px;
}
.datepicker.square {
  border-radius: 8px;
}
.datepicker::placeholder {
  color: #999;
}
.ui-datepicker {
  width: 335px;
  border-radius: 16px;
  border: 1px solid #e5e5ec !important;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.2);
  padding: 24px 20px;
  margin-top: 8px;
  z-index: 101 !important;
}
.ui-widget-header {
  background-color: transparent;
  border: none;
}
.ui-datepicker .ui-datepicker-header {
  padding: 0;
}
.ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  left: 66px;
}
.ui-datepicker .ui-datepicker-prev span {
  position: static;
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: url(../_img/icon/icon_datepicker_prev.svg) no-repeat center / contain;
}
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  right: 66px;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  border: none;
  background-color: transparent;
}
.ui-datepicker .ui-datepicker-next span {
  position: static;
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: url(../_img/icon/icon_datepicker_next.svg) no-repeat center / contain;
}
.ui-datepicker table {
  margin-top: 12px;
  font-size: 14px;
}
.ui-datepicker th {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #888;
}
.ui-datepicker th.ui-datepicker-week-end:first-child {
  color: #ff9d97;
}
.ui-datepicker td {
  border: none;
  padding: 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
  height: 40px;
  background-color: transparent;
  text-align: center;
  padding: 0;
  line-height: 40px;
  border: none;
}
.ui-datepicker td.ui-datepicker-week-end:first-child .ui-state-default {
  color: #ff3b30;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  background-color: #ee6575;
  border-radius: 50%;
  color: #fff !important;
}
.ui-datepicker .ui-datepicker-buttonpane {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border: none;
  gap: 8px;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  margin: 0;
  padding: 0;
  flex: 1;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.ui-datepicker .ui-datepicker-close {
  background-color: #fff;
  border: 1px solid #e5e5eb;
  color: #111;
}
.ui-datepicker .ui-datepicker-current {
  background-color: var(--color-primary);
  color: #fff;
  opacity: 1;
}
.ui-datepicker .ui-datepicker-current .complete_txt {
  position: relative;
  padding-left: 28px;
}
.ui-datepicker .ui-datepicker-current .complete_txt::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_datepicker_complete.svg) no-repeat center center / contain;
}
.ui-datepicker .desc-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Checkbox */
.checkbox--typeA input[type="checkbox"] {
  display: none;
}
.checkbox--typeA input[type="checkbox"] + em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  padding: 0 10px;
  width: auto;
  height: 36px;
  border-radius: 8px;
  background-color: #f7f8fb;
  font-size: 14px;
  font-weight: 500;
  color: #767676;
}
.checkbox--typeA input[type="checkbox"] + em .chk_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_check.svg) no-repeat center center / contain;
}
.checkbox--typeA input[type="checkbox"]:checked + em {
  color: #111;
}
.checkbox--typeA input[type="checkbox"]:checked + em .chk_icon {
  background-image: url(../_img/icon/icon_check_on.svg);
}
/* Radio */
.radio--typeA label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.radio--typeA input[type="radio"] {
  display: none;
}
.radio--typeA input[type="radio"] + em {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-style: normal;
  margin-right: 8px;
  background: url(../_img/icon/icon_radio.svg) no-repeat center center / contain;
}
.radio--typeA input[type="radio"] + em + span {
  color: #767676;
}
.radio--typeA input[type="radio"]:checked + em {
  background: url(../_img/icon/icon_radio_on.svg) no-repeat center center / contain;
}
.radio--typeA input[type="radio"]:checked + em + span {
  color: #111;
}
.radio--typeTab input[type="radio"] {
  display: none;
}
.radio--typeTab input[type="radio"] + em {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  width: auto;
  height: 45px;
  border: 1px solid #e5e5ec;
  border-radius: 800px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #999;
}
.radio--typeTab input[type="radio"]:checked + em {
  background-color: #111111;
  color: #fff;
}
.radio--typeTab.color--pink input[type="radio"] + em {
  background-color: #d2d8e0;
  color: #fff;
}
.radio--typeTab.color--pink input[type="radio"]:checked + em {
  background-color: #ee6575;
}
.radio--typeText input[type="radio"] {
  display: none;
}
.radio--typeText input[type="radio"] + em {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: #767676;
}
.radio--typeText input[type="radio"]:checked + em {
  color: #111;
}
.checkbox--typeText input[type="checkbox"] {
  display: none;
}
.checkbox--typeText input[type="checkbox"] + em {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: #999999;
}
.checkbox--typeText input[type="checkbox"]:checked + em {
  color: #ee6575;
}
/* checkbox-artmap */

.checkbox--artmap input {
  display: none;
}
.checkbox--artmap input + .artmap_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.checkbox--artmap input + .artmap_box .artmap_thumb {
  border: 2px solid #f7f7fb;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-weight: 700;
  font-size: 18px;
  background: #f7f7fb;
}
.checkbox--artmap input:checked + .artmap_box .artmap_thumb {
  border-color: #ee6575;
  color: #ee6575;
  background: #fff;
}
.checkbox--artmap input + .artmap_box em {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
}
.checkbox--artmap input:checked + .artmap_box em {
  color: #ee6575;
  background: #fff;
}

.checkbox--artmap input + .artmap_box p {
  width: 40px;
  height: 40px;
}
.checkbox--artmap input + .artmap_box p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.no_scroll::-webkit-scrollbar {
  display: none;
}
.select {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select.w-auto {
  width: auto;
  padding-right: 38px;
}
.select--typeA {
  width: 100%;
  height: 48px;
  background: url(../_img/icon/icon_select_arrow.svg) no-repeat center right 16px / 20px;
  border-radius: 8px;
  background-color: #fff;
  padding: 0 16px;
  border: 1px solid #e5e5ec;
}
.select--typeB {
  width: 100%;
  height: 52px;
  background: url(../_img/icon/icon_select_arrow.svg) no-repeat center right 16px / 20px;
  border-radius: 800px;
  background-color: #fff;
  padding: 0 16px;
  border: 1px solid #e5e5ec;
}
.select--typeC {
  width: 100%;
  max-width: 160px;
  height: 48px;
  background: url(../_img/icon/icon_select_arrow.svg) no-repeat center right 16px / 20px;
  border-radius: 8px;
  background-color: #fff;
  padding: 0 16px;
  border: 1px solid #e5e5ec;
}
.textarea--typeA {
  position: relative;
  width: 100%;
  height: 189px;
  padding: 14px 16px;
  padding-bottom: 43px;
  border: 1px solid #e5e5ec;
  border-radius: 8px;
}
.textarea--typeA textarea {
  width: 100%;
  height: 100%;
  border: none;
  padding:0px;
}
.textarea--typeA textarea::placeholder {
  font-size: 16px;
  color: #999;
}
.textarea--typeA.invalid {
  border: 1px solid #e80808;
}
.textarea--typeA .remain_txt {
  font-size: 15px;
  font-weight: 500;
  color: #999999;
  position: absolute;
  bottom: 14px;
  right: 16px;
}
.input_content.relative .remain_txt2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #999999;
}
.input_upload_file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  height: 48px;
  border-radius: 8px;
  padding-left: 16px;
  border: 1px solid #e5e5ec;
}
.input_upload_file.invalid {
  border: 1px solid #e80808;
}
.input_upload_file label {
  display: inline-block;
  width: 76px;
  height: 36px;
  line-height: 36px;
  color: #111;
  background-color: #f1f1f5;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.input_upload_file .form-control {
  border: none;
  height: 100%;
  padding: 0;
}
.input_upload_file input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}
.input_upload_file_modi {
  padding-left: 6px;
  border: none;
}
.input_upload_file_modi button {
  font-size: 13px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .info_box .info_txt {
    padding-left: 0;
    padding-top: 24px;
  }
  .info_box .info_txt:before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .modal__header {
    padding: 0 24px 16px;
  }
  .layerPop .modal__inner{
      top:0!important;
      left:0!important;
  }
  .layerPop .modal__content {
    /*padding: 0 24px 16px;*/
  }
  .radio--typeTab input[type="radio"] + em {
    height: 42px;
    font-size: 16px;
  }
  .radio--typeText input[type="radio"] + em {
    font-size: 14px;
  }
  .select--typeB {
    height: 48px;
  }
  .datepicker {
    height: 48px;
  }
  .ui-datepicker {
    width: 319px;
    padding: 24px 12px;
    margin-top: 4px;
  }
  .modal--best_content .modal__content .video_wrap .play_btn {
    width: 32px;
    height: 32px;
  }
}
