.tour-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 25px;
}

.tour-list .tour {
	border: 1px solid var(--default-border-color);
	border-radius: var(--small-border-radius);
	background-color: #ffffff;
	overflow: hidden;
}

.tour-list .tour .top {
	display: flex;
	flex-direction: column;
	padding: 20px;
	height: 295px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	text-shadow: var(--default-shadow);
	color: #ffffff;
}

.tour-list .tour .top .destination {
	margin-bottom: auto;
	font-family: "Helvetica";
	font-size: 57px;
	font-weight: bold;
}

.tour-list .tour .excerpt {
	font-family: "Helvetica";
	font-size: 26px;
	font-weight: bold;
}

.tour-list .tour .excerpt,
.tour-list .tour .price-wrapper {
	margin: 0 25px;
}

.tour-list .tour .price-wrapper {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 0 15px;
	border-top: 5px solid #ffffff;
	text-align: right;
}

.tour-list .tour .price-wrapper .currency {
	font-family: var(--e-global-typography-secondary-font-family);
	font-size: var(--e-global-typography-secondary-font-size);
	font-weight: var(--e-global-typography-secondary-font-weight);
}

.tour-list .tour .price-wrapper .unit {
	font-family: "Helvetica";
	font-size: 11px;
	font-style: italic;
}

.tour-list .tour .price-wrapper .price {
	font-family: "Helvetica";
	font-size: 57px;
	font-weight: bold;
}

.tour-list .tour .bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 20px;
	text-align: center;
}

.tour-list .tour .bottom .destination {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: var(--e-global-typography-accent-font-weight);
	color: var(--e-global-color-text);
}

.tour-list .tour .separator {
	border-bottom: 2px solid var(--e-global-color-primary);
	width: 60px;
}

.tour-list .tour .name {
	font-family: var(--e-global-typography-secondary-font-family);
	font-size: var(--e-global-typography-secondary-font-size);
	font-weight: 500;
	color: var(--e-global-color-secondary);
}

.tour-list .tour .learn-more {
	margin-bottom: 20px;
	border: 1px solid var(--e-global-color-primary);
	border-radius: var(--small-border-radius);
	padding: 10px 32px;
	font-family: var(--e-global-typography-accent-font-family);
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: 400;
	color: var(--e-global-color-primary);
}

.tour-list-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.tour-list.detailed-style {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px 15px;
}

.tour-list.detailed-style .tour {
	display: flex;
	flex-direction: column;
	border-radius: var(--medium-border-radius);
	box-shadow: var(--default-shadow);
}

.tour-list.detailed-style .top {
	flex-direction: row;
	align-items: start;
	height: 184px;
	text-shadow: none;
}

.tour-list.detailed-style .center {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 12px 30px;
}

.tour-list.detailed-style .bottom {
	display: none;
}

.tour-list.detailed-style .featured {
	border-radius: var(--small-border-radius);
	padding: 4px 12px;
	background-color: var(--incomplete-tour);
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: bold;
}

.tour-list.detailed-style .favour {
	margin-left: auto;
	line-height: 29px;
	cursor: pointer;
}

.tour-list.detailed-style .favour.active {
	color: var(--incomplete-tour);
}

.tour-list.detailed-style .accent {
	font-family: var(--e-global-typography-accent-font-family);
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: var(--e-global-typography-accent-font-weight);
	color: var(--e-global-color-accent);
}

.tour-list.detailed-style .accent:before {
	content: '';
	margin-right: 10px;
	display: inline-block;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	width: 16px;
	height: 12px;
}

.tour-list.detailed-style .destination:before {
	background-image: url('../icon/map_pin.svg');
}

.tour-list.detailed-style .name {
	font-size: var(--e-global-typography-text-font-size);
	font-weight: bold;
}

.tour-list.detailed-style .features {
	margin-bottom: auto;
	height: 67px;
	font-family: var(--e-global-typography-accent-font-family);
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: var(--e-global-typography-accent-font-weight);
	overflow: hidden;
}

.tour-list.detailed-style .purchase {
	margin-top: 20px;
	border: 1px solid var(--incomplete-tour);
	border-radius: 24px;
	padding: 6px;
	font-family: var(--e-global-typography-text-font-family);
	font-size: 22px;
	font-weight: var(--e-global-typography-text-font-weight);
	color: var(--incomplete-tour);
	text-align: center;
}

@media (min-width: 768px) {
	.tour-list.detailed-style.list-view {
		grid-template-columns: 1fr;
	}

	.tour-list.detailed-style.list-view .tour {
		flex-direction: row;
	}

	.tour-list.detailed-style.list-view .top {
		flex: 416;
		height: 100%;
	}

	.tour-list.detailed-style.list-view .center {
		flex: 666;
		padding: 30px;
		overflow: hidden;
	}

	.tour-list.detailed-style.list-view .bottom {
		flex: 288;
		display: flex;
		flex-direction: column;
		align-items: start;
		margin: 30px 0;
		border-left: 1px solid var(--default-border-color);
		padding: 0 30px;
	}

	.tour-list.detailed-style.list-view .features {
		height: 147px;
	}

	.tour-list.detailed-style.list-view .purchase {
		display: none;
	}

	.tour-list.detailed-style .day-of-trips:before {
		background-image: url('../icon/time.svg');
	}

	.tour-list.detailed-style .category:before {
		background-image: url('../icon/category.svg');
	}

	.tour-list.detailed-style .lang:before {
		background-image: url('../icon/lang.svg');
	}

	.tour-list.detailed-style .display-price {
		padding: 10px;
		width: 100%;
		font-size: 24px;
		font-family: var(--e-global-typography-text-font-family);
	}

	.tour-list.detailed-style .booking {
		border-radius: 24px;
		padding: 6px;
		width: 100%;
		font-family: var(--e-global-typography-accent-font-family);
		font-size: var(--e-global-typography-accent-font-size);
		font-weight: var(--e-global-typography-accent-font-weight);
		color: #ffffff;
		background-color: var(--incomplete-tour);
	}
}

@media (max-width: 767px) {
	.tour-list {
		grid-template-columns: 1fr !important;
	}
}