body {
  width: 100%;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding: 0;
  margin: 0;
  background-color: #f5f5f5;
  font-size: 0.9rem;
  color: #333;
}

#r-background2 {
  opacity: 0;
}

.security-title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 1;
  font-size: 2.5rem;
}

/**
 * Security form outside angular app
 */
.static-security-wrapper {
  display: flex;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  min-width: 450px;
}
.static-security-wrapper button {
  margin-top: 20px;
  width: 180px;
  background-color: rgb(16, 185, 129);
  border-color: rgb(16, 185, 129);
}
.static-security-wrapper button:hover {
  background-color: rgb(16, 185, 129);
  border-color: rgb(16, 185, 129);
}

/**
 * Security form common
 * with angular app
 */
.security-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 30%;
  min-width: 440px;
  height: 100vh;
  padding: 20px;
  flex-direction: column;
  background: white;
}
.security-wrapper #sidebar-logo {
  max-width: 200px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 20px;
}
.security-wrapper h2 {
  font-size: 2em;
  font-weight: 300;
  margin-right: 20px;
  align-self: center;
  text-align: left;
}
.security-wrapper form {
  width: 400px;
  display: flex;
  flex-direction: column;
}

.r-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("https://picsum.photos/1920/1080") no-repeat;
  background-size: cover;
  z-index: 0;
  transition: opacity 2s ease-in-out;
}

.security-wrapper {
  min-width: 440px;
}
.security-wrapper .spinner-wrapper {
  background: rgb(16, 185, 129);
  width: 180px;
  height: 38px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  display: none;
}
.security-wrapper .spinner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  margin: 15px auto;
  position: relative;
  color: #FFF;
  left: -100px;
  box-sizing: border-box;
  animation: shadowRolling 2s linear infinite;
}

#external-checkout-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: self-start;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  padding-top: 100px;
  z-index: 9999;
  overflow: auto;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-in-out forwards;
}
#external-checkout-wrapper #checkout-wrapper-inner {
  width: 500px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
#external-checkout-wrapper #checkout-wrapper-inner #checkout {
  width: 450px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 white, 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 white, 120px 0 white, 110px 0 white, 100px 0 white;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white, 110px 0 white;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}

/*# sourceMappingURL=styles.css.map */
