/* Variables */
* {
   box-sizing: border-box;
   padding: 0;
   margin: 0;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, sans-serif;
   font-size: 16px;
   -webkit-font-smoothing: antialiased;

   height: 100vh;
   width: 100vw;
}

#trial {
   font-size: 13px;
   margin-bottom: 1rem;
}

#payment-success {
   text-align: center;
   padding: 5rem;
}

.payment-title {
   margin-bottom: 2rem;
}

form {
   width: 100%;
   align-self: center;
   padding: 5rem 40px;
}

.form-row {
   display: flex;
   gap: 10px;
}

.input-text {
   color: rgba(26, 26, 26, 0.7);
   border-radius: 6px;
   margin-bottom: 1rem;
   border: 0;
   font-size: 14px;
   height: 36px;
   width: 100%;
   padding: 8px 12px;
   box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

#submit-button,
#showPaymentBtn {
   border-radius: 6px;
   margin-top: 1rem;
   margin-bottom: 1rem;
}

.result-message {
   line-height: 22px;
   font-size: 16px;
}

.result-message a {
   color: #00ffbe;
   font-weight: 600;
   text-decoration: none;
}

label {
   margin-bottom: 0.2rem;
   font-weight: 500;
   font-size: 0.813rem;
}

.hidden {
   display: none !important;
}

.text-stripe {
   position: absolute;
   bottom: 50;
   left: 70;
   font-size: 12px;
}
.form-validation-error {
   height: 100px;
   margin: 0 0 20;
   color: #e25950;
}

#card-error {
   color: rgb(105, 115, 134);
   text-align: left;
   font-size: 13px;
   line-height: 17px;
   margin-top: 12px;
}
select {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   border-radius: 6px;
   border: 0;
   color: rgba(26, 26, 26, 0.7);
   box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
}

/* #card-element-errors {
   color: red;
   text-align: center;
   padding: 2rem;
} */

#card-element {
   border-radius: 4px 4px 0 0;
   padding: 12px;
   border: 1px solid rgba(50, 50, 93, 0.1);
   height: 44px;
   width: 100%;
   background: white;
}

/* Buttons and links */
button {
   background: black;
   color: white;
   font-family: Arial, sans-serif;
   border-radius: 0 0 4px 4px;
   border: 0;
   padding: 12px 16px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   display: block;
   transition: all 0.2s ease;
   box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
   width: 100%;
}
button:hover {
   filter: contrast(115%);
}
button:disabled {
   opacity: 0.5;
   cursor: default;
}

.spinner {
   width: 100px;
   height: 100px;
   margin: auto;
   animation: spinner 2.5s infinite linear both;
}

.spinner-dot {
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   animation: spinner-dot 2s infinite ease-in-out both;
}

.spinner-dot:before {
   content: '';
   display: block;
   width: 25%;
   height: 25%;
   background-color: #00ffbe;
   border-radius: 100%;
   animation: spinner-dot-before 2s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
   animation-delay: -1.1s;
}
.spinner-dot:nth-child(2) {
   animation-delay: -1s;
}
.spinner-dot:nth-child(3) {
   animation-delay: -0.9s;
}
.spinner-dot:nth-child(4) {
   animation-delay: -0.8s;
}
.spinner-dot:nth-child(5) {
   animation-delay: -0.7s;
}
.spinner-dot:nth-child(6) {
   animation-delay: -0.6s;
}
.spinner-dot:nth-child(1):before {
   animation-delay: -1.1s;
}
.spinner-dot:nth-child(2):before {
   animation-delay: -1s;
}
.spinner-dot:nth-child(3):before {
   animation-delay: -0.9s;
}
.spinner-dot:nth-child(4):before {
   animation-delay: -0.8s;
}
.spinner-dot:nth-child(5):before {
   animation-delay: -0.7s;
}
.spinner-dot:nth-child(6):before {
   animation-delay: -0.6s;
}

.spinner-white {
   width: 100px;
   height: 100px;
   margin: auto;
   animation: spinner 2.5s infinite linear both;
}

.spinner-white-dot {
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   animation: spinner-dot 2s infinite ease-in-out both;
}

