@charset "utf-8";
@import "font-awesome.min.css";
@import "et-line.css";

@font-face {
	font-family: 'Roboto';
	src: url(../fonts/Roboto-Light.ttf) format("truetype")
}

@font-face {
	font-family: 'RobotoB';
	src: url(../fonts/Roboto-Medium.ttf) format("truetype")
}

@font-face {
	font-family: 'RobotoR';
	src: url(../fonts/Roboto-Regular.ttf) format("truetype")
}

.robotor {
	font-family: 'RobotoR';
	font-weight: unset !important
}

.robotob {
	font-family: 'RobotoB';
	font-weight: unset !important
}

/* ==============================
   Common styles
   ============================== */
a {
	color: #111;
	text-decoration: underline;
}

a:hover {
	color: #888;
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1.3em;
	line-height: 1.4;
	font-weight: 400;

}

h1,
.h1 {
	font-size: 32px;
}

h2,
.h2 {
font-size: 28px;
}

h3,
.h3 {
	font-size: 24px;
}

h4,
.h4 {
	font-size: 18px;
}

h5,
.h5 {
	font-size: 14px;
}

h6,
.h6 {
	font-size: 12px;
}

.relative {
	position: relative;
}

.hidden {
	display: none;
}

.stick-fixed {
	position: fixed !important;
	top: 0;
	left: 0;
}

.clearlist,
.clearlist li {
	list-style: none;
	padding: 0;
	margin: 0;
	background: none;
}

.full-wrapper {
	margin: 0 2%;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.container-fluid {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	scroll-behavior: auto;
}

html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
}

.page {
	overflow: hidden;
}

.body-masked {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff url(../images/loader.gif) no-repeat center center;
	z-index: 100000;
}

