.el-downloadbox__inner {
	background: #faf8f6;
	padding: 25px;
	box-sizing: border-box;
}

.el-downloadbox__header {
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 30px;
}

.el-downloadbox__title {
	font-size: 30px;
	line-height: 1.2;
	color: #8ba820;
}

.el-downloadbox__subtitle {
	font-size: 20px;
	line-height: 1.5;
	color: #8b612b;
}

.el-downloadbox__check {
	margin-bottom: 10px;
	font-family: "myriad-pro-condensed", sans-serif;
	font-size: 19px;
	line-height: 1.31;

	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
	color: #989898;
	display: flex;
}

.el-downloadbox__check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.el-downloadbox__check input:focus ~ .el-downloadbox__check-input,
.el-downloadbox__check input:focus-visible ~ .el-downloadbox__check-input {
	border: 1px solid #8ca51b;
	outline: 2px solid #8ca51b;
	outline-offset: 2px;
}

.el-downloadbox__check-input {
	width: 25px;
	height: 25px;
	cursor: pointer;
	flex-shrink: 0;
	font-family: "bakehouse-iconset";

	text-align: center;

	background-color: white;
	border-radius: 3px;
	color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.12);
	margin-right: 20px;
}

.el-downloadbox__check input:checked + .el-downloadbox__check-input {
	background-color: #8ca51b;
	border: 1px solid #8ca51b;
}

.el-downloadbox__check input:checked + .el-downloadbox__check-input:after {
	color: white;
	content: "\e911";
}

.el-downloadbox__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Montserrat", sans-serif;
}

.el-downloadbox__help {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.21;
	letter-spacing: 2px;
	color: #939393;
	text-transform: uppercase;
}

.el-downloadbox__download {
	background-color: #d0d0d0;
	color: white;
	line-height: 50px;
	height: 50px;
	padding: 10px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;

	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;

	transition: 0.4s;
}

.el-downloadbox__download-icon {
	padding-left: 20px;
	font-size: 22px;
}

.el-downloadbox__footer-link {
	cursor: not-allowed;
}

.el-downloadbox--enabled .el-downloadbox__footer-link {
	cursor: pointer;
}

.el-downloadbox--enabled .el-downloadbox__download {
	background-color: #8ba820;

	pointer-events: all;
}

.el-downloadbox--enabled .el-downloadbox__download:hover {
	background-color: #8b612b;
}
