.tiles {

}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].x {
  -moz-appearance: textfield;
}

.big-tile {
  padding: 0px 25px 21px 25px;
}

.tile {
   display: flex;
   padding: 30px;
   flex-direction: column;
   align-items: center;
   gap: 5px;
   border-radius: 4px;
   background: #FFF;
   box-shadow: 1px 1px 20px 0px rgba(0,0,0,0.08);
   cursor: pointer;
  
}

.tile-img {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  object-fit: contain;
}

.tile-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.tile-title {
  align-self: stretch;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tile-winecolor {
  align-self: stretch;
  color: #000;
  font-family: 'futurabtmedium';
  font-size: 15.5px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tile-price-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  padding-bottom: 1px;
  border-radius: 2px;
  margin-top: 1px;
}

.tile-price {
  align-self: stretch;
  color: #000;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

