/**
 * Styly na webu i v Gutenberg editoru.
 */

.en-float-left,
.en-float-right {
	box-sizing: border-box;
	max-width: 100%;
}

.en-float-left {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.en-float-right {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.en-float-left::after,
.en-float-right::after {
	display: table;
	clear: both;
	content: "";
}

.en-float-left img,
.en-float-right img {
	max-width: 100%;
	height: auto;
}

.en-float-left .alignwide,
.en-float-left .alignfull,
.en-float-right .alignwide,
.en-float-right .alignfull {
	width: 100%;
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

@media (max-width: 781px) {
	.en-float-left.en-float-mobile-full,
	.en-float-right.en-float-mobile-full {
		float: none;
		width: 100% !important;
		margin-right: 0;
		margin-left: 0;
	}
}
