/*-----------------------------------------

1. GENERAL
	1.1 Web Fonts
	1.2 General Styles
	1.3 Links
	1.4 Headings
	1.5 Lists
	1.6 Forms
	1.7 Buttons
	1.8 Labels
	1.9 Tooltips
	1.10 Dialogs
	1.11 Pagination
	1.12 Code

2. SITE STRUCTURE
	2.1 Navbar
	2.2 Sidebar
	2.3 Sections
	2.4 Page Header
	2.5 Go to Top / Scroll Up
	2.6 FAQ Boxes
	2.7 Footer

3. PAGES
	3.1 Homepage
	3.2 Download Page
	3.3 Pricing Page
	3.4 Checkout Page
	3.5 Blog Pages
	3.6 Contact Page
	3.7 Root Category Pages
	3.8 Account Pages
	3.9 Error Page

-----------------------------------------*/

/*============*/
/* 1. GENERAL */
/*============*/

/*---------------*/
/* 1.1 Web Fonts */
/*---------------*/

@import url(https://fonts.googleapis.com/css?family=Lato:400,900,300,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic,700italic);

/*--------------------*/
/* 1.2 General Styles */
/*--------------------*/

body {
	padding-top: 50px;
	background: #415b74;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	color: #73879c;
}

::selection {
	background: #aaf2e4;
	color: #506a85;
}

::-moz-selection {
	background: #aaf2e4;
	color: #506a85;
}

hr {
	border-color: #ced7e0;
}

.clear {
	clear: both;
}

.margin-bottom-lg {
	margin-bottom: 20px;
}

.first {
	margin-top: 0 !important;
}

@media (min-width: 768px) {
	.first-sm {
		margin-top: 0 !important;
	}
}

.noscript {
	display: none;
}

.fine-print {
	margin-top: 30px;
	border-top: 1px solid #ced7e0;
	padding-top: 2px;
	font-size: 0.8em;
	color: #8e9fb0;
}

.fine-print.no-border {
	border-top: 0;
}

.subtle-emphasis {
	color: #8e9fb0;
	font-style: italic;
}

.error-text {
	color: #a94442;
}

.alert {
	font-size: 0.9em;
}

.img-responsive {
	width: auto;
}

/*-----------*/
/* 1.3 Links */
/*-----------*/

a {
	color: #2980b9;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

a:hover,
a:focus {
	color: #1abb9c;
	text-decoration: none;
}

a:hover {
	border-color: transparent;
}

a:focus {
	outline: 0 none;
}

a.image-link:hover {
	cursor: zoom-in;
}

/*--------------*/
/* 1.4 Headings */
/*--------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.page-header-title {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	letter-spacing: 0.025em;
	color: #506a85;
}

h1,
.page-header-title {
	font-size: 44px;
	line-height: 130%;
	margin-bottom: 25px;
}

h2 {
	font-size: 26px;
	line-height: 130%;
	margin-bottom: 20px;
}

h3 {
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 15px;
}

h4 {
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 15px;
}

h5 {
	font-size: 14px;
	line-height: 160%;
	margin-bottom: 13px;
}

h6 {
	font-size: 12px;
	line-height: 160%;
	margin-bottom: 10px;
}

/*-----------*/
/* 1.5 Lists */
/*-----------*/

ul.checked {
	list-style: none;
	position: relative;
	padding-left: 24px;
	margin-left: 0;
}

ul.checked li {
	margin-bottom: 5px;
}

ul.checked li:before, ul.checked li span {
	font-size: 0.9em;
	font-family: 'Glyphicons Halflings';
	content: '\e013';
	font-weight: normal;
	color: #1abb9c;
	margin-top: 1px;
	margin-left: -25px;
	vertical-align: top;
	position: absolute;
}

ul.checked li {
	background-image: expression(this.runtimeStyle.backgroundImage="none", this.innerHTML = '<span>\e013</span>' + this.innerHTML);
}

/*-----------*/
/* 1.6 Forms */
/*-----------*/

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	display: inline-block;
	height: 40px;
	padding: 5px 10px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 25px;
	*line-height: 40px;
	color: #73879c;
	border: 1px solid #ced7e0;
	resize: none;
	vertical-align: middle;
}

input[type="checkbox"] {
	margin-right: 4px;
	outline: none !important;
}

textarea {
	height: 100%;
	padding: 10px;
	min-height: 150px;
	resize: vertical;
}

.form-control {
	color: #73879c;
	border: 1px solid #ced7e0;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border: 1px solid #7e98ae;
}

select.form-control {
	width: auto;
	font-family: sans-serif;
}

.no-behavior, form .col-xs-1, form .col-xs-2, form .col-xs-3, form .col-xs-4, form .col-xs-5, form .col-xs-6, form .col-xs-7, form .col-xs-8, form .col-xs-9, form .col-xs-10, form .col-xs-11, form .col-xs-12, form .col-sm-1, form .col-sm-2, form .col-sm-3, form .col-sm-4, form .col-sm-5, form .col-sm-6, form .col-sm-7, form .col-sm-8, form .col-sm-9, form .col-sm-10, form .col-sm-11, form .col-sm-12, form .col-md-1, form .col-md-2, form .col-md-3, form .col-md-4, form .col-md-5, form .col-md-6, form .col-md-7, form .col-md-8, form .col-md-9, form .col-md-10, form .col-md-11, form .col-md-12 {
	behavior: inherit !important;
}

input.form-control, textarea.form-control {
	*padding: 0;
}

::-webkit-input-placeholder {
	color: #bec9d2 !important;
}

:-moz-placeholder {
	color: #bec9d2 !important;
	opacity: 1;
}

::-moz-placeholder {
	color: #bec9d2 !important;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #bec9d2 !important;
}

label {
	font-size: 0.9em;
	font-weight: 400;
	margin: 0;
	color: #8e9fb0;
}

label span {
	color: #a94442;
}

.form-horizontal .control-label {
	font-variant: normal;
	letter-spacing: 0;
}

.form-horizontal .col-text {
	padding-top: 5px;
}

.form-section {
	padding-bottom: 30px;
}

.form-group {
	margin-bottom: 10px;
}

.error-block {
	display: none;
	margin: 0;
	padding-top: 7px;
	font-size: 0.9em;
	color: #8e9fb0;
}

/* Form columns */

.col-label, .col-input, .col-error, .col-input-auto-width {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 768px) {
	.col-label, .col-input-auto-width {
		float: left;
	}

	.col-label {
		width: 200px;
	}

	.col-input {
		width: auto;
		margin-left: 200px;
	}

	.col-error {
		padding-left: 215px;
	}

	.col-label-offset {
		margin-left: 200px;
		*margin-left: 115px;
	}
}

@media (min-width: 992px) {
	.col-input {
		float: left;
		width: 34%;
		max-width: 330px;
		margin-left: 0;
	}

	.col-label-offset {
		margin-left: 200px;
		*margin-left: 115px;
	}

	.col-error {
		padding-left: 0;
	}
}

/* Spin control */

.spin-control {
	display: inline-block;
	position: relative;
	padding-right: 17px;
}

.spin-control input {
	margin: 0px;
	padding: 5px;
	border-radius: 4px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border: 1px solid #ced7e0;
}

.has-error.spin-control input {
	border-left-color: #a94442;
	border-top-color: #a94442;
	border-bottom-color: #a94442;
}

.has-error.spin-control .spin-up {
	border-top-color: #a94442;
	border-right-color: #a94442;
}

.has-error.spin-control .spin-down {
	border-bottom-color: #a94442;
	border-right-color: #a94442;
}

.spin-control .spin-up, .spin-control .spin-down {
	position: absolute;
	font-family: ​Arial,​sans-serif;
	width: 16px;
	line-height: 150%;
	*padding-top: 1px;
	text-align: center;
	font-size: 11px;
	color: #888;
	cursor: pointer;
	background: #ecf0f1;
	*background: none;
	border: 1px solid #ced7e0;
	border-left: none;
	*border: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.spin-control .spin-up:hover, .spin-control .spin-down:hover {
	color: #555;
	background: #ced7e0;
	*background: none;
}

.spin-control .spin-up:active, .spin-control .spin-down:active {
	background: #ecf0f1;
	*background: none;
}

.spin-control .spin-up {
	top: 0;
	bottom: 50%;
	border-bottom: 0;
	border-top-right-radius: 4px;
}

.spin-control .spin-down {
	top: 50%;
	bottom: 0;
	border-bottom-right-radius: 4px;
}

/*-------------*/
/* 1.7 Buttons */
/*-------------*/

.btn {
	font-size: 16px;
	letter-spacing: 0.02em;
	border: none;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
	background: #95a5a6;
	color: #fff;
	*display: inline;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
	background: #859394;
	color: #fff;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.btn-xl {
	margin-top: 6px;
	margin-bottom: 10px;
	padding: 18px 30px 20px;
	font-size: 20px;
}

.btn-primary {
	background: #1abb9c;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
	background: #17a78b;
}

.btn-success {
	background: #2ecc71;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
	background: #27ae60;
}

.btn-info {
	background: #5eaee2;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
	background: #3498db;
}

.btn-warning{
	background: #f39c12;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
	background: #e67e22;
}

.btn-danger{
	background: #e74c3c;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
	background: #c0392b;
}

.btn-link {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: none;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link.active {
	background: none;
}

.btn-sm,
.btn-xs {
	font-weight: normal;
}

.btn-lg {
	padding: 14px 26px 16px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.btn-sm {
	font-size: 13px;
}

.btn-xs {
	font-size: 12px;
}

.btn span.glyphicon {
	margin-right: 5px;
}

.btn-file {
	position: relative;
	overflow: hidden;
}

.btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

/*------------*/
/* 1.8 Labels */
/*------------*/

.label-default {
	background: #95a5a6;
}

.label-primary {
	background: #1abb9c;
}

.label-success {
	background: #2ecc71;
}

.label-info {
	background: #5eaee2;
}

.label-warning {
	background: #f39c12;
}

.label-danger {
	background: #e74c3c;
}

/*--------------*/
/* 1.9 Tooltips */
/*--------------*/

.tooltip .tooltip-inner {
	padding: 5px 10px;
	text-align: left;
	font-size: 14px;
	width: 200px;
}

.tooltip.top .tooltip-inner {
	background-color: #415b74;
}
.tooltip.top .tooltip-arrow {
	border-top-color: #415b74;
}

.tooltip ul {
	padding-left: 15px;
}

.hint {
	margin-bottom: 4px;
	margin-left: 4px;
	vertical-align: middle;
	color: #1abb9c;
	cursor: help;
}

/*--------------*/
/* 1.10 Dialogs */
/*--------------*/

.modal-dialog {
	top: 33%;
}

.modal-open {
	padding-right: 0 !important;
	overflow: auto;
}

/*-----------------*/
/* 1.11 Pagination */
/*-----------------*/

.pagination a {
	border: 0 !important;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	background-color: #ecf0f0;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	background-color: #5eaee2;
}

.pagination > .ellipsis > span,
.pagination > .ellipsis > span:hover {
	color: #777;
	background-color: transparent;
	border: 0;
}

/*-----------*/
/* 1.12 Code */
/*-----------*/

code {
	color: #1abb9c;
}

/*===================*/
/* 2. SITE STRUCTURE */
/*===================*/

/*------------*/
/* 2.1 Navbar */
/*------------*/

.navbar {
	background: #fff;
	border: none;
	-webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 10px 10px rgba(0,0,0,0.1);
	box-shadow: 0 10px 10px rgba(0,0,0,0.1);
	-webkit-transition: all 400ms ease-out;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}

.navbar.init {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

@media (min-width: 768px) {
	.navbar.transparent {
		background: transparent;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
}

.navbar-collapse {
	border-top: 1px solid #e6e9ed;
	background: #f5f7fa;
}

@media (min-width: 768px) {
	.navbar-collapse {
		border: none;
		background: none;
	}
}

.navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 50px;
}

.navbar-brand:hover {
	opacity: .7;
}

@media (min-width: 768px) {
	.navbar.transparent .navbar-brand {
		opacity: 0;
		display: none;
	}
}

.navbar-brand img.logo {
	margin-top: 0;
	*margin-top: 8px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx), only screen and (min-resolution: 192dpi) {
	.navbar-brand img.logo {
		font-size: 1px;
	}
}

.navbar-nav li > a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #506a85;
	-webkit-transition: background-color 400ms ease;
	-moz-transition: background-color 400ms ease;
	-o-transition: background-color 400ms ease;
	transition: background-color 400ms ease;
}

@media (min-width: 768px) {
	.navbar.transparent .navbar-nav > li > a {
		color: #fff;
	}
	
	.navbar.transparent .open > a:focus {
		color: #506a85;
	}
}

.navbar-nav > li > a {
	font-size: 15px;
}

.navbar-nav li > a:focus {
	background: none;
}

.navbar .open > a:focus {
	background-color: #f5f7fa;
	color: #506a85;
}

.navbar li > a:hover,
.navbar li.active > a {
	background-color: #1abb9c !important;
	color: #fff !important;
}

.navbar .dropdown-menu {
	padding: 0;
	width: 210px;
	background: #f5f7fa;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.navbar .dropdown-menu li {
	border: none;
}

@media (min-width: 768px) {
	.navbar .dropdown-menu li {
		border-top: 1px solid #e6e9ed;
	}
}

.navbar .dropdown-menu li:first-child {
	border-top: none;
}

.navbar li.divider {
	padding: 1px 0;
	margin: 0;
	background: none;
}

.navbar .dropdown-menu li > a, .navbar .open .dropdown-menu li > a {
	padding: 13px 20px;
	color: #73879c;
	white-space: normal;
}

.navbar-toggle {
	background: #1abb9c;
	color: #fff;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
}

.icon-bar {
	background: #fff;
}

/*-------------*/
/* 2.2 Sidebar */
/*-------------*/

ul.sidebar-nav, ul.sidebar-nav ul {
	padding-left: 17px;
	margin-left: 0;
	position: relative;
	font-size: 16px;
	line-height: 150%;
	list-style: none outside none;
}

ul.sidebar-nav, ul.sidebar-nav ul {
	margin-bottom: 5px;
}

ul.sidebar-nav li:before, ul.sidebar-nav li span {
	color: #1abb9c;
	content: "\203a";
	font-weight: normal;
	font-size: 24px;
	margin-left: -18px;
	margin-top: -1px;
	position: absolute;
	vertical-align: top;
}

ul.sidebar-nav li span {
	margin-top: -6px;
}

ul.sidebar-nav li {
	background-image: expression(this.runtimeStyle.backgroundImage="none", this.innerHTML = '<span>\203a</span>' + this.innerHTML);
}

ul.sidebar-nav li.active {
	font-weight: 700;
}

ul.sidebar-nav li.active li {
	font-weight: normal;
}

/*--------------*/
/* 2.3 Sections */
/*--------------*/

.section {
	padding-bottom: 40px;
	padding-top: 40px;
	background: #fff;
}

@media (min-width: 992px) {
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.section.alternate {
	background-color: #ecf0f1;
}

.section.accent {
	background-color: #1abb9c;
}

.section.accent,
.section.accent h1,
.section.accent h2,
.section.accent h3,
.section.accent h4,
.section.accent p {
	color: #fff;
}

.section.accent a {
	color: #fff;
	border-bottom: 1px solid #fff;
}

.section.accent a.btn {
	border-bottom: 0;
}

.section.accent a:hover {
	color: #506a85;
	border-bottom: transparent;
}

.section.accent .btn {
	background: #fff !important;
	color: #1abb9c !important;
}

.section.accent .btn:hover {
	background: #e9e9e9 !important;
	color: #506a85 !important;
}

.section.question h2 {
	margin: 0;
	line-height: 1.6em;
	text-align: center;
}

.section.question span.glyphicon {
	margin-right: 12px;
	font-size: 1.2em;
	vertical-align: middle;
	margin-bottom: 5px;
}

/* Section header */

.section-header {
	margin-top: 0;
	margin-bottom: 50px;
	border: 0;
	text-align: center;
}

.section-header h1,
.section-header h2 {
	margin-top: 0;
}

/*-----------------*/
/* 2.4 Page Header */
/*-----------------*/

.page-header {
	margin: 0;
	background: #415b74;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 30%;
	text-align: center;
}

.page-header h1, .page-header .page-header-title {
	margin-top: 0;
	color: #fff;
}

.page-header a {
	color: #fff;
}

.page-header,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6 {
	color: #a3b1bf;
}

.page-header p {
	font-size: 22px;
	line-height: 150%;
}

.page-header-small {
	padding: 20px 0;
	text-align: left;
}

.page-header-small h1, .page-header-small .page-header-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 32px;
}

/*---------------------------*/
/* 2.5 Go to Top / Scroll Up */
/*---------------------------*/

#scroll-up, #scroll-down {
	bottom: 20px;
	right: 20px;
	color: #fff;
	background-color: #506a85;
	padding: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	opacity: .5;
	display: none;
}

#scroll-up {
	position: fixed;
	padding: 10px 14px;
}

#scroll-up i, #scroll-down i {
	font-size: 36px;
	line-height: 100%;
}

#scroll-up:hover, #scroll-down:hover {
	color: #1abb9c;
	opacity: 1;
}

