/*** Optional ***/

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
	color: #333;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
	color: #333;
}
.browserupgrade {
	background: #ccc;
	color: #000;
	padding: 1rem;
	margin-bottom: 0;
	text-align: center;
	position: relative;
	z-index: 4;
}

/*** Main Styles ***/

html, .main-wrapper {
	height: 100%;
}
body {
	font-family: Arial, sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2.2rem;
	color: #333;
	height: 100%;
	background-color: #f5f5f5;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	color: #4da0e8;
}
.table h1, .table h2, .table h3, .table h4, .table h5, .table h6 { margin: .5rem 0; }
.table p { margin-bottom: 0; }
a {
	color: #4da0e8;
	-webkit-transition: all .3s;
	transition: all .3s;
}
a:focus {
	outline: none;
	text-decoration: none;
}
.table-responsive {
	margin: 1rem 0 2rem !important;
}
.table thead {
	font-weight: 700;
	color: #fff;
	background-color: #a4b743 !important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
	border-top: none;
	border-bottom: .1rem solid #ddd;
	vertical-align: middle;
}
.table .align-center {
	text-align: center;
}
.table .title-col {
	min-width: 25rem;
	word-break: break-all;
}
.table .row-meta {
	padding-top: .3rem;
	font-size: 1.1rem;
}
.table .row-meta a {
	color: grey;
}
.table .row-meta a:hover {
	color: #4da0e8;
}
.table .row-meta i {
	font-size: 1.4rem;
	color: red;
	position: relative;
	top: .2rem;
	margin-right: .5rem;
}
.table .ml-col {
	text-align: center;
	width: 5rem;
}
.table .ml-col .glyphicon-plus {
	color: #aaa;
	font-size: 1.2rem;
}
.table .edit-col, .table .delete-col {
	text-align: center;
	width: 10rem;
}
.table .photo-col {
	width: 15rem;
}
.table td.edit-col i, .table td.delete-col i {
	font-size: 2.2rem;
}
.table td.edit-col i {
	color: green;
}
.table td.delete-col i, .delete i {
	color: red;
}

/*** Structure ***/

