/* CSS Document */
@font-face{
    font-family: JSC;
    src: url('Al-Jazeera-Arabic-Regular.ttf');
}

.btn{
	font-family: JSC;
	font-size: 12px;
	border: none;
	padding: 8px 20px;
	cursor: pointer;
	display: inline-block;
	border-radius: 30%;
}

.success{
	background-color: #04AA6D;
	color: white;
}

.success:hover{
	background: #6fc0a2;
	color: white;
}

.info{
	background: #2196F3;
	color: white;
}

.info:hover{
	background: #6fb3e9;
	color: white;
}

.warning{
	background: #ff9800;
	color: white;
}

.warning:hover {
	background: #f2c88a;
	color: white;
}

.danger {
	background: #ed958e;
	color: white;
}

.danger:hover {
	background: #f44336;
	color: white;
}

.default {
	background: #e7e7e7;
	color: black;
}

.default:hover {
	background: #b5abab;
	color: black;
}
::placeholder {  
    color: #848180; 
} 

img{
	width: 250px;
	-webkit-filter: drop-shadow(5px 5px 5px #666666);
	filter: drop-shadow(5px 5px 5px #666666);
}