#scroll-down {
	background: none;
	position: absolute;
	left: 50%;
	width: 120px;
	margin-left: -60px;
	opacity: .8;
}

#scroll-down p {
	margin: 0;
}

/*---------------*/
/* 2.6 FAQ Boxes */
/*---------------*/

.faq-box {
	background: #dee4e4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px 20px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.faq-box .glyphicon {
	position: absolute;
	margin-left: -40px;
	margin-right: 7px;
	color: #1abb9c;
	font-size: 32px;
}

.faq-box h3 {
	position: relative;
	margin-top: 6px;
	padding-left: 40px;
	font-size: 18px;	
}

/*------------*/
/* 2.7 Footer */
/*------------*/

.footer {
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 15px;
	text-align: center;
}

.footer,
.footer a {
	color: #b1bac1;
}

.footer a:hover {
	color: #1abb9c;
}

@media (min-width: 992px) {
	.footer .copyright {
		float: left;
	}

	.footer-menu {
		float: right;
	}
}

.footer ul.footer-menu {
	padding: 0;
	margin: 0;
}

.footer ul.footer-menu li {
	display: inline;
	padding-left: 10px;
}
.footer ul.footer-menu li:before {
	display: inline-block;
	content: "·";
	padding-right: 12px;
}
.footer ul.footer-menu li:first-child:before {
	display: none;
}

