.stripe_form__card_element {
    font-size: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.stripe_form__card_element .input-label {
    display: inline-block;
    width: 134px;
    margin-bottom: 15px;
    position: relative;
    margin-left: 10px;
}
.stripe_form__card_element .input-label label {
    position: absolute;
    font-size: 12px;
    background: white;
    min-width: unset;
    left: 15px;
    top: -7px;
    z-index: 1;
    width: fit-content;
    padding: 0 5px;
    color: #979A9F !important;
}
.stripe_form__card_element .input-label:first-child {
    flex-grow: 1;
    width: unset;
    margin-left: 0;
}
.stripe_form__card_element  .input-label div {
    display: inline-flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.stripe_form__card_element .stripe_form__card_icon {
    font-size: 20px;
    font-family: "Font Awesome 5 Pro" !important;
    width: 25px;
}
.stripe_form__card_element .stripe_form__card_number ,
.stripe_form__card_element .stripe_form__card_expiry ,
.stripe_form__card_element .stripe_form__card_cvc {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    height: 42px;
    padding-left: 18px;
}
.stripe_form__card_element .stripe_form__card_expiry {
    width: 50px;
}
.stripe_form__card_element .stripe_form__card_cvc {
    width: 50px;
    margin-right: 0;
}

.stripe_form__payment_request_button__wrapper {
    margin-bottom: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stripe_form__label {
	display: inline-block;
	line-height: 30px;
	font-size: 16px;
	font-weight: bold;
}
.stripe_form__payment_option_select_wrapper {
	display: none;
	background: #F8F8F8;
	height: 34px;
	width: 194px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 3px;
}
.stripe_form__payment_option_select_option {
    height: 34px;
    line-height: 34px;
    width: 95px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    color: #2b3d52 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.stripe_form__payment_option_select_option:hover ,
.stripe_form__payment_option_select_option.selected {
	background: white;
	font-weight: bold;
}
.stripe_form__payment_request_button__logo {
	display: none;
    height: 18px;
    margin-left: 4px;
}
.stripe_form__payment_request_button.stripe_form__payment_request_button__apple_pay .stripe_form__payment_request_button__logo__apple_pay {
	display: inline-block;
}
.stripe_form__payment_request_button.stripe_form__payment_request_button__google_pay .stripe_form__payment_request_button__logo__google_pay {
	display: inline-block;
}


@media screen and (max-width: 30em) {
	.stripe_form__card_element .input-label {
		width: 49%;
		margin-left: 0;
	}
	.stripe_form__card_element .input-label:first-child {
		width: 100%;
	}
}