/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.veem-pay-me-button {
	background: rgb(102, 102, 255);
	color: #fff;
	width: 100%;
	border-radius: 30px;
}

.veem-checkout-container {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99998; /* WordPress Admin Bar is 99.999 */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	visibility: hidden;
}

.veem-popup-container {
	position: relative;
	width: 40%;
	height: 100%;
	max-height: 90vh;
}

.veem-popup-container > div {
	width: 100% !important;
	height: 100% !important;
}

@media (max-width: 1024px) {

	.veem-popup-container {
		width: 70%;
	}
}

@media (max-width: 768px) {

	.veem-popup-container {
		width: 95%;
	}
}

.veem-payment-completed-container {
	width: 100%;
	position: absolute;
	bottom: 0;
	height: 20vh;
	background: rgb(0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.veem-payment-completed-container .veem-payment-completed-button {
	background: rgb(102, 102, 255);
	color: #fff;
	border-radius: 30px;
	padding: 1rem 2rem;
}

label[for="payment_method_veem"] img {
    max-height: 30px !important;
}