/* Dropdown Button */
.dropLangs {
	background-color: #2196F3;
	color: white;
	padding: 12px;
	margin-top: 130px;
	font-size: 12px;
	border: none;
	cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropLangs:hover, .dropLangs:focus {
	background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdownLangs {
	position: relative;
	display: inline-block;
}

@media (max-width: 991px) {
	.dropLangs {
		margin-top: 150px;
	}
}

@media (max-width: 768px) {
	.dropLangs {
		margin-top: 0px;
	}
}

@media (max-width: 575px) {
	.dropLangs {
		margin-bottom: 3px;
	}
}

.dropLangs.ruleslist {
	margin-top: unset;
	margin-left: 15px;
	margin-bottom: 10px;
}

/* Dropdown Content (Hidden by Default) */
.dropLangsContent {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	cursor: pointer;
}

.dropLangsContent.ruleslist {
	margin-left: 15px;
	top: 42px;
}

/* Links inside the dropdown */
.dropLangsContent a {
	font-size: 12px;
	color: black;
	padding: 6px 16px;
	text-decoration: none;
	display: block;
	cursor: pointer;
}

/* Change color of dropdown links on hover */
.dropLangsContent a:hover {background-color: #999}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.showLangs {display:block;}