@media only screen and (min-width : 320px) {
.bb_sku_wrapper {
  display: none !important;
}

.woocommerce-checkout .payment_box.payment_method_cpd_stripe_connect {
    background-color: transparent !important;
}

.woocommerce-checkout .payment_box.payment_method_cpd_stripe_connect::before {
    display: none !important;
}

.payment_box.payment_method_cpd_stripe_connect .button-wrap {
  margin-top: 2rem;
}

.woocommerce-additional-fields {
    display: none;
}

#place_order {
   display: none !important;
}

.woocommerce-checkout .woocommerce {
    max-width: 900px;
    margin: 0 auto !important;
}

.woocommerce-checkout .bb-wc-co {
    flex-direction: column !important;
    
}

.woocommerce-checkout .bb-wc-co .bb-wc-col {
    width: 100% !important;
}

.stripe-wrap {
    padding: 0.5rem;
}

.stripe-wrap iframe {
    box-shadow: none !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    background: #ededed !important;
    
}

.thank-you-course-link {
    text-align: center;
    padding: 2rem;
}

#payment-progress-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

#payment-progress-spinner.active {
    display: flex;
}

#payment-progress-spinner img {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 200px;
    height: auto;
}

#payment-message {
    color: #fff;
    font-size: 2rem;
}

.stripe-account-connected {
    font-size: 1.3rem;
}

.stripe-account-connected i {
    color: green;
    font-size: 2rem;
}

.stripe-connect-wrap {
   display: flex;
   flex-direction: column;
   padding: 1.5rem;
   background-color: #fff;
   border-radius: 0.5rem;
   margin: 0.5rem 0;
   border: 1px solid #e7e9ec;
}

.stripe-connect-wrap .logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.stripe-connect-wrap .logo img {
    max-width: 200px;
}

.stripe-connect-wrap .content {
    flex: 8;
    display: flex;
    flex-direction: column;
   
    justify-content: space-between;
    align-items: center;
}

.stripe-connect-wrap .content .form-wrap {
    display: flex;
    align-items: center;
}

.stripe-connect-wrap .content .form-wrap form {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}




}
@media only screen and (min-width : 768px) {
    .stripe-connect-wrap {
        
        flex-direction: row;
       
     }

     .stripe-connect-wrap .content {
        flex-direction: row;
        padding-left: 2rem;
    }
}
@media only screen and (min-width : 992px) {
}
@media only screen and (min-width : 1200px) {
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }