.btnPrimary, .btnSecondary, .btnTerciary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btnPrimary, .btnSecondary, .btnTerciary {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

html, body {
  position: relative;
}

html, body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
  padding: 0;
}

/** BASICS */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: #F78F1E;
}

*::selection {
  background-color: #F78F1E;
}

body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #222222;
  background-color: #00297A;
  background-color: white;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.btnPrimary {
  background-color: #002E89;
  color: white;
  border: 0;
  padding: 15px 25px;
  font-weight: 600;
  cursor: pointer;
  max-width: 300px;
}

.btnPrimary img {
  height: 16px;
  margin-right: 15px;
}

.btnPrimary:hover {
  background-color: #00297A;
}

.btnPrimary:disabled {
  background: #d8d2d2;
  color: #4e4e4e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: unset;
}

.btnSecondary {
  background-color: #F78F1E;
  color: white;
  border: 0;
  padding: 15px 40px;
  font-weight: 600;
  cursor: pointer;
  max-width: 300px;
}

.btnSecondary:hover {
  background-color: #ff6a00;
}

.btnSecondary:disabled {
  background: #d8d2d2;
  color: #4e4e4e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: unset;
}

.btnTerciary {
  background-color: transparent;
  color: #002E89;
  border: 2px solid #002E89;
  padding: 15px 40px;
  font-weight: 600;
  cursor: pointer;
  max-width: 300px;
}

.btnTerciary:hover {
  color: white;
  background-color: #00297A;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 115px;
  }
}

@media only screen and (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}
/*# sourceMappingURL=basics.css.map */