@charset "UTF-8";
/* 인풋스타일*/
input::-moz-placeholder {
  font-size: inherit;
}
input::placeholder {
  font-size: inherit;
}

/*
 pop-up*/
.pop-wrap {
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.pop-wrap .pop-up {
  overflow: hidden;
  width: 50rem;
  height: 53rem;
  background-color: #fff;
  border: 1px solid #E9EBEC;
  box-sizing: content-box;
}
.pop-wrap .pop-tit {
  overflow: hidden;
  margin: -1px;
  width: 0;
  height: 0;
  font-size: 1px;
}
.pop-wrap .pop-body {
  overflow: hidden;
  width: 100%;
  height: calc(100% - 3rem);
  font-size: 0;
}
.pop-wrap .pop-body > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pop-wrap .pop-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pop-wrap .pop-footet {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem 0;
  height: 3rem;
  font-size: var(--sm-f);
}
.pop-wrap .pop-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pop-wrap .pop-check .check-label {
  position: relative;
  position: relative;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}
.pop-wrap .pop-check .check-label::before {
  margin-right: 1rem;
  vertical-align: middle;
  content: url("../img/icon/check-box.png");
}
.pop-wrap .pop-check input:checked + .check-label::before {
  content: url("../img/icon/checked.png");
}
.pop-wrap .btn {
  font-size: inherit;
}

@media all and (max-width: 85.375rem) {
  .pop-wrap .pop-up {
    width: 40rem;
    height: 43rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .pop-wrap .pop-up {
    width: 25rem;
    height: 28rem;
  }
}