.mask-delay {
	-webkit-animation-delay: 0.75s;
	-moz-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

.mask-speed {
	-webkit-animation-duration: 0.25s !important;
	-moz-animation-duration: 0.25s !important;
	animation-duration: 0.25s !important;
}

iframe {
	border: none;
}

a,
b,
div,
ul,
li {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-moz-outline-: none;
}

a:focus:not(.focus-visible),
a:active,
section:focus,
div:active,
div:focus {
	-moz-outline: none;
	outline: none;
}

a:focus.focus-visible,
button:focus.focus-visible,
div:focus.focus-visible {
	-moz-outline: 2px dotted #36a367 !important;
	outline: 2px dotted #36a367 !important;
	outline-offset: 0 !important;
}

img:not([draggable]),
embed,
object,
video {
	width: 100%;
	height: auto;
}

/* ==============================
   Page loader
   ============================== */

.page-loader {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fefefe;
	z-index: 100000;
}

.loader {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 1px solid rgba(0, 0, 0, 0.5);

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	-webkit-animation: spinner 700ms infinite linear;
	-moz-animation: spinner 700ms infinite linear;
	-ms-animation: spinner 700ms infinite linear;
	-o-animation: spinner 700ms infinite linear;
	animation: spinner 700ms infinite linear;

	will-change: transform;

	z-index: 100001;
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* ==============================
   Typography
   ============================== */

body {
	color: #111;
	font-size: 14px;
	font-family: 'Roboto';
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: #111;
	text-decoration: underline;
}

a:hover {
	color: #888;
	text-decoration: underline;
}

/* ==============================
   Buttons
   ============================== */

.btn-mod,
a.btn-mod {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 4px 13px;
	color: #fff;
	background: rgba(34, 34, 34, .9);
	border: 2px solid transparent;
	font-size: 11px;

	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus {
	color: rgba(255, 255, 255, .85);
	background: rgba(0, 0, 0, .7);
	text-decoration: none;
	outline: none;
	border-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-mod:active {
	cursor: pointer !important;
	outline: none !important;
}

.btn-mod.btn-small {
	height: auto;
	padding: 6px 17px;
	font-size: 11px;
	letter-spacing: 1px;
}

.btn-mod.btn-medium {
	height: auto;
	padding: 8px 37px;
	font-size: 12px;
}

.btn-mod.btn-large {
	height: auto;
	padding: 12px 45px;
	font-size: 13px;
}

.btn-mod.btn-glass {
	color: rgba(255, 255, 255, .75);
	background: rgba(0, 0, 0, .40);
}

.btn-mod.btn-border {
	color: #151515;
	border: 2px solid #151515;
	background: transparent;
}

.btn-mod.btn-blue {
	color: #ffffff;
	background: #212d89;
}

.btn-mod.btn-color {
	color: #fff;
	background: #e41919;
}

/* Scroll down icon */

@-webkit-keyframes scroll-down-anim {
	0% {
		bottom: 2px;
	}

	50% {
		bottom: 7px;
	}

	100% {
		bottom: 2px;
	}
}

@-moz-keyframes scroll-down-anim {
	0% {
		bottom: 2px;
	}

	50% {
		bottom: 7px;
	}

	100% {
		bottom: 2px;
	}
}

@-o-keyframes scroll-down-anim {
	0% {
		bottom: 2px;
	}

	50% {
		bottom: 7px;
	}

	100% {
		bottom: 2px;
	}
}

@keyframes scroll-down-anim {
	0% {
		bottom: 2px;
	}

	50% {
		bottom: 7px;
	}

	100% {
		bottom: 2px;
	}
}

.scroll-down {
	width: 40px;
	height: 40px;
	margin-left: -20px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	text-align: center;
	text-decoration: none;

	-webkit-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);

}

.scroll-down:before {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	margin: 0 0 0 -10px;
	position: absolute;
	bottom: 0;
	left: 50%;
	background: #fff;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);

	z-index: 1;
}

.scroll-down:hover:before {
	opacity: .6;
}

.scroll-down-icon {
	display: block;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	position: absolute;
	left: 50%;
	bottom: 4px;
	color: #111;
	font-size: 15px;

	-webkit-animation: scroll-down-anim 1s infinite;
	-moz-animation: scroll-down-anim 1s infinite;
	-o-animation: scroll-down-anim 1s infinite;
	animation: scroll-down-anim 1s infinite;


	z-index: 2;
}

/* ==============================
   Classic menu bar
   ============================== */

/* Logo (in navigation panel)*/

.nav-logo-wrap {
	float: left;
	margin-right: 20px;
}

.nav-logo-wrap .logo {
	display: flex;
	align-items: center;
	/*	max-width: 118px;*/
	height: 75px;

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-logo-wrap .logo img {
	max-height: 100%;
}

.nav-logo-wrap .logo:before,
.nav-logo-wrap .logo:after {
	display: none;
}

.logo,
a.logo:hover {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-decoration: none;
	color: rgba(0, 0, 0, .9);
}

/*
 * Desktop nav
 */

.main-nav {
	width: 100%;
	height: 75px !important;
	position: relative;
	top: 0;
	left: 0;
	text-align: left;
	background: white;

	-webkit-box-shadow: 0 0 0 2px #d1d1d1;
	-moz-box-shadow: 0 0 0 2px #d1d1d1;
	box-shadow: 0 0 0 2px #d1d1d1;

	z-index: 1030;

	-webkit-transition: height 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: height 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: height 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: height 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: height 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.small-height {
	height: 55px !important;
}

.small-height .inner-nav ul li a {
	height: 55px !important;
	line-height: 55px !important;
}

.inner-nav {
	position: relative;
	float: right;
}

.inner-nav ul {
	float: right;
	margin: auto;
	font-size: 11px;

	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
}

.inner-nav ul li {
	float: left;
	margin-left: 30px;
	position: relative;
}

.inner-nav ul li a {
	color: #777;
	letter-spacing: 2px;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.inner-nav ul li a:hover,
.inner-nav ul li a.active {
	color: #000;
	text-decoration: none;
}

/* Menu sub */

.mn-sub {
	display: none;
	width: 200px;
	position: absolute;
	top: 102%;
	left: 0;
	padding: 0;
	background: white;
	box-shadow: 0 0 0 2px #e2e2e2;
}

.mn-sub li {
	display: block;
	width: 100%;
	margin: 0 !important;
}

.inner-nav ul li .mn-sub li a {
	display: block;
	width: 100%;
	height: auto !important;
	line-height: 1.3 !important;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 8px 12px;
	font-size: 11px;
	text-align: left;
	text-transform: none;
	border-left: none;
	border-right: none;
	letter-spacing: 0;
	outline-offset: -2px !important;
	cursor: pointer;
	text-transform: uppercase;
}

.mobile-on .mn-has-multi>li:last-child>a {
	border-bottom: 1px solid rgba(255, 255, 255, .065) !important;
}

.mn-sub li a:hover,
.inner-nav ul li .mn-sub li a:hover,
.mn-sub li a.active {
	background: #e6e6e6;
	color: black !important;
}

.mn-sub li ul {
	left: 100%;
	right: auto;
	top: 0;
	border-left: 1px solid rgba(255, 255, 255, .07);
}

.inner-nav>ul>li:last-child .mn-sub,
.inner-nav li .mn-sub.to-left {
	left: auto;
	right: 0;
}

.inner-nav>ul>li:last-child .mn-sub li ul,
.inner-nav>li:last-child .mn-sub li ul,
.inner-nav li .mn-sub li ul.to-left {
	left: auto;
	right: 100%;
	top: 0;
	border-left: none;
	border-right: 1px solid rgba(255, 255, 255, .07);
}

.mobile-on .inner-nav li:last-child .mn-sub li ul {
	left: auto;
	right: auto;
	top: 0;
}

.mn-wrap {
	padding: 8px;
}

/* Menu sub multi */

.mn-has-multi {
	width: auto !important;
	padding: 15px;
	text-align: left;
	white-space: nowrap;
}

.mn-sub-multi {
	width: 190px !important;
	overflow: hidden;
	white-space: normal;
	float: none !important;
	display: inline-block !important;
	vertical-align: top;
}

.mn-sub-multi>ul {
	width: auto;
	margin: 0;
	padding: 0;
	float: none;
}

.mn-group-title {

	text-transform: uppercase;
	color: #fff !important;
}

.mn-group-title:hover {
	background: none !important;
}

.mobile-on .mn-sub-multi>ul {
	left: auto;
	right: auto;
	border: none;
}

.mobile-on .mn-sub-multi {
	display: block;
	width: 100% !important;
}

.mobile-on .mn-sub-multi>ul>li:last-child>a {
	border: none !important;
}

.mobile-on .mn-sub:not(.mn-has-multi)>li:last-child>a {
	border: none !important;
}

.mobile-on .mn-sub-multi:last-child>ul {
	border-bottom: none !important;
}

/*
 * Mobile nav
 */

.mobile-on .desktop-nav {
	display: none;
	width: 100%;
	position: absolute;
	top: 102%;
	left: 0;
	padding: 0 15px;

	z-index: 100;
}

.mobile-on .full-wrapper .desktop-nav {
	padding: 0;
}

.mobile-on .desktop-nav ul {
	width: 99.5%;
	float: none;
	background: white;
	position: relative;
	overflow-x: hidden;
	box-shadow: 0 0 0 2px #d1d1d1;
}

.mobile-on .desktop-nav>ul {
	overflow-y: auto;
}

.mobile-on .desktop-nav ul li {
	display: block;
	float: none !important;
	overflow: hidden;
}

.mobile-on .desktop-nav ul li ul {
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-on .desktop-nav ul li a {
	display: block;
	width: 100%;
	height: 38px !important;
	line-height: 38px !important;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	text-align: left;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid rgba(255, 255, 255, .065);
	color: #999;
	letter-spacing: 1px;
	cursor: pointer;
}

.mobile-on .desktop-nav ul li a:hover,
.mobile-on .desktop-nav ul li a.active {
	background: rgb(230, 230, 230);
	color: black;
}

.mobile-on .desktop-nav ul li a:focus {
	outline-offset: -2px !important;
}

/* Menu sub */

.mobile-on .mn-has-sub>.fa {
	display: block;
	width: 18px;
	height: 18px;
	font-size: 14px;
	line-height: 16px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -8px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.mobile-on .js-opened>.mn-has-sub>.fa {
	border-color: rgba(255, 255, 255, .4);
	line-height: 14px;
}

.mobile-on .inner-nav li {
	margin: 0 !important;
}

.mobile-on .mn-sub {
	display: none;
	opacity: 0;
	position: relative;
	left: 0 !important;
	right: 0;
	top: 0;
	bottom: 0;
	border-left: none !important;
	border-right: none !important;
	border-top: none;
	z-index: 10;
}

.mobile-on .mn-sub li {
	padding-left: 10px;
}

.inner-nav li.js-opened .mn-sub {
	opacity: 1;
}

.mobile-nav {
	display: none;
	float: right;
	vertical-align: middle;
	font-size: 11px;

	text-transform: uppercase;
	border-left: 2px solid #d1d1d1;
	border-right: 2px solid #d1d1d1;
	cursor: pointer;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);

	-webkit-transition-property: background, color, height, line-height;
	-moz-transition-property: background, color, height, line-height;
	-o-transition-property: background, color, height, line-height;
	transition-property: background, color, height, line-height;
}

.mobile-nav:hover,
.mobile-nav.active {
	background: #fff;
	color: #777;
}

.mobile-nav:active {
	-webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .05) inset;
	-moz-box-shadow: 0 0 35px rgba(0, 0, 0, .05) inset;
	box-shadow: 0 0 35px rgba(0, 0, 0, .05) inset;
}

.no-js .mobile-nav {
	width: 55px;
	height: 55px;
}

.mobile-on .mobile-nav {
	display: table;
}

.mobile-nav .fa {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 21px;
}

/* Menu sub multi */

.mobile-on .mn-has-multi {
	width: auto;
	padding: 0;
	text-align: left;
	white-space: normal;

}

.mobile-on .mn-sub {
	width: 100%;
	float: none;
	position: relative;
	overflow-x: hidden;
}

/* 
 * Centered menu 
 */

.mn-centered {
	text-align: center;
}

.mn-centered .inner-nav {
	float: none;
}

.mn-centered .inner-nav>ul {
	float: none;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

.mn-centered .inner-nav>ul>li:first-child {
	margin-left: 0;
}

.mn-centered .mobile-nav {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

/* 
 * Aligned left menu 
 */

.mn-align-left .inner-nav {
	float: none;
	width: 100%;
}

.mn-align-left .inner-nav>ul {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

.mn-align-left .inner-nav>ul>li:first-child {
	margin-left: 0;
}

.mn-align-left .mobile-nav {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

/* ==============================
   Sections styles
   ============================== */

/*
 * Common
 */

.page-section,
.small-section {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	padding: 60px 0;
}

.small-section {
	padding: 70px 0;
}

.small-title {
	padding: 0;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	font-size: 18px;

	letter-spacing: 0.3em;
}

.section-icon {
	margin-bottom: 7px;
	text-align: center;
	font-size: 32px;
}

.small-title .serif {
	text-transform: none;

}

.small-title.white {
	color: #fff;
}

.bg-scroll {
	background-attachment: scroll !important;
}

.bg-pattern {
	background-repeat: repeat;
	background-size: auto;
}

.bg-pattern-over:before,
.bg-pattern-over .YTPOverlay:after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: repeat;
	background-size: auto;
	background-image: url(../images/pattern-bg-2.png);
}

.bg-gray {
	background-color: #f4f4f4;
}

.bg-gray-lighter {
	background-color: #f8f8f8;
}

.bg-dark,
.bg-dark-lighter,
.bg-dark-alfa-30,
.bg-dark-alfa-50,
.bg-dark-alfa-70,
.bg-dark-alfa-90,
.bg-dark-alfa,
.bg-color,
.bg-color-lighter,
.bg-color-alfa-30,
.bg-color-alfa-50,
.bg-color-alfa-70,
.bg-color-alfa-90,
.bg-color-alfa {
	color: #fff;
}

.bg-dark a,
.bg-dark-lighter a,
.bg-dark-alfa-30 a,
.bg-dark-alfa-50 a,
.bg-dark-alfa-70 a,
.bg-dark-alfa-90 a,
.bg-dark-alfa a,
.bg-color a,
.bg-colorlighter a,
.bg-color-alfa-30 a,
.bg-color-alfa-50 a,
.bg-color-alfa-70 a,
.bg-color-alfa-90 a,
.bg-color-alfa a {
	color: rgba(255, 255, 255, .8);
	padding-bottom: 3px;
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.bg-dark a:hover,
.bg-dark-lighter a:hover,
.bg-dark-alfa-30 a:hover,
.bg-dark-alfa-50 a:hover,
.bg-dark-alfa-70 a:hover,
.bg-dark-alfa-90 a:hover,
.bg-dark-alfa a:hover,
.bg-color a:hover,
.bg-color-lighter a:hover,
.bg-color-alfa-30 a:hover,
.bg-color-alfa-50 a:hover,
.bg-color-alfa-70 a:hover,
.bg-color-alfa-90 a:hover,
.bg-color-alfa a:hover {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

.bg-color .text,
.bg-color-lighter .text,
.bg-color-alfa-30 .text,
.bg-color-alfa-50 .text,
.bg-color-alfa-70 .text,
.bg-color-alfa-90 .text,
.bg-color-alfa .text,
.bg-color .section-text,
.bg-color-lighter .section-text,
.bg-color-alfa-30 .section-text,
.bg-color-alfa-50 .section-text,
.bg-color-alfa-70 .section-text,
.bg-color-alfa-90 .section-text,
.bg-color-alfa .section-text {
	color: rgba(255, 255, 255, .75);
}

.bg-color .white,
.bg-color-lighter .white,
.bg-color-alfa-30 .white,
.bg-color-alfa-50 .white,
.bg-color-alfa-70 .white,
.bg-color-alfa-90 .white,
.bg-color-alfa .white {
	color: #fff;
}

.bg-dark {
	background-color: #111 !important;
}

.bg-dark-lighter {
	background-color: #252525;
}

.bg-orange {
	background-color: #f47631 !important;
}

.bg-yellow {
	background-color: #ffce02 !important;
}

.bg-cyan {
	background-color: #27c5c3 !important;
}

.bg-green {
	background-color: #58bf44 !important;
}

.bg-blue {
	background-color: #43a5de !important;
}

.bg-purple {
	background-color: #375acc !important;
}

.bg-red {
	background-color: #e13939 !important;
}

/* 
 * Headings styles
 */

.hs-wrap {
	max-width: 570px;
	margin: 0 auto;
	padding: 47px 30px 53px;
	position: relative;
	text-align: center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, .5);
}

.hs-wrap-1 {
	max-width: 350px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.hs-line-1 {
	margin-top: 0;
	position: relative;
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 51px;
	color: #fff;
	opacity: .9;
}

.hs-line-2 {
	margin-top: 0;
	position: relative;
	font-size: 72px;
	text-transform: uppercase;
	letter-spacing: 0.085em;
	line-height: 1.3;
	color: rgba(255, 255, 255, .85);
}

.hs-line-3 {
	margin-top: 0;
	position: relative;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, .7);
}

.hs-line-4 {
	margin-top: 0;
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, .85);
}

.hs-line-5 {
	margin-top: 0;
	position: relative;
	font-size: 62px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	opacity: .85;
}

.hs-line-6 {
	margin-top: 0;
	position: relative;
	font-size: 19px;
	line-height: 1.2;
	opacity: .35;
}

.hs-line-6.no-transp {
	opacity: 1;
}

.hs-line-7 {
	margin-top: 0;
	position: relative;
	font-size: 64px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.2;
}

.hs-line-8 {
	margin-top: 0;
	position: relative;
	font-size: 16px;
	letter-spacing: 0.3em;
	line-height: 1.2;
	opacity: .75;
}

.hs-line-8.no-transp {
	opacity: 1;
}

.hs-line-9 {
	margin-top: 0;
	position: relative;
	font-size: 96px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.2;
}

.hs-line-10 {
	margin-top: 0;
	display: inline-block;
	position: relative;
	padding: 15px 24px;
	background: rgba(0, 0, 0, .75);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, .85);
}

.hs-line-10>span {
	margin: 0 10px;
}

.hs-line-10.highlight {
	background: #e41919;
	opacity: .65;
}

.hs-line-10.transparent {
	background: none;
	color: #aaa;
	padding: 0;
}

.hs-line-11 {
	margin-top: 0;
	position: relative;
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	line-height: 1.8;
	opacity: .9;
}

.hs-line-12 {
	margin-top: 0;
	position: relative;
	font-size: 80px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.4em;
}

.hs-line-13 {
	margin-top: 0;
	position: relative;
	font-size: 96px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.3em;
}

.hs-line-14 {
	margin-top: 20px !important;
	position: relative;
	font-size: 3.5vw !important;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.rstitle {
	font-size: 2vw !important;
}

.rstitle-sub {
	font-size: 1.5vw !important;
	line-height: normal !important;
}

@media (max-width: 576px) {
	.hs-line-14 {
		font-size: 4.5vw !important;
	}

	.rstitle {
		font-size: 2.5vw !important;
	}

	.rstitle-sub {
		margin-top: 5px !important;
		font-size: 2vw !important;
	}
}

.hs-line-15 {
	margin-top: 0;
	position: relative;
	font-size: 36px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	line-height: 1.3;
}

.no-transp {
	opacity: 1 !important;
}

.fullwidth-galley-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 25;
}

/* ==============================
   Contact section
   ============================== */

.contact-item {
	position: relative;
	padding-left: 44px;
	color: #444;
	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.contact-item a {
	color: #444;
	text-decoration: none;
}

.contact-item a:hover {
	color: #000;
	text-decoration: none;
}

.ci-icon {
	width: 23px;
	height: 23px;
	position: absolute;
	top: 10px;
	left: 3px;
	color: #fff;
	text-align: center;
	line-height: 23px;
}

.ci-icon:before {
	content: " ";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

}

.ci-icon i,
.ci-icon span {
	position: relative;
}

.ci-title {
	margin-bottom: 1px;
	color: #777;
	font-size: 12px;

	text-transform: uppercase;
	letter-spacing: 0.3em;
}

.ci-text {
	font-size: 15px;

}

/* ==============================
   Footer
   ============================== */

.footer {
	text-align: center;
	font-size: 12px;
}

.footer a {
	color: #888;
	text-decoration: none;

	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.footer a:hover {
	color: #111;
	text-decoration: underline;
}

.footer-copy {
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5em;
}

.footer-made {
	font-size: 11px;
	color: #999;
}

.footer-social-links {
	font-size: 14px;
}

.footer-social-links a {
	width: 25px;
	height: 25px;
	line-height: 25px !important;
	position: relative;
	margin: 0 6px;
	text-align: center;
	display: inline-block;
	color: #111;

	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.footer-social-links a i,
.footer-social-links a span[class^=icon] {
	position: relative;
	top: 0;
	left: 0;
}

.footer-social-links a:before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #111;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);

}

.footer-social-links a:hover {
	color: #fff;
}

.footer-social-links a:hover:before {
	background: #111;
}

a.link-to-top {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: rgba(0, 0, 0, .2);
	font-size: 48px;
}

/************* Cube *******************/
.cubed {
	top: 3px;
	position: absolute;
	-webkit-perspective: 160px;
	-moz-perspective: 160px;
	-o-perspective: 160px;
	perspective: 160px;
	height: 70px;
	width: 70px;
}

#cube {
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-100px);
	-moz-transform: translateZ(-100px);
	-o-transform: translateZ(-100px);
	transform: translateZ(-100px);
}

#cube.spinning {
	-webkit-animation: spinCubeWebkit 8s infinite ease-in-out;
	-moz-animation: spinCubeMoz 8s infinite ease-in-out;
	-o-animation: spinCubeO 8s infinite ease-in-out;
	animation: spinCube 8s infinite ease-in-out;
}

@keyframes spinCubeWebkit {
	0% {
		-webkit-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
	}

	100% {
		-webkit-transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
	}
}

@-webkit-keyframes spinCubeWebkit {
	0% {
		-webkit-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
	}

	100% {
		-webkit-transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
	}
}

@keyframes spinCubeMoz {
	0% {
		-moz-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
	}

	100% {
		-moz-transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
	}
}

@-moz-keyframes spinCubeMoz {
	0% {
		-moz-transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
	}

	100% {
		-moz-transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
	}
}

@keyframes spinCube {
	0% {
		transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
	}

	100% {
		transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
	}
}

#cube figure {
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 1px #fff;
	color: white;
	text-align: center;
	line-height: 1;
}

#cube.panels-backface-invisible figure {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

#cube .frontx,
#cube .backx,
#cube .rightx,
#cube .leftx,
#cube .topx,
#cube .bottomx {
	background: hsl(0, 0%, 100%);
}

/* navbar logo */
#cube .frontx {
	-webkit-transform: translateZ(35px);
	-moz-transform: translateZ(35px);
	-o-transform: translateZ(35px);
	transform: translateZ(35px);
}

#cube .backx {
	-webkit-transform: rotateX(-180deg) translateZ(35px);
	-moz-transform: rotateX(-180deg) translateZ(35px);
	-o-transform: rotateX(-180deg) translateZ(35px);
	transform: rotateX(-180deg) translateZ(35px);
}

#cube .rightx {
	-webkit-transform: rotateY(90deg) translateZ(35px);
	-moz-transform: rotateY(90deg) translateZ(35px);
	-o-transform: rotateY(90deg) translateZ(35px);
	transform: rotateY(90deg) translateZ(35px);
}

#cube .leftx {
	-webkit-transform: rotateY(-90deg) translateZ(35px);
	-moz-transform: rotateY(-90deg) translateZ(35px);
	-o-transform: rotateY(-90deg) translateZ(35px);
	transform: rotateY(-90deg) translateZ(35px);
}

#cube .topx {
	-webkit-transform: rotateX(90deg) translateZ(35px);
	-moz-transform: rotateX(90deg) translateZ(35px);
	-o-transform: rotateX(90deg) translateZ(35px);
	transform: rotateX(90deg) translateZ(35px);
}

