/**
* Shows how you can use CSS to style your Element's container.
* These classes are added to your Stripe Element by default.
* You can override these classNames by using the options passed
* to the CardElement component.
* https://stripe.com/docs/js/elements_object/create_element?type=card#elements_create-options-classes
*/
.StripeElement {
    height: 5em;
    /* padding: 100px 12px;
	margin: 10px 12px; */
    width: 20em;
    font-size: 1m;
    color: #32325d;
    background-color: white;
    border: 1px solid black;
    padding: 1%;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
    justify-self: center;
}
.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
    border-color: #fa755a;
}
.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/*Tabs styling for SOCKETMAT*/
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    width: 49.5%;
    font-size: 50%;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: lightgrey;
    border-color: #dee2e6 #dee2e6 #fff;
}

@media (min-width: 1280px) {
    .StripeElement {
        height: 5em;
        width: 45em;
    }
}

/* @media only screen and (max-aspect-ratio: 1/1) {
	.StripeElement {
		width: 20em;
	}
	.nav-tabs .nav-link {
		font-size: 40%;
	}
} */
