html,
body {
  width: 100%;
  height: 100%;
}

.modulo {
  line-height: var(--bs-body-line-height);
  display: flex;
  align-items: center;
  justify-content: end;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0px;
  margin-right: 10%;
}

.row {
  margin: 0px;
}

/* Structure */
.success-icon {
  display: inline-block;
  width: 8em;
  height: 8em;
  font-size: 15px;
  border-radius: 50%;
  border: 3px solid #4cc93f;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: showSuccess 180ms ease-in-out;
  transform: scale(1);
}

/* Elements */
.success-icon__tip,
.success-icon__long {
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 10px;
  background-color: #4cc93f;
}

.success-icon__tip {
  width: 2.4em;
  top: 4.3em;
  left: 1.4em;
  transform: rotate(45deg);
  animation: tipInPlace 300ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 180ms;
  visibility: hidden;
}

.success-icon__long {
  width: 3em;
  transform: rotate(-45deg);
  top: 3.7em;
  left: 2.75em;
  animation: longInPlace 140ms ease-in-out;
  animation-fill-mode: forwards;
  visibility: hidden;
  animation-delay: calc(300ms + 140ms);
}

@keyframes showSuccess {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes tipInPlace {
  from {
    width: 0em;
    top: 0em;
    left: -1.6em;
  }

  to {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}

@keyframes longInPlace {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }

  to {
    width: 4em;
    top: 3.7em;
    left: 2.75em;
    visibility: visible;
  }
}

.formCard {
  background-color: #040603;
  border-radius: 20px;
  padding: 20px;
  overflow: auto;
  max-height: 95vh;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-xxs {
  font-size: 12px;
  line-height: 15px !important;
}

.background {
  background-image: url("back.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.logo {
  width: 200px;
}

.btn-primary {
  --bs-btn-color: #040603;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #040603;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #040603;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #040603;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3rem + 2px);
  line-height: 1.25;
  font-size: 15px;
}

#paypal-button-container.disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
  /* position: relative; */
}

/* #paypal-button-container.disabled:before{
  content: ' ';
  width:100%;
  height:100%;
  position: absolute;
  cursor:not-allowed;
  top:0px;left:0px;
  z-index: 1000;
} */

.spese {
  color: #fff;
  font-weight: bold;
}

.spese small {
  font-weight: initial;
  font-size: 11px;
}

.form-select {
  padding-bottom: 5px !important;
}

.splash {
  position: relative;
}

.splash img {
  width: 100%;
  max-height: 100vh;
}

.splash button {
  background: rgb(214, 0, 0);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  bottom: 30px;
  left: 0px;
  position: absolute;
  margin-left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: inline-block;
}

.formCard::-webkit-scrollbar {
  width: 4px;
  margin-right: 10px;
}

.formCard::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.formCard::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .background {
    display: block;
    background-position: center;
    background-size: cover;
    background-color: #040603;
    padding-top:85px;
  }

  .container {
    margin-top: 30vh;
    padding: 0 !important;
  }

  .formCard {
    border-radius: 40px !important;
    padding-bottom: 60px;
    max-height:initial!important;
  }

  .btn-primary {
    width: 100%;
  }

  .col-6 {
    margin: 0 !important;
    padding: 0 !important;
  }

  .splash button {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .formCard {
    border-bottom-left-radius: initial!important;
    border-bottom-right-radius: initial!important;
  }
}
