/* --- flyoutmodal styles --- */
.rlc-creative_v3.rlc-modal-container {
	overflow: hidden;
	position: relative;
}

html.modal-open {
	overflow-y: hidden !important;
	position: relative;
}
body.modal-open {
	overflow-y: hidden !important;
	position: relative;
}
body.modal-open header {
	pointer-events: auto;
}
body.modal-open header .js-top-banner.top-banner {
	background-color: #fff !important;
}
body.modal-open header .menu-category>li>a {
	color: #041e3a;
}
body.modal-open header .primary-logo a {
	background-image: url("logo-navy.svg");
	opacity: 1!important;
}

body.modal-open header #search button:after,
body.modal-open header .favorites a:after,
body.modal-open header .menu-utility-user li a:before,
body.modal-open header .mini-cart-total .mini-cart-link:after,
body.modal-open header .minicart-quantity {
	color: #041e3a;
}

#rlc-flyoutmodal {
	height: 0px;
	color: #000;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	pointer-events: none;
}
#rlc-flyoutmodal.open {
	position: fixed;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.75);
	z-index: 999;
	opacity: 1;
	max-width: 100%;
}
#rlc-flyoutmodal.open.closing {
	opacity: 0;
}
#rlc-flyoutmodal .rlc-flyoutmodal-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	right: -100%;
}
#rlc-flyoutmodal.open .rlc-flyoutmodal-wrap {
	right: 0;
	-webkit-transition: right 0.5s ease-out;
	transition: right 0.5s ease-out;
	pointer-events: none;
}
#rlc-flyoutmodal #rlc-flyoutmodal-close {
	position: absolute;
	top: 2em;
	right: 0;
	width: 2.1em;
	height: 2.1em;
	min-width: auto;
	min-height: auto;
	padding: 0;
	margin: 0;
	max-width: none;
	max-height: none;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 100;
	pointer-events: auto;
	margin-right: 2.5em;
}
#rlc-flyoutmodal #rlc-flyoutmodal-close::before,
#rlc-flyoutmodal #rlc-flyoutmodal-close::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0.149em;
	height: 100%;
	display: block;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#rlc-flyoutmodal #rlc-flyoutmodal-close::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#rlc-flyoutmodal .rlc-flyoutmodal-in {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: transparent;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	pointer-events: auto;
}
@media screen and (max-width: 767px) {
	#rlc-flyoutmodal #rlc-flyoutmodal-close {
		top: 0.75em;
		margin-right: 0.75em;
		width: 1.75em;
		height: 1.75em;
	}
	#rlc-flyoutmodal .rlc-flyoutmodal-wrap {
		width: 100vw;
	}
}