#cube .bottomx {
	-webkit-transform: rotateX(-90deg) translateZ(35px);
	-moz-transform: rotateX(-90deg) translateZ(35px);
	-o-transform: rotateX(-90deg) translateZ(35px);
	transform: rotateX(-90deg) translateZ(35px);
}

/************************** Cube End ****************************/


/**************************** Timeline ****************************/
.main-timeline:after {
	content: '';
	display: block;
	clear: both;
}

.main-timeline .timeline {
	width: 50%;
	padding: 50px 0 20px;
	margin: 0 0 0 5px;
	float: right;
}

.main-timeline .timeline-content {
	background: #fff;
	padding: 20px;
	border: 2px solid #02ABA6;
	display: block;
	position: relative;
}

.main-timeline .timeline-content:hover {
	text-decoration: none;
}

.main-timeline .timeline-icon {
	color: #ffffff;
	background-color: #02ABA6;
	font-size: 50px;
	text-align: center;
	line-height: 63px;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	position: absolute;
	top: -34px;
	left: -50px;
}

.main-timeline .title {
	color: #555;
	font-size: 22px;
	text-transform: capitalize;
	margin: 0 0 15px 40px;
}

.main-timeline .description {
	color: #717171;
	font-size: 13px;
	letter-spacing: 1px;
	margin: 0;
	text-align: justify;
}

