.easy-event-container {
	&:after {
		content: '';
		display: table;
		clear: both;
	}

	.ee-top {
		position: relative;
		margin-bottom: 20px;
		min-height: 400px;

		&:before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, .5);
			z-index: 1;
		}

		.ee-thumbnail {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 0;

			background-size: cover;
			background-position: center;
		}

		.ee-top-inner {
			position: absolute;
			top: 50%;
			left: 0;
			right: 0;
			transform: translate(0, -50%);
			-webkit-transform: translate(0, -50%);
			-moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			-o-transform: translate(0, -50%);
			z-index: 2;

			.ee-notify {
				text-align: center;
				color: #fff;
				font-size: 35px;
			}
		}

		.ee-count-down {
			text-align: center;
		}

		.ee_round {
			display: inline-block;
			background: rgba(255, 255, 255, .2);
			border-radius: 100%;
			padding: 10px;
			min-width: 100px;
			min-height: 100px;
			border: 2px solid #fff;
			color: #fff;
			margin: 10px;

			.number {
				font-size: 35px;
			}
		}
	}

	.left {
		float: left;
		width: calc(100% - 240px);
		width: -webkit-calc(100% - 240px);
		width: -moz-calc(100% - 240px);
		padding-right: 30px;
	}

	.right {
		max-width: 240px;
		width: 240px;
		padding-left: 30px;
		float: right;
	}

	> * > p {
		margin-bottom: 25px;
	}

	h3, h4, h6 {
		font-weight: 600;
	}
}

.ee-box {
	border-bottom: 1px solid #eee;
	padding: 14px 0;

	.heading {
		font-weight: 700;
	}

	.ee_map {
		margin-top: 10px;
	}

	&:last-child {
		border: none;
	}
}

@media screen and (max-width: 768px) {
	.easy-event-container {
		.left, .right {
			float: none;
			width: 100%;
			max-width: 100%;
		}
	}
}