*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  height: 100%;
  width: 100%; }

body {
  background-color: #fff;
  color: #1e2d37;
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000; }

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem; }

html {
  font-size: 62.5%;
  font-family: proxima-nova, sans-serif; }

body {
  font-size: 1.6rem;
  color: #1e2d37 !important; }
  @media (max-width: 37.5em) {
    body {
      font-size: 1.4rem !important; } }

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem; }
  @media (max-width: 37.5em) {
    h1 {
      font-size: 3rem; } }

.btn {
  font-size: 1.4rem;
  border-radius: 5px;
  border: none;
  padding: .5rem .9rem; }

.btn-rounded {
  border-radius: 3rem; }

.btn-md {
  font-size: 1.6rem !important;
  padding: 1rem 2rem !important; }

.btn-lg {
  font-size: 1.6rem !important;
  padding: 2rem 4rem !important; }

.btn-empty {
  background-color: transparent;
  border: 1px solid #2F3034; }
  .btn-empty:hover {
    background-color: #00adef;
    color: #fff; }

.btn-empty-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff; }
  .btn-empty-white:hover {
    background-color: #00adef;
    color: #fff; }

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #00adef;
  border-color: #00adef;
  opacity: 0.3; }

.btn-primary {
  background-color: #00adef;
  border: 1px solid #00adef; }
  .btn-primary:hover {
    background-color: #029bd8; }

.btn-secondary {
  background-color: #1e2d37;
  border: none; }

.btn-success {
  background-color: #0bc048;
  border: 1px solid #0bc048; }

.--border-success {
  border: 1px solid #0bc048; }
  .--border-success:hover {
    background-color: #0bc048; }

.btn-cancel {
  background-color: #D8D8D8;
  border: 1px solid #D8D8D8; }

.header {
  width: 100%;
  background-color: #e4e4e4;
  padding: 2rem 0; }
  .header-descr {
    text-align: center; }
  .header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .header-logos img {
      width: 20%; }

.footer {
  background-color: #2F3034;
  width: 100%;
  padding: 3rem 0;
  color: #fff; }
  .footer-content {
    display: flex;
    align-items: center; }
    .footer-content-item {
      margin: 0; }
    .footer-content__icon {
      margin-right: 2rem;
      width: 5rem !important;
      height: 5rem !important;
      border-radius: 10rem;
      border: 1px solid #fff;
      position: relative; }
      .footer-content__icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0; }

.wrapper {
  width: 100rem;
  margin: auto; }
  @media (max-width: 37.5em) {
    .wrapper {
      width: 100%;
      padding: 0 1rem; } }

.content {
  margin: 0;
  padding: 3rem 0 5rem 0;
  flex: auto; }

.form-control {
  font-size: 1.6rem;
  box-shadow: 0px 0px 17px -12px rgba(0, 0, 0, 0.75);
  padding: 1.2rem;
  border: 1px solid #ebedf2; }
  .form-control:focus {
    background-color: #e4e4e4; }
  .form-control__icon {
    position: absolute;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    fill: #6E6E6E; }

.form-label {
  padding-bottom: .2rem; }

.form-group {
  margin-bottom: 2rem; }

.form-icon-container {
  position: relative; }

.custom-select {
  padding: 2rem !important;
  font-size: 1.4rem;
  box-shadow: 0px 0px 17px -12px rgba(0, 0, 0, 0.75);
  border: 1px solid #ebedf2 !important;
  color: #000 !important; }

select {
  padding: 1rem;
  font-size: 1.4rem;
  box-shadow: 0px 0px 17px -12px rgba(0, 0, 0, 0.75);
  border: 1px solid #ebedf2 !important; }

.Required {
  color: red; }

.validation-errors {
  color: #00adef; }

.form-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 2rem;
  height: 2rem;
  fill: #6E6E6E; }
