@charset "UTF-8";

/* MMCA */
.modal-wrapper {
	display: flex;
	flex: 0 1 auto;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 3000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	/*background-color: rgba(1,33,105,0.9);*/
	background-color: rgba(51, 51, 51, 0.95);
}

.modal__header {
	margin: 0;
	padding: 0;
	border: 0;
}

.modal__close-btn img {
	max-width: 100%;
	border-style: none;
}

.modal__button-container {
	padding: 8px 20px;
	display: flex;
	flex: 0 1 auto;
	justify-content: space-around;
}

.modal__button-container .button-block {
	display: flex;
	flex: 0 1 auto;
	justify-content: center;
	align-items: center;
	height: 40px;
	margin: 8px 0px;
	border-radius: 6px;
	background-color: #1d875a;
}

.button-block.secondary {
	background-color: #fff;
	border: 2px solid #1d875a;
}

.secondary__btn--text {
	color: #015cb3;
}

.modal__button-container .button-block a {
	color: #fff;
}

.button-block a,
.button-block a:hover {
	text-decoration: none;
}

@media screen and (min-width: 280px) {
	.modal__body {
		width: 100vw;
		/* height: 100vh; */
		height: 100%;
		background-color: #fff;
		border-radius: 0;
	}

	.modal__header {
		height: 68px;
		/*padding: 20px 40px;*/
		padding: 20px 24px;
		border-radius: 0;
		display: flex;
		flex: 0 1 auto;
		justify-content: space-between;
		align-items: center;
		background-color: #1d875a;
	}

	.modal__title {
		color: #fff;
	}

	.modal__close-btn {
		margin-top: 8px;
	}

	.modal__divider {
		height: 1px;
		width: 100%;
		margin-top: 10px;
		background-color: #e3e3e3;
	}

	.modal__top-container,
	.modal__bottom-container {
		/*padding: 20px 40px 0;*/
		padding: 20px 24px 0;
	}

	.top-container__amount, .bottom-container__amount {
		text-align: right;
	}

	.modal__button-container {
		flex-direction: column;
	}
}

@media screen and (min-width: 750px) {
	.modal__body {
		border-radius: 6px;
		width: 500px;
		height: auto;
		background-color: #fff;
	}

	.modal__header {
		border-radius: 6px 6px 0 0;
	}

	.modal__button-container {
		padding: 8px 0 25px;
		display: flex;
		flex: 0 1 auto;
		flex-direction: row;
	}

	.modal__button-container .button-block {
		flex-direction: row;
		width: 180px;
	}
}

.mm-h5 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 32px;
}

.modal__top-container .top-container__row div {
	width: 100%;
}

.body-small--bold {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 22px;
}

.clear {
	clear: both;
}