/*==========*/
/* 3. PAGES */
/*==========*/

/*--------------*/
/* 3.1 Homepage */
/*--------------*/

/* Homepage Header */

.homepage-header {
	position: relative;
	display: table;
	width: 100%;
	height: 100vh;
	top: -50px;
	margin-bottom: -50px;
	border: 0;
}

.homepage-header .container {
	display: table-cell;
	vertical-align: middle;
	padding: 100px 0;
}

.homepage-header h1 {
	font-size: 58px;
	font-weight: 900;
	letter-spacing: .05em;
}

.homepage-header h2 {
	font-size: 28px;
	font-weight: normal;
	letter-spacing: .015em;
	margin-bottom: 40px;
}

.homepage-header .btn {
	padding: 18px 70px 20px;
	margin-top: 20px;
	font-size: 18px;
}

.homepage-header .btn-container {
	margin-left: -10px;
}

.homepage-header .btn-container .btn {
	margin-left: 10px;
}

@media (max-width: 576px) {
	.jumbotron {
		padding-left: 0;
		padding-right: 0;
	}
	
	.homepage-header h1 {
		font-size: 38px;
	}

	.homepage-header h2 {
		font-size: 22px;
	}

	.homepage-header .btn {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 768px) {
	.homepage-header h1 {
		font-size: 78px;
	}
}

/* Video */

.mfp-iframe-holder .mfp-content {
	max-width: 1280px !important;
}

/* Root Categories */

.section#collections {
	text-align: center;
}

