.container {
  display: none;
  width: 100%;
  height: auto;
  background-color: #fff;
  position: fixed;
  flex-direction: column;
  gap: 4px;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding: 6px 6px;
  border-top: 1px solid var(--border-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    
}
.buttonContainer{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap: 4px;
}

@media (max-width: 375px) {
    .container {
        display: flex;
    }
}

@media (min-width: 375px) and (max-width: 600px) {
    .container {
        display: flex;
    }
}
@media (min-width: 600px) and (max-width: 768px) {
}
@media (min-width: 768px) and (max-width: 992px) {
}
@media (min-width: 992px) and (max-width: 1200px) {
}