.main-timeline .timeline-year {
	color: #02ABA6;
	background-color: #fff;
	font-size: 40px;
	line-height: 30px;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	top: -16px;
	padding-right: 3px;
}

.main-timeline .timeline:nth-child(even) {
	float: left;
	margin: 0 5px 0 0;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
	left: auto;
	right: -50px;
}

.main-timeline .timeline:nth-child(even) .title {
	margin: 0 40px 15px 0;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-content {
	border-color: #CB256F;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-icon {
	background-color: #CB256F;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-year {
	color: #CB256F;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-content {
	border-color: #FE7C02;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-icon {
	background-color: #FE7C02;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-year {
	color: #FE7C02;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-content {
	border-color: #02A7D5;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-icon {
	background-color: #02A7D5;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-year {
	color: #02A7D5;
}

@media screen and (max-width:767px) {

	.main-timeline .timeline,
	.main-timeline .timeline:nth-child(even) {
		width: 100%;
		padding: 40px 0 15px;
		margin: 0 0 15px 0;
	}

	.main-timeline .timeline-content {
		padding: 50px 20px 30px;
	}

	.main-timeline .timeline-icon {
		font-size: 40px;
		line-height: 73px;
		height: 80px;
		width: 80px;
		left: 15px;
		top: -40px;
	}

	.main-timeline .timeline:nth-child(even) .timeline-icon {
		right: 15px;
	}

	.main-timeline .title,
	.main-timeline .timeline:nth-child(even) .title {
		font-size: 20px;
		margin: 0 0 7px;
	}

	.main-timeline .timeline-year {
		font-size: 35px;
	}
}

/**************************** End Timeline ****************************/

.border {
	border: 2px solid #d1d1d1 !important;
}

.filecss {
	font-size: 1.5rem;
	border: 2px solid #d1d1d1;
	padding: 0 0.5rem;
	cursor: pointer
}

.tp-arr-imgholder {
	border: 2px solid rgba(255, 255, 255, 0.42) !important;
}

.tp-arr-titleholder {
	border: 2px solid rgba(255, 255, 255, 0.42) !important;
	border-top: none !important;
}

.btn,
.modal-content {
	border-radius: 0 !important
}

.srcrop {
	position: fixed;
	left: 0;
	right: 0;
	top: 15px;
	margin: auto;
	max-width: 500px;
	z-index: 9999;
	display: none;
}

.alert-lights {
	background: white;
	box-shadow: 0 0 0 1px #d4d9de;
}

@keyframes animate {
	0% {
		background-position: -500px 0
	}

	100% {
		background-position: 500px 0
	}

}

.runpl {
	position: relative;
	animation-name: animate;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	background: linear-gradient(to right, #ffffff 8%, #969696 18%, #ffffff 33%);
	background: -webkit-gradient(linear, left top, right top, color-stop(8%, #ffffff), color-stop(18%, #969696), color-stop(33%, #ffffff));
	background: -webkit-linear-gradient(left, #ffffff 8%, #f4f4f4 18%, #ffffff 33%);
	background-size: 1000px 500px;
	-webkit-background-size: 1000px 500px;
}

.bcolor {
	color: #717171 !important;
}

.filecoach {
	display: none;
}

/*************Tabledata*************/

.datatable {
	background: white;
	border-collapse: collapse;
	margin: 1.25em 0 0;
	width: 100%;
}

.datatable tr,
.datatable th,
.datatable td {
	border: none;
	border-bottom: 1px solid #555555;
	font-weight: normal;
}

.datatable th,
.datatable td {
	padding: 10px 12px;
	text-align: left;
}

.datatable th {
	background: #ffffff;
	color: #555555;
	text-transform: uppercase;
}

.datatable tr td {
	background: #ffffff;
	color: #999999;
}

.datatable tr:nth-of-type(2n+2) td {
	background: #f8f8f8;
}

.datatable.bt tfoot th,
.datatable.bt tfoot td,
.datatable.bt tbody td {
	padding: 0;
}

.datatable.bt tfoot th:before,
.datatable.bt tfoot td:before,
.datatable.bt tbody td:before {
	padding: 2px 10px;
}

.datatable.bt tfoot th .bt-content,
.datatable.bt tfoot td .bt-content,
.datatable.bt tbody td .bt-content {
	display: grid;
	padding: 2px 5px;
}

.datatable.bt tfoot th:first-of-type:before,
.datatable.bt tfoot th:first-of-type .bt-content,
.datatable.bt tfoot td:first-of-type:before,
.datatable.bt tfoot td:first-of-type .bt-content,
.datatable.bt tbody td:first-of-type:before,
.datatable.bt tbody td:first-of-type .bt-content {
	padding: 8px;
}

.datatable.bt tfoot th:last-of-type:before,
.datatable.bt tfoot th:last-of-type .bt-content,
.datatable.bt tfoot td:last-of-type:before,
.datatable.bt tfoot td:last-of-type .bt-content,
.datatable.bt tbody td:last-of-type:before,
.datatable.bt tbody td:last-of-type .bt-content {
	padding-bottom: 20px;
}

.datatable.bt tfoot th::before,
.datatable.bt tfoot td::before,
.datatable.bt tbody td::before {
	content: attr(data-th);
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media only screen and (max-width: 900px) {

	.datatable tbody tr td {
		width: auto !important
	}

	.datatable.two-axis tr td:first-of-type,
	.datatable.two-axis tr:nth-of-type(2n+2) td:first-of-type,
	.datatable.two-axis tr td:first-of-type:before {
		color: #555555;
		font-weight: normal;
	}

	.datatable.two-axis tr td:first-of-type {
		border-bottom: 1px solid #555555;
	}

	.datatable tr,
	.datatable th,
	.datatable td {
		border-top: 1px solid #555555;
	}

	.datatable.bt tfoot th,
	.datatable.bt tfoot td,
	.datatable.bt tbody td {
		border-bottom: 1px solid #c1c1c1;
	}
}

.btn:focus {
	box-shadow: none;
}