.nick_box {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.nick_box .nick_menu {
  width: 200px;
  height: auto;
  position: absolute;
  top: 35px;
  right: -60px;
  z-index: 9;
  background: #8286dd;
}

.nick_box .nick_menu>button {
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-left: 25px;
  position: relative;
}

.nick_box .nick_menu>button::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #969ae2;
}

.nick_box .nick_menu>button:last-child:after {
  display: none;
}

.nick_box .nick_menu>button:hover {
  background: #54578f;
}

.nick_box .nick_menu>button .img_box {
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 801px) {
  #hder .hder_area .top_memu .guide>button>img {
    display: none;
  }

  .nick_box .nick_menu>button {
    font-size: 0.938rem;
  }
}