@use '../../scss/base/variables' as var;

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--medium-purple);
  padding: 8px 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 105;
  background-color: var(--white);
  box-shadow: 3px 0 6px var(--button-shadow-color);
  @media only screen and (min-width: var.$breakpoint-md) {
    padding: 16px 20px;
  }
}

.sectionContainer {
  display: flex;
  align-items: center;
  gap: 16px;
}