.spinner-white-dot:before {
   content: '';
   display: block;
   width: 25%;
   height: 25%;
   background-color: #fff;
   border-radius: 100%;
   animation: spinner-dot-before 2s infinite ease-in-out both;
}

.spinner-white-dot:nth-child(1) {
   animation-delay: -1.1s;
}
.spinner-white-dot:nth-child(2) {
   animation-delay: -1s;
}
.spinner-white-dot:nth-child(3) {
   animation-delay: -0.9s;
}
.spinner-white-dot:nth-child(4) {
   animation-delay: -0.8s;
}
.spinner-white-dot:nth-child(5) {
   animation-delay: -0.7s;
}
.spinner-white-dot:nth-child(6) {
   animation-delay: -0.6s;
}
.spinner-white-dot:nth-child(1):before {
   animation-delay: -1.1s;
}
.spinner-white-dot:nth-child(2):before {
   animation-delay: -1s;
}
.spinner-white-dot:nth-child(3):before {
   animation-delay: -0.9s;
}
.spinner-white-dot:nth-child(4):before {
   animation-delay: -0.8s;
}
.spinner-white-dot:nth-child(5):before {
   animation-delay: -0.7s;
}
.spinner-white-dot:nth-child(6):before {
   animation-delay: -0.6s;
}

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

@keyframes spinner-dot {
   80%,
   100% {
      transform: rotate(360deg);
   }
}

@keyframes spinner-dot-before {
   50% {
      transform: scale(0.4);
   }
   100%,
   0% {
      transform: scale(1);
   }
}

.checkout {
   display: flex;
   min-height: 100vh;
}
#checkout-title {
   margin-bottom: 1rem;
   color: grey;
   font-weight: 300;
}
#checkout-price {
   margin-bottom: 1rem;
}
.checkout-line {
   display: flex;
   justify-content: space-between;
   margin-bottom: 1rem;
}
.checkout-line a {
   text-decoration: none;
}
.left {
   background-color: #000000;
   min-width: 50vw;
   padding: 5rem;
   color: white;
}
.left .header {
   margin-bottom: 100px;
}
.left .header .back-btn {
   display: block;
   margin: 1rem;
   padding: 0px 10px;
   color: white;
   font-weight: 900;
}

.left .logo {
   display: flex;
   flex-direction: column;
   text-align: center;
}

.left .logo .title {
   font-size: xx-large;
   font-weight: bold;
}

.left .logo .subtitle {
   font-size: small;
   font-weight: bold;
}

.right {
   padding: 0rem 2rem;
   width: 100%;
}
.form-group {
   width: 100%;
}
.form-group label {
   display: block;
}

.form-group select {
   padding: 8px 12px;
   margin-bottom: 1rem;
   width: 100%;
}

.cgv-group,
.cgv-group label {
   display: inline-block;
}

.cgv-group #cgv {
   width: 20px;
   font-size: 8px;
   height: auto;
}

.element-errors {
   display: inline-flex;
   height: 20px;
   margin: 15px auto 0;
   padding-left: 20px;
   color: #e25950;
   opacity: 0;
   transform: translateY(10px);
   transition-property: opacity, transform;
   transition-duration: 0.35s;
   transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
   /* background: url(/images/error.svg) center left no-repeat; */
   background-size: 15px 15px;
}

.element-errors.visible {
   opacity: 1;
   transform: none;
}

#global-error-message {
   text-align: center;
   margin-top: 5rem;
}
#error-message {
   margin-bottom: 1rem;
   color: '#FF0000' !important;
}

#iban-element {
   width: 100% !important;
}

@media (max-width: 1100px) {
   .text-stripe {
      display: none;
   }
   .checkout {
      display: block;
   }
   .left {
      padding: 2rem;
   }
}

@media (max-width: 900px) {
   .text-stripe {
      display: none;
   }
   <div id='payment-refused' class='hidden' > …</div > .left {
      padding: 2rem;
   }
   .right {
      padding: 1rem;
   }
   form {
      min-width: 350px;
      margin: auto;
   }
}
