/**** Callout Slide Widget ****/

.callout-slide-cont {
	position: relative;
	margin-top: 60px;
	z-index: 1000;
}

.callout-slide {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #802022;
	padding: 20px 0;
	cursor: pointer;
}

.callout-slide .title {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	z-index: 1;
}

.callout-slide .title .divider {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	z-index: -1;
	background: url("/includes/public/assets/images/white-line.jpg");
	background-size: contain;
	background-repeat: repeat-x;
}

.callout-slide .title i {
	font-size: 18px;
	color: white;
	transition: color 0.5s;
}

.callout-slide .title > div {
	background-color: #802022;
	padding: 0 25px;
}

.callout-slide .title .title-cont {
	/* IE fix */
	width: 100%;
	background: transparent;
	text-align: center;
}

.callout-slide .title .title-cont span {
	display: inline-block;
	text-transform: uppercase;
	color: white;
	font-size: 20px;
	font-weight: 700;
	transition: color 0.5s;
	padding: 0 25px;
	background-color: #802022;
}

.callout-slide .title:hover .title-cont span,
.callout-slide .title:hover > div > i {
	color: #f6b715;
}

.callout-slide .title.active .title-cont span,
.callout-slide .title.active > div > i {
	color: #f6b715;
}

.callout-slide .shape {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
}

.callout-slide .content {
	display: none;
	width: 60%;
	margin: 25px auto;
	text-align: center;
}

.callout-slide .content p {
	color: white;
}

.callout-slide .content .close-btn {
	display: inline-block;
	padding: 8px 12px;
	background-color: #6d1213;
	color: white;
}

@media (max-width: 1024px) {
	.callout-slide .title {
		width: 100%;
	}
	.callout-slide .title > div {
		padding: 0 15px;
	}
	.callout-slide .content {
		width: 90%;
	}
}

@media (max-width: 641px) {
	.callout-slide-cont {
		margin-top: 30px;
	}
	.callout-slide {
		position: relative;
		margin-top: 35px;
	}
	.callout-slide .title > div > span {
		font-size: 16px;
	}
	.callout-slide .title > div {
		padding: 0 5px;
	}
	.callout-slide .title .title-cont span {
		font-size: 16px;
	}
}
