:root {
  --max-container-witdh: 760px;
  --font-family: "Open Sans";
  --font-size: 14px;
  --border-radius: 8px;
  --text-color: #8e8e8e;
  --primary-color: #1400A1;
  --primary-accent-color: #f8fbff;
  --secondary-color: #103d76;
  --secondary-accent-color: #b7c5d6;
  --light-gray: #e0e0e0;
  --light-cyan: #A2EDFF;
  --dark-blue: #0B0061;
  --danger-color: #e6533a;
  --box-shadow-color: rgba(1, 51, 106, 0.28);
}
@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Regular.0943037e.woff2") format("woff2"), url("OpenSans-Regular.bc7b8e60.woff") format("woff"), url("OpenSans-Regular.4e41b7c3.ttf") format("truetype"), url("OpenSans-Regular.f3ed2e06.svg#OpenSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-SemiBold.a0b0854b.woff2") format("woff2"), url("OpenSans-SemiBold.3078aa81.woff") format("woff"), url("OpenSans-SemiBold.ac346dd4.ttf") format("truetype"), url("OpenSans-SemiBold.6c5f31a1.svg#OpenSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("OpenSans-Bold.90afc4ba.woff2") format("woff2"), url("OpenSans-Bold.a29bf7ca.woff") format("woff"), url("OpenSans-Bold.c5de4b47.ttf") format("truetype"), url("OpenSans-Bold.205efb97.svg#OpenSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Open Sans';
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  border: 0;
  border-bottom: 1px solid var(--light-cyan);
  -webkit-text-fill-color: #f8fbff;
  -webkit-text-fill-color: var(--primary-accent-color);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
