@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

/* OVERALL */
html,
body {
	background: #222;
	font-family: "Noto Sans", Arial, sans-serif;
	color: rgba(255,255,255,0.87);
	font-size: 14px;
}
a {
	cursor: pointer;
	color: #447492;
}
p {
	margin-bottom: 15px;
}
img {
	max-width: 100%;
	height: auto;
}
#fso {
	padding: 0 0 30px 0;
}

/* HEADER */
header {
	margin: 30px 0;
}
.small {
	font-size: 12px;
}
.maintitle {
	margin-bottom: 25px;
	font-weight: bold;
	color: rgba(255,255,255,0.93);
}

/* FORM */
::-webkit-input-placeholder { /* Edge */
	color: #aaa;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}
::placeholder {
	color: #aaa;
}

/* QUIZ */
.fsoquiz_filters {
	margin: 0 0 15px 0;
	font-size: 16px;
}
.fsoquiz_filters input {
	padding: 10px 15px;
	width: 100%;
	border: 1px solid #999;
	border-color: #333;
	background: #121212;
	color: #fff;
}
.fsoquiz_filters input:focus {
	outline: 1px solid #999;
	border-color: #444;
}
.fsoquiz_wrapper {
	
}
.fsoquiz_item {
	padding: 15px;
	background: rgba(255,255,255,0.05);
	margin-bottom: 15px;
	border-left: 3px solid #666;
}
.fsoquiz_item.small {
	padding: 10px 15px;
}
.fsoquiz_item.verified {
	border-color: green;
}
.fsoquiz_q {
	font-weight: 600;
	font-size: 15px;
	margin: 0 0 3px;
}
.fsoquiz_a {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	/*color: bisque;*/
}
.fsoquiz_tags {
	display: none;
	color: transparent;
}

/* Large - lg*/
@media(min-width:1200px){
}

/* Medium - md */
@media(max-width:1199px){
}

/* Small - sm */
@media(max-width:991px){
}

/* Mobile - xs */
@media(max-width:768px) {
	h1 {
		font-size: 2rem;
		font-weight: bold;
	}
	h4 {
		font-size: 1.5rem;
	}
}

/* Mobile - custom */
@media(max-width:480px) {
}}