.flex-row, .flex-column {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.topbar {
	width: 100%;
	background: #a4b743;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
	padding: 1.3rem 1.5rem 1.5rem;
	text-align: right;
	position: relative;
	z-index: 2;
}
.topbar.flex-row {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media only screen and (min-width: 480px) {
	.topbar {
		padding: 1.3rem 2rem 1.5rem 4rem;
	}
	.topbar.flex-row {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		-ms-grid-row-align: center;
		align-items: center;
	}
}
@media only screen and (min-width: 1024px) {
	.topbar.flex-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.sidebar-section {
	background: #3a3a3a;
	width: 23rem;
	min-height: 100%;
	padding: 1.65rem 0 .4rem;
	position: absolute;
	top: 0;
	left: -25rem;
	overflow: hidden;
	-webkit-transition: left .2s;
	transition: left .2s;
	z-index: 3;
	float: left;
}
@media only screen and (min-width: 1260px) {
	.sidebar-section {
		left: 0;
	}
}
.toggle-sidebar .sidebar-section {
	left: 0;
}
.content-section {
	width: 100%;
}
@media only screen and (min-width: 1260px) {
	.content-section {
		width: -webkit-calc(100% - 23rem);
		width: calc(100% - 23rem);
		float: right;
	}
}
@media only screen and (min-width: 992px) {
	.content-wrapper {
		padding: 4rem;
	}
}
.editing-wrapper, .info-wrapper {
	background: #fff;
	padding: 0 2.5rem 1rem;
	-webkit-box-shadow: 0 3rem 5rem rgba(0,0,0,.15);
	box-shadow: 0 3rem 5rem rgba(0,0,0,.15);
	overflow: hidden;
}
@media only screen and (min-width: 1260px) {
	.editing-wrapper, .info-wrapper {
		padding: 0 2.5rem 0;
	}
}
.info-wrapper {
	margin-right: 3.5rem;
	margin-bottom: 2rem;
	padding: 2rem 2.5rem 1rem !important;
}
.footer {
	width: 100%;
	text-align: left;
}
.footer p {
	margin: 0;
	margin-top: 1.5rem;
	padding: .7rem 2rem;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.8rem;
	color: #aaa;
}

/*** Login Area ***/

.login-wrapper {
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}
.login-box {
	width: 30rem;
	background: #fdfdfd;
	-webkit-box-shadow: 0 3rem 5rem rgba(0,0,0,.2);
	box-shadow: 0 3rem 5rem rgba(0,0,0,.2);
	text-align: center;
	padding: 2rem;
	padding-bottom: 0;
}
.login-box h2 {
	font-size: 2rem;
	margin: 0;
	margin-bottom: 1rem;
}
.login-box .form-group {
	margin-bottom: 0;
}
.login-box .form-submit {
	margin-top: 1.5rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}
.login-box .form-submit div {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.login-box .checkbox {
	font-size: 1.2rem;
	color: #aaa;
}
.login-box .checkbox .checkbox-material .check {
	margin-right: .6rem;
}
.login-box .checkbox .checkbox-material .check,
.login-box .checkbox .checkbox-material::before {
	width: 1.8rem;
	height: 1.8rem;
}
.login-box .checkbox .checkbox-material .check::before {
	margin-top: -.5rem;
	margin-left: .5rem;
}
.login-box .get-back {
	color: #ababab;
	margin-bottom: .7rem;
}
.login-page .footer {
	position: fixed;
	text-align: center;
	z-index: -1;
}

/*** Topbar Styles ***/

.topbar .admin-title, .topbar .admin-org, .topbar .content-lang {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.topbar .admin-org {
	position: fixed;
	top: 1.3rem;
	right: 2rem;
}
@media only screen and (min-width: 480px) {
	.topbar .admin-org {
		position: static;
		top: auto;
		right: auto;
	}
	}
.topbar .admin-org span {
	display: none;
}
@media only screen and (min-width: 1260px) {
	.topbar .admin-org span {
		display: inline;
	}
}
.topbar .admin-title {
	text-align: left;
}
.topbar .admin-title h1 {
	margin: 0;
	margin-top: .3rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	position: relative;
	display: inline-block;
}
.topbar .content-lang {
	padding: 1.5rem 0;
}
@media only screen and (min-width: 1024px) {
	.topbar .content-lang {
		padding: 0;
		padding-top: .2rem;
	}
}
.topbar .content-lang ul {
	list-style-type: none;
}
.topbar .content-lang li {
	color: #fff;
	float: left;
	margin-left: .7rem;
	position: relative;
	width: 2.9rem;
	text-align: center;
}
@media only screen and (min-width: 480px) {
	.topbar .content-lang li {
		margin-left: 1rem;
	}
}
.topbar .content-lang li:first-child {
	font-weight: 700;
	margin-left: 0;
	margin-right: .5rem;
	width: auto;
}
.topbar .content-lang .current-lang {
	color: #a4b743;
}
.topbar .content-lang .current-lang:after {
	content: "";
	position: absolute;
	top: -.3rem;
	left: 0;
	width: 2.9rem;
	height: 2.9rem;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
	z-index: -1;
}
.topbar .content-lang li a {
	color: #fff;
	display: inline-block;
}
.topbar .toggle-menu {
	position: absolute;
	top: -.2rem;
	right: -4rem;
	color: #fff;
	display: block;
	cursor: pointer;
	-webkit-transition: right .2s;
	transition: right .2s;
}
@media only screen and (min-width: 1260px) {
	.topbar .toggle-menu {
		display: none;
	}
}
.toggle-sidebar .topbar .toggle-menu {
	right: -13.5rem;
}
.topbar .toggle-menu:hover {
	color: #a0dcff;
}
.topbar p {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	color: #fff;
}
.topbar a.logout {
	color: #fff;
}
.topbar a.logout:hover {
	color: #a0dcff;
	text-decoration: none;
}
.topbar a.logout i {
	position: relative;
	top: .3rem;
	left: .5rem;
	font-size: 2.1rem;
}

/*** Sidebar Styles ***/

.sidebar-section .nav-pills > li {
	margin: 0;
	padding: 0;
}

.sidebar-section .nav-pills > li:hover {
	color: white;
}

.sidebar-section ul.nav-stacked li a {
	-webkit-border-radius: 0;
	border-radius: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	color: #fff;
	padding: .7rem 1.2rem .7rem 3.2rem;
	border-bottom: 1px solid #454545;
}
.sidebar-section .nav-pills li a:hover {
	-webkit-box-shadow: inset 0 1rem 1rem -1rem rgba(0,0,0,.3);
	box-shadow: inset 0 1rem 1rem -1rem rgba(0,0,0,.3);
	background: #484848;
}
.sidebar-section .nav-pills > li > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
	background: #3a3a3a !important;
}
.sidebar-section .caret {
	margin-left: .5rem;
	border-top: .4rem solid #acacac;
}
.caret-container {
	float: right;
}
ul.nav-stacked ul.nav-stacked li a {
	cursor: pointer;
	background-color: #555;
	font-family: sans-serif;
	font-weight: normal;
	font-size: 1.4rem;
}
ul.nav-stacked ul.nav-stacked li a:hover {
	-webkit-box-shadow: inset 0 1rem 1rem -1rem rgba(0,0,0,.15);
	box-shadow: inset 0 1rem 1rem -1rem rgba(0,0,0,.15);
	background: #656565;
}
ul.nav-stacked ul.nav-stacked ul.nav-stacked li a {
	background-color: #777;
	border-bottom: 1px solid #575757;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	font-family: sans-serif;
	font-weight: normal;
	font-size: 1.3rem;
}
ul.nav-stacked ul.nav-stacked ul.nav-stacked li a:hover {
	background-color: #888;
}
a.get-back {
	display: block;
	padding: .7rem 2rem .7rem 2.5rem;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 1.2rem;
}
a.get-back:hover {
	color: #a4b743;
	text-decoration: none;
}
a.get-back i {
	position: relative;
	top: .3rem;
	right: .6rem;
	font-size: 1.9rem;
}








/*** Main Content Styles ***/

.editing-wrapper img {
	max-width: 100%;
}
.lang-version ul {
	list-style: none;
	margin-top: 1.5rem;
}
.lang-version li {
	display: block;
	font-size: 1.3rem;
	margin-top: 1rem;
	margin-left: 1.5rem;
	margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
	.lang-version li {
		display: inline;
		margin-top: 0;
	}
}
.lang-version i, .translation-language i {
	margin-right: .7rem;
}
.lang-version p {
	margin-bottom: 0;
}
.translation-language, .translation-original {
	margin-top: 1.5rem;
	text-align: center;
}
.translation-original {
	margin-top: .5rem;
}
.translation-language h5, .translation-language p {
	display: inline;
}
.translation-language h5, .translation-original h5 {
	font-size: 1.6rem;
	margin-right: .7rem;
}
.section-header h3, .translation-language h5, .translation-language p, .translation-original p {
	margin-bottom: 0;
}
.translation-original h5 {
	margin-bottom: .3rem;
}
.translation-original p {
	line-height: 1.7rem;
	font-size: 1.3rem;
}
.section-header {
	text-align: center;
	background: #f9f9f9;
	-webkit-box-shadow: inset 0 -1rem 1rem -1rem rgba(0,0,0,.09);
	box-shadow: inset 0 -1rem 1rem -1rem rgba(0,0,0,.09);
	padding: 2rem 0 2rem .5rem;
	margin-bottom: 3.5rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
	width: -webkit-calc(100% + 5rem);
	width: calc(100% + 5rem);
	position: relative;
	left: -1rem;
	right: -1rem;
}
.section-header i[class*="mdi"] {
	color: #d3d3d3;
	position: relative;
	top: .3rem;
}
.media-attachment img {
	max-width: 30rem;
}
.media-attachment i {
	position: relative;
	top: .4rem;
}


/*** Form Styles ***/

.form-group {
	position: relative;
	margin-bottom: 3rem;
}
.form-group input.form-control:focus~.floating-label, .form-group-default input.form-control:focus~.floating-label {
	color: #a4b743;
}
.form-group .form-control:focus, .form-group-default .form-control:focus {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a4b743), color-stop(#3084b4)), to(linear-gradient(#d2d2d2, #d2d2d2));
	background-image: -webkit-linear-gradient(#a4b743, #3084b4), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
	background-image: -webkit-linear-gradient(#a4b743, #3084b4), -webkit-linear-gradient(#d2d2d2, #d2d2d2);
	background-image: -webkit-linear-gradient(#a4b743, #3084b4), linear-gradient(#d2d2d2, #d2d2d2);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a4b743), to(#3084b4)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
	background-image: -webkit-linear-gradient(#a4b743, #3084b4),-webkit-linear-gradient(#d2d2d2, #d2d2d2);
	background-image: linear-gradient(#a4b743, #3084b4),linear-gradient(#d2d2d2, #d2d2d2);
}
#basic-form textarea {
	resize: none;
	padding: 1rem !important;
	height: 10.5rem;
}
.form-horizontal {
	margin-top: 1.5rem;
}
.form-horizontal .control-label {
	text-align: left;
	padding-top: .3rem;
	line-height: 1.9rem;
}
.form-horizontal .form-control {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#009688), to(#009688)), -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.05)), to(rgba(0,0,0,.05)));
	background-image: -webkit-linear-gradient(#009688, #009688), -webkit-linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.05));
	background-image: linear-gradient(#009688, #009688), linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.05));
	background-color: rgba(255,255,255,.3);
	background-position: center bottom, center bottom;
	-webkit-box-shadow: inset 0 .5rem 1rem rgba(0,0,0,.08);
	box-shadow: inset 0 .5rem 1rem rgba(0,0,0,.08);
	padding: 0 1rem;
}
.form-horizontal input.form-control {
	height: 3.5rem;
}
@media only screen and (min-width: 1260px) {
	.date {
		width: 23rem;
	}
}
.dropdownjs {
	width: 25rem;
	position: relative;
}
.dropdownjs > ul {
	padding: 0;
}
.dropdownjs > ul > li {
	padding: 7px 20px;
}
.dropdownjs > ul > li:hover {
	background-color: #f9f9f9;
}
.radio-colors label {
	padding-left: 3.2rem;
}

/*** Validation ***/

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
	/*background: rgba(40,200,70,.2);*/
}
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
	/*background: rgba(240,50,50,.3);*/
}
.parsley-errors-list {
	color: #e72b2b;
	position: absolute;
	top: 2.5rem;
	right: 1.5rem;
	list-style-type: none;
	text-shadow: .1rem .1rem #fff;
	opacity: 0;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.form-horizontal .parsley-errors-list {
	top: .8rem !important;
	right: 2.5rem !important;
}
.parsley-errors-list.filled {
	opacity: 1;
}

/*** Uploader ***/

.upload-statusbar {
	border: .1rem solid #eee;
	margin: .5rem 0;
	-webkit-border-radius: .2rem;
	border-radius: .2rem;
	padding: .5rem .5rem .1rem .5rem;
	-webkit-box-shadow: inset 0 0 1.5rem rgba(210,210,210,.3);
	box-shadow: inset 0 0 1.5rem rgba(210,210,210,.3);
}
.upload-filename {
	width: 100%;
	height: auto;
	color: #807579;
}
.upload-progress {
	margin: .5rem .5rem 0 0;
	position: relative;
	width: -webkit-calc(100% - 4.3rem);
	width: calc(100% - 4.3rem);
	border: .1rem solid #ddd;
	padding: .1rem;
	-webkit-border-radius: .2rem;
	border-radius: .2rem;
	display: inline-block;
}
.upload-bar {
	background-color: #a4b743;
	width: 0;
	height: 2.3rem;
	-webkit-border-radius: .2rem;
	border-radius: .2rem;
	color: #fff;
}
.upload-percent {
	position: absolute;
	display: inline-block;
	top: .3rem;
	left: 48%;
}
.upload-green, .upload-red {
	background-color: #77b55a;
	-webkit-border-radius: .2rem;
	border-radius: .2rem;
	display: inline-block;
	color: #fff;
	padding: .1rem .7rem;
	text-decoration: none;
	cursor: pointer;
	text-shadow: 0 .1rem 0 #5b8a3c;
	line-height: 1.7rem;
	position: relative;
	top: -.5rem;
}
.upload-red {
	background-color: #e4685d;
}
.upload-green i, .upload-red i {
	font-size: 2.2rem;
}
.upload {
	font-family: sans-serif;
	font-size: 1.6rem;
	font-weight: bold;
	cursor:pointer;
	margin:0 1rem 1rem 0;
	display: inline-block;
	height: 3.2rem;
	text-decoration: none;
	-webkit-border-radius: .2rem;
	border-radius: .2rem;
	-webkit-box-shadow: 0 .2rem 0 0 #e8e8e8;
	box-shadow: 0 .2rem 0 0 #e8e8e8;
	padding: .6rem 1rem .4rem 1rem;
	color: #fff;
	background: #2f8ab9;
	border: none;
	-webkit-box-shadow: 0 .2rem 0 0 #13648d;
	box-shadow: 0 .2rem 0 0 #13648d;
	vertical-align: middle;
}
.upload:hover {
	background: #28759D;
	-webkit-box-shadow: 0 .2rem 0 0 #15719f;
	box-shadow: 0 .2rem 0 0 #15719f;
}
.ajax-upload-dragdrop
{
	border: .2rem dashed #d2d2d2;
	-webkit-box-shadow: inset 0 0 1.5rem rgba(210,210,210,.3);
	box-shadow: inset 0 0 1.5rem rgba(210,210,210,.3);
	color: #DADCE3;
	text-align:center;
	vertical-align:middle;
	padding: 2rem;
	padding-bottom: .4rem;
}
#uploadAlert h4 {
	margin-bottom: 1rem;
}
.media-uploaded li {
	list-style: none;
	float: left;
	margin-right: 1rem;
	margin-bottom: 2.5rem;
	text-align: center;
	width: 11rem;
	max-height: 12.5rem;
}
.new-uploaded {
	margin-bottom: -1.7rem;
}
.media-uploaded img {
	width: 100%;
}
.media-uploaded .btn {
	margin-bottom: .5rem;
}

/*** Pagination ***/

.pagination > li > a, .pagination > li > span {
	width: 3.1rem;
	height: 3.1rem;
	text-align: center;
	color: #4da0e8;
	line-height: 2.8rem;
	padding: 0;
	margin: 0 .1rem;
	background-color: transparent;
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
	color: #4da0e8;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
	-webkit-border-bottom-left-radius: 0%;
	border-bottom-left-radius: 0%;
	-webkit-border-top-left-radius: 0%;
	border-top-left-radius: 0%;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
	-webkit-border-bottom-right-radius: 0%;
	border-bottom-right-radius: 0%;
	-webkit-border-top-right-radius: 0%;
	border-top-right-radius: 0%;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
	background-color: #4da0e8;
	border-color: transparent;
}
.pagination > li > .pagin-arrow {
	line-height: 2.5rem;
}

/*** Various Styles ***/

.btn {
	font-weight: 700;
}
.btn-primary:not(.btn-link):not(.btn-flat) {
	background-color: #a4b743;
	color: #fff;
}
.btn-primary:hover:not(.btn-link):not(.btn-flat) {
	background-color: #a4b743;
}
.alert {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.login-page .alert {
	margin-bottom: 2rem;
}
.alert-dismissable .close, .alert-dismissible .close {
	top: 0;
}
.alert-info, .alert-danger, .alert-warning, .alert-success {
	color: #fff;
}
.help-block {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.9rem;
}
.help-link {
	color: #999;
	border-bottom: .1rem dotted #999;
}
.help-link:hover {
	color: #a4b743;
	text-decoration: none;
	border-bottom: .1rem dotted #dedede;
}
.modal-dialog {
	margin-top: 50%;
}
@media only screen and (min-width: 768px) {
	.modal-dialog {
		margin: 15% auto;
	}
}
.modal-backdrop {
	z-index: auto !important;
}
.modal-backdrop.in {
	opacity: .8;
}
.pt2 { padding-top: .2rem; }
.pb0 { padding-bottom: 0; }

.m-top0 { margin-top: 0 !important; }
.m-top5 { margin-top: .5rem !important; }
.m-top10 { margin-top: 1rem !important; }
.m-top15 { margin-top: 1.5rem !important; }
.m-top20 { margin-top: 2rem !important; }
.m-top25 { margin-top: 2.5rem !important; }
.m-top30 { margin-top: 3rem !important; }
.m-top40 { margin-top: 4rem !important; }
.m-top50 { margin-top: 5rem !important; }
.m-bot0 { margin-bottom: 0 !important; }
.m-bot5 { margin-bottom: .5rem !important; }
.m-bot10 { margin-bottom: 1rem !important; }
.m-bot15 { margin-bottom: 1.5rem !important; }
.m-bot20 { margin-bottom: 2rem !important; }
.m-bot25 { margin-bottom: 2.5rem !important; }
.m-bot30 { margin-bottom: 3rem !important; }
.m-bot40 { margin-bottom: 4rem !important; }
.m-bot50 { margin-bottom: 5rem !important; }
.m-left10 { margin-left: 10px; }
.m-left20 { margin-left: 20px; }
.m-left30 { margin-left: 30px; }
.m-left40 { margin-left: 40px; }
.m-right10 { margin-right: 10px; }
.m-right20 { margin-right: 20px; }
.m-right30 { margin-right: 30px; }
.m-right40 { margin-right: 40px; }

.font12 { font-size: 1.2rem; }

.inner-column label {
	margin-bottom: .8rem;
	display: block;
}
.inner-column .checkbox { padding-top: 0; padding-bottom: .1rem; }
.inner-column .check { margin-right: .4rem; }
@media only screen and (max-width: 768px) {
	.inner-column { margin-top: 2rem; }
	.inner-column:first-child { margin-top: 0; }
}

/*** Clearfix ***/

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}