.section#collections .thumbnails {
	margin-bottom: 20px;
}

.thumbnail-container {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
	cursor: pointer;
}
.thumbnail-container img {
	display: block;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.thumbnail-container span {
	position: absolute;
	display: block;
	width: 100%;
	padding: 15px 10px;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	text-align: center;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.thumbnail-container:hover span {
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.thumbnails .see-more-container {
	padding: 15px 10px;
	font-size: 2em;
	text-align: center;
	height: 100%;
	background: yellow;
}

.thumbnails .see-more-container a span {
	display: block;
}

/* Features */

.feature-row {
	padding-top: 25px;
	padding-bottom: 25px;
}

.feature-row.first {
	padding-top: 0;
}

.feature-row.last {
	padding-bottom: 0;
}

/* Benefits */

.section#benefits .glyphicon {
	display: block;
	font-size: 60px;
	line-height: 100%;
	color: #1abb9c;	
}

.section#benefits h2 {
	margin-top: 10px;
}

/* Download */

@media (min-width: 768px) {
	.section#download h1 {
		display: inline;
		vertical-align: middle;
	}
}

.section#download {
	padding-bottom: 25px;
}

@media (min-width: 768px) {
	.section#download {
		padding-bottom: 45px;
	}
}

.section#download h1 {
	margin: 0 0 15px 0;
	display: inline-block;
}

