/*Navigation*/
.Horizontal-row{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: left;
	width: 100%;
	height: 40px;
	text-align: center;
	border-block: 2px solid red;
	margin: 0;
}
.link-container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
}
.link-container a{
	font-size: 24px;
	margin: 25px;
	color: black;
}
/*Seconder Meeting Schedule P1*/
.Alink-container{
	display: none;
	justify-content: center;
	align-items: center;
	height: 40px;
}
.Alink-container a{
	font-size: 24px;
	color: black;
}
select,
::picker(select){
	appearance:base-select;
}
select{
	width: 50%;
	margin: 5px;
	background-color: white;
}
selectedcontent,
option{
	display: flex;
	gap: 0.5rem;
	align-items: 0.25rem;
}
.Selection{
	font-size: 18px;
	color: black;
}
option::checkmark{
	display: none;
}
option:checked{
	background: red;
}
/*Primary Meeting Schedule*/
.BottomL{
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	align-content: center;
	width: 20%;
	background-color: black;
}
.BottomL1 p{
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	padding: 10px;
	border-left: 1px solid red;
	border-top: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 2px solid black;
	margin: 30px 30px 0;
	background-color: gray;
	color: black;
}
.BottomL2 p{
	text-align: left;
	font-size: 18px;
	padding: 10px;
	border-left: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 1px solid red;
	margin: 0 30px;
	background-color: gray;
	color: black;
}
.BottomL4 p{
	display: inline-block;
	text-align: left;
	font-size: 18px;
	padding: 10px 58px 10px 10px;
	border-left: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 1px solid red;
	margin: 0 30px 10px;
	background-color: gray;
	color: black;
}
.link{
	width: 400%;
	font-size: 18px;
	margin-left: 2px;
	color: black;
}
.BottomR{
	display: flex;
	flex-direction: column;
	align-items: left;
	flex-shrink: 5;
	width: 80%;
	height: 1350px;
}
.BottomRU{
	display: flex;
	justify-content: center;
	width:100%;
}
.BottomRUL{
	display: flex;
	margin-right: 15px;
	width: 32.5%;
}
.QRCode img{
	width: 100%;
}
/*Calander*/
.calendar{
	background: white;
	padding: 20px;
	border: 1px solid red;
	width: 320px;
	Margin-top: 10px;
	margin-bottom: 10px;
}
.calendar header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.calendar header button {
	background: gray;
	color: black;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 4px;
}
.calendar table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}
.calendar th {
	background: gray;
	color: black;
	padding: 5px;
}
.calendar td {
	text-align: center;
	padding: 8px;
	cursor: pointer;
}
.calendar td.event-day {
	background: yellow;
	border-radius: 50%;
}
.calendar td a {
	text-decoration: none;
	color: black;
	display: block;
}
.BottomRUR{
	display: flex;
	margin-left: 15px;
	width: 32.5%;
}
/*Event Flyer*/
.Events img{
	display: block;
	width: 95%;
	margin: 0 auto;
}
.EventsL img{
	display: none;
	width: 95%;
	margin: 0 auto;
}
/*Seconder Meeting Schedule P2*/
.Bottom{
	display: none;
	flex-direction: column;
	flex-shrink: 1;
}
.SBottomTR{
	display: none;
	flex-direction: column;
	margin: 10px 15px 0;
	flex-shrink: 1;
	width: 30%;
}
.SubSBottomTR{
	display: flex;
	width: 100%;
}
@media (max-width: 1210px) {
	.BottomL{
		display: none;
	}
	.BottomRUL{
		display: none;
	}
	.Bottom{
		display: flex;
	}
	.BottomR{
		align-items: center;
		flex-shrink: 1;
		width: 100%;
	}
	.BottomRUR{
		display:none;
	}
	.SBottomTR{
		display: flex;
	}
	.BottomL1 p{
		margin: 10px 30px 0;
	}
}
@media (max-width: 865px) {
	.calendar{
		display: none;
	}
}
@media (max-width: 630px) {
	.link-container a{
		display: none;
	}
	.Alink-container{
		display: flex;
	}
	.SBottomTR{
		display: none;
	}
	.Events img{
		display: none;
	}
	.EventsL img{
	display: block;
	}
}

