/*
This is the generic version of the dropdown menu from the 2020/03/26 Polo Shirt LP:
• js/202003/20200326-poloshirt-nav/rlc-polo_shirt_dropdown.css
• js/202003/20200326-poloshirt-nav/rlc-polo_shirt_dropdown.js
*/
.rlc-creative_v3.rlc-overflow_vis {
	overflow: visible;
	display: initial;
}
.rlc-creative_v3 .rlc-hero.rlc-fullbleed {
	overflow: visible;
	z-index: 1;
}
.rlc-nav-dropdown-plp-container {
	position: relative;
	margin: 2em auto 1em;
	height: 52px;
	width: 160px;
	color: #fff;
}
.rlc-nav-dropdown-plp-container .rlc-nav-dropdown-plp {
	position: absolute;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	line-height: initial;
	overflow: hidden;
	max-height: 52px;
	height: auto;
	background-color: transparent;
	transition: max-height 600ms ease-in-out 0ms, background-color 150ms linear 0ms, color 150ms linear 0ms;
	will-change: contents;
}
.rlc-nav-dropdown-plp:after {
	content: "";
	position: absolute;
	left: auto;
	right: 16px;
	top: 26px;
	margin-top: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4px 0 4px;
	border-color: currentColor transparent transparent transparent;
	transition: all 300ms linear;
	transform: rotate(0deg);
}
.rlc-nav-dropdown-plp.expand:after {
	top: 26px;
	transform: rotate(-180deg);
}
.rlc-nav-dropdown-plp .rlc-nav-dropdown-item {
	list-style: none;
	padding: 0;
	border: 1px solid #fff;
	cursor: pointer;
	background: #fff;
	transition: all 300ms linear;
	will-change: contents;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Founders Grotesk Mono Regular", Helvetica, Arial, sans-serif;
}
.rlc-nav-dropdown-plp .rlc-nav-dropdown-item.default {
	background: transparent;
}
.rlc-nav-dropdown-plp .rlc-nav-dropdown-item:hover {
	/* background: #041E3A; */
	background: #000;
	color: #fff;
}
.rlc-nav-dropdown-plp, .rlc-nav-dropdown-item {
	width: 100%;
}
.rlc-nav-dropdown-item {
	height: 52px;
}
.rlc-nav-dropdown-item .rlc-cta {
	color: currentColor;
	letter-spacing: initial;
	text-transform: uppercase;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.rlc-nav-dropdown-item .rlc-span {
	color: currentColor;
	letter-spacing: initial;
	text-transform: uppercase;
	font-size: 11px;
}
.rlc-nav-dropdown-item .rlc-cta:hover {
	text-decoration: none;
}
.rlc-nav-dropdown-item .rlc-cta .rlc-span {
	font-size: 11px;
	text-transform: uppercase;
}
.rlc-nav-dropdown-plp.expand {
	max-height: 1500px;
	height: auto;
}
.rlc-nav-dropdown-plp:hover,
.rlc-nav-dropdown-plp:active,
.rlc-nav-dropdown-plp:focus,
.rlc-nav-dropdown-plp:focus-within,
.rlc-nav-dropdown-plp.expand {
	background: #fff;
	/* color: #041E3A; */
	color: #000;
	transition: max-height 600ms ease-in-out 150ms, background-color 0ms linear 0ms, color 0ms linear 0ms;
}
.rlc-nav-dropdown-item.default:hover {
	background: #fff;
	/* color: #041E3A; */
	color: #000;
}
@media only screen and (max-width:767px) {
	.rlc-nav-dropdown-plp .rlc-nav-dropdown-item {
		list-style: none;
		padding: 0.75em 1em;
	}
	.lang-fr_FR .rlc-nav-dropdown-plp-container {
		width: 176px;
	}
}
.is-ie .rlc-nav-dropdown-plp.expand .rlc-nav-dropdown-item {
	background: #fff;
	/* color: #041E3A; */
	color: #000;
}