<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  position: sticky;
  top: 0;
  z-index: 999;
}

header .navigation-bar-wrap {
  flex-direction: column;
  align-items: flex-start;
}

header .pull-right {
  margin-top: 15px;
}

header .apply {
  border: 1px solid red !important;
  border-radius: 100px !important;
  padding: 8px 50px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  background-color: red !important;
  color: white !important;
  margin-top: 20px;
  box-shadow: #c90000 0px 0px 2.34064px 1.17032px;
  box-shadow: 0 0 0 0 #c90000;
  -moz-animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 120, 243, 1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(88, 120, 243, 0);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(88, 120, 243, 0);
  }
}

@media screen and (min-width: 720px) {
  header .navigation-bar-wrap {
    flex-direction: row;
    align-items: unset;
    align-items: center;
  }
  header .pull-right {
    margin-top: 0px;
  }
  header .apply {
    margin-left: 10px;
  }
}

@media screen and (min-width: 1020px) {
  header .apply {
    margin-left: 20px;
  }
  .logo-client img {
    width: 169px !important;
    height: auto !important;
  }
}
.fa-check-circle {
  color: green !important;
}
.fa-check-circle-o {
  color: red !important;
}

#success {
  display: none;
}
#fail {
  display: none;
}
#invalid {
  display: none;
}

.lds-dual-ring {
  /* change color here */
  color: #1c4c5b;
}
.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.d-flex {
  display: flex;
}
.a-center {
  align-items: center;
}
.j-center {
  justify-content: center;
}
</pre></body></html>