html,
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: #404040;
  background: #F2EAE0;
  background: linear-gradient(304deg, #f2eae0 1%, #b4d3d9 100%);
  background-attachment: fixed;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
a {
  color: #9B8EC7;
}
h2 {
  font-weight: 400;
}
label input,
label textarea {
  width: 100%;
}
.center {
  text-align: center;
}
.strong {
  font-weight: bold;
}
.solidButton {
  color: #404040;
  font-size: 1.2em;
  padding: 0.5em 1em;
  display: inline-block;
  border: white solid 2px;
  border-radius: 1em;
  background: #F2EAE0;
  background: linear-gradient(11deg, #f2eae0 50%, rgba(180, 211, 217, 0.471) 100%);
  box-shadow: gray 1px 1px 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.solidButton:hover {
  transform: scale(1.05);
}
.iconButton {
  background: #F2EAE0;
  background: linear-gradient(11deg, #f2eae0 50%, rgba(180, 211, 217, 0.471) 100%);
  width: 32px;
  height: 32px;
  border: #ffffff solid 2px;
  box-shadow: gray 1px 1px 5px;
  text-align: center;
  font-size: 20px;
  border-radius: 16px;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  transition: transform 0.2s ease-in-out;
}
.iconButton:hover {
  transform: scale(1.1);
}
.linkButton {
  display: inline-block;
  margin-top: 1em;
  text-align: center;
  padding: 0.5em;
  cursor: pointer;
}
input,
textarea {
  padding: 1em;
  border-radius: 1em;
  border: #B4D3D9 solid 1px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  flex-grow: 1;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 768px) {
  .mobileColumn {
    display: flex;
    flex-direction: column !important;
  }
}
.column {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.w2 {
  flex-grow: 2;
}
.hidden {
  display: none !important;
}
.ammountControl {
  display: flex;
  gap: 0.5em;
  flex-direction: row;
  align-items: center;
}
.ammountControl button {
  font-size: 1.5em;
  font-weight: bold;
  display: inline-block;
  border-radius: 1em;
  border: none;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  background-color: #9B8EC7;
  color: white;
  transition: transform 0.2s ease-in-out;
}
.ammountControl button:hover {
  transform: scale(1.1);
}
.ammountControl input {
  text-align: center;
}
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.scrollView {
  overflow: auto;
  padding: 1em;
}
.toastView {
  position: fixed;
  top: 2em;
  left: 0;
  right: 0;
  z-index: 10;
}
.toastView .content {
  position: relative;
  background-color: #9B8EC7;
  color: white;
  font-weight: 600;
  padding: 2em;
  margin: 1em auto;
  width: 300px;
  border-radius: 1em;
  box-shadow: rgba(6, 0, 0, 0.496) 1px 10px 20px;
  animation-name: toastOpenAnimation;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  opacity: 0;
}
.main {
  border-radius: 1em;
}
.topNav {
  text-align: right;
  padding: 1em;
  display: flex;
  align-items: center;
}
.topNav h1 {
  flex-grow: 1;
  text-align: left;
  font-weight: 500;
}
.topNav a {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1.5em;
  text-decoration: none;
  color: #404040;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
}
.topNav a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .topNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.699);
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .topNav h1 {
    flex-grow: 2;
    width: 100%;
    font-size: 1em;
    text-align: center;
  }
  .topNav a {
    font-size: 1em;
    flex-grow: 1;
  }
}
.lateralView {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lateralView .skrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.278);
}
.lateralView .content {
  position: absolute;
  padding-bottom: 1.5em;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.827);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
  animation-name: openLateralSheetAnimation;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}
.lateralView .content h2 {
  margin: 0;
  padding: 1em 1em 0em 1em;
}
.lateralView .content ul {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1em 2em;
  min-width: 320px;
}
.lateralView .content ul li {
  list-style: none;
}
.lateralView .content .bigTotal {
  padding: 1em 0;
  margin: 1em;
  border-top: #cbcbcb solid 1px;
}
.lateralView .content .bigTotal .key {
  flex-grow: 1;
}
.lateralView .content .solidButton {
  margin: 1em;
  margin-bottom: 0;
}
.lateralView .content .closeBtn {
  position: absolute;
  right: 1em;
  top: 1em;
}
.productlist {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .productlist {
    padding-top: 6em;
  }
}
.productItem {
  position: relative;
  border-radius: 1em;
  flex: 0 1 200px;
  padding: 1em;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 5px;
  background-color: rgba(255, 255, 255, 0.42);
  border: white solid 2px;
}
@media (max-width: 768px) {
  .productItem {
    width: 100%;
    flex-grow: 1;
  }
}
.productItem h2 {
  font-size: 1.4em;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.productItem .description {
  text-align: left;
  padding: 1em 0;
}
.productItem .price {
  font-weight: bold;
  font-size: 1.2em;
  margin: 1em;
}
.productItem img {
  width: 100%;
  border-radius: 0.5em;
}
.productItem .solidButton {
  margin-bottom: 1em;
}
.productItem .editBtn {
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.3;
}
.productItem .editBtn:hover {
  opacity: 1;
}
.modal {
  position: fixed;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  transition: opacity 0.1s ease-out 0.1s;
  z-index: 10;
}
.modal .skrim {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.417);
}
.modal .content {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* For Webkit browsers */
  display: flex;
  padding: 2em 0;
  gap: 0.5em;
  flex-direction: column;
  border-radius: 2em 2em 0 0;
  box-shadow: rgba(0, 0, 0, 0.391) 0 -2px 20px;
  background: rgba(255, 255, 255, 0.698);
  border: white solid 1px;
  animation-name: openBottomSheetAnimation;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  max-height: 80%;
}
.modal .content h2 {
  margin: 0;
  text-align: center;
}
.modal .content img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  border-radius: 0.5em;
  margin-bottom: 1em;
  box-shadow: gray 1px 1px 5px;
}
.modal .content .closeBtn {
  position: absolute;
  top: -10px;
  left: -10px;
}
.modal .content .solidButton {
  width: 100%;
}
.modal.dismissing {
  animation-name: closeModalAnimation;
  animation-duration: 0.53s;
  animation-timing-function: ease-in;
}
.modal.dismissing .content {
  animation-name: closeBottomSheetAnimation;
  animation-duration: 0.53s;
  animation-timing-function: ease-in;
}
.carProductItem {
  border-bottom: #cdcdcd solid 1px;
  border-top: #cdcdcd solid 1px;
  padding-bottom: 1em;
}
.carProductItem .row {
  margin-bottom: 0.3em;
  gap: 1em;
}
.carProductItem .row .column {
  gap: 0;
}
.carProductItem .dataColumn {
  flex-grow: 1;
}
.carProductItem .dataColumn .ammountLbl {
  min-width: 32px;
  display: inline-block;
  text-align: center;
}
.carProductItem .key {
  flex-grow: 1;
}
.carProductItem .prodImageContainer {
  float: left;
  width: 64px;
  height: 64px;
  border-radius: 0.6em;
  box-shadow: rgba(0, 0, 0, 0.29) 0px 2px 5px;
  border: white solid 2px;
  overflow: hidden;
}
.carProductItem .prodImageContainer img {
  width: 100%;
}
@keyframes openModalAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes closeModalAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes openBottomSheetAnimation {
  from {
    margin-bottom: -100%;
  }
  to {
    margin-bottom: 0%;
  }
}
@keyframes closeBottomSheetAnimation {
  from {
    margin-bottom: 0;
  }
  to {
    margin-bottom: -100%;
  }
}
@keyframes openLateralSheetAnimation {
  from {
    margin-right: -100%;
  }
  to {
    margin-right: 0%;
  }
}
@keyframes closeLateralSheetAnimation {
  from {
    margin-right: 0;
  }
  to {
    margin-right: -100%;
  }
}
@keyframes toastOpenAnimation {
  0% {
    opacity: 0;
    top: -100px;
  }
  15%,
  90% {
    opacity: 1;
    top: 0;
  }
  100% {
    opacity: 0;
    top: 100px;
  }
}
