:root {
  --blue: rgba(19, 22, 226, 0.89);
}

html,
body {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow-x: hidden !important;
  scroll-behavior: smooth !important;
}

.sectioncalculo {
  background: var(--indigo);
  background: linear-gradient(to bottom, var(--blue), rgb(51, 46, 126));
}

.result {
  font-size: 1rem;
  background-color: rgb(255, 255, 255);
  position: absolute;
  height: 70%;
  width: 90%;
  border-radius: 10px;
  -webkit-transform: translateX(130%);
  transform: translateX(130%);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: center !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-family: sans-serif;
  color: rgb(49, 45, 45);
  -webkit-box-shadow: 5px 5px 7px 0px #3d3d3d;
  box-shadow: 5px 5px 7px 0px #3d3d3d;
  text-align: center !important;
}

.active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  transform: translateY(-8%);
}

.carne {
  margin: 10px 0;
  font-size: 1.8rem;
  position: relative;
}

.carne::before {
  content: url(../images/meat.png);
  text-align: center;
  position: absolute;
  left: -20%;
}

.cerveja {
  margin: 10px 0;
  font-size: 1.8rem;
  position: relative;
}

.cerveja::before {
  content: url(../images/beer.png);
  text-align: center;
  position: absolute;
  left: -15%;
}

.refriagua {
  margin: 10px 0;
  font-size: 1.8rem;
  position: relative;
}

.refriagua::before {
  content: url(../images/coke.png);
  text-align: center;
  position: absolute;
  left: -10%;
}

.botaovoltar {
}

@media screen and (max-width: 1378px){
  input{
    font-size: 0.8rem !important;
  }
}

@media screen and (max-width: 440px) {
  #primeirasecao {
    height: 100vh;
  }

  #segundasecao {
    height: 100vh;
  }

  .botaoacesso {
    display: flex !important;
  }

  .botaoacesso:target {
    scroll-margin-top: 0.8rem !important;
  }
  .carne,
  .cerveja,
  .refriagua {
    position: relative;
    font-size: 1.4rem;
    font-weight: bold;
  }

  .carne::before {
    content: url(../images/meat.png);
    text-align: center;
    position: absolute;
    left: -25%;
  }

  .cerveja::before {
    content: url(../images/beer.png);
    text-align: center;
    position: absolute;
    left: -20%;
  }

  .refriagua::before {
    content: url(../images/coke.png);
    text-align: center;
    position: absolute;
    left: -12%;
  }
}
