a, .btn:focus,.btn:active {
   outline: none !important;
   box-shadow: none;
}

.btn-xlarge {
    padding: 18px 28px;
    font-size: 20px;
    line-height: normal;
    -webkit-border-radius: 38px;
       -moz-border-radius: 38px;
            border-radius: 38px;
}

input[type="radio"] {
  margin-right: 10px;
}

.main_icons {
    margin: 2em 0 2em 0;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.hideIT {
  visibility: hidden;
}

$grey: #777;
$grey2: #dfe3e4;
$blue: #2183dd;
$green: #009900;

$white: #fff;


.container {
  width: 100px;
  margin: 0.1px;
}

.progressbar {
  counter-reset: step;
  width: 100%;
  margin: none;

}

.progressbar li {
  list-style-type: none;
  width: 7.4%;
  margin-left: 1px;
  float: left;
  font-size: 8px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #4582EC;
  cursor: pointer;

}

.progressbar li::before {
  width: 20px;
  height: 20px;
  content: counter(step);
  counter-increment: step;
  line-height: 14px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
  animation: pulse 5s infinite;
}


.progressbar li::after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 10px;
  left: -50%;
  z-index: -1;
  animation: nextStep 1s;

}

.progressbar li:first-child::after {
  content: none;
}

.progressbar li.is-active {
  color: #4582EC;
  border-radius: 5px solid;

}

.progressbar li.is-active::before {
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 10px;
  color: white;
  background: #4582EC;
  border: 4px solid transparent;
  animation: pulse 5s infinite;
}


.progressbar li.is-complete {
  color: green;

}

.progressbar li.is-complete::before {

  font-family: FontAwesome;
  font-weight: 900;
  font-size: 10px;
  color: white;
  background: #36d145;
  border: 4px solid transparent;
}

.progressbar li.is-complete::after {
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 10px;
  color: white;
  background: #36d145;
  animation: nextStep 1s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 131, 221, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(33, 131, 221, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 131, 221, 0);
  }
}

@keyframes nextStep {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.modal-header {
  background-color: #4582EC;
  padding: 9px 15px;
  color: #FFF;
  font-family: Verdana, sans-serif;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.dropdown {
  position: absolute;
  right: 100%;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #fff;
  background-color: #007bff;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  float: right;
  margin-left: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;

  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow .75s linear infinite;
  animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.custom-nav {
  background-color: #0F2F4D;
}

.navbar1 {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

body {
  padding-top: 57px;
}

.btn-xl {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 40px;
}

:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: .75rem;
}

.card-signin {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.card-signin .card-title {
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 1.5rem;
}

.card-signin .card-body {
  padding: 2rem;
}

.form-signin {
  width: 100%;
}

.form-signin .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  padding: 1rem;
  transition: all 0.2s;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input {
  height: auto;
  border-radius: 2rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

.btn-google {
  color: white;
  background-color: #ea4335;
}

.btn-facebook {
  color: white;
  background-color: #3b5998;
}

/* .card {
  color: white;
  background-color: #3b5998;
} */
