/* --------------------Have a Question Popup------------------- */
.have-a-question-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 99999;
	left: 0;
	top: 0;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	height: 0;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.5);
	visibility: hidden;
	opacity: 0;
}

.have-a-question-popup.show {
	display: flex;
	height: 100vh;
	overflow: auto;
	visibility: visible;
	opacity: 1;
}

.have-a-question-popup .overlay-close{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.have-a-question-popup .popup-cover{
	position: relative;
	z-index: 999;
}

.have-a-question-popup .wrapper {
	min-width: 624px;
	max-width: 624px;
	padding: 16px;
	box-shadow: 1px 0px 2px rgba(0, 111, 153, 0.25), -1px 0px 2px rgba(0, 111, 153, 0.25), 0px 3px 4px rgba(0, 111, 153, 0.25);
	background: #EDE1D1;
	flex: 1;
	display: flex;
	align-self: center;
	margin: 20px 0;
	position: relative;
	width: 100%;
	border-radius: 5px;
	z-index: 9;
}

.have-a-question-popup .wrapper h3 {
	font-weight: 400;
	margin-top: 0;
	line-height: 23.4px;
}

.have-a-question-popup .wrapper p, .have-a-question-popup .wrapper li {
	font-size: 18px;
	line-height: 23.4px;
	margin-bottom: 8px;
}

.have-a-question-popup ul, .have-a-question-popup ol {
	margin-bottom: 8px;
}

.have-a-question-popup li {
	font-size: 18px;
	line-height: 27px;
	display: flex;
	align-items: center;
}

.have-a-question-popup li::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 4px;
	background: #000;
	margin-right: 12px;
	display: inline-block;
}

.have-a-question-popup .haq-popup-close {
	width: 24px;
	height: 24px;
	background-image: url('../../assets/images/sprite_icons.png');
	background-position: -231px -51px;
	background-repeat: no-repeat;
	position: absolute;
	right: 8px;
	top: 9px;
	color: #FE5000;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
}

.have-a-question-popup .haq-popup-close:hover {
	color: #FE5000;
}

/* ---------------Have a Question Popup Media Query -------------------- */
@media screen and (max-width:1024px) {
}

@media screen and (max-width:768px) {
}

@media screen and (max-width:640px) {
	.have-a-question-popup .wrapper p, .have-a-question-popup .wrapper li {
		font-size: 16px;
	}

}

@media screen and (max-width:480px) {
	.have-a-question-popup .popup-cover {
		padding: 0 8px;
	}

	.have-a-question-popup .wrapper {
		min-width: 100%;
		max-width: 100%;
	}

}

@media screen and (max-width:320px) {
}

/* ---------------Have a Question Popup Media Query -------------------- */