.section#download .btn {
	margin-top: 0;
	margin-bottom: 15px;
	margin-left: 15px;
}

/*-------------------*/
/* 3.2 Download Page */
/*-------------------*/

table.version-table, table.license-table {
	background: #dee4e4;
}

table.version-table {
	margin-bottom: 26px;
}

table.license-table {
	margin-top: 26px;
}

table.version-table td, table.license-table td {
	padding: 10px;
}

/*------------------*/
/* 3.3 Pricing Page */
/*------------------*/

.plan {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	overflow: hidden;
}

.plan .plan-header {
	padding: 30px 0;
	background: #415b74;
	text-align: center;
}

.plan h2 {
	margin-top: 0;
	font-size: 18px;
	font-weight: 400;	
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #fff;
}

.plan .price {
	margin-bottom: 24px;
}

.plan .price span {
	position: relative;
	font-family: 'Lato', sans-serif;
	line-height: 100%;
	vertical-align: top;
	color: #a3b1bf;
}

.plan .price .amount {
	font-size: 60px;
	font-weight: 900;
	color: #fff;
}

.plan .price .currency {
	top: 18px;	
	margin-right: 5px;
	font-size: 24px;	
}

.plan .price .decimal-places {
	top: 6px;
	font-size: 22px;
}

.plan .features {
	padding: 10px 20px;
	border: 1px solid #e6e9ed;
	border-top: none;
	border-bottom-width: 2px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	background: #f5f7fa;
}

