html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background-color: $color__background-body; /* Fallback for when there is no custom background color defined. */
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: top;
}

.cherry-popups-logout-link,
.cherry-popups-login-link {
	position: relative;
}

.elementor-progress-bar {
	border-radius: $border__radius !important;
}
.custom-icon-box.elementor-widget-icon-box {
	.elementor-widget-container {
		@include media-breakpoint-down(sm) {
			border: none !important;
		}
		.elementor-icon-box-content {
			h3 {
				margin-bottom: 0;
			}
			.elementor-icon-box-description {
				text-transform: uppercase;
			}
		}
	}
}
@media (min-width: 1230px) {
	.custom-left-padding {
		.elementor-column-wrap {
			padding-left: calc((100vw - 1200px)/2);
		}
	}
}
@media (min-width: 1024px) and (max-width: 1230px) {
	.custom-left-padding {
		.elementor-column-wrap {
			padding-left: 20px;
		}
	}
}
@media (min-width: 1230px) {
	.custom-right-padding {
		.elementor-column-wrap {
			padding-right: calc((100vw - 1200px)/2) !important;
		}
	}
}
@media (min-width: 1024px) and (max-width: 1230px) {
	.custom-right-padding {
		.elementor-column-wrap {
			padding-right: 20px !important;
		}
	}
}


/*--------------------------------------------------------------
## Lists
--------------------------------------------------------------*/
@import "lists";

/*--------------------------------------------------------------
## Tables
--------------------------------------------------------------*/
@import "tables";

/*--------------------------------------------------------------
## Icons
--------------------------------------------------------------*/
@import "icons";

/*--------------------------------------------------------------
## Preloader
--------------------------------------------------------------*/
@import "page-preloader";

/*--------------------------------------------------------------
## ToTop button
--------------------------------------------------------------*/
@import "totop-button";


blockquote, q {
	quotes: none;

	&:before,
	&:after {
		content: '';
	}
}
blockquote {
	position: relative;
	margin: 33px 0;
	text-align: left;
	padding: 0 30px;
	text-transform: uppercase;

	@include media-breakpoint-up(lg) {
		padding: 0 20px 0 27px;
	}

	.post-featured-content & {
		text-align: left;
		padding: 0 30px;

		@include media-breakpoint-up(lg) {
			padding: 0 20px 0 27px;
		}
	}

	&:first-child {
		margin-top: 0;
	}
	&:last-child {
		margin-bottom: 0;
	}

	cite {
		display: block;
		margin-top: 13px;

		.post-featured-content & {
			margin-top: 14px;
		}
		&:before {
			content: "— ";
		}
	}
	&:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 7px;
		height: 100%;
		display: block;
		font-size: 24px;
		line-height: 1;

		.post-featured-content & {
			position: absolute;
			margin-bottom: 15px;
			top: 0;
			left: 0;
		}
	}
}

hr {
	border: 0;
	height: 1px;
	margin: 60px 0;
	clear: both;

	&:first-child {
		margin-top: 0;
	}
}
