/* ---------------------------------- general ---------------------------------- */
* { font-family: 'Avenir' !important; }
a, a:hover, a:focus { text-decoration: none !important;  color: #6E0072; }

h1
{
	font-weight: normal;
}

body
{
	background: #f1f1f1;
	overflow-x: auto;
	-ms-overflow-style: none;
}

::-webkit-scrollbar{ display: none; }

#home
{
	background: url('/motivaimagine.com/wp-content/themes/enfold/custom-img/bg_patients_home2.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	height: 50vh;
}

#doclink
{
	background: #6E0072;
	border-radius: 2rem;
	color: #fff;
}

.arrow-container
{
	position: absolute;
	width: 100%;
	height: 10vh;
	bottom: 10vh;
	z-index: 1000;
}

/* ---------------------------------- filters ---------------------------------- */

.product svg{ width: 33%; }

.product svg .icon { fill: #9A8050; }

.product:hover svg .icon { fill: #6E0072; }

.product:hover h5 { color: #6E0072 !important; }

.product .title
{
	margin-top: 1.15rem;
	margin-bottom: 0;
	font-weight: lighter;
}
.product .sub-title
{
	margin-top: 0;
	margin-bottom: 0;
	font-weight: normal;
}

/* ---------------------------------- faqs ---------------------------------- */
.faq
{
	margin-bottom: 1rem;
}

.text-danger
{
	color: #971400 !important;
}

#faq-banner
{
	background: url("/motivaimagine.com/wp-content/themes/enfold/custom-img/bg_faq_banner.jpg");
	background-size: cover;
	position: fixed;
	width: 100%;
	top: 0;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.25);
	z-index: 1;
}

#faq-banner svg
{
	width: fit-content;
	height: 3rem;
}

#faq-banner svg .icon
{
	fill: #9A8050;
}

#btn-back
{
	top: 0;
	left: 0;
	height: 2rem;
	z-index: 10;
	padding: 0;
	background: transparent;
	border: .1rem solid;
	cursor: pointer;
	color: #9A8050;
}

.option
{
	color: #9A8050;
	background: transparent;
	border: none;
}


.option .card-text
{
	text-align: center;
	border-radius: 0.75rem;
	border: 1px solid #9A8050;
	font-size: 1.15rem;
	background:rgba(255, 255, 255, 0.80);
}

.option .card-text:hover,
.option.active .card-text
{
	background: #9A8050;
	color: #ffffff;
	cursor:pointer;
}

.option .text-1
{
	font-weight: 100;
	display: block;
}
.option .text-2
{
	font-weight: normal;
}

/* ---------------------------------- Slider ---------------------------------- */

#faq-slider h1
{
	font-size: 2rem;
}

.carousel
{
	overflow-y: scroll;
	height: auto;
}

.carousel-item
{
}

.btn.floating
{
	position: fixed;
	border-radius: 1rem;
	background: #9A8050;
	border: none;
	bottom: 0;
	right: 0;
	color: #fff;
}

.close
{
	background: #888888 !important;
	padding: 0.25rem 0.5rem !important;
	margin-top: -10px !important;
	margin-right: -10px !important;
	border-radius: 50%;
}

.modal-content
{
	background: #e3e3e3;
	border-radius: 0.5rem;
	border: 1px solid rgba(0,0,0, 0.1);
}

.modal-dialog
{
	min-height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: auto;
}
@media(max-width: 768px)
{
	.modal-dialog {
		min-height: calc(100vh - 20px);
	}
}

.modal-header,
.modal-footer
{
	border: none;
}

.modal-backdrop.show
{
	background: rgba(255, 255, 255, 0.70);
	opacity: 0.85;
}


.modal label
{
	margin: 0;
	font-weight: 100;
}

.modal .form-control
{
	border-radius: 0.4rem;
}

.modal .btn
{
	background: #9A8050;
	border-radius: 0.75rem;
	color: #fff;
}

.modal-header
{
	position: relative;
}

.modal-title
{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 1rem;
}


/* ---------------------------------- header ---------------------------------- */


/* ---------------------------------- helpers ---------------------------------- */
.text-gold { color: #9A8050 !important;}



@media (max-width: 640px)
{
	.option .text-1,
	.option .text-2
	{
		display: inline-block;
		font-size: 0.9rem !important;
	}

	.option.col
	{
		flex-basis: auto;
	}

	#faq-banner img
	{
		width: 2rem;
	}

	#faq-banner h3
	{
		font-size: 1rem;
	}
	
	.carousel-item h1
	{
		font-size: 1.5rem !important;
	}
	
	.carousel-item .faq h5
	{
		font-size: 1rem !important;
	}
	.carousel-item .faq .show
	{
		font-size: 0.85rem !important;
	}
}


/* ---------------------------------- Arrow CSS ---------------------------------- */
.arrow {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	-webkit-animation: arrow-movement 2s ease-in-out infinite;
	animation: arrow-movement 2s ease-in-out infinite;
}
.arrow:before,
.arrow:after {
	background: #fff;
	content: '';
	display: block;
	height: 3px;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
}
.arrow:before {
	-webkit-transform: rotate(45deg) translateX(-23%);
	transform: rotate(45deg) translateX(-23%);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}
.arrow:after {
	-webkit-transform: rotate(-45deg) translateX(23%);
	transform: rotate(-45deg) translateX(23%);
	-webkit-transform-origin: top right;
	transform-origin: top right;
}

@-webkit-keyframes arrow-movement {
	0% {
		opacity: 0;
		top: 45%;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes arrow-movement {
	0% {
		opacity: 0;
		top: 45%;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}