.plan .features li {
	padding: 12px 10px 12px 45px;
	border-top: 1px solid #bcc7d1;
}

.plan .features li:before {
	margin-left: -30px;
}

.plan .features li:first-child {
	border: none;
}

.plan .features li span {
	margin-right: 10px;
}

/*-------------------*/
/* 3.4 Checkout Page */
/*-------------------*/

.shopping-cart-table {
	width: 100%;
}

.shopping-cart-table th, .shopping-cart-table td {
	border-bottom: 1px solid #ced7e0;
}

.shopping-cart-table td, .shopping-cart-table th {
	padding: 4px 10px;
	text-align: center;
}

.shopping-cart-table th {
	background: #ecf0f1;
}

.shopping-cart-table .item-col {
	text-align: left;
}

.shopping-cart-table .quantity-col {
	width: 20%;
}

.shopping-cart-table .unit-price-col {
	width: 20%;
}

.shopping-cart-table .amount-col {
	width: 20%;
}

.shopping-cart-table .sum-label-cell {
	text-align: right;
	border: 0;
}

.shopping-cart-table #total-value-cell {
	font-weight: bold;
	border-bottom: 3px double #ced7e0;
}

.shopping-cart-table input#quantity {
	max-width: 60px;
}

.shopping-cart-table input#quantity:focus {
	box-shadow: none;
}

