@charset "utf-8";
/* CSS Document */

.videoside{
	width: 100%;
	height: auto;
	min-height: 50vh;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	direction: rtl;
}
.titlevid{
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: column;
}
.dirctionvidtit{
	margin: 80px 20px 0;
	width: calc(100% - 40px);
	height: auto;
	min-height: 700px;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.dirction{
	width: 100%;
	height: 90px;
	margin: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
}
.dirction a{
	display: none;
}
.dirction:hover{
	background: rgba(0,0,0,0.4);
}
.dirction.active{
	background: rgba(0,0,0,0.4);
}
.dirction pre{
	color: #bea139;
	font-size: 22px;
	font-weight: 500;
	margin-right: 20px;
}
.showvid{
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.vidside{
	width: 95%;
	height: auto;
	margin: 80px 0 0;
}
.frame{
	width: 100%;
	height: auto;
	min-height: 500px;
	border-radius: 10px;
}
.dirctionvid{
	width: 95%;
	height: 50px;
	margin: 0 0 30px;
	overflow: hidden;
}
.dirctionvid pre{
	font-size: 20px;
	color: #bea139;
	width: 100%;
	white-space: pre-line;
	text-align: right;
	height: 100%;
}
.morevid{
	width: 100%;
	height: 50px;
	margin: 10px 0 40px;
	direction: ltr;
	display: flex;
	align-items: center;
}
.morevid a{
	margin-left: 40px;
	padding: 10px 20px;
	background: #bea139;
	color: #285D93;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	border-radius: 10px;
}
@media screen and (max-width:1200px){
	.dirction pre{
		font-size: 18px;
	}
}
@media screen and (max-width:1000px){
	.videoside{
		flex-direction: column-reverse;
	}
	.titlevid{
		width: 100%;
	}
	.dirctionvidtit{
		margin: 20px 10px;
		min-height: 300px;
		max-height: 500px;
		overflow-y: scroll;
		width: calc(100% - 20px);
	}
	.showvid{
		width: 100%;
		border-bottom: 5px solid rgba(190,161,57,0.30);
	}
	.morevid{
		justify-content: center;
	}
	.morevid a{
		margin-left: 0;
	}
	.frame{
		min-height: 30vh;
	}
}