.iws {
	display: grid;
	grid-template-columns: 3fr 9fr;
	gap: 30px;
}

.iws-content {
	padding-top: 50px;
}

.iws-product {
	margin-bottom: 3px;
}

.iws-btn {
	display: block;
	width: 100%;
	padding: .5em 1em;
	margin-bottom: 3px;
	text-align: left;
	color: #000 !important;
	font-weight: bold;
	background: none !important;
	border: #eee solid 1px;
	border-radius: 5px;
}

.iws-btn i {
	margin-right: 7px;
}

.iws-product-content {
	display: flex;
	justify-content: space-between;
	padding: 1em 1em 0;
	border: #eee solid 1px;
	border-radius: 5px;
}

.iws-product-desc {
	display: flex;
}

.iws-product-desc > div:first-child {
	margin-right: .5em;
	flex-shrink: 0;
}

.iws-sidebar {
	padding: 0 30px 30px;
	accent-color: #033E9E;
}

.iws-sidebar h3 {
	font-size: 2rem;
}

.iws-form-group {
	padding-top: 1em;
	margin-top: 1em;
	border-top: #000 solid 1px;
}

.iws-form-label {
	user-select: none;
	display: block;
	margin: 0 0 .5em;
}

.iws-files {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5em;
}

.iws-file {
	display: inline-block;
	padding: .5em 1em;
	min-width: 180px;
	color: #fff !important;
	font-size: 0.9em;
	text-align: center;
	background: #033E9E;
	border: #033E9E solid 2px !important;
	border-radius: 8px;
	transition: color .3s, background .3s;
}

.iws-file:hover, .iws-file:focus {
	color: #033E9E !important;
	background: #fff;
}

.iws-file i {
	margin-right: 5px;
}

@media (max-width: 767px) {
	.iws {
		grid-template-columns: 1fr;
	}

	.iws-sidebar {
		padding: 0;
	}

	.iws-product-content {
		flex-direction: column;
	}

	.iws-files {
		margin-bottom: 1em;
	}

	.iws-form-group input[type="text"],
	.iws-form-group input[type="search"],
	.iws-form-group select {
		display: block;
		width: 100%;
	}
}