body {
    background: linear-gradient(to right, #92c4b5 95%, #377661 5%);
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.shake {
  animation: shake 0.3s;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-10px, 0); }
  40% { transform: translate(10px, 0); }
  60% { transform: translate(-10px, 0); }
  80% { transform: translate(10px, 0); }
  100% { transform: translate(0, 0); }
}

.container {
    display: flex;
}

.left-container {
    overflow-y: auto;
    display: flex;
    width: 80%;
    height: 100vh;
}

.left-container img {
  width: 100%;
  height: auto;
  align-items: baseline;
}

.left-container::-webkit-scrollbar {
  width: 0.7vw;
  height: 20vh;
}
.left-container::-webkit-scrollbar-track {
  background: #bce8db;
}
.left-container::-webkit-scrollbar-thumb {
  background: #344958;
}

.sweet-image {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin: 2%;
  align-items: flex-start;
}

.sweet-image img {
  margin-top: 10%;
  max-width: 100%;
  height: auto;
}

.airtable-item {
  width: 20%;
  height: auto;
  position: relative;
  cursor: pointer;
}

.sweet-image .airtable-item {
  border-bottom: 0.7vw solid #E1B337;
}

.right-container {
  width: 20%;
  height: 100vh;
  background-color: #377661;
  overflow: hidden;
}

.ty {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vh;
  width: 100%;
  height: auto;
}

.ty-wrapper {
  position: relative;
  width: 80%;
}

.ty img {
  width: 100%;
  height: auto;
}

.ty-text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  color: #32A742;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: 'Lobster', cursive;
  -webkit-text-stroke-width: .1vw;
  -webkit-text-stroke-color: white;
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*start of filters*/ 
.filter-container {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  margin-top: 5vh;
}

.btn-price:hover{
    background: #8da8ba;
    cursor: pointer;
}

.btn-price.active {
  background-color: #7493a8;
}

.btn-price {
  display: block;
  width: 65%;
  margin-bottom: 3%;
  background: #344958;
  color: white;
  padding: .8rem; 
  text-align: center;
  border: .2vw solid white;
  font-family: 'Lobster', cursive;
  font-size: 1.3vw;
}

.five-filter-show{
  display: block;
}

.five-filter-hide{
  display: none;
}

.ten-filter-show{
  display: block;
}

.ten-filter-hide{
  display: none;
}

.twenty-filter-show{
  display: block;
}

.twenty-filter-hide{
  display: none;
}

.thirty-filter-show{
  display: block;
}

.thirty-filter-hide{
  display: none;
}

.forty-filter-show{
  display: block;
}

.forty-filter-hide{
  display: none;
}

.one-filter-show{
  display: block;
}

.one-filter-hide{
  display: none;
}
/*end of filters*/ 

.bot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4vh;
    width: 100%;
    height: auto;
}

.bot img {
    width:65%;
}

.hidden{
  display: none;
}

.popup-container{
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #a5d1c3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.popup-container.is-open{
  display: flex;
}

.popup-head {
  padding: 3%;
}

.popup-content {
  display: flex;
  flex-direction: column;
  padding: 5%;
}

.sweet-title {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #344958;
  font-size: 2vw;
  font-family: 'Lobster', cursive;
}

.sweet-des {
  margin-top: 5%;
  color: #344958;
  font-size: 1vw;
  font-family: Futura,Trebuchet MS,Arial,sans-serif; 
}

.sweet-date {
  margin-top: 10%;
  color: #344958;
  font-size: 1vw;
  font-family: Futura,Trebuchet MS,Arial,sans-serif; 
}

.back {
  display: flex;
  width: 20%;
  margin: auto;
  margin-top: 2vh;
}
.back img {
  width: 100%;
  opacity: 50%;
}
/*back arrow hover*/ 
.back:hover img {
  opacity: 1;
}

@media (max-width: 500px) {
  .airtable-item {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .sweet-image .airtable-item {
    border-bottom: 1vw solid #E1B337;
  }
}

@media (max-width: 500px) {
  .right-container {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .ty-text {
    font-size: 5.5vw;
  }
}

@media (max-width: 500px) {
  .btn-price {
    font-size: 4vw;
    border: .4vw solid white;
    margin-bottom: 7%;
  }
}

@media (max-width: 500px) {
  .sweet-title {
    font-size: 3.5vw;
  }
}

@media (max-width: 500px) {
  .sweet-des {
    font-size: 2.5vw;
  }
}

@media (max-width: 500px) {
  .sweet-date {
    font-size: 2.5vw;
  }
}

@media (max-width: 500px) {
  .back {
    width: 30%;
  }
}