body {
  overflow: hidden;
  height: 100vh;
}

.loader-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
}

.loader {
  display: inline-block;
  width: 50%;
  /* Alterar esta medida quando for fazer o mobile */
  position: relative;
}

.loader-video {
  top: 0;
  position: relative;
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader 2s ease;
  animation-delay: 5.8s;
  -webkit-animation-delay: 5.8s;
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

@keyframes loader {
  from {
    opacity: 1;
    top: 0;
  }
  to {
    opacity: 0;
    top: -800px;
  }
}

.error {
  position: relative;
  text-align: center;
  font-size: 1rem;
}

.bold {
  font-weight: 600;
}

.error-title {
  font-size: 2rem;
  text-align: center;
}

.content .container .logo-container img {
  height: 15rem;
}

.content .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  width: 90%;
  text-align: center;
}

.content .container .text p {
  font-size: 1.2rem;
}


.content .container .buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content .container .buttons p {
  font-weight: 500;
}

.content .container .buttons .buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .content .container .logo-container img {
    height: 14rem;
  }

  .content .container .text p {
    font-size: 1.2rem !important;
  }
}

@media only screen and (max-width: 768px) {
  .content .container {
    max-width: 85% !important;
  }

  .content .container .text {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150%;
    margin: 0 !important;
  }

  .loader-video {
    width: 155%;
  }

  .content .container .logo-container img {
    height: 12rem;
  }

  .content .container .text p {
    font-size: 1.2rem !important;
  }

  .content .container .buttons .buttons-container {
    flex-direction: column;
  }

  .content .container .buttons button {
    margin: 1rem 0;
  }
}