@charset "UTF-8";

/*Search Style*/
.search{
	margin: 20px 10px;
	padding: 1.5rem 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	box-shadow: 1px 2px 3px 1px #eee;
	border-radius: 1.5rem;
	box-sizing: border-box;
	font-family: 'Nanum';
	box-sizing: border-box;
	border: 1px solid #ddd;
}

.search--ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 83%;
}

.search__item{
	width: 49%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.category{
	font-weight: bold;
	width: 120px;
	text-align: center;
}


.search__item select, input{
	border: 1px solid lightgray;
	height: 30px;
}

.search__item select, input{
	width: 100%;
	text-align: center;
}

.search--div{
	width: 13%;
	display: flex;
	justify-content: center;
	transition: 0.15s all linear;
	flex-direction: column;
	gap: 20px;
}

.search__button {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.6rem 0.6rem 0.6rem 0.6rem;
	height: 100px;
	transition: all 0.5s;
}

.search__button span{
	font-weight: bold;
	transition: 0.15s color linear;
}

.search__reset{
	/* box-shadow: 0px 0px 2px 2px #f8ca7f; */
	background-color: #ffd456;
}

.search__search{
	/* box-shadow: 0px 0px 2px 2px #6372c7; */
	background-color: #283fb7;
	color: white;
}

.search__reset:hover{
	background-color: #f9bd0c;
	border-radius : 0.6rem 0.6rem 1.3rem 0.6rem
}

.search__search:hover{
	background-color: #162889;
	color:#fff;
	border-radius : 0.6rem 0.6rem 1.3rem 0.6rem
}



.search__line{
	width: 100%;
	height: 3px;
	background-color: lightgray;
}

#s2id_sch_select .select2-choice{
	font-weight: bold;
	animation: accentColor 2s ease-out
}

@keyframes accentColor {
	50%{
		background-color: #f8ca7f;
	}
}

@media screen and (max-width: 700px){
	.search{
		flex-direction: column;
	}
	.search--ul{
		width: 100%;
		flex-direction: column;
	}
	.search__item{
		width: 100%;
	}
	.search--div{
		width: 100%;
		flex-direction: row;
	}
	.search__button{
		width: 100%;
		height: 40px;
		margin-top: 10px;
	}
	.lecture__item{
		width: 100%;
	}
}