/* Стили вместо обычного Bootstrap */
.modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.scroll__modal {
	overflow-y: auto;
}

.scroll__modal::after {
	content: '';
	width: 100%;
	height: 100px;
	display: block;
}

.fon__modal {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.box__modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
}

.close__modal {
	width: 30px;
	height: 30px;
	background: url(../image/icons/close.svg) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	right: -60px;
	opacity: 0.7;
	cursor: pointer;
}

.close__modal:hover {
	opacity: 1;
}

.container {
	width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1170px;
}

.row {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

@media (min-width: 576px) {
	.container {
	    max-width: 566px;
	}
}

@media (min-width: 768px) {
	.container {
	    max-width: 758px;
	}
}

@media (min-width: 992px) {
	.container {
	    max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
	    max-width: 1320px;
	}
}