#tours {
	background: #FFF;
	height: 100%;
	position: fixed;
	width: 100vw;
}

#tours #back-button {
	color: #000;
}

#tours #list {
	-webkit-overflow-scrolling: touch;
	height: calc(100% - 70px);
	overflow-y: auto;
	position: absolute;
	top: 70px;
	width: 100vw;
}

#tours .tour-container {
	background: whitesmoke;
	border-radius: 5px;
	margin: 0 10px 10px 10px;
	position: relative;
}

#tours .tour-image-container {
	width: 35%;
}

#tours .tour-image {
	border-radius: 5px;
	width: 100%;
}

#tours .tour-data-container {
	left: 35%;
	padding: 0 0 0 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 65%;
}

#tours .tour-data {
	text-align: left;
}

#tours .tour-name {
	font-family: "RubikMedium";
	font-size: 5vw;
	height: 6vw;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 85%;
}

#tours .tour-agent {
	font-size: 3.5vw;
}

#tours .tour-place {
	font-size: 3vw;
}

#tours .tour-price {
	font-size: 3vw;
}

#tours .tour-arrow-container {
	height: 6vw;
	left: 90%;
	position: absolute;
	top: 0;
	width: 6vw;
}

#tours .tour-arrow {
	font-size: 5vw;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media (orientation: landscape) {
	#tours .tour-image-container {
		width: 20%;
	}

	#tours .tour-data-container {
		left: 20%;
		width: 80%;
	}

	#tours .tour-name {
		font-size: 2.5vw;
		height: 3vw;
		width: 80%;
	}

	#tours .tour-agent {
		font-size: 2.3vw;
	}

	#tours .tour-place {
		font-size: 2vw;
	}

	#tours .tour-price {
		font-size: 2vw;
	}

	#tours .tour-arrow-container {
		height: 3vw;
		left: 95%;
		width: 3vw;
	}

	#tours .tour-arrow {
		font-size: 2.5vw;
	}
}