.custom_square_form_container {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0 20px;
}

.sizer__container {
	position: relative;
	padding: 40px;
	height: 600px;
	display: flex;
	align-content: center;
	align-items: center;
}

.sizer__box {
	background: red;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

.sizer__box.sizer3d {
	background: white;
}

.sizer__left {
	position: absolute;
	left: 12px;
	top: 50%;
	margin-top: -200px;
	height: 400px;
}

.sizer__bottom {
	position: absolute;
	bottom: 20px;
	width: 400px;
	left: 50%;
	margin-left: -200px;
}

.sizer__right {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -50px;
	height: 100px;
}

.sizer__label {
	color: black;
	font-weight: bold;
	position: absolute;
	left: 50px;
	bottom: 50px;
}

.sizer__width-label {
	position: absolute;
	left: 0;
	top: 0;
}

.sizer__length-label {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
}

.sizer__thickness-label {
	position: absolute;
	right: 0;
	top: 30%;
}

.sizer__slider .ui-state-default, .sizer__slider .ui-widget-content .ui-state-default, .sizer__slider .ui-widget-header .ui-state-default {
	background: #FF0000;
	border-color: #FF0000;
}

.sizer__disclaimer {
	background-color: #ddd;
	border: 1px solid #bbb;
	padding: 5px 10px;
	margin: 10px auto;
	font-style: italic;
}

@media only screen and (max-width: 767px) {
	.sizer__container {
		height: 350px;
		display: none;
	}
	.sizer__disclaimer {
		display: none;
	}
	.sizer__left {
		position: absolute;
		left: 12px;
		top: 50%;
		height: 260px;
		margin-top: -130px;
	}
	.sizer__bottom {
		position: absolute;
		bottom: 20px;
		left: 50%;
		width: 260px;
		margin-left: -130px;
	}
}