@charset "utf-8";
/* CSS Document */
.faqContainer{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	font-size: 16px;
}
.faq-page-header {
	margin-bottom: 1rem;
}
.faq-page-header .lead {
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 600;
}
.faq-questions-nav {
	margin-top: 1rem;
}
.faq-questions-title {
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.faq-article-section {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #66AAFF;
}
.faq-article h2 {
	margin-bottom: 1rem;
	font-weight: 600;
}
.faq-article h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.faq-article p {
	margin-bottom: 1rem;
}
.faqBox{
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px 0;
}
/* FAQ Player: video + control bar container – fixed 272×272 */
.faq-left .row > div:first-child {
	min-width: 272px;
}
#MyPlayer {
	position: relative;
	width: 272px;
	height: 272px;
	padding: 0;
	margin: 0;
	background-color: #111;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#videoBox {
	z-index: 0;
	display: block;
	width: 272px;
	height: 272px;
	background-color: #111;
	border-radius: 12px 12px 0 0;
	opacity: 1;
	transition: opacity 0.2s ease;
}

#videoBox.video-box-hidden {
	opacity: 0;
}

#MyPlayer video {
	z-index: 1;
	display: block;
	vertical-align: top;
}

/* Modern control bar – overlays bottom of video so 0.7 opacity shows through */
.PlayerBar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 54px;
	padding: 0 16px;
	background: linear-gradient(180deg, rgba(42, 42, 42, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	box-sizing: border-box;
}

.PlayerBar img {
	cursor: pointer;
	width: 54px;
	height: 54px;
	object-fit: contain;
	padding: 8px;
	border-radius: 50%;
	transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.PlayerBar img:hover {
	background-color: rgba(255, 255, 255, 0.12);
	opacity: 1;
	transform: scale(1.08);
}

.PlayerBar img:active {
	transform: scale(0.96);
	background-color: rgba(255, 255, 255, 0.08);
}

#Volume,
#PlayPauseBtn,
#RestartBtn {
	float: none;
	z-index: 999;
	opacity: 0.92;
}

#Volume:hover,
#PlayPauseBtn:hover,
#RestartBtn:hover {
	opacity: 1;
}
.qaArea{
	margin-left: 20px;
	padding: 10px;
	border-radius: 20px;
	border: medium solid #0073FF;
	min-width: 0;
}
.faq-contact-col {
	align-self: stretch;
}
.faq-contact-col .card {
	height: 100%;
}
#faqHeader{
	font-size: 1.1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.faq-current-question {
	font-weight: 600;
}
.faq-current-answer {
	padding-left: 0;
}
#question{
	font-size: 130%;
	font-weight: 600;
	color: #333;
	margin-left: 15px;
	padding-bottom: 8px;
	-webkit-transition: all .5s ease-in 0s;
	-moz-transition: all .5s ease-in 0s;
	-ms-transition: all .5s ease-in 0s;
	-o-transition: all .5s ease-in 0s;
	transition: all .5s ease-in 0s;
}

#faqlist{
	margin-left: 0;
	margin-top: 12px;
	padding-left: 0;
	line-height: 20px;
	color: #000;
	font-weight: 600;
	list-style-type: none;
}
.faq-left #faqlist {
	margin-top: 16px;
}
#faqlist a{
	color: #000;
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: all .5s ease-in-out .1s;
	-moz-transition: all .5s ease-in-out .1s;
	-ms-transition: all .5s ease-in-out .1s;
	-o-transition: all .5s ease-in-out .1s;
	transition: all .5s ease-in-out .1s;
}

#faqlist li
 {
	 background-image: url(../buttons/play-small.png);
	 background-repeat: no-repeat;
	 background-position:left; 
	 padding-left: 30px;
	 line-height:24px
 }
#answer {
	padding-left:10px;
	-webkit-transition: all .5s ease-in-out 0s;
	-moz-transition: all .5s ease-in-out 0s;
	-ms-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}
#answer:hover {
	-webkit-opacity: .8;
	opacity: .8;
}
#question:hover {
	-webkit-opacity: .8;
	opacity: .8;
}
#faqlist a:hover {
	-webkit-opacity: .8;
	opacity: .8;
}