._container_1n690_1 {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

._formContainer_1n690_9 {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 30px;
}

._logo_1n690_16 {
  width: 40%;
  margin-bottom: 100px;
}

._configButton_1n690_21{
  position: absolute;
  top: 0;
  right: 200px;
  width: 50px;
  height: 50px;
}
._container_xzhrc_1 {
  background-color: white;
  height: calc(100vh - 40px);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
._summary_1er2l_1 {
  flex: 1;
  display: flex;
  align-items: center;
}
._details_1er2l_6 {
  margin-bottom: 14px;
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}
._times_zj0qp_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

._times_zj0qp_1 div {
  background-color: #a9a9a9;
  border-radius: 10px;
  margin: 20px 10px;
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

._times_zj0qp_1 button {
  width: 120px;
}
._container_1kx3w_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80vh;
}
._content_1kx3w_9 {
  background: whitesmoke;
  flex: 1;
  padding: 10px;
  height: 100%;
  overflow: auto;
  border-radius: 6px;
}
@font-face {
  font-family: 'Metropolis';
  src:
    local('Metropolis'),
    url(./Metropolis-Regular-CzBvJ1n5.otf) format('opentype');
}

@font-face {
  font-family: 'Metropolis-SemiBold';
  src:
    local('Metropolis'),
    url(./Metropolis-SemiBold-CjwwsEGE.otf) format('opentype');
}

@font-face {
  font-family: 'Metropolis-Bold';
  src:
    local('Metropolis'),
    url(./Metropolis-Bold-DM16brCS.otf) format('opentype');
}

:root {
  /*colors*/
  --color-black: #222;
  --color-red: #761c1c;

  --color-primary: rgba(255, 0, 0);

  --color-bg-grey: #f2f2f2;

  /*fonts*/
  --font-Metropolis: 'Metropolis';
  --font-Metropolis-SemiBold: 'Metropolis-SemiBold';
  --font-Metropolis-Bold: 'Metropolis-Bold';
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-Metropolis);
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg-grey);
}

.MuiFormControlLabel-label {
  width: 100%;
}
* ::-webkit-scrollbar {
  display: none;
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  width: fit-content;
  margin: 10px auto !important;
  min-height: fit-content !important;
  border-radius: 20px !important;
  padding: 6px !important;
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  width: fit-content;
  margin: 10px auto !important;
  min-height: fit-content !important;
  border-radius: 20px !important;
  padding: 6px !important;
}

@keyframes spreadInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.animated-cart-box {
  animation: spreadInOut 1.5s ease-in-out infinite;
}

.orderExpirationAnimation {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    background-color: white;
  }
  50% {
    background-color: red;
  }
  100% {
    background-color: white;
  }
}
