@import url("common_css.css");
@import url("table_css.css");
@import url("baeoom_css.css");
/* customer 공통 */
.bl_checkBx {
  text-align: center;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bl_checkBx__checkInput {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.bl_checkBx__checkmark {
  display: inline-block;
  height: 25px;
  width: 25px;
  border: 1px solid #767676;
  position: relative;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 3px;
}
.bl_checkBx input:checked ~ .bl_checkBx__checkmark {
  background: #006cd0;
  border-color: #006cd0;
}
.bl_checkBx input:checked ~ .bl_checkBx__checkmark:after {
  border-color: #fff;
}
.bl_checkBx__checkmark:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid transparent;
  border-width: 0 3px 3px 0;
  -webkit-transform: translate(-45%, -62%) rotate(45deg);
  -ms-transform: translate(-45%, -62%) rotate(45deg);
  transform: translate(-45%, -62%) rotate(45deg);
}
.bl_checkBx input:checked ~ .bl_checkBx__checkmark:after {
  display: block;
}
.bl_radioCircle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
}
.bl_radioCircle__radioInput {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.bl_radioCircle__checkmark {
  border: 1px solid #767676;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  vertical-align: middle;
}
.bl_radioCircle__checkmark:after {
  content: "";
  display: block;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bl_radioCircle__radioInput:checked ~ .bl_radioCircle__checkmark {
  border-color: #006cd0;
}
.bl_radioCircle__radioInput:checked ~ .bl_radioCircle__checkmark:after {
  background: #006cd0;
}
/* .bl_radioCircle__radioInput:focus ~ .bl_radioCircle__checkmark{outline:1px solid #000;} */
/* 파일첨부 */
.bl_fileUp__originInput {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}
.bl_fileUp__fileBtn {
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  padding: 10px 15px;
  cursor: pointer;
}
.bl_fileUp__plusIcon {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  width: 18px;
  height: 18px;
  vertical-align: -4px;
}
.bl_fileUp__plusIcon:before,
.bl_fileUp__plusIcon:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #909090;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bl_fileUp__plusIcon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.bl_fileUp__list {
  margin-top: 5px;
}
.bl_fileUp__list:nth-of-type(1) {
  margin-top: 0;
}
.bl_fileUp__list * {
  vertical-align: middle;
}
.bl_fileUp__deleteBtn {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #888;
  background: #fff;
  margin-right: 5px;
}
.bl_fileUp__deleteBtn:before,
.bl_fileUp__deleteBtn:after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: #888;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}
.bl_fileUp__deleteBtn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.bl_fileUp__filename {
  display: inline-block;
  font-size: 14px;
  color: #000;
}
/* 파일보기 */
.bl_fileDown {
  position: relative;
}
.bl_fileDown__viewBtn {
  border: none;
  margin: 0;
}
.bl_fileDown__viewBtn:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -6px;
  background: url("/images/icon/icon_clip.png") no-repeat center/contain;
}
.bl_fileDown__wrap {
  display: none; /* display:flex; */
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
  background: #fff;
  padding: 15px;
  width: 210px;
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.15);
}
.bl_fileDown__wrap.hp_on {
  display: flex;
}
.bl_fileDown__closeBtn {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: none;
  border: none;
  margin: 0;
}
.bl_fileDown__closeBtn:before,
.bl_fileDown__closeBtn:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}
.bl_fileDown__closeBtn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.bl_fileDown__cont {
  padding-right: 10px;
}
.bl_fileDown .bl_fileDown__attachment {
  text-align: left;
  color: #888;
  font-size: 12px;
}

