@charset "UTF-8";

#bt_menu {
  position:fixed;
  width: 93%;
  max-width: 480px;
  bottom: 5px;
  right: 50%;
  transform: translate(50%,0);
  z-index: 400;
  background: var(--colorwhite);
  border-radius: calc(var(--radius) * 1.5);
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
  border: 1px solid var(--borderColor);
  transition:.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
#bt_menu a,
#bt_menu button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  font-weight: 500;
}

#bt_menu .bt-close {
  border: 0;
  padding: 0;
  background: unset;
}

#bt_menu.hide{
  transform:translateX(200%);
  opacity:0;
}

#bt_menu .bt-menu-icon {
  width: 16px;
  height: 16px;
}

#bt-open{
  position:fixed;
  bottom: 15px;
  right:10px;
  width:40px;
  height:40px;
  display:none;
  align-items:center;
  justify-content:center;
  background:#333;
  color:#fff;
  border-radius:50%;
  cursor:pointer;
  z-index:9999;
}
#bt-open .bt-menu-icon {
  width: 18px;
  height: 18px;
}

#bt-open.show{
  display:flex;
}

.bt-menu-telegram {
  color: var(--colorblue-text);
}

/* Go to Top */
#nt_sidebar_move { position: fixed; width: 40px; bottom: 60px; right: 10px; z-index: 2; }
#nt_sidebar_move span { display: flex; align-items: center; justify-content: center; border-radius: 50rem; width: 40px; height: 40px; font-size: 12px; background: #dddddd91;}
#nt_sidebar_move .sidebar-move-bottom {display: none;}

@media(min-width:1200px){
  #bt_menu,
  #bt-open{
    display:none !important;
  }

  #nt_sidebar_move { bottom: 50px; right: 30px;}
}
