#options {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 100;
}
#options .btns {
  position: relative;
  height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
}
#options .btns .go-reg {
  color: #ffd856;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  letter-spacing: 0.05em !important;
}
#options .btns .go-apply,
#options .btns .open-coupon {
  position: absolute;
  right: 15px;
  top: -81px;
  width: 18%;
}
#options .btns .go-apply img,
#options .btns .open-coupon img {
  width: 100%;
}

#options .btns .go-apply {
  display: none;
}


/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
  #options {
    display: block;
  }
}

/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
}

/* PC */
@media screen and (min-width: 1024px) {
}