.ec {
  position: relative
}

.ec .ec__holder {
  overflow: hidden
}

.ec .ec__track {
  will-change: transform
}

.ec .ec__track:after {
  content: '';
  display: table;
  clear: both
}

.ec .ec__item {
  float: left;
  overflow: hidden
}

.ec .ec__pagination {
  text-align: center;
  margin-top: 10px
}

.ec .ec__pagination .pagination__dot {
  width: 8px;
  height: 8px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #000;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer
}

.ec .ec__pagination .pagination__dot--active {
  background-color: #000
}

.ec .ec__nav {
  position: absolute;
  bottom: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 8px;
  height: 8px;
  cursor: pointer
}

.ec .ec__nav:before {
  content: ''
}

.ec .ec__nav--prev {
  transform: rotate(-135deg);
  left: 1em
}

.ec .ec__nav--next {
  transform: rotate(45deg);
  right: 1em
}

.modal {
	display: block;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 30%;
	text-align-last: center;
	padding: 3%;
}

.warning {
	color: #ff0000;
	font-weight: bold;
}

.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

@media ( max-width :641px) {
	.modal-content {
		width: 80% !important;
		padding: 7% !important;
	}
}