/* 빠른상담 공통 */
.bl_cst table {
  border-top-width: 1px;
}
.bl_cstTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_cstTop .bl_cstTop__btn {
  font-size: 14px;
  padding: 15px 0;
  font-weight: 700;
  background: #efefef;
  border: 2px solid #efefef;
  width: 49%;
  position: relative;
}
.bl_cstTop .bl_cstTop__btn::after {
  opacity: 0;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 19px;
  right: 50px;
  border: 2px solid #444;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
}
.bl_cstTop .bl_cstTop__btn.hp_active,
.bl_cstTop .bl_cstTop__btn.hp_active:hover {
  background: #2667c2;
  border-color: #2667c2;
  color: #fff;
  cursor: default;
}
.bl_cstTop .bl_cstTop__btn.hp_active::after {
  display: none;
}
.bl_cstTop .bl_cstTop__btn:hover {
  background: #fff;
  border-color: #2667c2;
  color: #2667c2;
}
.bl_cstTop .bl_cstTop__btn:hover::after {
  opacity: 1;
  right: 30px;
  border-color: #2667c2;
}
/* 빠른상담 - 글쓰기 */
.bl_cst .bl_cstTB input,
.bl_cst .bl_cstTB textarea {
  border: 1px solid #ccc;
  padding: 10px;
}
.bl_cst .bl_cstTB input::placeholder,
.bl_cst .bl_cstTB textarea::placeholder {
  color: #b1b1b1;
}
/* .bl_cst .bl_cstTB input:focus,.bl_cst .bl_cstTB textarea:focus{background:#eef4ff;outline:none;} */
.bl_cst .bl_cstTB {
  border: 1px solid #000;
  border-left: none;
  border-right: none;
}
.bl_cst .bl_cstTR {
  border-top: 1px solid #e8e8e8;
}
.bl_cst .bl_cstTH {
  background: #fafafa;
  border: none;
  color: #000;
  padding: 25px 0;
}
.bl_cst .bl_cstTB__star {
  color: #006cd0;
  font-size: 20px;
  margin-left: 5px;
  line-height: 1;
}
.bl_cst .bl_cstTD {
  padding: 15px 20px;
  border: none;
}
.bl_cstTD__ttl .bl_radioCircle {
  margin-right: 40px;
}
.bl_cstTD__ttl .bl_radioCircle__checkmark {
  margin-right: 3px;
}
.bl_cst .bl_fileUp .bl_fileUp__box {
  padding: 0px;
  width: 100%;
  border: none;
}
.bl_cst .bl_cst__note {
  color: #666;
  text-align: left;
  font-size: 13px;
  margin: 30px 0;
}
.bl_cstTab {
  position: relative;
  padding-top: 50px;
}
.bl_cstTab__btn {
  background: none;
  border: 1px solid #ccc;
  border-bottom: 1px solid #2667c2;
  height: 50px;
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
}
.bl_cstTab__btn02 {
  left: 25%;
}
.bl_cstTab__btn03 {
  left: 50%;
}
.bl_cstTab__btn04 {
  left: 75%;
}
.bl_cstTab__btn.hp_inactive {
  background: #f1f1f1;
}
.bl_cstTab__btn.hp_active {
  color: #2667c2;
  border-color: #2667c2;
  border-bottom-color: transparent;
  background: #fff;
}
.bl_cstTab__btnWrap {
  display: inline-block;
  position: relative;
  width: 100%;
}
.hp_inactive .bl_cstTab__btnWrap:before,
.bl_cstTab__btnWrap:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  z-index: 1;
}
.hp_inactive .bl_cstTab__btnWrap:before {
  content: "수강생 전용입니다";
  font-size: 11px;
  color: #fff;
  background: #656565;
  width: 100px;
  padding: 3px 0;
  border-radius: 3px;
  left: 50%;
  transform: translate(-50%, -135%);
}
.hp_inactive .bl_cstTab__btnWrap:after {
  top: -17px;
  left: 26px;
  width: 0;
  height: 0;
  border-left: 9px solid #656565;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.hp_inactive:hover .bl_cstTab__btnWrap:before,
.hp_inactive:hover .bl_cstTab__btnWrap:after {
  display: block;
}
.bl_cstTab__note {
  background: #656565;
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 3px;
  transform: translateY(-90%);
}
.bl_cstTab .bl_cstTab__cont {
  display: none;
  padding: 15px 0;
  align-items: center;
  flex-wrap: wrap;
}
.bl_cstTab .bl_cstTab__btn.hp_active + .bl_cstTab__cont {
  display: flex;
}
.bl_cstTab .bl_radioCircle {
  margin: 0;
  padding: 5px 0;
  width: 25%;
  flex: 0 0 25%;
  font-size: 12px;
}
.bl_cstTab .bl_radioCircle__checkmark {
  width: 14px;
  height: 14px;
}
.bl_cstAgree {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 빠른상담 - 보기 */
.bl_cstView__ttl {
  font-size: 18px;
  color: #000;
  text-align: left;
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 15px;
}
.bl_cstView__ttl2 {
  font-size: 18px;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
}
.bl_cstView__date {
  flex: 0 0 130px;
  color: #888;
  margin-left: 15px;
}
.bl_cst .bl_fileDown {
  flex: 0 0 200px;
  text-align: right;
}
