/* Click Gallery */

.control {
	height: 10%;
	width: 60%;
	margin-left: 20%;
}

.control__left {
	width: 50px;
	height: 50px;
	float: left;
	margin-bottom: 20px;
	border-radius: 25px;
	border: 1px solid #000000;
	cursor: pointer;
}

	.control__left:hover {
		background-color: #F9F9F9;
	}

.control__left--disabled {
	width: 50px;
	height: 50px;
	float: left;
	margin-bottom: 20px;
	background-color: #b2b2b2;
    border-radius: 25px;
	cursor: pointer;
}

.control__right {
	width: 50px;
	height: 50px;
	float: right;
	margin-bottom: 20px;
    border-radius: 25px;
	border: 1px solid #000000;
	cursor: pointer;
}

	.control__right:hover {
		background-color: #F9F9F9;
	}

.control__right--disabled {
	width: 50px;
	height: 50px;
	float: right;
	margin-bottom: 20px;
	background-color: #b2b2b2;
    border-radius: 25px;
	cursor: pointer;
}

.control__image {
	width: 40px;
    padding-left: 5px;
    padding-top: 13px;
}