html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fafafa;
}

svg {
  position: absolute;
  width: 240px;
  height: 120px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

svg #plug,
svg #socket {
  fill: #007fca;
}

svg #loop-normal {
  fill: none;
  stroke: #007fca;
  stroke-width: 12;
}

svg #loop-offset {
  display: none;
}

.credit {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
  color: #007fca;
  font: 800 75% "Open Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}


#payment-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 100, 100, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}

.payment-popup-content {
  background-color: white;
  padding: 20px;
  width: 500px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: rgb(0 0 0 / 15%) 3px 3px 16px;
}

.payment-popup-content button {
  cursor: pointer;
}

.payment-popup-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #000;
}

.payment-popup-header h1 {
  font-size: 18px;
  font-family: sans-serif;
}

.payment-close-button {
  border: none;
  background: none;
  font-size: 22px;
  height: 22px;
  width: 22px;
}

.payment-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.payment-form-group {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
}

.payment-inputs-block {
  width: 100%;
}

.payment-inputs-block iframe {
  width: 100%;
}

.payment-order-button {
  border: none;
  height: 50px;
  background-color: #0080c9;
  color: white;
  font-weight: 900;
  font-size: 16px;
  border-radius: 12px;
  transition: .5s;
}



#close-popup-btn {
  margin-top: 10px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: transparent;
  -webkit-box-shadow: none;
  background-color: transparent;
  color: transparent;
}

.lds-ring {
  /* change color here */
  color: #2594D3
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 6px;
  border: 6px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor 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);
  }
}