input#billing-postal-code, input#billing-vat-id {
	max-width: 150px;
}

input#on-behalf {
	margin-left: 0;
}

input#security-code {
	width: 80px;
}

select#expiration-month, select#expiration-year {
	float: left;
}

select#expiration-month {
	margin-right: 6px;
}

select#expiration-year {
	margin-right: 12px;
}

#credit-cards-hint {
	float: left;
	margin-top: 9px;
	margin-left: 0;
	margin-bottom: 0;
	margin-right: 12px;
}

#security-code-hint {
	margin-right: 12px;
}

/*----------------*/
/* 3.5 Blog Pages */
/*----------------*/

.section.blog-post h1 {
	font-size: 28px;
}

.section.blog-post h2 {
	font-size: 22px;
}

.section.blog-post h3 {
	font-size: 18px;
}

.section.blog-post h4 {
	font-size: 16px;
}

.section.blog-post h5 {
	font-size: 14px;
}

.section.blog-post h6 {
	font-size: 12px;
}

.col-sidebar ul.blog-categories, .col-sidebar ul.blog-posts {
	list-style: disc;
	margin-left: 20px;
}

.col-sidebar ul.blog-categories li, .col-sidebar ul.blog-posts li {
	padding-left: 5px;
}

ul.blog-categories li.active {
	font-weight: bold;
}

.blog-buttons {
	margin-top: 40px;
}

ul.blog-meta {
	background: #ebefef;
	margin: 0;
	margin-top: 30px;
	padding: 10px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 0.8em;
	color: #8e9fb0;
}

ul.blog-meta li {
	display: inline;
	padding-left: 8px;
}
ul.blog-meta li:before {
	display: inline-block;
	content: "|";
	padding-right: 10px;
}
ul.blog-meta li:first-child:before {
	display: none;
}

/* Blog Administration Pages */

/* Users table */

.table-posts {
	font-size: 16px;
}

.table-posts .title-col {
	width: 100%;
}

.table-posts .actions-col {
	white-space: nowrap;
}

.table-posts a.btn-show, .table-posts a.btn-delete {
	opacity: 0;
	font-size: 1.1em;
}

.table-posts a.btn-show {
	margin-right: 5px;
}

.table-posts tr:hover a {
	opacity: 1;
}

/*------------------*/
/* 3.6 Contact Page */
/*------------------*/

@media (min-width: 768px) {
	.col-main {
		padding-right: 40px;
		border-right: 1px solid #ced7e0;
	}

	.col-sidebar {
		padding-left: 40px;
	}
}

.col-sidebar ul {
	padding-left: 0;
	*margin-left: 0;
	margin-bottom: 45px;
	list-style: none;	
}

.col-sidebar li {
	position: relative;
	padding-left: 28px;
	*padding-left: 0;
	margin-bottom: 6px;
}

.col-sidebar li span.glyphicon {
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 0.9em;
	color: #1abb9c;
	*display: none;
}

.col-sidebar p {
	margin-bottom: 45px;
}

/*-------------------------*/
/* 3.7 Root Category Pages */
/*-------------------------*/

/* Overview page */

.section.root-category-list > .container > p {
	margin-bottom: 20px;
}

.section.root-category-list .row {
	margin-top: 10px;
	margin-bottom: 10px;
}

.section.root-category-list .pagination {
	margin-top: 0;
}

/* Detail page */

.category-list {
	margin: 15px 0;
}

.category-list-item {
	border: 8px solid #e4e4e4;
	border-right: 0;
	border-top: 0;
}

.category-list-item {
	margin-top: 1px;
}

.category-list-item > .category-list-item {
	margin-left: 1px;
}

.category-list-item h4 {
	margin: 0;
	padding: 2px 0;
	background: #e4e4e4;
}

.shape-list {
	list-style: outside none none;
	padding-left: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	zoom: 1;
}

.shape-list li {
	min-width: 48px;
}

.shape-list.shape-icon-size-16 li {
	min-width: 32px;
}

.shape-list.shape-icon-size-64 li {
	min-width: 80px;
}

