* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: block;
  align-items: center;
  justify-content: center;
  background-color: #0d080c;
  font-family: 'Roboto', sans-serif;
}

img {
  max-width: 100%;
}

.red-zone{
  color:#d73534;
  font-weight: 600;
}
.cup-wrap {
  /*
  width: 500px;
  height: 600px;
  */
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.results a{
  color:#d73534;
  font-weight: 700;
}
.results .cup-wrap {
  width: 50%;
 
}
.food-text{
  text-align: center;
}
.food-text h3{
  color: #fff;
  font-size: 26px;
  text-align: center;
  margin: 30px 20px;
  font-weight: 400;
  line-height: 46px;
}
.food-text h4{
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 30px 20px;

  font-weight: 400;
  line-height: 42px;
}
button.submitnow{
  margin-bottom: 50px;
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #d73534;
    background: #d73534;
    min-width: 85%;
    display: inline-block;
    border-radius: 5px;
    font-weight: 700;
}
a#whatsapp{
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #25D366;
    background: #25D366;
    min-width: 85%;
    display: inline-block;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
}
a#submitform{
  margin-bottom:50px;
  padding: 10px 10px;
      color: #fff;
      text-decoration: none;
      border: 1px solid #d73534;
      background: #d73534;
      min-width: 350px;
      display: inline-block;
      border-radius: 5px;
  }
  @media only screen and (min-width: 768px) {
      .margin-50{
        margin-top: -50px;
      }
      a#whatsapp,button.submitnow,a#submitform{
        min-width: 325px;
      }
  }
@media only screen and (max-width: 767px) {
  .food-text h3{
  
    font-size: 22px;
    line-height: 32px;
  }
  a#submitform{
        min-width: 85%;
    }
  .food-text h4{
    font-size: 18px;
    line-height: 28px;
  }
  .smoke-wrap {
    top: -50px;
    bottom: unset !important;
}
.cup-wrap {
    height:unset !important;
    width: 100%;
}

select{
  width:85% !important;
}
.results .cup-wrap {
  width: 100%;
 
}
}

:root {
  --arrow-bg: rgba(255, 255, 255, 0.3);
  --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
  --option-bg: white;
  --select-bg: rgba(255, 255, 255, 0.2);
}
/* <select> styles */
select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  /* Personalize */
  width: 20rem;
  padding: 1rem 4rem 1rem 1rem;
  background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, var(--arrow-bg) 3em, var(--select-bg) 3em);
  color: white;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  /* Remove IE arrow */
  &::-ms-expand {
    display: none;
  }
  /* Remove focus outline */
  &:focus {
    outline: none;
  }
  /* <option> colors */
  option {
    color: inherit;
    background-color: var(--option-bg);
  }
}

.cup {
  bottom: 0;
}

.smoke-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 222px;
}

.smoke,
.smoke2,
.smoke3 {
  filter: blur(5px);
  transform-origin: 50% 50%;
}

.smoke {
  animation: smoke1 3s linear infinite;
  animation-delay: 0.5s;
}

.smoke2 {
  animation: smoke2 3s linear infinite;
  animation-delay: 1.5s;
}

.smoke3 {
  width: 500px;
  animation: smoke3 4s linear infinite;
  animation-delay: 2.5s;
}

@keyframes smoke1 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(-1, 1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-10px) scale(-1, 1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-20px) scale(-1, 1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-30px) scale(-1, 1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-40px) scale(-1, 1.2);
    opacity: 0;
  }
}

@keyframes smoke2 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-10px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-30px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-40px) scale(1.2);
    opacity: 0;
  }
}

@keyframes smoke3 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-20px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-40px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-60px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-80px) scale(1.2);
    opacity: 0;
  }
}