@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');


* {
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', 'sans-serif;';
	/*overflow-x: hidden;*/
}

/* body{
	background-color: #ff6584;
} */

section {
	background-color: #fff;
	width: 100%;
	height: auto;
	padding-top: 60px;
	display: flex;
	justify-content: space-around;

}

header {
	margin-top: 50px;
}

.left {
	flex: 1;
	/* background-color: antiquewhite; */
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-right: 100px;
}

.right {
	flex: 1;
}

.right button {
	border-radius: 5px;
	padding: 9px 20px;
	border: none;
	background-color: #324A89;
	color: #fff;
	cursor: pointer;
}


section div a {
	color: #324A89;
	margin-left: 70px;
	font-size: 20px;
}

header ul {
	list-style: none;
	text-align: right;
	margin-right: 65px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

header ul li {

	margin-left: 25px;


}

.active {
	text-decoration: none;
	color: #F6F7EB;
	padding: 8px;
	background-color: #324A89;
}

header ul li a {
	text-decoration: none;
	color: #324A89;
}

header ul li a:hover {
	cursor: pointer;
}

h1 {
	color: #324A89;
	font-size: 36px;
	text-align: center;
}

table {
	border-radius: 5px;
	margin-left: 70px;
	margin-top: 25px;
	width: 90%;
	border-collapse: collapse;
	background-color: #F6F7EB;

}

td {
	color: #324A89;
}

th,
td {
	padding: 16px 18px;
	text-align: left;
}

th {
	border-bottom: 2px solid #fff;
	font-size: 18px;
	background-color: #324A89;
	color: #F6F7EB;
}

tr:hover {
	background-color: #f6f6f6;
}

.listdropdown {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/*margin-right: 25px;*/
}

.listdropdown p {
	margin-right: 10px;
	color: #324A89;
}

.listdropdown select {
	padding: 10px;
	color: #324A89;
	outline: none;
	border: 1px solid #324A89;
	border-radius: 5px;
}


.topitems {
	display: flex;
	justify-content: space-between;
	padding: 0px 65px;
}

.searchbar {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.searchbar p {
	margin-right: 10px;
	color: #324A89;
}

.searchbar input {
	outline: none;
	border: 1px solid #324A89;
	padding: 10px 10px;
	border-radius: 5px;

}

.fileinput::-webkit-file-upload-button {
	display: none;
}

.fileinput::before {
	content: 'Select some files';

	display: inline-block;
	background: #fff;
	border: 1px solid #999;
	margin: 0px 10px 0px 20px;
	border-radius: 3px;
	padding: 5px 8px;
	outline: none;
	white-space: nowrap;
	/* -webkit-user-select: none; */
	cursor: pointer;
	/*text-shadow: 1px 1px #fff;*/
	/*font-weight: 50;*/
	/*font-size: 10pt;*/
}

.fileinput:hover::before {
	border-color: black;
}

.fileinput:active::before {
	background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.previewimage {
	margin-right: 25px;
	object-fit: fill;
	object-position: center;
	/* border: 1px solid #141414; */
	border-radius: 5px;
}

.fields {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* margin-bottom: 10px; */
	padding: 10px;
}

.fields input {
	margin-top: 5px;
	width: 65%;
	padding: 9px 25px;
	border: none;
	border: 1px solid #324A8950;
	border-radius: 5px;
}


/* ************************* responsive ******** */




@media only screen and (max-width:425px) {
	header {
		margin-top: 25px;
	}

	.heading {
		margin-top: 5px;
	}

	section {
		padding-top: 10px;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 15px;
		/* padding: 10px ; */
	}

	header ul {
		margin-right: 10px;
		justify-content: flex-start;
	}

	header ul li {
		margin-bottom: 15px;
	}

	.left {
		padding-right: 0px;
		align-items: center;
	}

	h1 {
		font-size: 30px;
	}

	.right {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 5px 20px
	}

	.right div label {
		margin-left: 25px;
	}

	.fields input {
		width: auto;
	}

	.right button {
		width: 100%;
	}
}


@media only screen and (max-width:375px) {
	header {
		margin-top: 25px;
	}

	.heading {
		margin-top: 5px;
	}

	section {
		padding-top: 10px;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 15px;
		/* padding: 10px ; */
	}

	header ul {
		margin-right: 10px;
		justify-content: flex-start;
	}

	header ul li {
		margin-bottom: 15px;
	}

	.left {
		padding-right: 0px;
		align-items: center;
	}

	h1 {
		font-size: 30px;
	}

	.right {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 5px 20px
	}

	.right div label {
		margin-left: 25px;
	}

	.fields input {
		width: auto;
	}

	.right button {
		width: 100%;
	}
}

@media only screen and (max-width:320px) {
	header {
		margin-top: 25px;
	}

	.heading {
		margin-top: 5px;
	}

	section {
		padding-top: 10px;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 15px;
		/* padding: 10px ; */
	}

	header ul {
		margin-right: 10px;
		justify-content: flex-start;
	}

	header ul li {
		margin-bottom: 15px;
	}

	.left {
		padding-right: 0px;
		align-items: center;
	}

	h1 {
		font-size: 30px;
	}

	.right {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 5px 20px
	}

	.right div label {
		margin-left: 25px;
	}

	.fields input {
		width: auto;
	}

	.right button {
		width: 100%;
	}
}