/* Add here all your CSS customizations */

.inner-container {
	max-width: 991px;
	text-align: left; 
}

.b-light {
	font-weight: 600;
}


.block-ab{
	width: 15.5%;
	height: 280px;
	float: left;
	margin: 4px;
}

@media (max-width: 767px) {
	.block-ab{
		max-height: 190px;
		width: 31%;
		float: left;
		margin: 2px;
	}
}

@media (max-width: 600px) {
	ul.history li .thumb {
		display: none;
	}

	ul.history li .featured-box {
		margin-left: 0;
	}
}

@media (max-width: 479px) {
	.block-ab{
		max-height: 150px;
		width: 31%;
		float: left;
		margin: 2px;
	}
}

/* --- Dropdown for Login --- */
/* Dropdown Button */
.dropbtn {
    background-color: #999999;
    color: white;
    padding: 6px 10px 6px 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    z-index:99999;
	background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 10px 12px;
    text-decoration: none;
	font-size: 13px;
    display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #eeeeee}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #44525a;
}
/* --- End --- */


