body {
	margin: 0;
	box-sizing: border-box;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð° */

.sl-discount {
	font: 16px 'Arial', sans-serif;
}

.sl-discount__body {
	padding-bottom: 140px;
}

.sl-discount__wrapper {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #ecf0f1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.sl-discount__inner {
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.sl-discount__close {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: url('../img/close.svg') no-repeat;
	background-size: contain;
	height: 30px;
	width: 30px;
	cursor: pointer;
	transition: .3s;
	outline: none;
}

.sl-discount__form {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}

.sl-discount__title {
	width: 100%;
	margin: 0 0 15px;
}

.sl-discount__respond {
	margin: 0;
	width: 100%;
	text-align: center;
}

.sl-discount__input {
	background: #f9f9f9;
	height: 40px;
	border: none;
	padding: 0 15px;
	width: 70%;
	box-sizing: border-box;
	outline: none;
	font: 16px 'Arial', sans-serif;
}

.sl-discount__button {
	width: 30%;
	box-sizing: border-box;
	background: #2ecc71;
	border: none;
	color: #fff;
	outline: none;
	cursor: pointer;
	font: 16px 'Arial', sans-serif;
	transition: .3s;
}

.sl-discount__button:hover {
	background: #27ae60;
	transition: .3s;
}

@media (max-width: 768px) {
	.sl-discount__form {
		max-width: 400px;
		margin: 0 auto;
	}
	.sl-discount__close {
		font-size: 13px;
		height: 20px;
		width: 20px;
	}
}

@media (max-width: 480px) {
	.sl-discount__form {
		max-width: 290px;
	}
	.sl-discount__title {
		font-size: 14px;
	}
	.sl-discount__input {
		width: 60%;
		font-size: 14px;
	}
	.sl-discount__button {
		width: 40%;
	}
}