.browse-by-country-tab {
	margin: 0;
}
.browse-by-country-tab:nth-child(3n + 1) .browse-by-country-tab__wrapper {
	left: 0;
	border-top-left-radius: 0;
}
.browse-by-country-tab:nth-child(3n + 2) .browse-by-country-tab__wrapper {
	left: 50%;
	transform: translateX(-50%);
}
.browse-by-country-tab:nth-child(3n + 3) .browse-by-country-tab__wrapper {
	right: 0;
	border-top-right-radius: 0;
}
.browse-by-country-tab.is-active {
	position: relative;
	z-index: 5;
}
@media only screen and (max-width: 781px) {
	.browse-by-country-tab.is-active {
		border: 1px solid #536090;
		border-radius: 4px;
		overflow: hidden;
	}
}
@media only screen and (min-width: 782px) {
	.browse-by-country-tab.is-active .browse-by-country-tab__button {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border: 1px solid #536090;
		border-bottom: none;
	}
}
.browse-by-country-tab.is-active .browse-by-country-tab__button {
	color: #536090;
}
.browse-by-country-tab.is-active .browse-by-country-tab__button:after {
	opacity: 1;
}
.browse-by-country-tab.is-active .browse-by-country-tab__arrow {
	transform: rotate(0);
}
.browse-by-country-tab.is-active .browse-by-country-tab__content {
	display: block;
}
.browse-by-country-tab .browse-by-country-tab__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background-color: #ece3c6;
	border-radius: 4px;
	min-height: 64px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	color: #cbcbcb;
}
@media only screen and (min-width: 782px) {
	.browse-by-country-tab .browse-by-country-tab__button:after {
		content: '';
		height: 10px;
		width: 100%;
		position: absolute;
		top: calc(100% - 5px);
		pointer-events: none;
		background-color: inherit;
		left: 0;
		right: 0;
		opacity: 0;
	}
}
@media (hover: hover) {
	.browse-by-country-tab .browse-by-country-tab__button:hover {
		color: #536090;
	}
}
.browse-by-country-tab .browse-by-country-tab__flag {
	flex: 0 0 24px;
}
.browse-by-country-tab .browse-by-country-tab__title {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	flex: 1;
	transition: all 0.25s ease;
	margin: 0 16px;
	font-family: Exo, sans-serif;
}
.browse-by-country-tab .browse-by-country-tab__content {
	display: none;
	position: relative;
	margin-top: -1px;
	min-height: 120px;
	height: var(--content-height);
	background-color: #ece3c6;
}
.browse-by-country-tab .browse-by-country-tab__wrapper {
	padding: 0 16px 24px;
	position: absolute;
	background-color: #ece3c6;
	top: 0;
	width: 100%;
	color: #464646;
	min-height: 100%;
}
@media only screen and (min-width: 782px) {
	.browse-by-country-tab .browse-by-country-tab__wrapper {
		padding: 24px;
		width: var(--container-width);
		border: 1px solid #536090;
		border-radius: 4px;
	}
}
.browse-by-country-tab .browse-by-country-tab__arrow {
	flex: 0 0 24px;
	transform: rotate(180deg);
	font-size: 0;
}
.browse-by-country-tab .browse-by-country-tab__arrow svg {
	transition: all 0.25s ease;
}
.browse-by-country-tab .browse-by-country-tab__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 782px) {
	.browse-by-country-tab .browse-by-country-tab__grid[data-columns='4'] {
		grid-template-columns: repeat(4, 1fr);
	}
	.browse-by-country-tab .browse-by-country-tab__grid[data-columns='3'] {
		grid-template-columns: repeat(3, 1fr);
	}
	.browse-by-country-tab .browse-by-country-tab__grid[data-columns='2'] {
		grid-template-columns: repeat(2, 1fr);
	}
}
