.gsi-hd-wrap {
	/* background: #453ED6; */
	color: #ffffff;
	/* padding: 32px; */
	box-sizing: border-box;
}

.gsi-hd-wrap * {
	box-sizing: border-box;
}

/* Tabs */

.gsi-hd-wrap .gsi-hd-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.gsi-hd-wrap .gsi-hd-tab {
	background: transparent;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	/* 133.333% */
	text-transform: uppercase;
	border: 1px solid;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
	color: #fff;
}

.gsi-hd-wrap .gsi-hd-tab.active {
	background-color: #fff;
	color: #020F30;
}

/* Panels (desktop) */

.gsi-hd-wrap .gsi-hd-panels {
	width: 100%;
}

.gsi-hd-wrap .gsi-hd-panel {
	display: none;
}

.gsi-hd-wrap .gsi-hd-panel.active {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.gsi-hd-wrap .gsi-hd-continent-header {
	display: none;
}

.gsi-hd-wrap .gsi-hd-destinations {
	flex: 1 1 320px;
	min-width: 260px;
}

.gsi-hd-wrap .gsi-hd-dest-row {

	width: 100%;
	padding: 16px 0;
	border-bottom: 1px solid #453ED6;
	cursor: pointer;

	font-family: var(--heading-font) !important;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 42px;
}

.gsi-hd-dest-row-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 16px;
	width: 100%;
}

.gsi-hd-wrap .gsi-hd-dest-row .gsi-hd-dest-arrow::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: var(--arrow-svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}


/* .gsi-hd-wrap .gsi-hd-dest-row:hover .gsi-hd-dest-row-inner,
.gsi-hd-wrap .gsi-hd-dest-row.active .gsi-hd-dest-row-inner { */
.gsi-hd-wrap .gsi-hd-dest-row:hover .gsi-hd-dest-row-inner {
	background: var(--mint);
	color: #010A1C;
	border-radius: 12px;
}

/* .gsi-hd-wrap .gsi-hd-dest-row:hover .gsi-hd-dest-arrow::after,
.gsi-hd-wrap .gsi-hd-dest-row.active .gsi-hd-dest-arrow::after { */
.gsi-hd-wrap .gsi-hd-dest-row:hover .gsi-hd-dest-arrow::after {
	background-image: var(--arrow-svg-dark);
}

.gsi-hd-wrap .gsi-hd-image-panel {
	flex: 1 1 320px;
	min-width: 260px;
	position: relative;
	max-width: 480px;
	max-height: 360px;
	margin-top: -80px;
}

.gsi-hd-wrap .gsi-hd-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	border-radius: 12px;
}

.gsi-hd-wrap .gsi-hd-img.active {
	opacity: 1;
	position: relative;
}

@media (max-width: 1300px) {
	.gsi-hd-wrap .gsi-hd-image-panel {
		margin-top: 0;
	}
}

/* Mobile accordion */

@media (max-width: 980px) {
	.gsi-hd-wrap .gsi-hd-tabs {
		display: none;
	}

	.gsi-hd-wrap .gsi-hd-panel {
		display: block;
		padding-bottom: 16px;
	}

	.gsi-hd-wrap .gsi-hd-panel.gsi-hd-open {
		background: #fff;
		border-radius: 12px;
		margin-bottom: 12px;
		padding-bottom: 0;
	}

	.gsi-hd-wrap .gsi-hd-panel:last-child {
		padding-bottom: 0;
	}

	.gsi-hd-wrap .gsi-hd-panel.active {
		display: block;
		border-radius: 12px;
	}

	.gsi-hd-wrap .gsi-hd-continent-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 16px;
		cursor: pointer;
		font-family: var(--heading-font) !important;
		background: #fff;
		color: #010A1C;
		font-size: 28px;
		font-style: normal;
		font-weight: 500;
		line-height: 36px;
		border-radius: 12px;
	}

	.gsi-hd-wrap .gsi-hd-dest-row:hover .gsi-hd-dest-row-inner {
		background: #fff;
	}

	.gsi-hd-wrap .gsi-hd-panel.gsi-hd-open .gsi-hd-continent-header {
		background: #fff;
		color: #010A1C;
		border-bottom: 1px solid #020F30;
		padding: 12px 0;
		margin: 0 16px;
		border-bottom-left-radius: unset;
		border-bottom-right-radius: unset;
	}

	.gsi-hd-wrap .gsi-hd-dest-row .gsi-hd-dest-arrow::after {
		background-image: var(--arrow-svg-dark);
	}

	.gsi-hd-wrap .gsi-hd-chevron {
		display: inline-block;
		width: 20px;
		height: 20px;
		transition: transform 0.2s ease;
		content: var(--arrow-svg-dark);
	}

	.gsi-hd-wrap .gsi-hd-panel.gsi-hd-open .gsi-hd-chevron {
		transform: rotate(90deg);
	}

	.gsi-hd-wrap .gsi-hd-image-panel {
		display: none;
	}

	.gsi-hd-wrap .gsi-hd-destinations {
		display: none;
	}

	.gsi-hd-wrap .gsi-hd-panel.gsi-hd-open .gsi-hd-destinations {
		display: block;
	}

	.gsi-hd-wrap .gsi-hd-dest-row {
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: 32px;
		padding-top: 0;
		padding-bottom: 12px;
		border-bottom: unset;
		color: #010A1C;
	}

	.gsi-hd-wrap .gsi-hd-dest-row:first-child {
		padding-top: 12px;
	}

	.gsi-hd-dest-row-inner {
		background: transparent;
		padding-bottom: 0;
		padding-top: 0;
	}
}