.modal-holder {
	width: 100%;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	z-index: -1;
}.modal-holder .inner-modal-wrapper {
	width:100%;
	height:auto;
	position: absolute;
	opacity: 0;
	-webkit-transition: all 850ms ease-in-out;
	-moz-transition: all 850ms ease-in-out;
	-ms-transition: all 850ms ease-in-out;
	-o-transition: all 850ms ease-in-out;
	transition: all 850ms ease-in-out;
}.modal-holder .inner-modal-wrapper.active {
	position: relative;
}.modal-holder .inner-modal-wrapper.active, 
 .modal-holder.popup-open .inner-modal-wrapper {
	opacity: 1;
}.modal-holder.modal-open, 
 .modal-holder.popup-open,
 .modal-holder.popup.popup-open,
 .modal-holder.popup-scroll.popup-open {
	z-index: 99999;
}.modal-holder.popup:before, 
 .popup-scroll .modal-holder:before{
	content: " ";
	height: 100vh;
	width: 100vw;
	display: block;
	z-index: -1;
	position: absolute;
	background: transparent;
	-webkit-transition: all 850ms ease-in-out;
	-moz-transition: all 850ms ease-in-out;
	-ms-transition: all 850ms ease-in-out;
	-o-transition: all 850ms ease-in-out;
	transition: all 850ms ease-in-out;
}.modal-holder.exit-intent.popup-open:before,
 .modal-holder.popup.popup-open:before, 
 .popup-scroll .modal-holder.popup-open:before,
 .popup-scroll.modal-holder.popup-open:before {
	content: " ";
	height: 100vh;
	width: 100vw;
	display: block;
	z-index: -1;
	position: absolute;
	background: rgba(0, 0, 0, 0.9019607843137255);
}.modal-holder.top .inner-modal-wrapper {
	top: -100vh;
}.modal-holder.right .inner-modal-wrapper{
	right: -100vw;
}.modal-holder.bottom .inner-modal-wrapper {
	top: 100vh;
}.modal-holder.left .inner-modal-wrapper {
	left: -100vw;
}.modal-holder.top .inner-modal-wrapper.active, 
.modal-holder.popup-open.top .inner-modal-wrapper {
	top: 0;
}.modal-holder.right .inner-modal-wrapper.active, 
 .modal-holder.popup-open.right .inner-modal-wrapper{
	right: 0;
}.modal-holder.bottom .inner-modal-wrapper.active, 
 .modal-holder.popup-open.bottom .inner-modal-wrapper  {
	top: 0;
}.modal-holder.left .inner-modal-wrapper.active, 
 .modal-holder.popup-open.left .inner-modal-wrapper {
	left: 0;
}.modal-holder.toggle.fixed .toggle-open {
	top: 50vh;
}.toggle-open {
	cursor: pointer;
	width: 100%;
	max-width: 275px;
	padding: 10px 0;
	background-color: #73202f;
	text-align: center;
	display: block;
	color: #fff;
	position: relative;
	font-family: inherit;
}.toggle-close {
	height: 75px;
	width: 75px;
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: 50%;
	float: right;
	cursor: pointer;
	z-index: 9999;
	box-shadow: 0px 1px 30px #b3b3b359;
	right: 2%;
	opacity: 0;
	-webkit-transition: all 450ms ease-in-out;
	-moz-transition: all 450ms ease-in-out;
	-ms-transition: all 450ms ease-in-out;
	-o-transition: all 450ms ease-in-out;
	transition: all 450ms ease-in-out;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}.toggle-close.ready {
	top: 50px;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
	opacity: 1;
}.toggle-close .fa {
    display: block;
    position: relative;
    text-align: center;
}.modal-holder.absolute {
	position: absolute;
}.modal-holder.fixed {
	position: fixed;
	height: 100vh;
}.modal-holder.relative {
	position: relative;
	height: 0;
}.modal-holder.relative.modal-open {
	height: auto;
}.modal-holder.inherit {
	position: inherit;
}.modal-holder.closed,
 .modal-holder.prevent-modal {
	display: none !important;
	float: left;
}.modal-holder.closed::after,
 .modal-holder.prevent-modal::after {
	content: "";
	clear:both;
}.toggle.closed {
	display: unset !important;
}