.blocker {
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;

	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	overflow: hidden;
	z-index: 9990;
	background: rgba(20, 23, 26, 0.55);
}
.blocker.behind {
	background-color: transparent;
}
.modal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;

	width: 100%;
	height:auto;
	max-height: 90%;
	margin: 0;
	position: fixed;
	bottom: 0;
	z-index: 9999;
	background: #fff;
	border-radius: 16px 16px 0 0;
	display: none;
}
.modal a.close-modal {
	width: 32px; height: 32px;
	line-height: 32px;
	background-color: #F1F3F5;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	text-indent: -9999px;
	overflow: hidden;
	position: absolute;
	top: 16px; right: 16px;
	z-index: 100;
}
.modal a.close-modal:before {
	content: '';
	width: 10px;
	height: 10px;
	display: inline-block;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='m6.06 5 3.72-3.72c.29-.29.29-.77 0-1.06s-.77-.29-1.06 0L5 3.94 1.28.22C.99-.07.51-.07.22.22s-.29.77 0 1.06L3.94 5 .22 8.72c-.29.29-.29.77 0 1.06.15.15.34.22.53.22s.38-.07.53-.22L5 6.06l3.72 3.72c.15.15.34.22.53.22s.38-.07.53-.22c.29-.29.29-.77 0-1.06L6.06 5Z' fill='%23343a40'/%3E%3C/svg%3E") no-repeat center center/contain;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px;
}
.modal-spinner > div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.modal-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.modal-spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.modal-spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
@-webkit-keyframes sk-stretchdelay{
	0%,
	100%,
	40%{-webkit-transform:scaleY(0.5)}
	20%{-webkit-transform:scaleY(1.0)}
}
@keyframes sk-stretchdelay{
	0%,
	100%,
	40%{transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}
	20%{transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}
}