.shape-list.shape-icon-size-96 li {
	min-width: 112px;
}

.shape-list .shape-icon {
	height: 32px;
}

.shape-list.shape-icon-size-16 .shape-icon {
	height: 16px;
}

.shape-list.shape-icon-size-64 .shape-icon {
	height: 64px;
}

.shape-list.shape-icon-size-96 .shape-icon {
	height: 96px;
}

.shape-list .shape-icon img {
	max-width: 32px;
	max-height: 32px;
}

.shape-list.shape-icon-size-16 .shape-icon img {
	max-width: 16px;
	max-height: 16px;
}

.shape-list.shape-icon-size-64 .shape-icon img {
	max-width: 64px;
	max-height: 64px;
}

.shape-list.shape-icon-size-96 .shape-icon img {
	max-width: 96px;
	max-height: 96px;
}

.shape-list li {
	border: 1px solid #fff;
	float: left;
	font-size: 0.7em;
	line-height: 1.3em;
	padding: 6px 8px;
	text-align: center;
	width: 25%;
}

.shape-list.shape-icon-size-96 li {
	width: 33.333%;
}

@media (max-width: 410px) {
	.shape-list li {
		width: 33.333%;
	}

	.shape-list.shape-icon-size-96 li {
		width: 50%;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.shape-list li {
		width: 16.666%;
	}

	.shape-list.shape-icon-size-96 li {
		width: 25%;
	}
}

@media (min-width: 992px) {
	.shape-list li {
		width: 16.666%;
	}

	.shape-list.shape-icon-size-96 li {
		width: 20%;
	}
}

.shape-list li:hover {
	background-color: #e4e4e4;
	cursor: pointer;
}

.shape-icon {
	display: block;
	margin: 4px 0;
	position: relative;
}

.shape-name {
	display: block;
	height: 2.6em;
	overflow: hidden;
	text-align: center;
	word-wrap: break-word;
}

#shape-preview {
	position: absolute;
	background: #fff;
	display: none;
	box-shadow: 0 0 10px #666;
}

.root-category-details {
	clear: both;
	font-size: 16px;
	line-height: 140%;
	list-style: none outside none;
	margin-top: 25px;
	margin-bottom: 30px;
	padding-left: 0;
}

.root-category-details li:before {
	color: #506a85;
	content: "";
	font-family: "Glyphicons Halflings";
	font-size: 14px;
	margin-right: 8px;
}
.root-category-details li.count:before {
	content: "\2a";
}

.root-category-details li.author:before {
	content: "\270f";
}

.root-category-details li.license:before {
	content: "\e022";
}

.root-category-details li.tags:before {
	content: "\e041";
}

/*-------------------*/
/* 3.8 Account Pages */
/*-------------------*/

/* Input box (for login and lost/reset password pages) */

.input-box {
	background: #f5f7fa;
	padding: 10px 30px;
	border: 1px solid #e6e9ed;
	border-bottom-width: 2px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.input-box h2 {
	font-size: 22px;
}

.input-box p {
	margin-top: 20px;
	margin-bottom: 20px;
}

.input-box a.forgot-password-link {
	font-size: 0.8em;
	font-style: italic;
}

.input-box .btn {
	margin-top: 10px;
}

/* Invoices table */

.table-invoices {
	font-size: 16px;
}

/* Users table */

.table-users {
	font-size: 16px;
}

.table-users .name-col {
	width: 35%;
}

.table-users .email-col {
	width: 35%;
}

.table-users .access-rights-col {
	width: 30%;
}

.table-users .actions-col {
	white-space: nowrap;
}

.table-users a.btn-delete, .table-users a.btn-edit {
	opacity: 0;
	font-size: 1.1em;
}

.table-users a.btn-delete {
	margin-right: 5px;
}

.table-users tr:hover a {
	opacity: 1;
}

/* Subscription page */

.plans {
	margin-bottom: 20px;
}

.plans .radio {
	margin-top: 0;
	margin-bottom: 0;
}

/*----------------*/
/* 3.9 Error Page */
/*----------------*/

#error-image {
	margin-top: 20px;
	margin-bottom: 40px;
}