@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,600,700,800,900);

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  color: #333333;
  font-weight: 400;
}

body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
}

div::before,
h2::before,
h3::before,
h4::before,
h5::before,
p::before,
small::before {
  content: attr(data-text);
  font-weight: 700;
}

div::after,
h2::after,
h3::after,
h4::after,
h5::after,
p::after,
small::after {
  content: attr(data-text-end);
  font-weight: 700;
}

img {
  max-width: 100%;
}

body {
  background-image: url("../img/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

body > .container > .row {
  height: 99vh;
}

.hidden {
  display: none !important;
}

.area {
  width: 100%;
  min-height: 100px;
  /* padding: 40px 24px 40px 14px; */
  padding: 0px 21px 15px 10px;
  margin: 20px 0;
  border-radius: 50px;
  box-shadow: 0 0 40px -10px #000;
  background-color: #fff;
  text-align: center;
}

.area h2 {
  margin: 0 10px 25px 10px;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: #0366d6;
  text-transform: uppercase;
}

.area h2.error {
  color: #eb5757;
}
.area h2.warning {
  color: #b68900;
}

.area .text {
  margin: 10px;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  color: #000;
}

.area .btn {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: 0 1px 0 0 rgba(27, 31, 35, 0.1);
  border: solid 1px rgba(27, 31, 35, 0.15);
  margin: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
}

.area .btn > i {
  color: #fff;
}
.area .btn-success {
  background-image: linear-gradient(to top, #6fcf97, #219653);
}

.area .btn-primary {
  background-image: linear-gradient(to top, #2188ff, #0366d6);
}

.area .icon {
  display: block;
  position: relative;
  left: calc(50% - 40px);
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
  align-items: center;
}
.area .icon-success {
  background-image: url("../img/success.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.area .icon-error {
  background-image: url("../img/error.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.area .icon-validation-error {
  background-image: url("../img/validation_error.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.area .icon-dublicated {
  background-image: url("../img/dublicated.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.area .icon-confirm-error {
  background-image: url("../img/confirm_error.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .left {
    order: 2;
  }
  .right {
    order: 1;
  }

  body {
    background-position: right bottom;
  }
}

.downloadContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}
.downloadContainer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* margin-bottom: 15px; */
}
.downloadContainer a span {
  margin-top: 5px;
  font-size: 17px;
  line-height: 24px;
}

.downloadContainer a img {
  width: 200px;
}
