@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

.mp-card-body {
	flex: 1 1 auto;
	padding: 1rem 1rem;
}

.mp-text-center {
	text-align: center !important;
}

.mp-alert {
	position: relative;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
}

.mp-alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}

.mp-alert-success {
	color: #0f5132;
	background-color: #d1e7dd;
	border-color: #badbcc;
}

.mp-alert-checkout-test-mode {
	margin-bottom: 16px;
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: flex-start;
	width: 100%;
	min-height: 94px;
	padding-bottom: 10px;
	background: #f5f5f5;
	border-radius: 6px;
	border-left: 5px solid #f73;
}

.mp-alert-icon-checkout-test-mode {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 10%;
	height: 100%;
	min-width: 30px;
}

.mp-alert-circle-img {
	width: 16px;
	margin-top: 16px !important;
}

.mp-alert-texts-checkout-test-mode {
	flex: 1;
	height: 100%;
}

.mp-alert-title-checkout-test-mode {
	margin: 16px 0 0 0;
	color: rgba(0, 0, 0, 0.9);
	font-family: sans-serif;
	font-weight: 500;
	font-size: 16px;
}

.mp-alert-description-checkout-test-mode {
	width: 90%;
	margin: 4px 0 0 0 !important;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
}

.mp-checkout-error-container {
	width: 100%;
	display: none;
}

.mp-alert-description-button {
	font-family: 'Lato', sans-serif;
	padding: 0 8px;
	font-size: 14px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	border-color: transparent;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 36px;
}

.mp-alert-description-button.primary {
	color: #fff;
	background-color: #009ee3;
	margin-right: 8px;
}

.mp-alert-description-button.primary:hover {
	color: #fff;
	background-color: #007eb5;
}

.mp-alert-description-button.secondary {
	color: #009ee3;
	background-color: rgba(71,154,209,.15);
}

.mp-alert-description-button.secondary:hover {
	color: #32b3ff;
	background-color: rgba(71,154,209,.2);
}

.mp-alert-description-button.secondary:focus {
	color: #32b3ff;
	background-color: rgba(71,154,209,.2);
	border-color: rgba(71,154,209,.2);
	box-shadow: 0 0 0 1px;
}

/* LOADER */
.mp-loader-container {
	width: auto;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mp-loader {
	width: 30px !important;
	height: 30px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #009ee3;
	border-radius: 50%;
	animation: spin 0.5s linear infinite;
}

.mp-small-loader {
	width: 12px !important;
	height: 12px;
	border: 3px solid rgba(71,154,209,.2);
	border-top: 3px solid #009ee3;
	border-radius: 50%;
	animation: spin 0.5s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}
/* END LOADER */
