#reset_notify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 440px;
  height: 80px;
  box-sizing: border-box;
  padding: 18px;
  left: 135px;
  bottom: 0;
  margin: auto;
  background: #fff;
  box-shadow: 0px 1px 5px 0px rgba(231, 40, 28, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: 0.6s;
}

#reset_notify .msg {
  font-size: 16px;
  line-height: 26px;
  margin: 0 18px 0 0;
}

#reset_notify #reset_btn {
  display: flex;
  width: 180px;
  height: 48px;
  min-width: 180px;
  color: #fff;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  background-color: #ff6792;
  box-shadow: 0px 3px 0px 0px #fd386f;
  border-radius: 24px;
  transition: 0.3s;
}

#reset_notify #reset_btn:hover {
  opacity: 0.8;
}

#reset_notify.show {
  bottom: 54px;
  opacity: 1.0;
}

article#touch:after {
  content: '';
  display: block;
  width: 522px;
  height: 284px;
  margin: 30px auto 0;
  background: url(../../img/new/course/keyboard.png) center center/100% 100% no-repeat;
}