/*
Theme Name: SiteMush
Theme URI: https://sitemush.com/themes/base/
Author: Sitemush team
Author URI: https://sitemush.com
Description: The base of all themes
Version: 1.1
License: Proprietary
License URI: https://sitemush.com/theme-license
Tags: basic
Text Domain: sitemush

Use it to make some cool website and have fun.
*/

/* Added Media query for grid gallery mobile responsive image.. */
@media screen and (max-width: 767px) {
	.smue-grid-gallery-obj img {
		width: 100%;
	}
}

/* We are setting the ol to default style since in our theme's style.css we are setting all the values as none for ol */
.smue-text-obj ol,
.smue-embed-obj ol,
.smue-code-obj ol,
.smue-service-box-content-section ol,
.smue-modal-content ol {
	list-style-type: decimal;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

/* We are setting the ul to default style since in our theme's style.css we are setting all the values as none for ul */
.smue-text-obj ul,
.smue-embed-obj ul,
.smue-code-obj ul,
.smue-service-box-content-section ul,
.smue-modal-content ul {
	list-style-type: disc;
	margin-top: 1em;
	margin-bottom: 1 em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

.single-featured-image-header {
	padding-bottom: 30px;
}

.single-featured-image-header img {
	display: block;
	margin: auto;
	height: auto;
	max-width: 100%;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

/* Added this to wrap the li content correctly, only added for type icon and none as all others are default list types and have their own display property */
.smue-list-type-icon li,
.smue-list-type-none li {
	display: flex;
}

.post.full_width_blog {
	display: flex;
	flex-direction: column;
}

.post.full_width_blog .entry-content {
	width: 100%;
}

.post.full_width_blog .entry-footer {
	order: 2;
	display: flex;
	align-items: center;
	margin: 2em 0;
}

.post.full_width_blog .entry-content {
	order: 3;
}

.post.full_width_blog .entry-footer span {
	padding-right: 20px;
}

.post .entry-footer i.fa {
	margin-right: 8px;
}

.post.full_width_blog .entry-title {
	margin-bottom: 0;
}

/* Create two equal columns that floats next to each other */
.column {
	float: left;
	width: 50%;
	padding: 10px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Overlay for news */
#overlay {
	position: fixed;
	/* Sit on top of the page content */
	display: inline;
	/* Hidden by default */
	width: 100%;
	/* Full width (cover the whole page) */
	height: 100%;
	/* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	/* Black background with opacity */
	z-index: 2;
	/* Specify a stack order in case you're using a different order for other elements */
	cursor: pointer;
	/* Add a pointer on hover */
}

#overlay-box {
	width: 60%;
	height: 95%;
	background-color: wheat;
	position: absolute;
	top: 5%;
	left: 25%;
}

.close-overlay {
	position: absolute;
	right: 10px;
	top: 1px;
	width: 32px;
	height: 32px;
	opacity: 0.3;
}

.close-overlay:hover {
	opacity: 1;
}

.close-overlay:before,
.close-overlay:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #333;
}

.close-overlay:before {
	transform: rotate(45deg);
}

.close-overlay:after {
	transform: rotate(-45deg);
}

#overlay-text {
	position: absolute;
	top: 10%;
	left: 50%;
	font-size: small;
	color: black;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

#myImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

#myImg:hover {
	opacity: 0.7;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.9);
	/* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

/* Caption of Modal Image */
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {
		transform: scale(0.1)
	}

	to {
		transform: scale(1)
	}
}

/* The Close Button */
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
	.modal-content {
		width: 100%;
	}
}
