.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 999;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}

.blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}

.blocker.behind {
	background-color: transparent;
}

.ml-lightbox-container {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 1019;
	min-height: 250px;
	max-height: 280px;
	max-width: 750px;
	box-sizing: border-box;
	width: 90%;
	background: #f2f2f2;
	padding: 25px 40px 30px 40px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	-ms-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left;
}

.ml-lightbox-container > h1 {
	margin: 25px 0 25px 0;
	text-align: center;
}

.ml-lightbox-container > p {
	text-align: left;
}

.ml-lightbox-container > div {
    overflow: auto;
    margin-top: 20px;
    text-align: right;
}

.modal a.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../../../images/shared/utility-2_close_16p.png");
}

.modal a.close-modal:hover {
	background-image: url("../../../images/shared/utility-2_close_16p_HVR.png");
}

.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;
}

.ml-drawer-container {
	top: 0;
	left: calc(100% - 370px);
	width: 370px;
	height: 100vh;
	display:none;
	vertical-align: middle;
	position: absolute;
	z-index: 1019;
	box-sizing: border-box;
	background: #ffffff;
	padding: 55px 20px 0 20px;
	text-align: left;
	overflow: hidden;
}

.ml-drawer-title {
	font-family: "Georgia", serif;
	font-size:18px;
	font-weight:bold;
	color:#333333;
	padding-bottom:20px;

}

.ml-drawer-content {
	height: 100%;
	overflow: scroll;
	padding-right:20px;
}

.ml-drawer-content::last-child {
	margin-bottom:100px;
}

a.close-drawer {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../../../images/shared/utility-2_close_16p.png");
}

a.close-drawer:hover {
	background-image: url("../../../images/shared/utility-2_close_16p_HVR.png");
}

.ml-drawer-action-bar {
	height: 80px;
	width: 100%;
	background-color: #fff;
	padding: 30px 0px 30px 0px;
}

.ml-drawer-action-bar-static {
	bottom: 0;
	left: 0;
	position: absolute;
	height: 80px;
	width: 100%;
	background-color: #fff;
	padding: 30px 20px 30px 20px;
}

.ml-drawer-action-bar a, .ml-drawer-action-bar-static a {
	margin-right: 50px;
	vertical-align:text-bottom;
}

 @-webkit-keyframes sk-stretchdelay {
 0%, 40%, 100% {
-webkit-transform: scaleY(0.5);
 transform: scaleY(0.5);
}
 20% {
-webkit-transform: scaleY(1.0);
 transform: scaleY(1.0);
}
}
 @keyframes sk-stretchdelay {
 0%, 40%, 100% {
 -webkit-transform: scaleY(0.5);
 transform: scaleY(0.5);
}
20% {
 -webkit-transform: scaleY(1.0);
 transform: scaleY(1.0);
}
}
