* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	width: 100%;
	height: 100%;
	background-color: transparent;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color: #000000;
	display: flex;
}

.rail {
	width: 100%;
	height: 100%;
	overflow: hidden;
	/* background-color: red; */
}

.rail-container {
	width: 100%;
	height: 436px;
	margin-bottom: 20px;
}

.rail-title-container {
	width: 100%;
	/* background-color: blue; */
	height: 24px;
	margin-bottom: 16px;
}

.rail-title {
	color: #FFFFFF;
	width: 40%;
	float: left;
	height: 24px;
	/* background-color: orange; */
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	font-optical-sizing: auto;
	line-height: 24px;
	letter-spacing: 0px;
}

.rail-navigation-container {
	width: 50%;
	margin-right: 10%;
	float: right;
	height: 24px;
	/* background-color: green; */
}

.rail-navigation {
	float: right;
	line-height: 24px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 16px;
	width: 24px;
	text-align: center;
	border: 0;
}

.rail-navigation-left {
	border: 0;
}

.rail-navigation-left img {
	height: 24px;
}

.rail-navigation-right {
	border: 0;
	margin-left: 17px;
}

.rail-navigation-right img {
	height: 24px;
}

.rail-item-container {
	width: auto;
	float: left;
	/* background-color: purple; */
	overflow: hidden;
	display: flex;
}

.rail-item-container-transition {
	transition: transform 0.5s ease;
}

.item {
	width: 264px;
	height: 396px;
	margin-right: 32px;
}

.item img {
	width: 264px;
	height: 396px;
}

.hide {
	display: none;
}

@media only screen and (max-width: 767px) {

	.rail-container {
		height: 193px;
		margin-bottom: 15px;
	}

	.item {
		width: 102px;
		height: 153px;
		margin-right: 8px;
	}

	.item img {
		width: 102px;
		height: 153px;
	}

}