@charset "UTF-8";

#bt_menu {
  position:fixed;
  width: 93%;
  max-width: 480px;
  bottom: 8px;
  right: 50%;
  transform: translate(50%,0);
  z-index: 400;
  background: var(--colorwhite);
  border-radius: calc(var(--radius) * 1.5);
  padding: 0.7rem 1rem;
  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;
}

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

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

#bt-open{
  position:fixed;
  bottom:15px;
  right:20px;
  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.show{
  display:flex;
}

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