.lds-ring {
  display: inline-block;
  position: relative;
  width: 39px;
  height: 35px;
  vertical-align: middle;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 4px;
  border: 3px solid #f65d0d;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #f65d0d transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.create-account-link {
  border: none;
  background: #f65d0d;
  height: 35px;
  box-sizing: border-box;
  padding: 10px 20px;
  color: #fff !important;
  text-transform: uppercase;
  font: 15px source sans pro, sans-serif;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
}

.marg-top {
  margin-top: 10px;
}

/* .pass-meter-con {
  margin-bottom: 10px;
  font-size: 9pt;
} */

.pass-meter-con progress {
  vertical-align: middle;
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  width: 100%;
  padding: 10px;
  color: #f65e0e;
}

.dropdown-content a:hover {
  background-color: #d7d6d6;
}

.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  vertical-align: top;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}