* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
}

.banner {
	width: 300px;
	border: 1px solid #b4b4b4;
}

.banner__canvas {
	position: relative;
	height: 176px;
	background: url(../img/bg.jpg) no-repeat center top;
	background-size: cover;
}

.banner__canvas__btn {
	position: absolute;
	display: block;
	width: 124px;
	height: 25px;
	top: 132px;
	left: 85px;
	background: url(../img/button.png) no-repeat center;
	background-size: cover;
}

.banner__canvas__btn:before {
	content: "";
	position: absolute;
	display: block;
	width: 7px;
	height: 10px;
	top: 8px;
	right: 16px;
	background: url(../img/arrow.png) no-repeat center top;
	background-size: contain;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

.banner__canvas__btn:hover:before {
	-webkit-transform: translateX(2px);
	-ms-transform: translateX(2px);
	transform: translateX(2px);
}

.banner__info {
	margin: 10px 5px 10px 0;
	overflow-x: hidden;
	overflow-y: auto;
	height: 52px;
	padding: 0 10px 0 4px;
	font: 10px/1.3 "Arial", sans-serif;
	color: #525252;
}

.banner__info p + p {
	margin-top: 15px;
}

.banner__info a {
	color: #1674cb;
	text-decoration: none;
}

.banner__info::-webkit-scrollbar {
	width: 6px;
}

.banner__info::-webkit-scrollbar-track {
	box-shadow: none;
}

.banner__info::-webkit-scrollbar-thumb {
	border-radius: 10px;
	height: 20px;
	background-color: #1674cb;
}
