/* Main */

body, html {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

a {
	color: #5079fa;
}

a:hover {
	color: #5079fa;
	text-decoration: none;
}

.hidden {
	display: none;
}

/* Buttons */

.btn-xs {
	padding: .15rem .5rem;
	font-size: .7rem;
	line-height: 1.5;
	border-radius: .2rem;
}

/* Header menu */

.header-menu-bg {
	background-color: #e4e6eb;
}

.header-menu-logo {
	font-size: 170%;
	font-weight: bold;
	color: #5079fa;
}

.header-menu {
	height: 40px;
	line-height: 40px;
	margin: 0px;
	padding: 0px;
}

.header-menu .dropdown-menu {
	line-height: 24px;
}

.header-menu .dropdown-menu form {
	min-width: 250px;
	max-width: 100%;
}

/* Sidebar */

#sidebar-button {
	position: relative;
	top: 1px;
	display: inline-block;
	font-size: 26px;
	cursor: pointer;
	color: #000;
}

#sidebar-button:hover {
	color: #444;
}

#sidebar {
	width: 300px;
	max-width: 100%;
	position: fixed;
	top: 0px;
	right: -1000px;
	height: 100vh;
	z-index: 999;
	background-color: rgba(20, 20, 20, 0.9);
	color: #000;
	transition: all 0.3s;
	overflow-y: auto;
	padding: 20px;
}

#sidebar.active {
	right: 0px;
}

#sidebar h4 {
	color: #fff;
}

#sidebar a {
	color: #ccc;
}

#sidebar a:hover {
	color: #fff;
}

#sidebar-dismiss {
	position: absolute;
	top: 18px;
	right: 15px;
	width: 35px;
	height: 35px;
	font-size: 20px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 1000;
}

#sidebar-dismiss:hover {
	background: #fff;
	color: #000;
}

.sidebar-overlay {
	display: none;
	z-index: 998;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.5s ease-in-out;
}

.sidebar-overlay.active {
	display: block;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	opacity: 1;
}

/* Start */

.start-bg img {
	width: 100%;
	height: auto;
}

.start-icons-bg img {
	width: 100%;
	max-width: 80px;
}

.start-header {
	text-align: center;
	margin-bottom: 20px;
}

.start-header h3 {
	font-weight: bold;
}

.start-header div {
	display: inline-block;
	width: 100px;
	border-bottom: 2px solid #000;
}

/* Price calculator */

.price-bg {
	background-color: #e4e6eb;
}

/* Footer */

.footer {
	padding-top: 10px;
	border-top: 1px solid #aaa;
}

.footer-menu-logo {
	font-size: 150%;
	font-weight: bold;
	color: #b7b7b7;
}

/* Table responsive */
	
@media only screen and (max-width: 992px) {
		
	table.table,
	.table thead,
	.table tbody,
	.table th,
	.table td,
	.table tr { 
		display: block; 
	}
 
	.table thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	.table tr {
		border: 1px solid #ccc;
		border-radius: 3px;
		margin: 0px 0px 15px 0px;
	}
 
	.table td {
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
		white-space: normal;
		text-align: left;
		min-height: 1em;
	}
 
	.table td:before { 
		position: absolute;
		top: 1px;
		left: 6px;
		width: 40%;
		padding-right: 10px; 
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}
 
	.table td:before {
		padding: 10px;
		content: attr(data-title);
	}

}

/* Captcha */

.captcha-img .input-group-text {
	padding: 0px !important;
}

.captcha-img img {
	height: 100%;
}

/* Radio toolbar */

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-toolbar label {
	display: inline-block;
	background-color: #fff;
	padding: 4px 8px;
	border: 1px solid #343a40;
	border-radius: 4px;
	cursor: pointer;
}

.radio-toolbar input[type="radio"]:focus + label {
    border: 1px dashed #0062cc;
}

.radio-toolbar input[type="radio"]:checked + label {
    background-color: #0069d9;
		border-color: #0062cc;
		color: #fff;
}

/* Page */

.page-title {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.2;
}