@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.StripeElement--webkit-autofill {
        background-color: #e8f0fe !important;
    }

.card_box {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.card_input {
    width: 100%;
    box-sizing: border-box;
    border: #ff0100 solid 1px;
    border-radius: 6px;
    color: #555;
    padding: 8px;
    margin-top: 2px;
    margin-bottom: 14px;
    outline: none;
    font-family: inherit;
	text-transform: uppercase;
	background-color: white;
	max-height: 36px;
}

#submit {
    width: 100%;
    background-color: #ff0100;
    /*border: #7dc885 solid 2px;*/
    border-radius: 6px;
    color: #fff;
    margin-top: 8px;
    padding: 8px;
    font-family: inherit;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
	opacity: unset;
}

#submit:hover {
    opacity: .8;
	color:var(--button-default-text-hover);
	background: white;
	border:var(--button-default-border-hover);
	background-image: unset;
}

#card-result {
    color: #444;
    font-weight: bold;
}

#card-number {
    background-image: url('images/unknown.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
    background-origin: content-box;
}

#card-cvc {
    background-image: url('images/cvc.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
    background-origin: content-box;
}

.card_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.card_row > div {
    width: 100%;
}