.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
  background-color: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: 'Satoshi-Variable';
}

.left-panel {
  background-color: #16154D;
  color: white;
  padding: 2rem;
  width: 40%;
}

.left-panel .subscription-text {
  margin-top: 3rem;
  font-family: 'Satoshi-Medium';
  font-size: 1rem;
}

.left-panel .price {
  font-family: 'Satoshi-Black';
  font-size: 2.5rem;
  color: #fff;
  margin-top: 1rem;
}

.left-panel .plan-details {
  margin-top: 3rem;
  font-family: 'Satoshi-Medium';
}

.left-panel .plan-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.left-panel .plan-row span {
  font-size: 1rem;
  font-family: 'Satoshi-Bold';
}

.left-panel .toggle-row {
  margin-top: 1.5rem;
}

.right-panel {
  padding: 2.5rem 3rem;
  width: 60%;
}

.right-panel .rightPanelHeading {
  font-family: 'Satoshi-Bold';
  font-size: 1.5rem;
  color: #1a1a1a;
}

.right-panel #payment-form {
  margin-top: 2rem;
}

.right-panel #payment-form label {
  font-family: 'Satoshi-Regular';
  text-transform: capitalize;
  font-size: .8rem;
  color: #1a1a1a;
}

.right-panel #payment-form select {
  border: 1px solid #dedede;
  border-radius: 4px;
  font-family: 'Satoshi-Medium';
  font-size: .8rem;
  outline: none;
  color: #1a1a1a;
}

.right-panel #payment-form .billing-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

.right-panel #payment-form .card-extra {
  margin-top: 1rem;
}

.right-panel #payment-form input {
  border: 1px solid #dedede;
  border-radius: 4px;
  font-family: 'Satoshi-Medium';
  font-size: .8rem;
  outline: none;
  color: #1a1a1a;
}

.right-panel #payment-form input:focus {
  border: 1px solid #296EB4;
  background-color: #fefefe;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.back-button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}

.logo-circle {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  margin-right: 5px;
}

.logo-text {
  font-weight: bold;
}

.subscription-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  margin: 0;
}

.per-month {
  font-size: 16px;
  font-weight: normal;
}

.description {
  font-size: 14px;
  margin-bottom: 20px;
}

.plan-details, .subtotal, .tax, .total {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.plan-row, .toggle-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.billing-frequency {
  font-size: 12px;
  margin: 5px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.toggle-text {
  font-size: 12px;
}

.annual-price {
  font-size: 12px;
}

.promo-code {
  color: #4CAF50;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin: 10px 0;
}

.footer {
  font-size: 12px;
  margin-top: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="phone"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card-input {
  position: relative;
}

.card-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.card-icons img {
  width: 30px;
  margin-left: 5px;
}

.card-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-extra input {
  width: 48%;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-description {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.subscribe-button {
  background-color: #296EB4;
  color: white;
  border: none;
  height: 3rem;
  padding: 0;
  width: 100%;
  font-family: 'Satoshi-Bold';
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.subscribe-button:hover {
  background-color: #16154D;
}

.terms {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}
/*# sourceMappingURL=paymentInitial.css.map */