.box-inner {
	padding: 20px;
	background: white;
	margin-bottom: 40px;
}
#primary {
	margin-right: 10px;
}
#primary .post-title {
	margin-bottom: 20px;
}
#primary h1 {
	margin: 0;
    font-size: 28px;
    line-height: 1.3;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 15px;
    position: relative;
}
#primary h1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
	width: 62px;
    border-bottom: 2px solid var(--c5);
}
#sidebar {
	margin-left: -10px;
}

.box-sidebar {}
.box-sidebar ul {}
.box-sidebar ul li {
	line-height: 1.5;
	padding: 8px 0;
	position: relative;
}
.box-sidebar ul li:not(:last-child) {
	border-bottom: 1px dashed #d5d5d5;
}
.box-sidebar ul li a {
	font-size: 16px;
	padding-left: 20px;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.box-sidebar ul li a:hover {
	padding-left: 25px;
}
.box-sidebar ul li a.active {
	font-weight: 700;
	color: var(--c5);
}
.box-sidebar ul li a::before {
	content: '';
	width: 4px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	background: var(--c5);
}

/* form-order */
#form-order .entry p {
	margin-bottom: 2px;
}
#form-order .columns {
	display: flex;
	max-width: 50%;
	margin: 20px auto;
}
#form-order .column {
	padding: 0 5px;
	line-height: 40px;
	white-space: nowrap;
}
#form-order .form-control {
	height: 40px;
	border-radius: 0;
	min-width: 420px;
}
#form-order .button {
	outline: none;
	border: none;
	height: 40px;
	color: white;
	padding: 0 30px;
	font-weight: 700;
	background: var(--c5);
	border-radius: 30px;
	text-transform: uppercase;
	border: 2px solid var(--c5);
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
#form-order .button:hover {
	color: var(--c5);
	background: white;
	border-color: var(--c5);
}

#form-order .table {
	background: #fafafa;
}

/* 1024px */
@media screen and (max-width: 1024px)
{
	.box-content {
		padding-bottom: 40px;
	}
	#primary {
		margin: 0;
	}
	#sidebar {
		margin: 0;
	}
	.box-inner {
		padding: 15px;
	}
	#form-order .columns {
		max-width: 68%;
	}
}

/* 768px */
@media screen and (max-width: 768px)
{
	#sidebar {
		margin-top: 20px;
	}
	#form-order .columns {
		max-width: 92%;
	}
}

/* 767px */
@media screen and (max-width: 767px)
{
	#content {
		margin-top: 20px;
	}
	.box-inner {
		padding: 10px;
	}
	
	#form-order .columns {
		display: block;
		max-width: 100%;
	}
	#form-order .form-control {
		min-width: initial;
	}
	#form-order .column {
		margin-bottom: 10px;
		line-height: initial;
	}
	#form-order .column.last {
		margin-bottom: 0;
	}
}