body,
html {
  height: 100%;
  color: #f8fbff;
  color: var(--primary-accent-color);
}
body {
  background: #0154bf;
  background: var(--primary-color);
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
.pill {
  /*display: inline;
  padding: 9px 0 9px 0;*/
  display: inline-flex; /* Handle responsiveness */
  align-items: center; /* Handle responsiveness */
  font-weight: bold;
  background: #103d76;
  background: var(--dark-blue);
  border-radius: 36px;
}
.pill__item {
  font-size: 14px;
  cursor: pointer;
  /*padding: 10px 35px;*/
  padding: 10px 20px; /* Handle responsiveness */
  border-radius: 36px;
  color: #b7c5d6;
  color: var(--primary-accent-color);
}
.pill__item--active {
  background: #f8fbff;
  background: var(--primary-accent-color);
  color: #0154bf;
  color: var(--primary-color);
  box-shadow: 0 4px 8px 0 rgba(1, 51, 106, 0.28);
  box-shadow: 0 4px 8px 0 var(--box-shadow-color);
}
.pill .foreing-long {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .pill .foreing-long {
    display: none;
  }
}

.pill .foreing-short {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pill .foreing-short {
    display: inline-block;
  }
}
.select {
  width: 100%;
  position: relative;
  margin-top: 16px;
}
.select:first-child {
  margin-top: 0px;
}
.select__button {
  width: 100%;
  display: block;
  background: none;
  border-radius: 0px;
  border: 0px;
  border-bottom: solid 1px var(--light-cyan);
  font-size: 15px;
  color: #f8fbff;
  color: var(--primary-accent-color);
  height: 24px;
  padding: 0px;
  text-align: center;
  cursor: pointer;
}
.select__menu {
  position: absolute;
  z-index: 999;
  top: 28px;
  left: 0;
  overflow: auto;
  background: #f8fbff;
  background: var(--primary-accent-color);
  color: #8e8e8e;
  color: var(--text-color);
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 2px 2px 10px 2px rgba(2, 44, 99, 0.14);
  max-height: 50vh;
}
.select__arrowIcon {
  position: absolute;
  top: 0px;
  right: 4px;
  width: 24px;
  height: 24px;
  background-color: #f8fbff;
  background-color: var(--primary-accent-color);
}
.select__menuDivider {
  background: #e0e0e0;
  background: var(--light-gray);
  height: 1px;
  width: auto;
  border: 0;
  margin: 16px -16px;
}
.select__option {
  display: block;
  margin-bottom: 8px;
  padding-left: 24px;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
  color: #8e8e8e;
  color: var(--text-color);
  font-size: 14px;
}
.select__option:last-child {
  margin-bottom: 0;
}
.select__option:hover {
  color: #0154bf;
  color: var(--primary-color);
}
.select__value {
  text-transform: capitalize;
  color: #f8fbff;
  color: var(--primary-accent-color);
}
.select__option--selected::after {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0px;
  left: -4px;
  background: #0154bf;
  background: var(--primary-color);
  -webkit-mask-image: url("checkmark.37c552aa.svg");
          mask-image: url("checkmark.37c552aa.svg");
}
.hidden {
  display: none;
}
.container {
  height: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 32px;
  }
}
.container__frame {
  width: 540px;
  margin: auto;
  padding-top: 20px;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .container__frame {
    width: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .container__frame {
    width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .container__frame {
    width: 100%;
    margin-top: 0;
  }
}
.logo {
  width: 147px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .logo {
    margin-bottom: 16px;
  }
}
.form__headline {
  font-size: 32px;
  font-weight: bold;
  display: block;
  letter-spacing: 1.23px;
  line-height: 1.2;
  text-align: center;
}
.form__description {
  font-size: 18px;
  display: block;
  margin-bottom: 32px;
  text-align: center;
  color: var(--primary-accent-color);
}
.form__item {
  position: relative;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
}
.form__pill {
  margin-bottom: 24px;
  text-align: center;
}
.form__label {
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 16px;
  transition: 0.2s ease all;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: inline;
  text-align: center;
}
.form__errorMessage {
  font-size: 12px;
  color: #e6533a;
  color: var(--danger-color);
  background: #f8fbff;
  background: var(--primary-accent-color);
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e6533a;
  border: 1px solid var(--danger-color);
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: -16px;
}
.form__errorIcon {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 24px;
  height: 24px;
  background-color: #e6533a;
  background-color: var(--danger-color);
}
.form__errorText {
  margin-left: 32px;
}
.form__errorMessage {
  position: relative;
}
.form__input {
  width: 100%;
  display: block;
  background: none;
  border-radius: 0px;
  border: 0px;
  border-bottom: solid 1px var(--light-cyan);
  font-size: 15px;
  color: #f8fbff;
  color: var(--primary-accent-color);
  height: 24px;
  padding: 0px;
  padding-bottom: 3px;
  text-align: center;
}
.form__input:focus ~ .form__label,
.form__input:not(:focus):valid ~ .form__label {
  top: 0px;
  left: 0px;
  font-size: 10px;
  display: none;
}
.form__passwordEyeIcon {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 24px;
  height: 24px;
  background-color: #f8fbff;
  background-color: var(--primary-accent-color);
}
.form__links-container {
  text-align: right;
  margin-top: -15px;
}
.form__link {
  font-size: 13px;
  font-weight: bold;
  color: #f8fbff;
  color: var(--primary-accent-color);
  letter-spacing: 0.5px;
}
.form__button {
  display: block;
  background: #f8fbff;
  background: var(--primary-accent-color);
  color: #004688;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  height: 48px;
  width: 100%;
  border: 0px;
  border-radius: 8px;
  margin: 40px auto 40px;
  box-shadow: 0px 4px 8px 0px rgba(1, 51, 106, 0.28);
  cursor: pointer;
}
.form__button:hover {
  color: var(--primary-color);
}
.form__button:active {
  color: #07345e;
}
@media only screen and (max-width: 767px) {
  .form__button {
    width: 100%;
  }
}
.form__register-text {
  width: 100%;
  margin: auto;
  text-align: center;
}
.form__register-link {
  text-decoration: underline;
}
.form__register-text a {
  font-weight: bold;
  color: #f8fbff;
  color: var(--primary-accent-color);
}
.eye-icon {
  -webkit-mask: url(eye.447b6fe9.svg) no-repeat center;
  mask: url(eye.447b6fe9.svg) no-repeat center;
}
.arrow-icon {
  -webkit-mask: url(arrow.ee38845f.svg) no-repeat center;
  mask: url(arrow.ee38845f.svg) no-repeat center;
}
.error-icon {
  -webkit-mask: url(error.daf2deb5.svg) no-repeat center;
  mask: url(error.daf2deb5.svg) no-repeat center;
}

.pre-loader{
	background-color: rgba(0, 0, 0, 0.6);
	display:none;
	z-index:9999;
	width:100%;
	height:100%;
	position:fixed;

}
.pre-loader .md-spinner{
	position:absolute;
	width:2vw;
	height:4vh;
	top:50%;
	left:48%;	
}

.md-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  animation: md-spinner 2.5s infinite linear both;
}

.md-spinner-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: md-spinner-dot 2.0s infinite ease-in-out both; 
}

.md-spinner-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: md-spinner-dot-before 2.0s infinite ease-in-out both; 
}

.md-spinner-dot:nth-child(1) { animation-delay: -1.1s; }
.md-spinner-dot:nth-child(2) { animation-delay: -1.0s; }
.md-spinner-dot:nth-child(3) { animation-delay: -0.9s; }
.md-spinner-dot:nth-child(4) { animation-delay: -0.8s; }
.md-spinner-dot:nth-child(5) { animation-delay: -0.7s; }
.md-spinner-dot:nth-child(6) { animation-delay: -0.6s; }
.md-spinner-dot:nth-child(1):before { animation-delay: -1.1s; }
.md-spinner-dot:nth-child(2):before { animation-delay: -1.0s; }
.md-spinner-dot:nth-child(3):before { animation-delay: -0.9s; }
.md-spinner-dot:nth-child(4):before { animation-delay: -0.8s; }
.md-spinner-dot:nth-child(5):before { animation-delay: -0.7s; }
.md-spinner-dot:nth-child(6):before { animation-delay: -0.6s; }
