#timepicker {
  z-index: 400;
  overflow: hidden;
  background: transparent;
}
#timepicker .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#timepicker .popup-content {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  /* background: #f5f5f5; */
  background: #fefaf4;
  width: 350px;
  min-height: 420px;
  z-index: 1;
  overflow: hidden;
  transition: background 2.5s;
}
#timepicker .popup-content .exit {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.3;
  padding: 10px;
  cursor: pointer;
  font-size: 27px;
  z-index: 400;
}


#timepicker .anim-wrapper {
  position: absolute;
  top: 30px;
  left: 35px;
  width: 280px;
  height: 280px;
  z-index: 100;
  transition: transform 1.2s;
  will-change: transform;
}
#timepicker .anim-wrapper .tm {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}
#timepicker .anim-wrapper .tm .bg {
  /* display: none; */
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.4s;
}

#timepicker .anim-wrapper .tm .tm-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  transition: transform 1.2s;
}

#timepicker .anim-wrapper .tm .tm-circles .origin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #eab765;
  z-index: 2;
  transition: background 1.5s;
}
#timepicker .anim-wrapper .tm .tm-circles .over {
  position: absolute;
  top: -1%;
  left: -1%;
  width: 102%;
  height: 102%;
  border-radius: 50%;
  background: #f5f5f5;
  transform: translateX(-100%);
  z-index: 3;
  transition: transform 0.5s, background 1.5s;
  will-change: transform;
}

#timepicker .popup-content .times {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 327px;
  z-index: 200;
  background: white;
  color: #868686;

  transition: color 2.5s;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.i-time {
  padding: 10px;
  border-bottom: 1px solid #f0efef;
}
.i-time.active {
  /* background: #eab765; */
  background: #c8a890;
  color: white;
  transition: all 0.2s;
}
#timepicker .times.dark .i-time.active{
  background: #464852;
}
.i-time .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 16px;
}
/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 470px) {
  /* 팝업 */
  /* #timepicker .submit {
    display: block;
  } */

  /* #timepicker .popup-content {
    width: 350px;
    height: 420px;
  } */
}
/* 테블릿 */
@media screen and (min-width: 400px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}
