/*------------------------------------------Bsgin Main settings---------------------------------------*/
body{
font-family:Helvetica, sans-serif;
}
#navigation-box {
	margin: 50px 0px 20px;
	padding: 10px;
	background-color:#212c43;
	min-height:60px;
/*	position:relative;*/
}
#navigation-toggle {
	display: none;
	float: right;
	width: 50px;
	height: 50px;
	background-color: #7ccbfc;
	-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	-moz-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	border: solid 1px #7ccbfc;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: linear-gradient(to top, rgba(0,0,0,.05), rgba(2,2,2,0));
	-o-transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
	-moz-transition: all 500ms ease-in;
	transition: all 500ms ease-in;
}

#navigation-toggle.open-menu {
	background-color: #f29090;
	-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	-moz-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
	border: solid 1px #f29090;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,.05), rgba(2,2,2,0));
	background-image: linear-gradient(to top, rgba(0,0,0,.05), rgba(2,2,2,0));
}


.menu-icon {
	display: block;
	background: url(../images/close-open-menu-icon.png) 0 0 no-repeat;
	width: 20px;
	height: 22px;
	margin: 15px auto 0;
	-o-transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
	-moz-transition: all 500ms ease-in;
	transition: all 500ms ease-in;
}

.open-menu .menu-icon {
	background: url(../images/close-open-menu-icon.png) 0 100% no-repeat;;
}



ul#navigation {
	float: right;
	min-width:200px;
}

ul#navigation li {
	position: relative;
	padding: 4px;
	border-bottom: 1px solid #1b253b;
}

ul#navigation li:last-child {
	border: none;
}

ul#navigation > li {
	padding: 0;
	float: left;
	line-height: 36px;
	min-height: 36px;
	border: none;
	display: block;
}

ul#navigation a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 7px 0 8px;
}

ul#navigation li:hover ul {
	display: block;
	-webkit-animation: anime 500ms;
	-moz-animation: anime 500ms;
	-o-animation: anime 500ms;
	animation: anime 500ms;

}

/*------------------------------------------End Main settings---------------------------------------*/
/*------------------------------------------Bsgin Hover settings---------------------------------------*/

@media (min-width: 993px) {
ul#navigation > li {
	padding: 0 15px;

}

ul#navigation > li > ul {
	display: none;
	width: 240px;
	position: absolute;
	padding: 10px;
	top: 45px;
	z-index: 30;
	left: 0;
	background-color:#4C4145;
	z-index:50;
	padding: 17px 25px 15px;
	-webkit-transform-origin: left top;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;

}

ul#navigation li{
	border: none;
}

	@-moz-keyframes anime {
	from {
		opacity: 0;
		-moz-transform: scaleY(0);
		transform: scaleY(0);
	}
	to {
		opacity: 1;
		-moz-transform: scaleY(1);
		transform: scaleY(1);
	}
	}

	@-webkit-keyframes anime {
	from {
		opacity: 0;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	}
	@keyframes anime {
	from {
		opacity: 0;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		transform: scaleY(0);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		transform: scaleY(1);
	}
	}
}

@media (max-width: 992px) {

/*javascript use it*/
ul#navigation.hidden-c{
	display:none;
}
ul#navigation.showen-c{
	display:block;
}
ul#navigation ul.showen-c{
	display:block;
}
ul#navigation ul.hidden-c{
	display:none;
}

/*end*/
#navigation-toggle {
	display: block;
}

ul#navigation {
	display: none;
	float: none;
	padding: 0 15px 15px;
	position: absolute;
	top: 130px;
	right: 11px;
	background: #212c43;
	background: rgba(33,44,67,.8);
}

ul#navigation li{
	border-bottom: 1px solid #1b253b;
}

ul#navigation > li {
	float: none;
	margin-top: 1px;
}

ul#navigation ul{
	position:static;
	background: #2e292e;
	padding: 0 5px;
	display: none;
	width: 200px;
}

ul#navigation li:hover ul {
	display: none;
}

ul#navigation li:hover ul.showen-c {
	display: block;
}



.sub-nav-toggle {
	display:block;
	float:right;
	width:36px;
	height:34px;
	cursor:pointer;
	background:transparent url(../images/components/plus-minus-icon.png) center -34px no-repeat;
	-o-transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
	-moz-transition: all 500ms ease-in;
	transition: all 500ms ease-in;

}

.sub-nav-toggle.plus {
	background:transparent url(../images/components/plus-minus-icon.png) center 10px no-repeat;
}

}
/*------------------------------------------End Media---------------------------------------*/
 a:focus,
 a:active,
 a:hover {
	outline: none;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*Custome mobile nav config*/
@media (max-width: 992px) {
	#navigation-toggle,
	#navigation-toggle.open-menu{
		background: none;
		border: none;
		box-shadow: none;
		position: absolute;
		top: 3px;
		right: 15px;
	}

	.header-wrapper ul#navigation{
		min-width: 250px;
		top: 55px;
		right: 15;
		z-index: 30;
		margin-left: 0;
		background-color: #4C4145;
		padding: 17px 20px 15px;
	}

	ul#navigation li{
		border: none;
	}
}
@CHARSET "UTF-8";
.sbHolder{
	background-color: #2d2d2d;
	border: solid 1px #515151;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	height: 30px;
	position: relative;
	width: 200px;
}
.sbHolder:focus .sbSelector{

}
.sbSelector{
	display: block;
	height: 30px;
	left: 0;
	line-height: 30px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	top: 0;
	width: 170px;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
	color: #EBB52D;
	outline: none;
	text-decoration: none;
}
.sbToggle{
	background: url(../img/select-icons.png) 0 -116px no-repeat;
	display: block;
	height: 30px;
	outline: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
}
.sbToggle:hover{
	background: url(../img/select-icons.png) 0 -167px no-repeat;
}
.sbToggleOpen{
	background: url(../img/select-icons.png) 0 -16px no-repeat;
}
.sbToggleOpen:hover{
	background: url(../img/select-icons.png) 0 -66px no-repeat;
}
.sbHolderDisabled{
	background-color: #3C3C3C;
	border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder{

}
.sbHolderDisabled .sbToggle{

}
.sbOptions{
	background-color: #212121;
	border: solid 1px #515151;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	width: 200px;
	z-index: 1;
	overflow-y: auto;
}
.sbOptions li{
	padding: 0 7px;
}
.sbOptions a{
	border-bottom: dotted 1px #515151;
	display: block;
	outline: none;
	padding: 7px 0 7px 3px;
}
.sbOptions a:link, .sbOptions a:visited{
	color: #ddd;
	text-decoration: none;
}
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus{
	color: #EBB52D;
}
.sbOptions li.last a{
	border-bottom: none;
}
.sbOptions .sbDisabled{
	border-bottom: dotted 1px #515151;
	color: #999;
	display: block;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbGroup{
	border-bottom: dotted 1px #515151;
	color: #EBB52D;
	display: block;
	font-weight: bold;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
	padding-left: 17px;
}
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Layer Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	18/03/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tp-caption.Twitter-Content a,.tp-caption.Twitter-Content a:visited
{
	color:#0084B4!important;
}

.tp-caption.Twitter-Content a:hover
{
	color:#0084B4!important;
	text-decoration:underline!important;
}

.tp-caption.medium_grey,.medium_grey
{
	background-color:#888;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	padding:2px 4px;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.small_text,.small_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:14px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.medium_text,.medium_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.large_text,.large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:40px;
	font-weight:700;
	line-height:40px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_large_text,.very_large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	letter-spacing:-2px;
	line-height:60px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_big_white,.very_big_white
{
	background-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.very_big_black,.very_big_black
{
	background-color:#fff;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat,.modern_medium_fat
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white,.modern_medium_fat_white
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light,.modern_medium_light
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:300;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg,.modern_big_bluebg
{
	background-color:#4e5b6c;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:800;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:3px 10px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_big_redbg,.modern_big_redbg
{
	background-color:#de543e;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:300;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:1px 10px 3px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_small_text_dark,.modern_small_text_dark
{
	border-style:none;
	border-width:0;
	color:#555;
	font-family:Arial;
	font-size:14px;
	line-height:22px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.boxshadow,.boxshadow
{
	/* box-shadow:0 0 20px rgba(0,0,0,0.5); */
}

.tp-caption.black,.black
{
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow,.noshadow
{
	text-shadow:none;
}

.tp-caption.thinheadline_dark,.thinheadline_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.thintext_dark,.thintext_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:16px;
	font-weight:300;
	line-height:26px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largeblackbg,.largeblackbg
{


	background-color:#000;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largepinkbg,.largepinkbg
{


	background-color:#db4360;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largewhitebg,.largewhitebg
{


	background-color:#fff;
	border-radius:0;
	color:#000;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largegreenbg,.largegreenbg
{


	background-color:#67ae73;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.excerpt,.excerpt
{
	background-color:rgba(0,0,0,1);
	border-color:#fff;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:36px;
	font-weight:700;
	height:auto;
	letter-spacing:-1.5px;
	line-height:36px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	white-space:normal!important;
	width:150px;
}

.tp-caption.large_bold_grey,.large_bold_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.medium_thin_grey,.medium_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:30px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.small_thin_grey,.small_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#757575;
	font-family:"Open Sans";
	font-size:18px;
	font-weight:300;
	line-height:26px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.lightgrey_divider,.lightgrey_divider
{
	background-color:rgba(235,235,235,1);
	background-position:initial;
	background-repeat:initial;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:3px;
	text-decoration:none;
	width:370px;
}

.tp-caption.large_bold_darkblue,.large_bold_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_bg_darkblue,.medium_bg_darkblue
{
	background-color:#34495e;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_red,.medium_bold_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_light_red,.medium_light_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:21px;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_bg_red,.medium_bg_red
{
	background-color:#e33a0c;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_orange,.medium_bold_orange
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#f39c12;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	text-decoration:none;
}

.tp-caption.medium_bg_orange,.medium_bg_orange
{
	background-color:#f39c12;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.grassfloor,.grassfloor
{
	background-color:rgba(160,179,151,1);
	border-color:#222;
	border-style:none;
	border-width:0;
	height:150px;
	text-decoration:none;
	width:4000px;
}

.tp-caption.large_bold_white,.large_bold_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_light_white,.medium_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white,.mediumlarge_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white_center,.mediumlarge_light_white_center
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-align:center;
	text-decoration:none;
}

.tp-caption.medium_bg_asbestos,.medium_bg_asbestos
{
	background-color:#7f8c8d;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_light_black,.medium_light_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.large_bold_black,.large_bold_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_darkblue,.mediumlarge_light_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.small_light_white,.small_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:17px;
	font-weight:300;
	line-height:28px;
	padding:0;
	text-decoration:none;
}

.tp-caption.roundedimage,.roundedimage
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.large_bg_black,.large_bg_black
{
	background-color:#000;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:40px;
	font-weight:800;
	line-height:40px;
	padding:10px 20px 15px;
	text-decoration:none;
}

.tp-caption.mediumwhitebg,.mediumwhitebg
{
	background-color:#fff;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	padding:5px 15px 10px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.maincaption,.maincaption
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#212a40;
	font-family:roboto;
	font-size:33px;
	font-weight:500;
	line-height:43px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px,.miami_title_60px
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_subtitle,.miami_subtitle
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:"Source Sans Pro";
	font-size:17px;
	font-weight:400;
	letter-spacing:2px;
	line-height:24px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px,.divideline30px
{
	background:#fff;
	background-color:#fff;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.Miami_nostyle,.Miami_nostyle
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.miami_content_light,.miami_content_light
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px_dark,.miami_title_60px_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#333;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_content_dark,.miami_content_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px_dark,.divideline30px_dark
{
	background-color:#333;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.ellipse70px,.ellipse70px
{
	background-color:rgba(0,0,0,0.14902);
	border-color:#222;
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	cursor:pointer;
	line-height:1px;
	min-height:70px;
	min-width:70px;
	text-decoration:none;
}

.tp-caption.arrowicon,.arrowicon
{
	border-color:#222;
	border-style:none;
	border-width:0;
	line-height:1px;
}

.tp-caption.MarkerDisplay,.MarkerDisplay
{
	background-color:transparent;
	border-color:#000;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	font-family:"Permanent Marker";
	font-style:normal;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Restaurant-Display,.Restaurant-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:120px;
	font-style:normal;
	font-weight:700;
	line-height:120px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Cursive,.Restaurant-Cursive
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Nothing you could do";
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-ScrollDownText,.Restaurant-ScrollDownText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Description,.Restaurant-Description
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Price,.Restaurant-Price
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:30px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Menuitem,.Restaurant-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Furniture-LogoText,.Furniture-LogoText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:160px;
	font-style:normal;
	font-weight:300;
	line-height:150px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Plus,.Furniture-Plus
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	box-shadow:rgba(0,0,0,0.1) 0 1px 3px;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:6px 7px 4px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Title,.Furniture-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:700;
	letter-spacing:3px;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Subtitle,.Furniture-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Gym-Display,.Gym-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:900;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-Subline,.Gym-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-SmallText,.Gym-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:22;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Fashion-SmallText,.Fashion-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-BigDisplay,.Fashion-BigDisplay
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:60px;
	font-style:normal;
	font-weight:900;
	letter-spacing:2px;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-TextBlock,.Fashion-TextBlock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Display,.Sports-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:100;
	letter-spacing:13px;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-DisplayFat,.Sports-DisplayFat
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:900;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Subline,.Sports-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:32px;
	font-style:normal;
	font-weight:400;
	letter-spacing:4px;
	line-height:32px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Instagram-Caption,.Instagram-Caption
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Title,.News-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:70px;
	font-style:normal;
	font-weight:400;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle,.News-Subtitle
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:15px;
	font-style:normal;
	font-weight:300;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle:hover,.News-Subtitle:hover
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,0.65);
	text-decoration:none;
}

.tp-caption.Photography-Display,.Photography-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline,.Photography-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(119,119,119,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover,.Photography-ImageHover
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover:hover,.Photography-ImageHover:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Menuitem,.Photography-Menuitem
{
	background-color:rgba(0,0,0,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-decoration:none;
}

.tp-caption.Photography-Menuitem:hover,.Photography-Menuitem:hover
{
	background-color:rgba(0,255,222,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Textblock,.Photography-Textblock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline-2,.Photography-Subline-2
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2,.Photography-ImageHover2
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Arial;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2:hover,.Photography-ImageHover2:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title,.WebProduct-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(51,51,51,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle,.WebProduct-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Content,.WebProduct-Content
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem,.WebProduct-Menuitem
{
	background-color:rgba(51,51,51,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem:hover,.WebProduct-Menuitem:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title-Light,.WebProduct-Title-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle-Light,.WebProduct-SubTitle-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Content-Light,.WebProduct-Content-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.FatRounded,.FatRounded
{
	background-color:rgba(0,0,0,0.50);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:20px 22px 20px 25px;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.FatRounded:hover,.FatRounded:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Title,.NotGeneric-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:70px;
	font-style:normal;
	font-weight:800;
	line-height:70px;
	padding:10px 0;
	text-decoration:none;
}

.tp-caption.NotGeneric-SubTitle,.NotGeneric-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:13px;
	font-style:normal;
	font-weight:500;
	letter-spacing:4px;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction,.NotGeneric-CallToAction
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction:hover,.NotGeneric-CallToAction:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Icon,.NotGeneric-Icon
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem,.NotGeneric-Menuitem
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem:hover,.NotGeneric-Menuitem:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.MarkerStyle,.MarkerStyle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Permanent Marker";
	font-size:17px;
	font-style:normal;
	font-weight:100;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem,.Gym-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem:hover,.Gym-Menuitem:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0.25);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button,.Newspaper-Button
{
	background-color:rgba(255,255,255,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:13px;
	font-style:normal;
	font-weight:700;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button:hover,.Newspaper-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Subtitle,.Newspaper-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(168,216,238,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title,.Newspaper-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title-Centered,.Newspaper-Title-Centered
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:center;
	text-decoration:none;
}

.tp-caption.Hero-Button,.Hero-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Hero-Button:hover,.Hero-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Video-Title,.Video-Title
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Video-SubTitle,.Video-SubTitle
{
	background-color:rgba(0,0,0,0.35);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:12px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button,.NotGeneric-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button:hover,.NotGeneric-Button:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton,.NotGeneric-BigButton
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton:hover,.NotGeneric-BigButton:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Button,.WebProduct-Button
{
	background-color:rgba(51,51,51,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:48px;
	padding:0 40px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Button:hover,.WebProduct-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(51,51,51,1.00);
	text-decoration:none;
}

.tp-caption.Restaurant-Button,.Restaurant-Button
{
	background-color:rgba(10,10,10,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Restaurant-Button:hover,.Restaurant-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,224,129,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button,.Gym-Button
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button:hover,.Gym-Button:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button-Light,.Gym-Button-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	line-height:15px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button-Light:hover,.Gym-Button-Light:hover
{
	background-color:rgba(114,168,0,0);
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Light,.Sports-Button-Light
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Light:hover,.Sports-Button-Light:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Red,.Sports-Button-Red
{
	background-color:rgba(219,28,34,1.00);
	border-color:rgba(219,28,34,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Red:hover,.Sports-Button-Red:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Button,.Photography-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Photography-Button:hover,.Photography-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2,.Newspaper-Button-2
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:15px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2:hover,.Newspaper-Button-2:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Tour,.Feature-Tour
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Tour:hover,.Feature-Tour:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples,.Feature-Examples
{
	background-color:transparent;
	border-color:rgba(33,42,64,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(33,42,64,0.50);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples:hover,.Feature-Examples:hover
{
	background-color:transparent;
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(139,192,39,1.00);
	text-decoration:none;
}

.tp-caption.subcaption,.subcaption
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(111,124,130,1.00);
	font-family:roboto;
	font-size:19px;
	font-style:normal;
	font-weight:400;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab,.menutab
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:25px;
	font-style:normal;
	font-weight:300;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab:hover,.menutab:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(213,0,0,1.00);
	text-decoration:none;
}

.tp-caption.maincontent,.maincontent
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:21px;
	font-style:normal;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.minitext,.minitext
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(185,186,187,1.00);
	font-family:roboto;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Feature-Buy,.Feature-Buy
{
	background-color:rgba(0,154,238,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Buy:hover,.Feature-Buy:hover
{
	background-color:rgba(0,133,214,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light,.Feature-Examples-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light:hover,.Feature-Examples-Light:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Facebook-Likes,.Facebook-Likes
{
	background-color:rgba(59,89,153,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:5px 15px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Favorites,.Twitter-Favorites
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link,.Twitter-Link
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(135,153,165,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:15px;
	padding:11px 11px 9px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link:hover,.Twitter-Link:hover
{
	background-color:rgba(0,132,180,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Twitter-Retweet,.Twitter-Retweet
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Content,.Twitter-Content
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,47,51,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:500;
	line-height:28px;
	padding:30px 30px 70px;
	text-align:left;
	text-decoration:none;
}

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"]{
	font-family: "Arial", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;


    border-radius: 0px;
}


.tp-caption.BigBold-Title,
.BigBold-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button,
.BigBold-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
    color: rgba(41, 46, 49, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.FoodCarousel-Button,
.FoodCarousel-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 70px 15px 50px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-CloseButton,
.FoodCarousel-CloseButton {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Video-SubTitle,
.Video-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Video-Title,
.Video-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px
}


.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0px 0px 0px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    text-shadow: none
}




.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
    color: rgba(111, 124, 130, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
    color: rgba(111, 124, 130, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-Button,
.ContentZoom-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.ContentZoom-ButtonClose,
.ContentZoom-ButtonClose {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Newspaper-Title,
.Newspaper-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Slab";
    padding: 0 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
    color: rgba(168, 216, 238, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Button,
.Newspaper-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.rtwhitemedium,
.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: rgb(0, 0, 0);
    border-style: none;
    text-shadow: none
}

@media only screen and (max-width: 767px) {
	.revtp-searchform input[type="text"],
	.revtp-searchform input[type="email"],
	.revtp-form input[type="text"],
	.revtp-form input[type="email"] { width: 200px !important; }
}

.revtp-searchform input[type="submit"],
.revtp-form input[type="submit"] {
	font-family: "Arial", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #009aee;
    color: #fff;


    border-radius: 0px;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Concept-Title,
    .Concept-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-SubTitle,
    .Concept-SubTitle {
        color: rgba(255, 255, 255, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: ""Playfair Display"";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Content,
    .Concept-Content {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-MoreBtn,
    .Concept-MoreBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn:hover,
    .Concept-MoreBtn:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-LessBtn,
    .Concept-LessBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-LessBtn:hover,
    .Concept-LessBtn:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-SubTitle-Dark,
    .Concept-SubTitle-Dark {
        color: rgba(0, 0, 0, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: "Playfair Display";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Title-Dark,
    .Concept-Title-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-MoreBtn-Dark,
    .Concept-MoreBtn-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn-Dark:hover,
    .Concept-MoreBtn-Dark:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-Content-Dark,
    .Concept-Content-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Notice,
    .Concept-Notice {
        color: rgba(255, 255, 255, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Concept-Content a,
    .tp-caption.Concept-Content a:visited {
        color: #fff !important;
        border-bottom: 1px solid #fff !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content a:hover {
        border-bottom: 1px solid transparent !important;
    }
    .tp-caption.Concept-Content-Dark a,
    .tp-caption.Concept-Content-Dark a:visited {
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content-Dark a:hover {
        border-bottom: 1px solid transparent !important;
    }

    .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Creative-Title,
    .Creative-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Creative-SubTitle,
    .Creative-SubTitle {
        color: rgba(205, 176, 131, 1.00);
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button,
    .Creative-Button {
        color: rgba(205, 176, 131, 1.00);
        font-size: 13px;
        line-height: 13px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 15px 50px 15px 50px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 0.25);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button:hover,
    .Creative-Button:hover {
        color: rgba(205, 176, 131, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px
    }

.tp-caption.subcaption,
    .subcaption {
        color: rgba(111, 124, 130, 1.00);
        font-size: 19px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 0, 0, 1.00);
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-shadow: none;
        text-align: left
    }
    .tp-caption.RedDot,
    .RedDot {
        color: rgba(0, 0, 0, 1.00);
        font-weight: 400;
        font-style: normal;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(213, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.RedDot:hover,
    .RedDot:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.75);
        border-color: rgba(213, 0, 0, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }

    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

     .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;

    }
    .tp-caption.Woo-Rating,
    .Woo-Rating {
        color: rgba(0, 0, 0, 1.00);
        font-size: 14px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left;

    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;

    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;

    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;

    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;

    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;

    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;

    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;

    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;

    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;

    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

    .tp-caption.FullScreen-Toggle,
    .FullScreen-Toggle {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-style: normal;
        font-family: Raleway;
        padding: 11px 8px 11px 12px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.50);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 3px;
        text-align: left
    }
    .tp-caption.FullScreen-Toggle:hover,
    .FullScreen-Toggle:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

    .tp-caption.Agency-Title,
.Agency-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 71px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.Agency-SmallText,
.Agency-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.Agency-Social,
.Agency-Social {
    color: rgba(51, 51, 51, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}

.tp-caption.Dining-Title,
.Dining-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-style: normal;
    font-family: Lato;
    padding: 17px 73px 17px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.Dining-Social,
.Dining-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
tp-caption.Team-Thumb,
.Team-Thumb {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Team-Name,
.Team-Name {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Position,
.Team-Position {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Description,
.Team-Description {
    color: rgba(255, 255, 255, 1.00);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Social,
.Team-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Team-Social:hover,
.Team-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

.tp-caption.VideoControls-Play,
.VideoControls-Play {
    color: rgba(0, 0, 0, 1.00);
    font-size: 50px;
    line-height: 120px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 7px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
 }

.soundcloudwrapper iframe {
    width: 100% !important
}
.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
    color: rgba(0, 0, 0, 1.00);

    font-weight: 700;
    font-style: normal;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15)
}
.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555555 !important;
}
.tp-fat {
    font-weight: 900 !important;
}

.tp-caption.PostSlider-Category,
.PostSlider-Category {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
    text-align: left
}
.tp-caption.PostSlider-Title,
.PostSlider-Title {
    color: rgba(0, 0, 0, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Content,
.PostSlider-Content {
    color: rgba(119, 119, 119, 1.00);
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Button,
.PostSlider-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left
}
.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(238, 238, 238, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

/* media queries */

@media only screen and (max-width: 960px) {} @media only screen and (max-width: 768px) {} .tp-caption.LandingPage-Title,
.LandingPage-Title {
    color:rgba(255,
    255,
    255,
    1.00);
    font-size:70px;
    line-height:80px;
    font-weight:900;
    font-style:normal;
    font-family:Lato;
    padding:0 0 0 0px;
    text-decoration:none;
    background-color:transparent;
    border-color:transparent;
    border-style:none;
    border-width:0px;
    border-radius:0 0 0 0px;
    text-align:left;
    letter-spacing:10px
}
.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.LandingPage-Button,
.LandingPage-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 54px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 35px 0px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: bold !important;
}
.tp-caption.App-Content a:hover {
    border-bottom: 1px solid #89124e !important;
}
.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #fff !important;
    text-decoration: underline !important;
}
.tp-caption.Twitter-Content a:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.soundcloudwrapper iframe {
    width: 100% !important
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 20px 3px 20px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 154, 238, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
    color: rgba(164, 157, 143, 1.00);
    font-size: 27px;
    line-height: 35px;
    font-weight: 600;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}

#mc_embed_signup input#mce-EMAIL {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 1px solid #fff;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;


    border-radius: 0px;
}
#mc_embed_signup input#mce-EMAIL[type="email"]:focus {
    background-color: #fff;
    border: 1px solid #666;
    border-right: 0;
}
#mc_embed_signup input#mc-embedded-subscribe,
#mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: "Lato", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    padding: 0 20px;
    border: 1px solid #009aee;
    background: #009aee;
    color: #fff;


    border-radius: 0px;
}
#mc_embed_signup input#mc-embedded-subscribe:hover {
    background: #0083d4;
}
@media only screen and (max-width: 767px) {
    #mc_embed_signup input#mce-EMAIL {
        width: 200px;
    }
}
.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 6px
}
.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
    color: rgba(248, 124, 9, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important
}
.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-NavButton,
.Agency-NavButton {
    color: rgba(51, 51, 51, 1.00);
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: center
}
.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
    color: rgba(109, 177, 155, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important
}
.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
    color: rgba(153, 153, 153, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important
}
.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
    color: rgba(51, 51, 51, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
    color: rgba(51, 51, 51, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.CreativeFrontPage-Btn,
.CreativeFrontPage-Btn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 50px 0px 50px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 104, 92, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px
}
.tp-caption.CreativeFrontPage-Btn:hover,
.CreativeFrontPage-Btn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer
}
.tp-caption.CreativeFrontPage-Menu,
.CreativeFrontPage-Menu {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px
}
.tp-flip-index {
    z-index: 1000 !important;
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.FullScreenMenu-Category,
.FullScreenMenu-Category {
    color: rgba(17, 17, 17, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px
}
.tp-caption.FullScreenMenu-Title,
.FullScreenMenu-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(17, 17, 17, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.TechJournal-Button,
.TechJournal-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 1px 30px 1px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(138, 0, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px
}
.tp-caption.TechJournal-Button:hover,
.TechJournal-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.TechJournal-Big,
.TechJournal-Big {
    color: rgba(255, 255, 255, 1.00);
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 0px
}
.rev_slider {
    overflow: hidden;
}
.effect_layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .rev_slider {
        overflow: hidden;
    }
    .effect_layer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .gyges .tp-thumb {
        opacity: 1
    }
    .gyges .tp-thumb-img-wrap {
        padding: 3px;
        background-color: rgba(0, 0, 0, 0.25);
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0px;
        box-sizing: border-box;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .gyges .tp-thumb-image {
        padding: 3px;
        display: block;
        box-sizing: border-box;
        position: relative;
        -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    }
    .gyges .tp-thumb:hover .tp-thumb-img-wrap,
    .gyges .tp-thumb.selected .tp-thumb-img-wrap {
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-FooterLink,
    .FullSiteBlock-FooterLink {
        color: rgba(85, 85, 85, 1.00);
        font-size: 15px;
        line-height: 20px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left
    }
    .tp-caption.FullSiteBlock-FooterLink:hover,
    .FullSiteBlock-FooterLink:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    #tp-socialwrapper {
        opacity: 0;
    }

        .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    #tp-menubg {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* FF3.6-15 */

        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */

        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00000000', GradientType=0);
        /* IE6-9 */
    }
    #mc_embed_signup input[type="email"] {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        background-color: #fff;
        color: #888 !important;
        line-height: 46px;
        padding: 0 20px;
        cursor: text;
        border: 0;
        width: 400px;
        margin-bottom: 0px;
        -webkit-transition: background-color 0.5s;
        -moz-transition: background-color 0.5s;
        -o-transition: background-color 0.5s;
        -ms-transition: background-color 0.5s;
        transition: background-color 0.5s;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input[type="email"]::-webkit-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]::-moz-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:-ms-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:focus {
        background-color: #f5f5f5;
        color: #454545;
    }
    #mc_embed_signup input#mc-embedded-subscribe,
    #mc_embed_signup input#mc-embedded-subscribe:focus {
        font-family: "Lato", sans-serif;
        line-height: 46px;
        font-size: 16px;
        font-weight: 700;
        padding: 0 30px;
        border: 0;
        background: #f04531;
        text-transform: none;
        color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #e03727;
    }
    @media only screen and (max-width: 767px) {
        #mc_embed_signup input[type="email"] {
            width: 260px;
        }
    }
    @media only screen and (max-width: 480px) {
        #mc_embed_signup input[type="email"] {
            width: 160px;
        }
    }
    #rev_slider_167_6 .uranus.tparrows {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0);
    }
    #rev_slider_167_6 .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    #rev_slider_167_6 .uranus.tparrows:hover:before {
        opacity: 0.75;
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.ParallaxWebsite-FooterItem,
    .ParallaxWebsite-FooterItem {
        color: rgba(255, 255, 255, 0.50);
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px
    }
    .tp-caption.ParallaxWebsite-FooterItem:hover,
    .ParallaxWebsite-FooterItem:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    iframe.twitter-share-button {
        display: none;
    }
    .fb-share-button.fb_iframe_widget iframe {
        display: none;
    }

    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
    color: rgba(0,150,255,1.00);
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ARES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.ares.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:60px;
    min-height:60px;
  position:absolute;
  display:block;
  z-index:100;
    border-radius:50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size:25px;
  color:#aaa;
  display:block;
  line-height: 60px;
  text-align: center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    z-index:2;
    position:relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\e81f";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\e81e";
}
.ares.tparrows:hover:before {
 color:#000;
      }
.ares .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#fff;
  min-height:60px;
  line-height:60px;
  top:0px;
  margin-left:30px;
  border-radius:0px 30px 30px 0px;
  overflow:hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
   -webkit-transform-origin:0% 50%;
}
 .ares.tp-rightarrow .tp-title-wrap {
   right:0px;
   margin-right:30px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
border-radius:30px 0px 0px 30px;
 }
.ares.tparrows:hover .tp-title-wrap {
  transform:scaleX(1) scaleY(1);
    -webkit-transform:scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#000;
  font-weight:400;
  font-size:14px;
  line-height:60px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:10px;
  opacity:0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px);
   margin-left:0px; margin-right:10px;
      }

.ares.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.ares.tp-bullets {
}
.ares.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.ares .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
	background:#fff;
}
.ares .tp-bullet-title {
  position:absolute;
  color:#888;
  font-size:12px;
  padding:0px 10px;
  font-weight:600;
  right:27px;
  top:-4px;
  background:#fff;
  background:rgba(255,255,255,0.75);
  visibility:hidden;
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  transition:transform 0.3s;
  -webkit-transition:transform 0.3s;
  line-height:20px;
  white-space:nowrap;
}

.ares .tp-bullet-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.75);
	content:" ";
    position:absolute;
    right:-10px;
	top:0px;
}

.ares .tp-bullet:hover .tp-bullet-title{
  visibility:visible;
   transform:translateX(0px);
  -webkit-transform:translateX(0px);
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background:#fff;
        }
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color:transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
        visibility:hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility:visible;
      }

/* TABS */
.ares .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.ares .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.ares .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.ares .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.ares .tp-tab-title
{
    display:block;
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
	background:#eee;
}

.ares .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:10000;
}
.custom.tparrows:hover {
	background:#000;
}
.custom.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.custom.tp-bullets {
}
.custom.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.custom .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
    background:rgba(125,125,125,0.5);
	cursor: pointer;
	box-sizing:content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
	background:rgb(125,125,125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}


/* THUMBS */


/* TABS */


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height:100%;
  width:100px;
  background:transparent;
  background:rgba(0,0,0,0);
  line-height:100%;
  transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows:hover {
 background:rgba(0,0,0,0.45);
 }
.dione .tp-arr-imgwrapper {
 width:100px;
 left:0px;
 position:absolute;
 height:100%;
 top:0px;
 overflow:hidden;
 }
.dione.tp-rightarrow .tp-arr-imgwrapper {
left:auto;
right:0px;
}

.dione .tp-arr-imgholder {
background-position:center center;
background-size:cover;
width:100px;
height:100%;
top:0px;
visibility:hidden;
transform:translateX(-50px);
-webkit-transform:translateX(-50px);
transition:all 0.3s;
-webkit-transition:all 0.3s;
opacity:0;
left:0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right:0px;
  left:auto;
  transform:translateX(50px);
 -webkit-transform:translateX(50px);
}

.dione.tparrows:before {
position:absolute;
line-height:30px;
margin-left:-22px;
top:50%;
left:50%;
font-size:30px;
margin-top:-15px;
transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows.tp-rightarrow:before {
margin-left:6px;
}

.dione.tparrows:hover:before {
  transform:translateX(-20px);
-webkit-transform:translateX(-20px);
opacity:0;
}

.dione.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
-webkit-transform:translateX(20px);
}

.dione.tparrows:hover .tp-arr-imgholder {
 transform:translateX(0px);
-webkit-transform:translateX(0px);
opacity:1;
visibility:visible;
}



/* BULLETS */
.dione .tp-bullet {
    opacity:1;
    width:50px;
    height:50px;
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;

  }

.dione .tp-bullet-image {
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }
.dione .tp-bullet-title {
     position:absolute;
   bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
   -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.dione .tp-bullet:hover .tp-bullet-title {
     transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover  {

   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.dione .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:35px;
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.erinyen .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-height:70px;
  line-height:70px;
  top:0px;
  margin-left:0px;
  border-radius:35px;
  overflow:hidden;
  transition: opacity 0.3s;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility:hidden;
  opacity:0;
}

.erinyen.tparrows:hover .tp-title-wrap{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity:1;
  visibility:visible;
}

 .erinyen.tp-rightarrow .tp-title-wrap {
   right:0px;
   margin-right:0px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
  border-radius:35px;
  padding-right:20px;
  padding-left:10px;
 }


.erinyen.tp-leftarrow .tp-title-wrap {
   padding-left:20px;
  padding-right:10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
   position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:70px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:11px;
  opacity:0;
}

.erinyen .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
    }
 .erinyen .tp-arr-img-over {
   width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
   background:#000;
   background:rgba(0,0,0,0.5);
        }
.erinyen.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px);
   margin-left:0px; margin-right:11px;
      }

.erinyen.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #555555; /* old browsers */
    background: -moz-linear-gradient(top,  #555555 0%, #222222 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #555555 0%,#222222 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #555555 0%,#222222 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
	padding:10px 15px;
	margin-left:-15px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:10px;
   box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
}
.erinyen .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#111;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
	background: #e5e5e5; /* old browsers */
background: -moz-linear-gradient(top,  #e5e5e5 0%, #999999 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */
background: -webkit-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */
background: -o-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* opera 11.10+ */
background: -ms-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* ie10+ */
background: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  border:1px solid #555;
  width:12px;height:12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}


/* THUMBS */
.erinyen .tp-thumb {
opacity:1
}

.erinyen .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.erinyen .tp-thumb-more:before {
  content: "\e825";
}

.erinyen .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/* TABS */
.erinyen .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab"
    margin-bottom:5px;
}

.erinyen .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */


/* BULLETS */
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #777777; /* Old browsers */
    background: -moz-linear-gradient(top,  #777777 0%, #666666 100%);
    background: -webkit-gradient(linear, left top, left bottom,
    color-stop(0%,#777777), color-stop(100%,#666666));
    background: -webkit-linear-gradient(top,  #777777 0%,#666666 100%);
    background: -o-linear-gradient(top,  #777777 0%,#666666 100%);
    background: -ms-linear-gradient(top,  #777777 0%,#666666 100%);
    background: linear-gradient(to bottom,  #777777 0%,#666666 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",
    endColorstr="#666666",GradientType=0 );
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
  border-radius:10px;
}
.gyges .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#333;
	border:3px solid #444;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
	background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #e1e1e1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom,
    color-stop(0%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#e1e1e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",
    endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */

}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}


/* THUMBS */
.gyges .tp-thumb {
      opacity:1
  }
.gyges .tp-thumb-img-wrap {
  padding:3px;
    background:#000;
  background-color:rgba(0,0,0,0.25);
  display:inline-block;

  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.gyges .tp-thumb-image {
   padding:3px;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }
.gyges .tp-thumb-title {
     position:absolute;
     bottom:100%;
     display:inline-block;
     left:50%;
     background:rgba(255,255,255,0.8);
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     margin-bottom:20px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    white-space:nowrap;
 }
.gyges .tp-thumb:hover .tp-thumb-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
 .gyges .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 }
.gyges .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(255,255,255,0.8) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.gyges .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
 }
.gyges .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.gyges .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
  overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.gyges .tp-tab-date
  {
  display:block;
  color: rgba(255,255,255,0.25);
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.gyges .tp-tab-title
{
    display:block;
    text-align:left;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background:rgba(0,0,0,0.5);
}

.gyges .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.15);
	width:100px;
	height:100px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hades.tparrows:before {
	font-family: "revicons";
	font-size:30px;
	color:#fff;
	display:block;
	line-height: 100px;
	text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hades.tparrows.tp-rightarrow:before {
	content: "\e825";
}

.hades.tparrows:hover:before {
   color:#aaa;
   background:#fff;
   background:rgba(255,255,255,1);
 }
.hades .tp-arr-allwrapper {
  position:absolute;
  left:100%;
  top:0px;
  background:#888;
  width:100px;height:100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
   left:auto;
   right:100%;
   -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
   -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
   -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
    -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg);

 }

.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size:cover;
  position:absolute;
  top:0px;left:0px;
  width:100%;height:100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}


/* BULLETS */
.hades.tp-bullets {
}
.hades.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hades .tp-bullet {
	width:3px;
	height:3px;
	position:absolute;
	background:#888;
	cursor: pointer;
    border:5px solid #fff;
	box-sizing:content-box;
    box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
    -webkit-perspective:400;
    perspective:400;
    -webkit-transform:translatez(0.01px);
    transform:translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
	background:#555;

}

.hades .tp-bullet-image {
  position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;


}
.hades .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility:visible;
    }
.hades .tp-bullet-title {
}


/* THUMBS */
.hades .tp-thumb {
      opacity:1
  }
.hades .tp-thumb-img-wrap {
  border-radius:50%;
  padding:3px;
  display:inline-block;
background:#000;
  background-color:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hades .tp-thumb-image {
   padding:3px;
   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }


.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {

   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.hades .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.hades .tp-tab {
  opacity:1;
 }

.hades .tp-tab-title
 {
      display:block;
      color:#333;
      font-weight:600;
      font-size:18px;
      text-align:center;
      line-height:25px;
    }
.hades .tp-tab-price
 {
	display:block;
    text-align:center;
    color:#999;
    font-size:16px;
    margin-top:10px;
   line-height:20px
}

.hades .tp-tab-button {
    display:inline-block;
    margin-top:15px;
    text-align:center;
	padding:5px 15px;
  	color:#fff;
  	font-size:14px;
  	background:#219bd7;
   	border-radius:4px;
   font-weight:400;
}
.hades .tp-tab-inner {
	text-align:center;
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:70px;
    min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#aaa;
  display:block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index:2;
  position:relative;
   background:#fff;
  min-width:70px;
    min-height:70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hebe.tparrows:hover:before {
 color:#000;
      }
.hebe .tp-title-wrap {
  position:absolute;
  z-index:0;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.75);
  min-height:60px;
  line-height:60px;
  top:-10px;
  margin-left:0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
   -webkit-transform-origin:0% 50%;
}
 .hebe.tp-rightarrow .tp-title-wrap {
   right:0px;
   -webkit-transform-origin:100% 50%;
 }
.hebe.tparrows:hover .tp-title-wrap {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
}
.hebe .tp-arr-titleholder {
  position:relative;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:12px;
  line-height:90px;
  white-space:nowrap;
  padding:0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
   margin-left:0px;
   padding:0px 90px 0px 20px;
 }

.hebe.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

.hebe .tp-arr-imgholder{
      width:90px;
      height:90px;
      position:absolute;
      left:100%;
      display:block;
      background-size:cover;
      background-position:center center;
  	 top:0px; right:-90px;
    }
.hebe.tp-rightarrow .tp-arr-imgholder{
        right:auto;left:-90px;
      }

/* BULLETS */
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}

.hebe .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#fff;
  cursor: pointer;
  border:5px solid #222;
  border-radius:50%;
  box-sizing:content-box;
  -webkit-perspective:400;
  perspective:400;
  -webkit-transform:translateZ(0.01px);
  transform:translateZ(0.01px);
   transition:all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background:#222;
  border-color:#fff;
}

.hebe .tp-bullet-image {
  position:absolute;
  top:-90px; left:-40px;
  width:70px;
  height:70px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
border-radius:6px;


}
.hebe .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility:visible;
    }
.hebe .tp-bullet-title {
}


/* TABS */
.hebe .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab"
    margin-bottom:5px;
}

.hebe .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius:50%;
}
.hephaistos.tparrows:hover {
	background:#000;
}
.hephaistos.tparrows:before {
	font-family: "revicons";
	font-size:18px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
	content: "\e82c";
  margin-left:-2px;

}
.hephaistos.tparrows.tp-rightarrow:before {
	content: "\e82d";
   margin-right:-2px;
}



/* BULLETS */
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hephaistos .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#999;
	border:3px solid #f5f5f5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
  box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);

}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
	background:#fff;
    border-color:#000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:30px;
	height:110px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hermes.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 110px;
	text-align: center;
    transform:translateX(0px);
    -webkit-transform:translateX(0px);
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hermes.tparrows.tp-rightarrow:before {
	content: "\e825";
}
.hermes.tparrows.tp-leftarrow:hover:before {
    transform:translateX(-20px);
    -webkit-transform:translateX(-20px);
     opacity:0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
    transform:translateX(20px);
    -webkit-transform:translateX(20px);
     opacity:0;
}

.hermes .tp-arr-allwrapper {
    overflow:hidden;
    position:absolute;
	width:180px;
    height:140px;
    top:0px;
    left:0px;
    visibility:hidden;
      -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px;
    }
.hermes.tp-rightarrow .tp-arr-allwrapper {
   right:0px;left:auto;
      }
.hermes.tparrows:hover .tp-arr-allwrapper {
   visibility:visible;
          }
.hermes .tp-arr-imgholder {
  width:180px;position:absolute;
  left:0px;top:0px;height:110px;
  transform:translateX(-180px);
  -webkit-transform:translateX(-180px);
  transition:all 0.3s;
  transition-delay:0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder{
    transform:translateX(180px);
  -webkit-transform:translateX(180px);
      }

.hermes.tparrows:hover .tp-arr-imgholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
}
.hermes .tp-arr-titleholder {
  top:110px;
  width:180px;
  text-align:left;
  display:block;
  padding:0px 10px;
  line-height:30px; background:#000;
  background:rgba(0,0,0,0.75);color:#fff;
  font-weight:600; position:absolute;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing:border-box;

}
.hermes.tparrows:hover .tp-arr-titleholder {
    -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}


/* BULLETS */
.hermes.tp-bullets {
}

.hermes .tp-bullet {
    overflow:hidden;
    border-radius:50%;
    width:16px;
    height:16px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #FFF;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    position:absolute;
}

.hermes .tp-bullet:hover {
	  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height:100%;
}


/* TABS */
.hermes .tp-tab {
  opacity:1;
  padding-right:10px;
  box-sizing:border-box;
 }
.hermes .tp-tab-image
{
  width:100%;
  height:60%;
  position:relative;
}
.hermes .tp-tab-content
{
    background:rgb(54,54,54);
    position:absolute;
    padding:20px 20px 20px 30px;
    box-sizing:border-box;
    color:#fff;
  display:block;
  width:100%;
  min-height:40%;
  bottom:0px;
  left:-10px;
  }
.hermes .tp-tab-date
  {
  display:block;
  color:#888;
  font-weight:600;
  font-size:12px;
  margin-bottom:10px;
  }
.hermes .tp-tab-title
{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
   line-height:19px;
}

.hermes .tp-tab.selected .tp-tab-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 30px 0 30px 10px;
	border-color: transparent transparent transparent rgb(54,54,54);
	content:" ";
    position:absolute;
    right:-9px;
    bottom:50%;
    margin-bottom:-30px;
}
.hermes .tp-tab-mask {
     padding-right:10px !important;
          }

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius: 50%;
}
.hesperiden.tparrows:hover {
	background:#000;
}
.hesperiden.tparrows:before {
	font-family: "revicons";
	font-size:20px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
	content: "\e82c";
    margin-left:-3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
	content: "\e82d";
    margin-right:-3px;
}

/* BULLETS */
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:8px;

}
.hesperiden .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background: #999999; /* old browsers */
    background: -moz-linear-gradient(top,  #999999 0%, #e1e1e1 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999),
    color-stop(100%,#e1e1e1)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #999999 0%,#e1e1e1 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient(
    startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
	border:3px solid #e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
	background:#666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}


/* THUMBS */
.hesperiden .tp-thumb {
  opacity:1;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
    font-size:12px;
    position:absolute;
    margin-top:-10px;
    color:#fff;
    display:block;
    z-index:10000;
    background-color:#000;
    padding:5px 10px;
    bottom:0px;
    left:0px;
    width:100%;
  box-sizing:border-box;
    text-align:center;
    overflow:hidden;
    white-space:nowrap;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform:rotatex(90deg) translatez(0.001px);
    transform-origin:50% 100%;
    -webkit-transform:rotatex(90deg) translatez(0.001px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
 }
.hesperiden .tp-thumb:hover .tp-thumb-title {
  	 transform:rotatex(0deg);
    -webkit-transform:rotatex(0deg);
    opacity:1;
}

/* TABS */
.hesperiden .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.hesperiden .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.hesperiden .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.hesperiden .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.hesperiden .tp-tab-title
{
    display:block;
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
	background:#eee;
}

.hesperiden .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background:#fff;
  padding:10px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  width:60px;
  height:60px;
  box-sizing:border-box;
 }

 .metis.tparrows:hover {
   background:#fff;
   background:rgba(255,255,255,0.75);
 }

 .metis.tparrows:before {
  color:#000;
   transition:all 0.3s;
  -webkit-transition:all 0.3s;
 }

 .metis.tparrows:hover:before {
   transform:scale(1.5);
  }


/* BULLETS */
.metis .tp-bullet {
    opacity:1;
    width:50px;
    height:50px;
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    border-radius:50%;
  }

.metis .tp-bullet-image {

   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }
.metis .tp-bullet-title {
     position:absolute;
	 bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.metis .tp-bullet:hover .tp-bullet-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover  {

   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.metis .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }

.metis .tp-tab-number {
        color: #fff;
        font-size: 40px;
        line-height: 30px;
        font-weight: 400;
        font-family: "Playfair Display";
        width: 50px;
        margin-right: 17px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-mask {
        padding-left: 20px;
        left: 0px;
        max-width: 90px !important;
        transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
    }
    .metis:hover .tp-tab-mask {
        padding-left: 0px;
        left: 50px;
        max-width: 500px !important;
    }
    .metis .tp-tab-divider {
        border-right: 1px solid transparent;
        height: 30px;
        width: 1px;
        margin-top: 5px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-title {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-family: "Playfair Display";
        position: relative;
        padding-top: 10px;
        padding-left: 30px;
        display: inline-block;
        transform: translateX(-100%);
        transition: 0.4s all;
    }
    .metis .tp-tab-title-mask {
        position: absolute;
        overflow: hidden;
        left: 67px;
    }
    .metis:hover .tp-tab-title {
        transform: translateX(0);
    }
    .metis .tp-tab {
        opacity: 0.15;
        transition: 0.4s all;
    }
    .metis .tp-tab:hover,
    .metis .tp-tab.selected {
        opacity: 1;
    }
    .metis .tp-tab.selected .tp-tab-divider {
        border-right: 1px solid #cdb083;
    }
    .metis.tp-tabs {
        max-width: 118px !important;
        padding-left: 50px;
    }
    .metis.tp-tabs:before {
        content: " ";
        height: 100%;
        width: 88px;
        background: rgba(0, 0, 0, 0.15);
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        left: 0px;
        top: 0px;
        position: absolute;
        transition: 0.4s all;
    }
    .metis.tp-tabs:hover:before {
        width: 118px;
    }
    @media (max-width: 499px) {
        .metis.tp-tabs:before {
            background: rgba(0, 0, 0, 0.75);
        }
    }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
	cursor:pointer;
	background:#aaa;
	background:rgba(200,200,200,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:100;
  border:1px solid #f5f5f5;
}
.persephone.tparrows:hover {
	background:#333;
}
.persephone.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.persephone.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:#transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.persephone .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
	border:1px solid #e5e5e5;
	cursor: pointer;
	box-sizing:content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
	background:#222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width:50px;
  height:50px;
  background:transparent;
 }
 .uranus.tparrows:before {
 width:50px;
 height:50px;
 line-height:50px;
 font-size:40px;
 transition:all 0.3s;
-webkit-transition:all 0.3s;
 }

  .uranus.tparrows:hover:before {
    opacity:0.75;
  }

/* BULLETS */
.uranus .tp-bullet{
	border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background:transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border:none;
  border-radius: 50%;

   background:transparent;
}



.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner{
 transform: scale(0.4);
 -webkit-transform: scale(0.4);
 background-color:#fff;
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor:pointer;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:35px;
  overflow:hidden;
  background:rgba(0,0,0,0.10);
}

.zeus.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.zeus .tp-title-wrap {
  background:#000;
  background:rgba(0,0,0,0.5);
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  position:absolute;
  opacity:0;
  transform:scale(0);
  -webkit-transform:scale(0);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
   border-radius:50%;
 }
.zeus .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
  border-radius:50%;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;

 }
.zeus.tp-rightarrow .tp-arr-imgholder {
    transform:translateX(100%);
  -webkit-transform:translateX(100%);
      }
.zeus.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0);
  -webkit-transform:translateX(0);
  opacity:1;
}

.zeus.tparrows:hover .tp-title-wrap {
  transform:scale(1);
  -webkit-transform:scale(1);
  opacity:1;
}


/* BULLETS */
.zeus .tp-bullet {
     box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%;
      background-color: rgba(0, 0, 0, 0);
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
	  width:13px;height:13px;
	  border:2px solid #fff;
 }
.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after{
    -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

 .zeus .tp-bullet-image,
 .zeus .tp-bullet-imageoverlay{
        width:135px;
        height:60px;
        position:absolute;
        background:#000;
        background:rgba(0,0,0,0.5);
        bottom:25px;
        left:50%;
        margin-left:-65px;
        box-sizing:border-box;
        background-size:cover;
        background-position:center center;
        visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden;
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        border-radius:4px;

}


.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
        z-index:2;
        -webkit-transition: all 0.5s ease;
	  	transition: all 0.5s ease;
}
.zeus .tp-bullet-title {
        color:#fff;
        text-align:center;
        line-height:15px;
        font-size:13px;
        font-weight:600;
        z-index:3;
         visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden;
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        position:absolute;
        bottom:45px;
        width:135px;
    	vertical-align:middle;
        left:-57px;
}

.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay{
      opacity:1;
      visibility:visible;
	  -webkit-transform:translateY(0px);
      transform:translateY(0px);
    }

/* THUMBS */
.zeus .tp-thumb {
opacity:1
}

.zeus .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.zeus .tp-thumb-more:before {
  content: "\e825";
}

.zeus .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
 background:#000;
}
.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color:#fff;

}


/* TABS */
.zeus .tp-tab {
  opacity:1;
  box-sizing:border-box;
}

.zeus .tp-tab-title {
display: block;
text-align: center;
background: rgba(0,0,0,0.25);
font-family: "Roboto Slab", serif;
font-weight: 700;
font-size: 13px;
line-height: 13px;
color: #fff;
padding: 9px 10px; }

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
 color: #000;
  background:rgba(255,255,255,1);
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/


.post-tabs .tp-thumb {
opacity:1
}

.post-tabs .tp-thumb-over {
  background:#252525;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:15px;
  right:15px;
  z-index:2;
}
.post-tabs .tp-thumb-more:before {
  content: "\e825";
}

.post-tabs .tp-thumb-title {
  font-family:"raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:15px 30px 15px 15px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color:#000;

}

/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.3.1
date:      	07/12/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

#debungcontrolls,.debugtimeline{width:100%;box-sizing:border-box}.rev_column,.rev_column .tp-parallax-wrap,.tp-svg-layer svg{vertical-align:top}#debungcontrolls{z-index:100000;position:fixed;bottom:0;height:auto;background:rgba(0,0,0,.6);padding:10px}.debugtimeline{height:10px;position:relative;margin-bottom:3px;display:none;white-space:nowrap}.debugtimeline:hover{height:15px}.the_timeline_tester{background:#e74c3c;position:absolute;top:0;left:0;height:100%;width:0}.debugtimeline.tl_slide .the_timeline_tester{background:#f39c12}.debugtimeline.tl_frame .the_timeline_tester{background:#3498db}.debugtimline_txt{color:#fff;font-weight:400;font-size:7px;position:absolute;left:10px;top:0;white-space:nowrap;line-height:10px}.rtl{direction:rtl}@font-face{font-family:revicons;src:url(../fonts/revicons/revicons.eot?5510888);src:url(../fonts/revicons/revicons.eot?5510888#iefix) format('embedded-opentype'),url(../fonts/revicons/revicons.woff?5510888) format('woff'),url(../fonts/revicons/revicons.ttf?5510888) format('truetype'),url(../fonts/revicons/revicons.svg?5510888#revicons) format('svg');font-weight:400;font-style:normal}[class*=" revicon-"]:before,[class^=revicon-]:before{font-family:revicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.revicon-search-1:before{content:'\e802'}.revicon-pencil-1:before{content:'\e831'}.revicon-picture-1:before{content:'\e803'}.revicon-cancel:before{content:'\e80a'}.revicon-info-circled:before{content:'\e80f'}.revicon-trash:before{content:'\e801'}.revicon-left-dir:before{content:'\e817'}.revicon-right-dir:before{content:'\e818'}.revicon-down-open:before{content:'\e83b'}.revicon-left-open:before{content:'\e819'}.revicon-right-open:before{content:'\e81a'}.revicon-angle-left:before{content:'\e820'}.revicon-angle-right:before{content:'\e81d'}.revicon-left-big:before{content:'\e81f'}.revicon-right-big:before{content:'\e81e'}.revicon-magic:before{content:'\e807'}.revicon-picture:before{content:'\e800'}.revicon-export:before{content:'\e80b'}.revicon-cog:before{content:'\e832'}.revicon-login:before{content:'\e833'}.revicon-logout:before{content:'\e834'}.revicon-video:before{content:'\e805'}.revicon-arrow-combo:before{content:'\e827'}.revicon-left-open-1:before{content:'\e82a'}.revicon-right-open-1:before{content:'\e82b'}.revicon-left-open-mini:before{content:'\e822'}.revicon-right-open-mini:before{content:'\e823'}.revicon-left-open-big:before{content:'\e824'}.revicon-right-open-big:before{content:'\e825'}.revicon-left:before{content:'\e836'}.revicon-right:before{content:'\e826'}.revicon-ccw:before{content:'\e808'}.revicon-arrows-ccw:before{content:'\e806'}.revicon-palette:before{content:'\e829'}.revicon-list-add:before{content:'\e80c'}.revicon-doc:before{content:'\e809'}.revicon-left-open-outline:before{content:'\e82e'}.revicon-left-open-2:before{content:'\e82c'}.revicon-right-open-outline:before{content:'\e82f'}.revicon-right-open-2:before{content:'\e82d'}.revicon-equalizer:before{content:'\e83a'}.revicon-layers-alt:before{content:'\e804'}.revicon-popup:before{content:'\e828'}.rev_slider_wrapper{position:relative;z-index:0;width:100%}.rev_slider{position:relative;overflow:visible}.entry-content .rev_slider a,.rev_slider a{box-shadow:none}.tp-overflow-hidden{overflow:hidden!important}.group_ov_hidden{overflow:hidden}.rev_slider img,.tp-simpleresponsive img{max-width:none!important;transition:none;margin:0;padding:0;border:none}.rev_slider .no-slides-text{font-weight:700;text-align:center;padding-top:80px}.rev_slider>ul,.rev_slider>ul>li,.rev_slider>ul>li:before,.rev_slider_wrapper>ul,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{list-style:none!important;position:absolute;margin:0!important;padding:0!important;overflow-x:visible;overflow-y:visible;background-image:none;background-position:0 0;text-indent:0;top:0;left:0}.rev_slider>ul>li,.rev_slider>ul>li:before,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{visibility:hidden}.tp-revslider-mainul,.tp-revslider-slidesli{padding:0!important;margin:0!important;list-style:none!important}.fullscreen-container,.fullwidthbanner-container{padding:0;position:relative}.rev_slider li.tp-revslider-slidesli{position:absolute!important}.tp-caption .rs-untoggled-content{display:block}.tp-caption .rs-toggled-content{display:none}.rs-toggle-content-active.tp-caption .rs-toggled-content{display:block}.rs-toggle-content-active.tp-caption .rs-untoggled-content{display:none}.rev_slider .caption,.rev_slider .tp-caption{position:relative;visibility:hidden;white-space:nowrap;display:block;-webkit-font-smoothing:antialiased!important;z-index:1}.rev_slider .caption,.rev_slider .tp-caption,.tp-simpleresponsive img{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}.rev_slider .tp-mask-wrap .tp-caption,.rev_slider .tp-mask-wrap :last-child,.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,.wpb_text_column .rev_slider .tp-mask-wrap :last-child{margin-bottom:0}.tp-svg-layer svg{width:100%;height:100%;position:relative}.tp-carousel-wrapper{cursor:url(openhand.cur),move}.tp-carousel-wrapper.dragged{cursor:url(closedhand.cur),move}.tp_inner_padding{box-sizing:border-box;max-height:none!important}.tp-caption.tp-layer-selectable{-moz-user-select:all;-khtml-user-select:all;-webkit-user-select:all;-o-user-select:all}.tp-caption.tp-hidden-caption,.tp-forcenotvisible,.tp-hide-revslider,.tp-parallax-wrap.tp-hidden-caption{visibility:hidden!important;display:none!important}.rev_slider audio,.rev_slider embed,.rev_slider iframe,.rev_slider object,.rev_slider video{max-width:none!important}.tp-element-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.rev_row_zone{position:absolute;width:100%;left:0;box-sizing:border-box;min-height:50px;font-size:0}.rev_column_inner,.rev_slider .tp-caption.rev_row{position:relative;width:100%!important;box-sizing:border-box}.rev_row_zone_top{top:0}.rev_row_zone_middle{top:50%;transform:translateY(-50%)}.rev_row_zone_bottom{bottom:0}.rev_slider .tp-caption.rev_row{display:table;table-layout:fixed;vertical-align:top;height:auto!important;font-size:0}.rev_column{display:table-cell;position:relative;height:auto;box-sizing:border-box;font-size:0}.rev_column_inner{display:block;height:auto!important;white-space:normal!important}.rev_column_bg{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;box-sizing:border-box;background-clip:content-box;border:0 solid transparent}.tp-caption .backcorner,.tp-caption .backcornertop,.tp-caption .frontcorner,.tp-caption .frontcornertop{height:0;top:0;width:0;position:absolute}.rev_column_inner .tp-loop-wrap,.rev_column_inner .tp-mask-wrap,.rev_column_inner .tp-parallax-wrap{text-align:inherit}.rev_column_inner .tp-mask-wrap{display:inline-block}.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{position:relative!important;left:auto!important;top:auto!important;line-height:0}.tp-video-play-button,.tp-video-play-button i{line-height:50px!important;vertical-align:top;text-align:center}.rev_column_inner .rev_layer_in_column,.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{vertical-align:top}.rev_break_columns{display:block!important}.rev_break_columns .tp-parallax-wrap.rev_column{display:block!important;width:100%!important}.fullwidthbanner-container{overflow:hidden}.fullwidthbanner-container .fullwidthabanner{width:100%;position:relative}.tp-static-layers{position:absolute;z-index:101;top:0;left:0}.tp-caption .frontcorner{border-left:40px solid transparent;border-right:0 solid transparent;border-top:40px solid #00A8FF;left:-40px}.tp-caption .backcorner{border-left:0 solid transparent;border-right:40px solid transparent;border-bottom:40px solid #00A8FF;right:0}.tp-caption .frontcornertop{border-left:40px solid transparent;border-right:0 solid transparent;border-bottom:40px solid #00A8FF;left:-40px}.tp-caption .backcornertop{border-left:0 solid transparent;border-right:40px solid transparent;border-top:40px solid #00A8FF;right:0}.tp-layer-inner-rotation{position:relative!important}img.tp-slider-alternative-image{width:100%;height:auto}.caption.fullscreenvideo,.rs-background-video-layer,.tp-caption.coverscreenvideo,.tp-caption.fullscreenvideo{width:100%;height:100%;top:0;left:0;position:absolute}.noFilterClass{filter:none!important}.rs-background-video-layer{visibility:hidden;z-index:0}.caption.fullscreenvideo audio,.caption.fullscreenvideo iframe,.caption.fullscreenvideo video,.tp-caption.fullscreenvideo iframe,.tp-caption.fullscreenvideo iframe audio,.tp-caption.fullscreenvideo iframe video{width:100%!important;height:100%!important;display:none}.fullcoveredvideo audio,.fullscreenvideo audio .fullcoveredvideo video,.fullscreenvideo video{background:#000}.fullcoveredvideo .tp-poster{background-position:center center;background-size:cover;width:100%;height:100%;top:0;left:0}.videoisplaying .html5vid .tp-poster{display:none}.tp-video-play-button{background:#000;background:rgba(0,0,0,.3);border-radius:5px;position:absolute;top:50%;left:50%;color:#FFF;margin-top:-25px;margin-left:-25px;cursor:pointer;width:50px;height:50px;box-sizing:border-box;display:inline-block;z-index:4;opacity:0;transition:opacity .3s ease-out!important}.tp-audio-html5 .tp-video-play-button,.tp-hiddenaudio{display:none!important}.tp-caption .html5vid{width:100%!important;height:100%!important}.tp-video-play-button i{width:50px;height:50px;display:inline-block;font-size:40px!important}.rs-fullvideo-cover,.tp-dottedoverlay,.tp-shadowcover{height:100%;top:0;left:0;position:absolute}.tp-caption:hover .tp-video-play-button{opacity:1;display:block}.tp-caption .tp-revstop{display:none;border-left:5px solid #fff!important;border-right:5px solid #fff!important;margin-top:15px!important;line-height:20px!important;vertical-align:top;font-size:25px!important}.tp-seek-bar,.tp-video-button,.tp-volume-bar{outline:0;line-height:12px;margin:0;cursor:pointer}.videoisplaying .revicon-right-dir{display:none}.videoisplaying .tp-revstop{display:inline-block}.videoisplaying .tp-video-play-button{display:none}.fullcoveredvideo .tp-video-play-button{display:none!important}.fullscreenvideo .fullscreenvideo audio,.fullscreenvideo .fullscreenvideo video{object-fit:contain!important}.fullscreenvideo .fullcoveredvideo audio,.fullscreenvideo .fullcoveredvideo video{object-fit:cover!important}.tp-video-controls{position:absolute;bottom:0;left:0;right:0;padding:5px;opacity:0;transition:opacity .3s;background-image:linear-gradient(to bottom,#000 13%,#323232 100%);display:table;max-width:100%;overflow:hidden;box-sizing:border-box}.rev-btn.rev-hiddenicon i,.rev-btn.rev-withicon i{transition:all .2s ease-out!important;font-size:15px}.tp-caption:hover .tp-video-controls{opacity:.9}.tp-video-button{background:rgba(0,0,0,.5);border:0;border-radius:3px;font-size:12px;color:#fff;padding:0}.tp-video-button:hover{cursor:pointer}.tp-video-button-wrap,.tp-video-seek-bar-wrap,.tp-video-vol-bar-wrap{padding:0 5px;display:table-cell;vertical-align:middle}.tp-video-seek-bar-wrap{width:80%}.tp-video-vol-bar-wrap{width:20%}.tp-seek-bar,.tp-volume-bar{width:100%;padding:0}.rs-fullvideo-cover{width:100%;background:0 0;z-index:5}.disabled_lc .tp-video-play-button,.rs-background-video-layer audio::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls-start-playback-button{display:none!important}.tp-audio-html5 .tp-video-controls{opacity:1!important;visibility:visible!important}.tp-dottedoverlay{background-repeat:repeat;width:100%;z-index:3}.tp-dottedoverlay.twoxtwo{background:url(../assets/gridtile.png)}.tp-dottedoverlay.twoxtwowhite{background:url(../assets/gridtile_white.png)}.tp-dottedoverlay.threexthree{background:url(../assets/gridtile_3x3.png)}.tp-dottedoverlay.threexthreewhite{background:url(../assets/gridtile_3x3_white.png)}.tp-shadowcover{width:100%;background:#fff;z-index:-1}.tp-shadow1{box-shadow:0 10px 6px -6px rgba(0,0,0,.8)}.tp-shadow2:after,.tp-shadow2:before,.tp-shadow3:before,.tp-shadow4:after{z-index:-2;position:absolute;content:"";bottom:10px;left:10px;width:50%;top:85%;max-width:300px;background:0 0;box-shadow:0 15px 10px rgba(0,0,0,.8);transform:rotate(-3deg)}.tp-shadow2:after,.tp-shadow4:after{transform:rotate(3deg);right:10px;left:auto}.tp-shadow5{position:relative;box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset}.tp-shadow5:after,.tp-shadow5:before{content:"";position:absolute;z-index:-2;box-shadow:0 0 25px 0 rgba(0,0,0,.6);top:30%;bottom:0;left:20px;right:20px;border-radius:100px/20px}.tp-button{padding:6px 13px 5px;border-radius:3px;height:30px;cursor:pointer;color:#fff!important;text-shadow:0 1px 1px rgba(0,0,0,.6)!important;font-size:15px;line-height:45px!important;font-family:arial,sans-serif;font-weight:700;letter-spacing:-1px;text-decoration:none}.tp-button.big{color:#fff;text-shadow:0 1px 1px rgba(0,0,0,.6);font-weight:700;padding:9px 20px;font-size:19px;line-height:57px!important}.purchase:hover,.tp-button.big:hover,.tp-button:hover{background-position:bottom,15px 11px}.purchase.green,.purchase:hover.green,.tp-button.green,.tp-button:hover.green{background-color:#21a117;box-shadow:0 3px 0 0 #104d0b}.purchase.blue,.purchase:hover.blue,.tp-button.blue,.tp-button:hover.blue{background-color:#1d78cb;box-shadow:0 3px 0 0 #0f3e68}.purchase.red,.purchase:hover.red,.tp-button.red,.tp-button:hover.red{background-color:#cb1d1d;box-shadow:0 3px 0 0 #7c1212}.purchase.orange,.purchase:hover.orange,.tp-button.orange,.tp-button:hover.orange{background-color:#f70;box-shadow:0 3px 0 0 #a34c00}.purchase.darkgrey,.purchase:hover.darkgrey,.tp-button.darkgrey,.tp-button.grey,.tp-button:hover.darkgrey,.tp-button:hover.grey{background-color:#555;box-shadow:0 3px 0 0 #222}.purchase.lightgrey,.purchase:hover.lightgrey,.tp-button.lightgrey,.tp-button:hover.lightgrey{background-color:#888;box-shadow:0 3px 0 0 #555}.rev-btn,.rev-btn:visited{outline:0!important;box-shadow:none!important;text-decoration:none!important;line-height:44px;font-size:17px;font-weight:500;padding:12px 35px;box-sizing:border-box;font-family:Roboto,sans-serif;cursor:pointer}.rev-btn.rev-uppercase,.rev-btn.rev-uppercase:visited{text-transform:uppercase;letter-spacing:1px;font-size:15px;font-weight:900}.rev-btn.rev-withicon i{font-weight:400;position:relative;top:0;margin-left:10px!important}.rev-btn.rev-hiddenicon i{font-weight:400;position:relative;top:0;opacity:0;margin-left:0!important;width:0!important}.rev-btn.rev-hiddenicon:hover i{opacity:1!important;margin-left:10px!important;width:auto!important}.rev-btn.rev-medium,.rev-btn.rev-medium:visited{line-height:36px;font-size:14px;padding:10px 30px}.rev-btn.rev-medium.rev-hiddenicon i,.rev-btn.rev-medium.rev-withicon i{font-size:14px;top:0}.rev-btn.rev-small,.rev-btn.rev-small:visited{line-height:28px;font-size:12px;padding:7px 20px}.rev-btn.rev-small.rev-hiddenicon i,.rev-btn.rev-small.rev-withicon i{font-size:12px;top:0}.rev-maxround{border-radius:30px}.rev-minround{border-radius:3px}.rev-burger{position:relative;width:60px;height:60px;box-sizing:border-box;padding:22px 0 0 14px;border-radius:50%;border:1px solid rgba(51,51,51,.25);-webkit-tap-highlight-color:transparent;cursor:pointer}.rev-burger span{display:block;width:30px;height:3px;background:#333;transition:.7s;pointer-events:none;transform-style:flat!important}.rev-burger.revb-white span,.rev-burger.revb-whitenoborder span{background:#fff}.rev-burger span:nth-child(2){margin:3px 0}#dialog_addbutton .rev-burger:hover :first-child,.open .rev-burger :first-child,.open.rev-burger :first-child{transform:translateY(6px) rotate(-45deg)}#dialog_addbutton .rev-burger:hover :nth-child(2),.open .rev-burger :nth-child(2),.open.rev-burger :nth-child(2){transform:rotate(-45deg);opacity:0}#dialog_addbutton .rev-burger:hover :last-child,.open .rev-burger :last-child,.open.rev-burger :last-child{transform:translateY(-6px) rotate(-135deg)}.rev-burger.revb-white{border:2px solid rgba(255,255,255,.2)}.rev-burger.revb-darknoborder,.rev-burger.revb-whitenoborder{border:0}.rev-burger.revb-darknoborder span{background:#333}.rev-burger.revb-whitefull{background:#fff;border:none}.rev-burger.revb-whitefull span{background:#333}.rev-burger.revb-darkfull{background:#333;border:none}.rev-burger.revb-darkfull span,.rev-scroll-btn.revs-fullwhite{background:#fff}@keyframes rev-ani-mouse{0%{opacity:1;top:29%}15%{opacity:1;top:50%}50%{opacity:0;top:50%}100%{opacity:0;top:29%}}.rev-scroll-btn{display:inline-block;position:relative;left:0;right:0;text-align:center;cursor:pointer;width:35px;height:55px;box-sizing:border-box;border:3px solid #fff;border-radius:23px}.rev-scroll-btn>*{display:inline-block;line-height:18px;font-size:13px;font-weight:400;color:#fff;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:2px}.rev-scroll-btn>.active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{color:#fff}.rev-scroll-btn>.active,.rev-scroll-btn>:active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{opacity:.8}.rev-scroll-btn.revs-fullwhite span{background:#333}.rev-scroll-btn.revs-fulldark{background:#333;border:none}.rev-scroll-btn.revs-fulldark span,.tp-bullet{background:#fff}.rev-scroll-btn span{position:absolute;display:block;top:29%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;background:#fff;border-radius:50%;animation:rev-ani-mouse 2.5s linear infinite}.rev-scroll-btn.revs-dark{border-color:#333}.rev-scroll-btn.revs-dark span{background:#333}.rev-control-btn{position:relative;display:inline-block;z-index:5;color:#FFF;font-size:20px;line-height:60px;font-weight:400;font-style:normal;font-family:Raleway;text-decoration:none;text-align:center;background-color:#000;border-radius:50px;text-shadow:none;background-color:rgba(0,0,0,.5);width:60px;height:60px;box-sizing:border-box;cursor:pointer}.rev-cbutton-dark-sr,.rev-cbutton-light-sr{border-radius:3px}.rev-cbutton-light,.rev-cbutton-light-sr{color:#333;background-color:rgba(255,255,255,.75)}.rev-sbutton{line-height:37px;width:37px;height:37px}.rev-sbutton-blue{background-color:#3B5998}.rev-sbutton-lightblue{background-color:#00A0D1}.rev-sbutton-red{background-color:#DD4B39}.tp-bannertimer{visibility:hidden;width:100%;height:5px;background:#000;background:rgba(0,0,0,.15);position:absolute;z-index:200;top:0}.tp-bannertimer.tp-bottom{top:auto;bottom:0!important;height:5px}.tp-caption img{background:0 0;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);zoom:1}.caption.slidelink a div,.tp-caption.slidelink a div{width:3000px;height:1500px;background:url(../assets/coloredbg.png)}.tp-caption.slidelink a span{background:url(../assets/coloredbg.png)}.tp-loader.spinner0,.tp-loader.spinner5{background-image:url(../assets/loader.gif);background-repeat:no-repeat}.tp-shape{width:100%;height:100%}.tp-caption .rs-starring{display:inline-block}.tp-caption .rs-starring .star-rating{float:none;display:inline-block;vertical-align:top;color:#FFC321!important}.tp-caption .rs-starring .star-rating,.tp-caption .rs-starring-page .star-rating{position:relative;height:1em;width:5.4em;font-family:star;font-size:1em!important}.tp-loader.spinner0,.tp-loader.spinner1{width:40px;height:40px;margin-top:-20px;margin-left:-20px;animation:tp-rotateplane 1.2s infinite ease-in-out;background-color:#fff;border-radius:3px;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-caption .rs-starring .star-rating:before,.tp-caption .rs-starring-page .star-rating:before{content:"\73\73\73\73\73";color:#E0DADF;float:left;top:0;left:0;position:absolute}.tp-caption .rs-starring .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em;font-size:1em!important}.tp-caption .rs-starring .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.tp-loader{top:50%;left:50%;z-index:10000;position:absolute}.tp-loader.spinner0{background-position:center center}.tp-loader.spinner5{background-position:10px 10px;background-color:#fff;margin:-22px;width:44px;height:44px;border-radius:3px}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tp-loader.spinner2{width:40px;height:40px;margin-top:-20px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;animation:tp-scaleout 1s infinite ease-in-out}@keyframes tp-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.tp-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.tp-loader.spinner3 .bounce1,.tp-loader.spinner3 .bounce2,.tp-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;animation:tp-bouncedelay 1.4s infinite ease-in-out;animation-fill-mode:both}.tp-loader.spinner3 .bounce1{animation-delay:-.32s}.tp-loader.spinner3 .bounce2{animation-delay:-.16s}@keyframes tp-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tp-loader.spinner4{margin:-20px 0 0 -20px;width:40px;height:40px;text-align:center;animation:tp-rotate 2s infinite linear}.tp-loader.spinner4 .dot1,.tp-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;animation:tp-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-loader.spinner4 .dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes tp-rotate{100%{transform:rotate(360deg)}}@keyframes tp-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.tp-bullets.navbar,.tp-tabs.navbar,.tp-thumbs.navbar{border:none;min-height:0;margin:0;border-radius:0}.tp-bullets,.tp-tabs,.tp-thumbs{position:absolute;display:block;z-index:1000;top:0;left:0}.tp-tab,.tp-thumb{cursor:pointer;position:absolute;opacity:.5;box-sizing:border-box}.tp-arr-imgholder,.tp-tab-image,.tp-thumb-image,.tp-videoposter{background-position:center center;background-size:cover;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.tp-tab.selected,.tp-tab:hover,.tp-thumb.selected,.tp-thumb:hover{opacity:1}.tp-tab-mask,.tp-thumb-mask{box-sizing:border-box!important}.tp-tabs,.tp-thumbs{box-sizing:content-box!important}.tp-bullet{width:15px;height:15px;position:absolute;background:rgba(255,255,255,.3);cursor:pointer}.tp-bullet.selected,.tp-bullet:hover{background:#fff}.tparrows{cursor:pointer;background:#000;background:rgba(0,0,0,.5);width:40px;height:40px;position:absolute;display:block;z-index:1000}.tparrows:hover{background:#000}.tparrows:before{font-family:revicons;font-size:15px;color:#fff;display:block;line-height:40px;text-align:center}.hginfo,.hglayerinfo{font-size:12px;font-weight:600}.tparrows.tp-leftarrow:before{content:'\e824'}.tparrows.tp-rightarrow:before{content:'\e825'}body.rtl .tp-kbimg{left:0!important}.dddwrappershadow{box-shadow:0 45px 100px rgba(0,0,0,.4)}.hglayerinfo{position:fixed;bottom:0;left:0;color:#FFF;line-height:20px;background:rgba(0,0,0,.75);padding:5px 10px;z-index:2000;white-space:normal}.helpgrid,.hginfo{position:absolute}.hginfo{top:-2px;left:-2px;color:#e74c3c;background:#000;padding:2px 5px}.indebugmode .tp-caption:hover{border:1px dashed #c0392b!important}.helpgrid{border:2px dashed #c0392b;top:0;left:0;z-index:0}#revsliderlogloglog{padding:15px;color:#fff;position:fixed;top:0;left:0;width:200px;height:150px;background:rgba(0,0,0,.7);z-index:100000;font-size:10px;overflow:scroll}.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.single_post a {
  color: #337ab7;
  text-decoration: none;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
.post__content--wrapper ol,
.post__content--wrapper ul {
  margin-left: 48px;
  padding-bottom: 1px;
  padding-top: 2px;
}
.post__content--wrapper ol li,
.post__content--wrapper ul li {
  font: 18px 'aleobolditalic', sans-serif;
  color: #4c4145;
  margin-bottom: 20px;
}
.post__content--wrapper ul li {
  padding-left: 40px;
  background-image: url(../images/components/line-marker.png);
  background-repeat: no-repeat;
  background-position: left center;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
@font-face {
  font-family: 'aleoregular';
  src: url('../fonts/aleo-regular.eot');
  src: url('../fonts/aleo-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-regular.woff') format('woff'), url('../fonts/aleo-regular.ttf') format('truetype'), url('../fonts/aleo-regular.svg#aleoregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'aleobold';
  src: url('../fonts/aleo-bold.eot');
  src: url('../fonts/aleo-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-bold.woff') format('woff'), url('../fonts/aleo-bold.ttf') format('truetype'), url('../fonts/aleo-bold.svg#aleobold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'aleoitalic';
  src: url('../fonts/aleo-italic.eot');
  src: url('../fonts/aleo-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-italic.woff') format('woff'), url('../fonts/aleo-italic.ttf') format('truetype'), url('../fonts/aleo-italic.svg#aleoitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'aleobolditalic';
  src: url('../fonts/aleo-bolditalic.eot');
  src: url('../fonts/aleo-bolditalic.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-bolditalic.woff') format('woff'), url('../fonts/aleo-bolditalic.ttf') format('truetype'), url('../fonts/aleo-bolditalic.svg#aleobolditalic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'museo_sans500';
  src: url('../fonts/MuseoSans_500-webfont.eot');
  src: url('../fonts/MuseoSans_500-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans_500-webfont.woff') format('woff'), url('../fonts/MuseoSans_500-webfont.ttf') format('truetype'), url('../fonts/MuseoSans_500-webfont.svg#museo_sans500') format('svg');
  font-weight: normal;
  font-style: normal;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
}
.wrapper {
  overflow: hidden;
  position: relative;
  /* min-height: 100%; */
}
.wrapper-images {
  background-image: url(../images/bg-image.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #B1B2B4;
}
h1 {
  color: #4c4145;
  font-size: 30px;
  font-family: 'aleoregular', sans-serif;
  margin-top: 32px;
  margin-bottom: 23px;
}
h2 {
  color: #4c4145;
  font-size: 27px;
  font-family: 'aleoregular', sans-serif;
  margin-top: 70px;
  margin-bottom: 23px;
}
h3 {
  color: #4c4145;
  font-size: 24px;
  font-family: 'aleoregular', sans-serif;
  margin-top: 40px;
  margin-bottom: 24px;
}
h4 {
  color: #4c4145;
  font-size: 21px;
  font-family: 'aleoregular', sans-serif;
  margin-top: 70px;
  margin-bottom: 24px;
}
h5 {
  color: #4c4145;
  font-size: 18px;
  font-family: 'aleoregular', sans-serif;
  margin-top: 70px;
  margin-bottom: 24px;
}
.unslyled {
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
p {
  font-size: 15px;
  line-height: 28px;
  color: #4c4145;
  margin-bottom: 28px;
}
.text--light {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}
a {
  font-size: 13px;
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
a:focus {
  color: #fe505a;
  text-decoration: none;
}
a:focus {
  outline: none;
}
:focus {
  outline: none;
}
textarea {
  resize: none;
}
input,
textarea {
  -webkit-appearance: none;
}
.clearfix:before,
.clearfix:after,
/* .dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after, */
.row:before,
.row:after,
/* .panel-body:before,
.panel-body:after, */
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.clearfix:after,
/* .dl-horizontal dd:after, */
/* .container:after,
.container-fluid:after,
.panel-body:after, */
/* .nav:after, */
.row:after {
  clear: both;
}
.devider-wrapper {
  width: 100%;
  padding: 0 15px;
}
.devider {
  width: 100%;
  height: 1px;
  background-color: #dbdee1;
}
.devider-huge {
  width: 100%;
  height: 6px;
  background-color: #dbdee1;
  margin-bottom: 60px;
  margin-top: 55px;
}
.wave-devider {
  position: relative;
  margin-top: 20px;
  margin-bottom: 17px;
  overflow: hidden;
  padding-top: 8px;
}
.wave-devider:before {
  content: '';
  background-image: url(../images/components/wave-dark.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.list li {
  font: 18px 'aleobolditalic', sans-serif;
  color: #4c4145;
  margin-bottom: 20px;
}
table {
  width: 100%;
}
.col-width-lg {
  width: 45%;
}
.col-width {
  width: 22%;
}
.col-width-sm {
  width: 11%;
}
/* draw any selected text white on black background */
::-moz-selection {
  background: #4c4145;
  color: #ffffff;
}
::selection {
  background: #4c4145;
  color: #ffffff;
}
.top-scroll {
  bottom: 55px;
  height: 50px;
  position: fixed;
  right: 5%;
  width: 50px;
  z-index: 100;
}
.top-scroll a {
  background: url("../images/components/arrow.svg") repeat scroll center center rgba(76, 65, 69, 0.8);
  display: block;
  height: 50px;
}
.top-scroll a:hover {
  background: url("../images/components/arrow.svg") repeat scroll center center rgba(254, 80, 90, 0.8);
}
.inv-em {
  top: -5px;
  text-align: left;
}
.invalid_field {
  border-color: #fe505a !important;
}
.login .success {
  background-color: #ffd564;
  font: 18px 'aleobold', sans-serif;
  text-transform: uppercase;
  color: #4c4145;
  text-align: center;
  padding-bottom: 28px;
  padding-top: 39px;
  margin-top: 50px;
  margin-bottom: 58px;
}
.form .success {
  font: 24px 'aleoitalic', sans-serif;
  padding-top: 67px;
  padding-bottom: 66px;
}
.form .success-huge {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  display: inline-block;
  margin-bottom: 12px;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #dddddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.color {
  width: 65px;
  height: 65px;
  -webkit-box-shadow: 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
}
.color--main {
  background-color: #4c4145;
}
.color--red {
  background-color: #fe505a;
}
.color--yellow {
  background-color: #ffd564;
}
.color--grey {
  background-color: #969b9f;
}
.color--grey-light {
  background-color: #dbdee1;
}
.color--grey-lighter {
  background-color: #f5f5f5;
}
.container--add {
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  position: relative;
  clear: both;
}
.col--remove {
  padding: 0;
}
.header-wrapper {
  background: rgba(23, 93, 128, 0.8);
  position: relative;
  z-index: 120;
  /* height: 55px; */
}
.header-wrapper--home {
  background: rgba(23, 93, 128, 0.8);
  position: absolute;
  height: 55px;
  width: 100%;
  z-index: 101;
}
.footer-wrapper {
  background-color: #fafafa;
  background-image: url(../images/components/price-pattern.jpg);
  background-repeat: repeat;
  overflow: hidden;
  /* margin-top: 60px; */
}
.select-area {
  background-color: #f5f5f5;
  padding: 13px 20px 2px;
}
.select-area .select {
  display: inline-block;
  margin-right: 40px;
}
.select-area .datepicker {
  margin-right: 35px;
  position: relative;
  top: -20px;
}
.tags-area {
  border-top: 1px solid #dbdee1;
  border-bottom: 1px solid #dbdee1;
  margin-top: 40px;
  padding-top: 13px;
  padding-bottom: 6px;
}
.tags-area--thin {
  padding-top: 8px;
  padding-bottom: 1px;
  margin-top: 27px;
}
.tags-area .select .sbHolder {
  width: 115px;
}
.tags-area .select .sbToggle:after {
  content: 'Города';
}
.tags-area .select .sbOptions {
  margin-left: -75px;
}
.banner-top {
  position: relative;
  height: 90px;
  background-color: #e9e9e9;
}
.banner-top img {
  position: absolute;
  left: 50%;
  margin-left: -800px;
}
.banner-top:before {
  content: '';
  width: 100%;
  height: 47px;
  background-color: rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 21px;
  left: 0;
}
.adv-place {
  margin-bottom: 50px;
}
.adv-place img {
  max-width: 100%;
}
.control-panel {
  position: absolute;
  right: 15px;
  top: 10px;
}
.content-wrapper {
  overflow: hidden;
  margin: 57px 0;
}
.modify--bottom {
  margin-bottom: 32px;
}
.specific--wrapper {
  background-color: #f7f8f9;
  padding: 43px 0 44px;
}
.feather-wrapper {
  margin-top: 33px;
  margin-bottom: 13px;
}
.search-wrapper {
  background-color: #dbdee1;
  height: 86px;
}
.list-input {
  margin-left: 48px;
  padding-bottom: 1px;
  padding-top: 2px;
}
.col--modificator {
  margin-left: 18px;
}
.info-wrapper {
  border-top: 6px solid #dbdee1;
  border-bottom: 6px solid #dbdee1;
  overflow: hidden;
  padding-top: 14px;
  padding-bottom: 16px;
  margin-top: 52px;
}
.comment-sets {
  margin-top: 40px;
  padding-bottom: 7px;
}
.sitebar {
  margin-top: 105px;
  padding-left: 12px;
}
.sitebar img {
  max-width: 100%;
}
.banner-wrap {
  margin: 10px 0;
  border: 1px solid #dbdee1;
}
.footer-info {
  padding-top: 45px;
}
.footer-info .heading-special--small {
  float: left;
  margin-right: 11px;
  margin-top: 10px;
}
.overflow-wrapper {
  overflow: hidden;
}
.marginb-sm {
  margin-bottom: 10px;
}
.comming-wrapper {
  margin-bottom: 195px;
}
.wrap-select {
  margin-top: 25px;
}
.gallery-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
}
.contant--right .post {
  padding-right: 0;
  padding-left: 30px;
}
.contant--right .post--preview {
  padding-left: 0;
}
.contant--right .preview-wrapper {
  padding-left: 30px;
}
.contant--right .page-heading {
  padding-left: 60px;
  background-position: 30px 50%;
}
.contant--right .comment-wrapper {
  padding-left: 30px;
}
.sitebar--left {
  padding-right: 12px;
  padding-left: 0;
  margin-top: 0;
}
.first-banner--left {
  margin-top: 0;
}
.typography-wrap {
  padding: 0 15px;
}
.list-wrapper {
  overflow: hidden;
}
.list-wrapper .list {
  margin-top: 80px;
}
.order-container {
  margin-top: 48px;
  margin-bottom: 78px;
}
.coloum-wrapper {
  margin-top: 60px;
}
.logo {
  position: absolute;
  top: 7px;
  left: 15px;
  z-index: 2;
}
.logo img {
  width: 100%;
  max-width: 170px;
}
.logo_text {
  max-width: 160px;
  margin-left: 15px;
  font-size: 13px;
  position: absolute;
  top: 7px;
  left: 185px;
  color: #ffffff;
}
#navigation-box {
  background-color: transparent;
  margin: 0;
  min-height: 55px;
}
ul#navigation {
  margin-right: 150px;
}
ul#navigation a {
  font: 13px 'Roboto', sans-serif;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
ul#navigation a:hover {
  color: #ffd564;
}
.heading {
  font: 16px 'aleoregular', sans-serif;
  text-transform: uppercase;
  color: #4c4145;
  margin: 0 0 16px;
}
.heading--outcontainer {
  margin-left: 15px;
  margin-right: 15px;
}
.heading--top {
  margin-top: 56px;
}
.heading--strong {
  font-size: 21px;
  font-family: 'aleobold', sans-serif;
}
.page-heading {
  padding-left: 30px;
  margin-top: 56px;
  margin-bottom: 27px;
  font: 20px 'aleobold', sans-serif;
  color: #4c4145;
  text-transform: uppercase;
  background-image: url(../images/components/scarf.png);
  -webkit-background-size: 21px 6px;
  background-size: 21px 6px;
  background-position: left center;
  background-repeat: no-repeat;
}
.heading-special {
  font-size: 22px;
  line-height: 20px;
  color: #4c4145;
  font-family: 'aleobold', sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 6px;
}
.heading-special .heading-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: 'aleoitalic', sans-serif;
  text-transform: lowercase;
}
.error-wrapper {
  text-align: center;
}
.checkout-wrapper {
  border-bottom: 1px solid #dbdee1;
  margin-bottom: 60px;
  padding-bottom: 50px;
}
.lower--hight {
  padding-top: 20px;
}
.heading-special--small {
  font-family: 'aleoregular', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #4c4145;
  text-transform: uppercase;
}
.heading-special--small .title-edition {
  font-family: 'aleoitalic', sans-serif;
  text-transform: initial;
  color: #fe505a;
}
.text-helper {
  color: #969b9f;
  font-family: 'aleoitalic', sans-serif;
  font-size: 16px;
}
.text-helper .fa {
  padding-right: 7px;
}
.btn-md {
  color: #ffffff;
  padding: 11px 17px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), inset 0 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), inset 0 2px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), inset 0 2px rgba(255, 255, 255, 0.2);
  font: 12px 'aleobold', sans-serif;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-md:hover {
  color: #ffffff;
}
.btn--warning {
  color: #4c4145;
  background-color: #ffd564;
  border: solid 1px #ffc936;
}
.btn--warning:hover {
  color: #4c4145;
  background-color: #ffe08d;
  border-color: transparent;
}
.btn--danger {
  background-color: #fe505a;
  border: solid 1px #f42a36;
}
.btn--danger:hover {
  background-color: #fd616a;
  border-color: transparent;
}
.btn--success {
  background-color: #90bf34;
  border: solid 1px #90bf34;
}
.btn--success:hover {
  background-color: #acc876;
  border-color: transparent;
}
.btn--shine {
  background-color: #ff971d;
  border: solid 1px #ff971d;
}
.btn--shine:hover {
  background-color: #ffb865;
  border-color: transparent;
}
.btn--info {
  background-color: #6dc5dd;
  border: solid 1px #6ac7f7;
}
.btn--info:hover {
  background-color: #9ccce4;
  border-color: transparent;
}
.btn--ready {
  background-color: #ba5091;
  border: solid 1px #ba5091;
}
.btn--ready:hover {
  background-color: #b6749d;
  border-color: transparent;
}
.btn--slow {
  background-color: #66b8a1;
  border: solid 1px #66b8a1;
}
.btn--slow:hover {
  background-color: #8ecab9;
  border-color: transparent;
}
.btn--default {
  background-color: #537f9b;
  border: solid 1px #537f9b;
}
.btn--default:hover {
  background-color: #7f9fb3;
  border-color: transparent;
}
.btn-demo {
  margin-left: -15px;
  width: 100%;
  margin-bottom: 11px;
}
.btn--sign {
  font: 13px 'Roboto', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffd564;
  position: relative;
  margin-right: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn--sign:before {
  content: '';
  background-image: url(../images/components/wave.svg);
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  top: 24px;
  left: 12px;
}
.btn--sign:hover,
.btn--sign:focus {
  color: #b4b1b2;
}
.btn--sign:hover:before,
.btn--sign:focus:before {
  background-image: url(../images/components/wave-hover.svg);
}
.btn--book {
  padding: 7px 17px;
}
.btn--post_categories {
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  border: solid 1px #ffc936;
  color: #4c4145;
  box-shadow: none;
}
.btn--post_categories:hover {
  color: #4c4145;
  background: #ffc936;
}
.btn--wide {
  padding-left: 28px;
  padding-right: 28px;
}
.btn--wider {
  padding-left: 32px;
  padding-right: 32px;
}
.watchlist {
  font-size: 13px;
  color: #4c4145;
  border: 1px solid #4c4145;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  padding: 5px 14px 6px 31px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.watchlist:before {
  content: '\f055';
  color: #4c4145;
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  top: 4px;
  left: 11px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.watchlist:hover,
.watchlist:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #969b9f;
  border-color: #969b9f;
}
.watchlist:hover:before,
.watchlist:focus:before {
  color: #ffffff;
}
.watchlist--map {
  float: right;
}
.watchlist--map:before {
  content: '\f041';
}
.read-more {
  font: 16px 'aleoregular', sans-serif;
  color: #fe505a;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 6px 15px 5px 11px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.read-more:after {
  content: '\f054';
  font-family: "FontAwesome";
  color: #fe505a;
  padding-left: 12px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.read-more:hover,
.read-more:focus {
  background-color: #fe505a;
  color: #ffffff;
  text-decoration: none;
}
.read-more:hover:after {
  color: #ffffff;
}
.watchlist,
.read-more {
  display: inline-block;
  margin-bottom: 15px;
}
.link--bigger {
  font-size: 16px;
  font-weight: bold;
}
.link--huge {
  font-size: 20px;
}
.link--text {
  font-size: 15px;
  color: #969b9f;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.link--text:hover {
  color: #ffffff;
  background-color: #4c4145;
}
.accordion-wrap {
  min-height: 365px;
}
.panel-group {
  margin-top: 10px;
  margin-bottom: 0;
}
.panel-group .panel {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  box-shadow: none;
  border: none;
}
.panel-group .panel-heading {
  position: relative;
  border: 1px solid #dbdee1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: transparent;
  padding: 14px 15px 17px 55px;
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.panel-collapse .panel-body {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 21px;
  padding: 13px 15px 10px 35px;
  color: #4c4145;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border: none;
}
.panel-heading .marker {
  border-right: 1px solid #DADEE1;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 35px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.panel-heading .custom1 {
  display: none;
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 11px;
  margin-top: -14px;
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.panel-heading .custom2 {
  display: inline-block;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -24px;
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.panel-heading .collapsed .custom1 {
  display: inline-block;
}
.panel-heading .collapsed .custom2 {
  display: none;
}
.accordion-light .panel + .panel {
  margin-top: 10px;
}
.accordion-light .panel-title {
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.accordion-light .marker {
  font-weight: normal;
}
.accordion-light .panel-heading:hover {
  border-color: #fe505a;
  color: #fe505a;
}
.accordion-light .panel-heading:hover .marker {
  background-color: #fe505a;
  border-color: transparent;
}
.accordion-light .panel-heading:hover .marker .custom1,
.accordion-light .panel-heading:hover .marker .custom2 {
  color: #ffffff;
}
.accordion-dark .panel + .panel {
  margin-top: 4px;
}
.accordion-dark .panel-heading {
  border: none;
  padding: 0;
}
.accordion-dark .panel-body {
  background-color: #4c4145;
  color: #b4b1b2;
  padding-bottom: 27px;
}
.accordion-dark .panel-title > a,
.accordion-dark .panel-title > a.collapsed:hover {
  display: block;
  padding: 17px 15px 18px 55px;
  background-color: #4c4145;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}
.accordion-dark .panel-title > a .marker,
.accordion-dark .panel-title > a.collapsed:hover .marker {
  background-color: #4c4145;
  border-color: transparent;
}
.accordion-dark .panel-title > a .marker .custom1,
.accordion-dark .panel-title > a.collapsed:hover .marker .custom1,
.accordion-dark .panel-title > a .marker .custom2,
.accordion-dark .panel-title > a.collapsed:hover .marker .custom2 {
  color: #ffffff;
}
.accordion-dark .panel-title > a.collapsed {
  background-color: #f7f8f9;
  color: #4c4145;
}
.accordion-dark .panel-title > a.collapsed .marker {
  background-color: #f7f8f9;
  border-right: 3px solid #ffffff;
}
.accordion-dark .panel-title > a.collapsed .marker .custom1,
.accordion-dark .panel-title > a.collapsed .marker .custom2 {
  color: #4c4145;
}
.alert {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-left: 56px;
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 10px;
}
.alert span {
  bottom: 0;
  color: #FFFFFF;
  font-size: 15px;
  left: 0;
  padding-left: 12px;
  padding-top: 13px;
  position: absolute;
  top: 0;
  width: 35px;
}
.alert-success {
  background-color: #E1FFD9;
  border: 1px solid #92DA7F;
  color: #46a92c;
}
.alert-warning {
  background-color: #FFF9D5;
  border: 1px solid #F0D229;
  color: #daba06;
}
.alert-danger {
  background-color: #FFD3D0;
  border: 1px solid #F25549;
  color: #f25549;
}
.alert-info {
  background-color: #E7F4FF;
  border: 1px solid #9AC8F1;
  color: #4fa7f5;
}
.alert-success span {
  background-color: #92DA7F;
}
.alert-warning span {
  background-color: #F0D229;
}
.alert-danger span {
  background-color: #F25549;
}
.alert-info span {
  background-color: #9AC8F1;
}
.icon-flag:before {
  content: "\f024";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}
.icon-bell:before {
  content: "\f0f3";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}
.icon-warning:before {
  content: "\f06a";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}
.icon-info:before {
  content: "\f05a";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}
.alert .close {
  opacity: 1;
  float: right;
  font-size: 13px;
  position: relative;
}
.alert .close:before {
  content: "\f00d";
  font-size: 13px;
  font-family: "FontAwesome";
}
.alert-success .close:before {
  color: #46a92c;
}
.alert-warning .close:before {
  color: #daba06;
}
.alert-danger .close:before {
  color: #f25549;
}
.alert-info .close:before {
  color: #4fa7f5;
}
.price {
  padding-right: 40px;
  padding-bottom: 20px;
  text-align: center;
  margin-top: 10px;
}
.price .price-inner {
  background-color: #4c4145;
  position: relative;
  z-index: 5;
}
.price .price-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #4c4145;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}
.price .price__package {
  font: 16px 'aleoregular', sans-serif;
  color: #ffffff;
  text-transform: capitalize;
  padding-top: 16px;
  padding-bottom: 15px;
  margin-bottom: 0px;
}
.price .price__value {
  font: 40px 'aleobold', sans-serif;
  color: #fe505a;
  background-color: #fafafa;
  background-image: url(../images/components/price-pattern.jpg);
  background-repeat: repeat;
  background-position: center;
  padding-top: 26px;
  padding-bottom: 27px;
}
.price .price__feather {
  font: 13px 'Roboto', sans-serif;
  color: #b4b1b2;
  padding-top: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(180, 177, 178, 0.2);
}
.price .last-point {
  border: none;
}
.price .price__btn {
  padding-bottom: 33px;
}
.progress .progress__info {
  font-weight: bold;
  margin-bottom: 6px;
}
.progress .progress__bar {
  height: 15px;
  padding: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #4c4145;
}
.progress .progress__bar .progress__current {
  background-color: #ffd564;
  height: 100%;
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
}
.promo {
  background-color: #fe505a;
  text-align: center;
  padding: 48px 0px 10px;
}
.promo .promo__head {
  font: 30px 'aleobold', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 21px;
}
.promo .promo__describe {
  font: 18px 'aleoitalic', sans-serif;
  color: #4c4145;
  font-weight: 300;
  padding-bottom: 45px;
}
.promo-field {
  margin-right: 13px;
}
.store-variant {
  position: relative;
  padding: 9px 0 11px;
}
.store-variant:before {
  content: '';
  background-image: url(../images/components/wave-dark.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: -4px;
  left: 50%;
  margin-left: -42px;
}
.store-variant a {
  display: block;
  padding: 7px 0 5px;
}
.store-variant a:hover {
  background-color: #4c4145;
}
.store-variant img {
  width: 50%;
}
.tabs {
  margin-top: 10px;
}
.nav-tabs {
  border: none;
}
.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border: none;
  padding: 16px 26px 14px;
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font: 16px 'Roboto', sans-serif;
  color: #4c4145;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #fe505a;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #f5f5f5;
  border: none;
  padding: 16px 53px 14px;
  color: #4c4145;
}
.tab-content {
  clear: both;
  background-color: #f5f5f5;
  padding: 26px 30px 13px;
  text-align: left;
}
.tab-content p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 21px;
}
.tabs--vertical .nav-tabs {
  display: block;
  float: left;
}
.tabs--vertical .nav-tabs > li {
  float: none;
}
.tabs--vertical .nav-tabs > li > a,
.tabs--vertical .nav-tabs > li > a:hover,
.tabs--vertical .nav-tabs > li > a:focus {
  padding: 14px 10px 14px 0;
}
.tabs--vertical .nav-tabs > li.active > a,
.tabs--vertical .nav-tabs > li.active > a:hover,
.tabs--vertical .nav-tabs > li.active > a:focus {
  color: #fe505a;
  background-color: transparent;
  border-left: 6px solid #fe505a;
  padding-left: 10px;
}
.tabs--vertical .tab-content {
  margin-left: 115px;
  clear: none;
  background-color: #fe505a;
  padding: 28px 40px 23px;
  min-height: 258px;
}
.tabs--vertical .tab-content * {
  color: #ffffff;
}
.testionaial {
  margin-top: 10px;
}
.testionaial .testionaial__images {
  float: left;
  margin-right: 10px;
}
.testionaial .testionaial__author {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 0;
  padding-top: 14px;
}
.testionaial .testionaial__organization {
  font-size: 13px;
  font-style: italic;
}
.testionaial .testionaial__text {
  font: 13px 'Roboto', sans-serif;
  color: #4c4145;
  font-style: italic;
  margin-top: 30px;
  padding: 23px 25px;
  line-height: 21px;
  border: 1px solid #dadee1;
  position: relative;
}
.testionaial .testionaial__text:after,
.testionaial .testionaial__text:before {
  bottom: 100%;
  left: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}
.testionaial .testionaial__text:after {
  border-color: rgba(48, 159, 255, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.testionaial .testionaial__text:before {
  border-color: rgba(218, 222, 225, 0);
  border-bottom-color: #dadee1;
  border-width: 11px;
  margin-left: -11px;
}
.search {
  position: relative;
  top: -10px;
}
.search .search__field {
  display: inline-block;
  width: 100%;
  padding: 9px 300px 9px 19px;
  margin-top: 14px;
  line-height: 18px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: solid 1px #dbdee1;
  background-color: #fff;
  color: #4c4145;
  font-size: 13px;
}
.search .search__sort {
  opacity: 0;
}
.search .search__button {
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 3;
}
.search .sbHolder {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 141px;
  width: 140px;
  height: 35px;
  border: none;
  border-left: 1px solid #dbdee1;
  background-color: #fff;
}
.search .sbHolder .sbSelector {
  margin-top: 4px;
  margin-left: 5px;
  color: #4c4145;
  font-size: 13px;
}
.search .sbHolder .sbOptions {
  width: 150px;
  top: 37px !important;
  border: none;
  padding: 14px 7px;
  z-index: 23;
  background-color: #4c4145;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.search .sbHolder .sbOptions a {
  color: #b4b1b2;
  border: none;
}
.search .sbHolder .sbOptions a:hover,
.search .sbHolder .sbOptions a:focus {
  color: #ffffff;
}
.search .sbHolder .sbToggle {
  top: 10px;
  right: -15px;
}
.search .sbHolder .sbToggle:before {
  content: "\f078";
  color: #4c4145;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.search .sbHolder .sbToggleOpen:before {
  content: "\f077";
}
.sbHolder {
  outline: none;
}
.post {
  padding-right: 30px;
}
.post .post__image-link {
  display: block;
  position: relative;
}
.post .post__image-link img {
  max-width: 100%;
}
.post .post__image-link:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.post .post__image-link:hover:before {
  /* width: 90%;
  height: 80%;
  left: 5%;
  right: 5%;
  top: 10%;
  bottom: 10%;
  opacity: 1; */
}
.post .post__image-link:after {
  content: "\f0c1";
  font: 20px "FontAwesome";
  color: #ffffff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.post .post__image-link:hover:after {
  /* opacity: 1; */
}
.post .post__title-link {
  font: 30px 'aleoregular', sans-serif;
}
.post .post__date {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 12px;
}
.post .post__date:before {
  content: "\f073";
  font-size: 12px;
  font-family: "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: -1px;
  left: 1px;
}
.post--news .post__date {
  line-height: 28px;
}
.post__content--wrapper a {
  font-size: 15px;
  color: #969b9f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.post__content--wrapper a:hover {
  color: #ffffff;
  /* background-color: #4c4145; */
  text-decoration: underline;
}
.post .post__images {
  margin-bottom: 40px;
}
.post .post__images img {
  max-width: 100%;
  border: 6px solid #ffffff;
}
.post .post__images--right {
  padding: 0;
  margin-left: 54px;
}
.post .post__images--right:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #4c4145;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: -1;
}
.post .post__images--left {
  padding: 0;
  margin-right: 54px;
}
.post .post__images--left:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #4c4145;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}
.line--marker li {
  padding-left: 40px;
  background-image: url(../images/components/line-marker.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.quote {
  border: none;
  background-color: #ffd564;
  color: #4c4145;
  font: 28px 'aleoitalic', sans-serif;
  padding: 55px 50px 15px;
}
.quote .quote__author {
  font-size: 16px;
  font-style: normal;
  font-family: 'aleobold', sans-serif;
  color: #ffffff;
  text-align: right;
  position: relative;
  z-index: 5;
  margin-top: 45px;
}
.quote .quote__author:before {
  content: '';
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  position: absolute;
  top: 6px;
  left: -55px;
}
.quote .quote__author .quote__author-name {
  background-color: #ffd564;
  position: relative;
  padding-left: 10px;
}
.quote--intext {
  margin-left: -15px;
  margin-right: 35px;
  margin-top: 9px;
}
.text--coloum {
  padding-left: 0;
  padding-right: 30px;
}
.tags {
  position: relative;
  padding-left: 20px;
}
.tags .tags__label {
  font-size: 13px;
  color: #4c4145;
  display: inline-block;
  float: left;
  margin-top: 2px;
  margin-right: 25px;
}
.tags .tags__item {
  display: inline-block;
  color: #969b9f;
  font-size: 12px;
  padding-right: 16px;
}
.tags .tags__item:hover {
  color: #4c4145;
}
.tags .item-active {
  color: #4c4145;
}
.tags .item-wrap {
  display: inline-block;
}
.tags:before {
  content: "\f02b";
  color: #969b9f;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 2px;
  left: 0px;
}
.share {
  margin-top: 26px;
}
.share .share__marker {
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.share .addthis_button_tweet {
  margin-left: 11px;
  margin-right: -20px;
}
.social {
  padding-top: 4px;
}
.social .social__variant {
  position: relative;
  width: 30px;
  height: 31px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background-color: #dbdee1;
  color: #4c4145;
  font-size: 16px;
  text-align: center;
  padding-top: 8px;
  margin-left: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.social .social__variant:after {
  content: '';
  width: 46px;
  height: 46px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  border: solid 2px #dbdee1;
  position: absolute;
  top: -8px;
  left: -8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.social .social__variant:hover {
  color: #ffffff;
  background-color: #fe505a;
}
.social .social__variant:hover:after {
  border-color: #fe505a;
}
.social--hide {
  padding-top: 0;
  position: relative;
  width: 31px;
  height: 31px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  cursor: pointer;
  z-index: 20;
  background-color: #ffd564;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.social--hide:before {
  content: '+';
  font: 18px 'Roboto', sans-serif;
  color: #4c4145;
  font-weight: bold;
  position: absolute;
  top: 3px;
  left: 11px;
}
.social--hide .social__name {
  padding-left: 27px;
  padding-top: 5px;
  display: inline-block;
  font-size: 13px;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.social--hide .social__variant {
  position: absolute;
  top: 0px;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 0 7px;
  background-color: transparent;
  font-size: 13px;
  margin-left: 0;
}
.social--hide .social__variant:after {
  display: none;
}
.social--hide .social__variant:hover {
  background-color: transparent;
  color: #fe505a;
}
.social--hide .social__variant.social--first {
  left: 105px;
}
.social--hide .social__variant.social--second {
  left: 125px;
}
.social--hide .social__variant.social--third {
  left: 150px;
}
.social--hide:hover {
  width: 190px;
}
.social--hide:hover .social__name {
  opacity: 1;
}
.social--hide:hover .social__variant {
  opacity: 1;
  top: 9px;
}
.social--hide:hover .social__variant.social--first {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.social--hide:hover .social__variant.social--second {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.social--hide:hover .social__variant.social--third {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.social--position {
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -15px;
}
.comment-form {
  margin-bottom: 50px;
}
.comment-form .comment-form__name,
.comment-form .comment-form__email {
  width: 100%;
  min-height: 20px;
  padding: 8px 19px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #dbdee1;
  font-size: 13px;
  color: #b4b1b2;
}
.comment-form .comment-form__text {
  width: 100%;
  min-height: 78px;
  padding: 8px 19px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #dbdee1;
  font-size: 13px;
  color: #b4b1b2;
}
.comment-form .comment-form__info {
  margin-top: 19px;
  font: 13px 'Roboto', sans-serif;
  color: #969b9f;
  display: inline-block;
}
.comment-form .comment-form__btn {
  float: right;
  margin-top: 9px;
}
.comment {
  position: relative;
  border-top: 1px solid #f5f5f5;
  padding-top: 30px;
}
.comment .comment__images {
  float: left;
  margin-right: 18px;
}
.comment .comment__author {
  padding-top: 6px;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 20px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.comment .comment__date {
  font-size: 13px;
  margin-bottom: 0;
  color: #969b9f;
  line-height: 20px;
}
.comment .comment__message {
  clear: both;
  font-size: 13px;
  line-height: 21px;
  margin-top: 7px;
}
.comment .comment__reply {
  position: absolute;
  top: 43px;
  right: 0;
  font-size: 14px;
  color: #fe505a;
}
.comment .comment__reply:before {
  content: "\f112";
  font-size: 14px;
  color: #fe505a;
  font-family: "FontAwesome";
  margin-right: 10px;
}
.comment .comment__reply:hover,
.comment .comment__reply:hover:before {
  opacity: 0.7;
}
.comment--last {
  border-bottom: 1px solid #f5f5f5;
}
.social-used {
  width: 16px;
  height: 16px;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 8px;
  left: 0;
}
.social-used.fa-facebook {
  background-color: #3b5998;
  padding-top: 4px;
  padding-left: 2px;
}
.social-used.fa-vk {
  background-color: #507296;
  padding-top: 3px;
}
.category {
  background-color: #4c4145;
  padding: 56px 24px 10px;
  position: relative;
}
.category:before {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 13px;
  left: 50%;
  margin-left: -20px;
}
.category .category__title {
  font-size: 22px;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 28px;
  font-family: 'aleobold', sans-serif;
}
.category .category__title .title-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: 'aleoitalic', sans-serif;
  text-transform: lowercase;
}
.category .category__item {
  position: relative;
  color: #b4b1b2;
  padding-left: 15px;
  margin-bottom: 18px;
  display: inline-block;
  line-height: 13px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.category .category__item:before {
  content: "\f111";
  color: #ffffff;
  font: 6px "FontAwesome";
  position: absolute;
  top: 3px;
  left: 0;
}
.category .category__item:hover {
  color: #ffffff;
}
#loading-container {
  text-align: center;
}
#loading-container img {
  width: 40px;
  height: 40px;
  margin-top: 30px;
}
.twitter-article {
  margin-top: 13px;
}
.twitter-article + .twitter-article {
  margin-top: 46px;
}
#twitter-feed p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 14px;
}
#twitter-feed p a {
  color: #969b9f;
}
.twitter-pic {
  float: left;
  margin-right: 11px;
}
#twitter-feed .twitter-author {
  font-size: 14px;
  font-weight: bold;
  padding-top: 3px;
  margin-bottom: 0;
}
.tweetprofilelink a {
  font-size: 12px;
  color: #969b9f;
  font-family: Arial, sans-serif;
}
.twitter-text {
  position: relative;
}
.twitter-text .tweet-time {
  position: absolute;
  bottom: -25px;
  left: 0;
}
.nav-link {
  margin-top: 63px;
}
.nav-link .nav-link__item {
  display: inline-block;
  font-size: 12px;
  padding-left: 1px;
  margin-bottom: 10px;
}
.nav-link .nav-link__item:before {
  content: "\f105";
  margin-right: 25px;
  font: 12px "FontAwesome";
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nav-link .nav-link__item:hover:before {
  color: #fe505a;
}
.copy {
  font-family: 'aleoitalic', sans-serif;
  font-size: 13px;
  padding-bottom: 45px;
}
.copy-bottom {
  position: absolute;
  bottom: 23px;
  width: 100%;
}
.copy-bottom .copy {
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: center;
}
.swiper-slide img {
  max-width: 100%;
}
.single_post .post__preview img  {
  width: 100%;
}
.post__preview {
  position: relative;
}
.post__preview .arrow-left {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}
.post__preview .arrow-left:before {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/left-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.post__preview .arrow-left .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
}
.post__preview .arrow-left:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}
.post__preview .arrow-left:hover .slider__info {
  opacity: 1;
  display: inline-block;
}
.post__preview .arrow-left:hover:before {
  left: 9px;
  margin-top: -22px;
}
.post__preview .arrow-right {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}
.post__preview .arrow-right:before {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.post__preview .arrow-right .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
}
.post__preview .arrow-right:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}
.post__preview .arrow-right:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}
.post__preview .arrow-right:hover:before {
  right: 9px;
  margin-top: -22px;
}
.post .no-hover {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.post .no-hover:before {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.post .no-hover:hover {
  width: 40px;
  height: 40px;
  margin-top: -18px;
  background: none;
  border: none;
}
.arrow-left.no-hover:hover:before {
  left: 3px;
}
.arrow-right.no-hover:hover:before {
  right: 3px;
}
.menu-icon {
  position: relative;
  background-image: none;
}
.icon-toggle {
  display: inline-block;
  transition: .3s;
  position: absolute;
  top: -4px;
  left: -3px;
}
.lines {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 4px;
  background-color: #ffffff;
  /*create the upper and lower lines as pseudo-elements of the middle line*/
}
.lines:before,
.lines:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.lines:before {
  top: 7px;
}
.lines:after {
  top: -7px;
}
.icon-toggle .lines {
  transition: background .3s .6s ease;
}
.icon-toggle .lines:before,
.icon-toggle .lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: top 0.3s 0.6s ease, -webkit-transform 0.3s ease;
  transition: top .3s .6s ease, transform .3s ease;
}
.open-menu .icon-toggle .lines {
  transition: background .3s 0s ease;
  background: transparent;
}
.open-menu .icon-toggle .lines:before,
.open-menu .icon-toggle .lines:after {
  transition: top 0.3s ease, -webkit-transform 0.3s 0.5s ease;
  transition: top .3s ease, transform .3s .5s ease;
  top: 0;
  width: 24px;
}
.open-menu .icon-toggle .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -ms-transform: rotate(45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.open-menu .icon-toggle .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
ul#navigation li.mega-menu__coloum {
  padding-left: 30px;
  border: none;
}
ul#navigation li.mega-menu__coloum--outheading {
  padding-top: 44px;
}
ul#navigation > li {
  padding-bottom: 21px;
}
ul#navigation > li > ul.mega-menu {
  width: 1140px;
  left: -792px;
  top: 45px;
  background-color: #4c4145;
}
.mega-menu__heading {
  font-size: 13px;
  color: #ffffff;
  margin: 13px 0 17px;
}
ul#navigation li.mega-menu__nav-item {
  padding: 0;
  border: none;
  padding-left: 23px;
}
ul#navigation li.mega-menu__nav-item:before {
  content: "\f111";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 14px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
ul#navigation li.mega-menu__nav-item:hover:before {
  color: #ffffff;
}
#navigation .menu__nav-item {
  padding: 0;
  border: none;
  padding-left: 23px;
}
#navigation .menu__nav-item:before {
  content: "\f111";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 14px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#navigation .menu__nav-item:hover:before {
  color: #ffffff;
}
.auth {
  position: relative;
  z-index: 21;
}
.auth .auth__show {
  background-color: #4c4145;
  display: inline-block;
  padding-top: 10px;
  padding-left: 4px;
  padding-bottom: 13px;
  min-width: 104px;
  position: relative;
  z-index: 3;
}
.auth .auth__image img {
  width: 31px;
  height: 31px;
}
.auth .auth__function {
  background-color: #4c4145;
  width: 220px;
  padding: 19px 29px 21px;
  display: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 2;
}
.auth .auth__function .auth__function-item {
  color: #B4B1B2;
  display: inline-block;
  padding: 5px 0px 5px 25px;
  position: relative;
}
.auth .auth__function .auth__function-item:hover {
  color: #ffffff;
}
.auth .auth__function .auth__function-item:before {
  content: "\f111";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.auth .auth__function .auth__function-item:hover:before {
  color: #ffffff;
}
.auth .btn--singin {
  position: absolute;
  top: 9px;
  left: 39px;
  padding-right: 20px;
  z-index: 15;
  color: #B4B1B2;
}
.auth .btn--singin:before {
  left: 9px;
  background-image: url(../images/components/wave-hover.svg);
}
.auth .btn--singin:after {
  content: "\f078";
  color: #B4B1B2;
  font: 11px "FontAwesome";
  position: absolute;
  top: 9px;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn--singin:hover,
.btn--singin:hover:after {
  color: #ffffff;
}
.btn--singin:hover:before {
  background-image: url(../images/components/wave-light-sm.svg);
}
.auth__show:hover {
  cursor: pointer;
}
.auth__show:hover + .btn--singin,
.auth__show:hover + .btn--singin:after {
  color: #ffffff;
}
.auth__show:hover + .btn--singin:before {
  background-image: url(../images/components/wave-light-sm.svg);
}
.open-function {
  display: block !important;
  -webkit-animation: anime 500ms;
  -moz-animation: anime 500ms;
  -o-animation: anime 500ms;
  animation: anime 500ms;
}
.datepicker {
  position: relative;
  display: inline-block;
  z-index: 15;
}
.datepicker .datepicker__input,
.datepicker .archive_datepicker__input {
  width: 90px;
  border: none;
  cursor: pointer;
  color: #fe505a;
  background-color: transparent;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.datepicker .archive_datepicker__input {
  width: 85px;
}
.datepicker:hover .datepicker__input,
.datepicker:hover .archive_datepicker__input {
  color: #4c4145;
}
.datepicker:before {
  content: "\f078";
  color: #fe505a;
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  top: 3px;
  right: -2px;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.datepicker:hover:before {
  color: #4c4145;
}
.datepicker:after {
  content: '';
  background-image: url('../images/components/wave-danger.svg');
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 95px;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -2px;
}
.datepicker.archive:after {
  width: 90px;
}
.datepicker:hover:after {
  background-image: url('../images/components/wave-main.svg');
}
.datepicker .datepicker__marker {
  font-weight: bold;
  padding-right: 10px;
}
.datepicker .datepicker__marker .fa {
  padding-right: 5px;
}
.datepicker--sample {
  margin-left: -40px;
}
.ui-datepicker {
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0;
  margin-left: -170px;
  margin-top: 15px;
  background-color: #4c4145;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
}
.ui-datepicker:after {
  bottom: 100%;
  right: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-bottom-color: #4c4145;
  border-width: 7px;
  border-collapse: separate;
}
.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  color: #ffffff;
  font: 14px 'aleoregular', sans-serif;
  margin-top: 11px;
  margin-bottom: 13px;
}
.ui-datepicker .ui-datepicker-calendar {
  background-color: #4c4145;
}
.ui-datepicker .ui-datepicker-calendar thead {
  background-color: rgba(0, 0, 0, 0.1);
}
.ui-datepicker .ui-datepicker-prev {
  left: 6px;
  top: 11px;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url(../images/icons/sm-left-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.ui-datepicker .ui-datepicker-prev:hover {
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  left: 6px;
  top: 11px;
}
.ui-datepicker .ui-datepicker-prev:hover .ui-icon {
  background-image: url(../images/icons/sm-left-arrow-hover.svg);
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
}
.ui-datepicker .ui-datepicker-next {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
  right: 6px;
  top: 11px;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url(../images/icons/sm-right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.ui-datepicker .ui-datepicker-next:hover {
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  right: 6px;
  top: 11px;
}
.ui-datepicker .ui-datepicker-next:hover .ui-icon {
  background-image: url(../images/icons/sm-right-arrow-hover.svg);
}
.ui-datepicker th {
  font-family: 'museo_sans500';
  font-size: 11px;
  color: #b4b1b2;
}
.ui-datepicker .ui-state-default {
  background: none;
  border: none;
  box-shadow: none;
  font-family: 'museo_sans500';
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  padding: 6px 2px;
}
.ui-datepicker .ui-datepicker-current-day .ui-state-default,
.ui-datepicker td:hover .ui-state-default {
  position: relative;
}
.ui-datepicker .ui-datepicker-current-day .ui-state-default:before,
.ui-datepicker td:hover .ui-state-default:before {
  content: "";
  background-image: url(../images/components/corner-left.png);
  background-repeat: no-repeat;
  width: 5px;
  height: 31px;
  position: absolute;
  top: -1px;
  left: 0px;
}
.ui-datepicker .ui-datepicker-current-day .ui-state-default:after,
.ui-datepicker td:hover .ui-state-default:after {
  content: "";
  background-image: url(../images/components/corner-right.png);
  background-repeat: no-repeat;
  width: 5px;
  height: 31px;
  position: absolute;
  top: -1px;
  right: 0px;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.6;
}
.ui-datepicker .ui-datepicker-current-day .ui-state-default,
.ui-datepicker td:hover .ui-state-default {
  color: #fe505a;
}
.select {
  margin-left: 50px;
  padding-bottom: 5px;
}
.select .sbHolder {
  background-color: transparent;
  border: none;
  height: 35px;
  width: auto;
}
.select .sbSelector {
  color: #fe505a;
  position: relative;
  text-align: right;
  padding-right: 20px;
  width: auto;
  float: right;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.select .sbSelector:hover {
  color: #4c4145;
}
.select .sbSelector:before {
  content: "\f078";
  color: #fe505a;
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  top: 0px;
  right: 1px;
  z-index: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.select .sbSelector:hover:before {
  color: #4c4145;
}
.select .sbSelector:after {
  content: '';
  background-image: url('../images/components/wave-danger.svg');
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: 2px;
}
.select .sbSelector:hover:after {
  background-image: url('../images/components/wave-main.svg');
}
.filter_date_type_form ul.sbOptions {
  margin-left: -70px;
}
.filter_date_type_form.select {
  margin-right: 60px;
}
.filter_date_type_form .sbHolder {
  /* width: 90px; */
}
.filter_date_type_form .sbSelector {
  left: 30px;
}
.select .sbToggle {
  right: auto;
  left: -32px;
  top: 6px;
}
.select .sbToggle:hover {
  color: #4c4145;
}
.select .sbToggle:before {
  content: "\f14e";
  font: 16px "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: 1px;
  left: -17px;
}
.select .sbToggle:after {
  content: 'Фильмы';
  font: 13px 'Roboto', sans-serif;
  font-weight: bold;
}
.select .sbOptions {
  margin-top: 11px;
  margin-left: -120px;
  border: none;
  background-color: #4c4145;
  width: 210px;
  padding: 19px 24px 21px;
  display: none;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 34;
  overflow: visible;
}
.select .sbOptions:after {
  content: " ";
  height: 0;
  width: 0;
  bottom: 100%;
  right: 20px;
  border: solid transparent;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-bottom-color: #4c4145;
  border-width: 7px;
}
.select .sbOptions a {
  border: none;
  color: #B4B1B2;
  display: inline-block;
  padding: 5px 0px 5px 25px;
  position: relative;
}
.select .sbOptions a:hover {
  color: #ffffff;
}
.select .sbOptions a:before {
  content: "\f111";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.select .sbOptions a:hover:before {
  color: #ffffff;
}
.mega-select .mega-select__point {
  font-weight: bold;
  font-size: 13px;
  float: left;
  margin-top: 2px;
  margin-right: 30px;
}
.mega-select .filter-wrap {
  position: relative;
  display: inline-block;
  margin: 0 13px;
}
.mega-select .mega-select__filter {
  position: relative;
}
.mega-select .mega-select__filter:after {
  content: '';
  background-image: url('../images/components/wave-main.svg');
  background-repeat: repeat-x;
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  height: 4px;
  width: 48px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  margin-left: -24px;
}
.mega-select .mega-select__filter:hover:after {
  background-image: url('../images/components/wave-danger.svg');
}
.mega-select .filter--active {
  color: #fe505a;
}
.mega-select .filter--active:after,
.mega-select .filter--active:hover:after {
  display: none;
}
.mega-select .select__field {
  width: 550px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  border: solid 1px #dbdee1;
  font-size: 13px;
  color: #4c4145;
  padding: 8px 20px 9px;
  margin-top: 7px;
  float: left;
  margin-right: -3px;
}
.mega-select .select__btn {
  margin-top: 6px;
  display: inline-block;
  float: right;
}
.mega-select .select__btn a {
  display: none;
}
.mega-select .select__btn--sample {
  float: none;
  margin-top: 14px;
}
.mega-select .select__dropdowns {
  position: relative;
}
.mega-select .select__group {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 43px;
  left: 0;
  z-index: 75;
  display: none;
  padding: 19px 30px 20px;
  margin-left: 1px;
  width: 596px;
  background-color: #4c4145;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.mega-select .select__group .select__variant {
  color: #b4b1b2;
  font-size: 13px;
  padding: 6px 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mega-select .select__group .select__variant:hover {
  color: #ffffff;
}
.select__dropdowns--sample .select__group {
  top: 0;
}
.pagination {
  padding-right: 30px;
  display: block;
}
.pagination .pagination__prev {
  font: 13px 'aleoregular', sans-serif;
  color: #4c4145;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 0 9px 43px;
  margin-left: -8px;
  background-image: url(../images/icons/left-arrow-dark.svg);
  background-repeat: no-repeat;
  background-position: left center;
}
.pagination .pagination__prev:hover {
  color: #fe505a;
  background-image: url(../images/icons/left-arrow-danger.svg);
  background-position: 0 50%;
}
.pagination .pagination__next {
  font: 13px 'aleoregular', sans-serif;
  color: #4c4145;
  text-transform: uppercase;
  float: right;
  display: inline-block;
  padding: 8px 43px 9px 0;
  margin-right: -8px;
  background-image: url(../images/icons/right-arrow-dark.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.pagination .pagination__next:hover {
  color: #fe505a;
  background-image: url(../images/icons/right-arrow-danger.svg);
}
.booking-pagination {
  text-align: center;
  margin-top: 57px;
  margin-bottom: 90px;
}
.booking-pagination .booking-pagination__prev {
  display: inline-block;
  padding: 6px 14px;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.booking-pagination .booking-pagination__prev:hover {
  color: #ffffff;
  background-color: #fe505a;
}
.booking-pagination .booking-pagination__prev:hover .arrow__text {
  color: #ffffff;
  border-color: #ffffff;
}
.booking-pagination .booking-pagination__prev:hover .arrow__text:before {
  color: #ffffff;
}
.booking-pagination .booking-pagination__prev:hover .arrow__info {
  color: #ffffff;
}
.booking-pagination .booking-pagination__next {
  display: inline-block;
  padding: 6px 14px;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.booking-pagination .booking-pagination__next:hover {
  color: #ffffff;
  background-color: #fe505a;
}
.booking-pagination .booking-pagination__next:hover .arrow__text {
  color: #ffffff;
  border-color: #ffffff;
}
.booking-pagination .booking-pagination__next:hover .arrow__text:before {
  color: #ffffff;
}
.booking-pagination .booking-pagination__next:hover .arrow__info {
  color: #ffffff;
}
.booking-pagination .hide--arrow {
  display: none;
}
.booking-pagination .arrow__text {
  position: relative;
  font: 16px 'aleoregular', sans-serif;
  color: #fe505a;
  text-transform: uppercase;
  border-bottom: 1px solid #dbdee1;
  margin-bottom: 2px;
  padding: 0 48px 5px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: block;
}
.booking-pagination .arrow--prev:before {
  content: "\f053";
  font: 15px "FontAwesome";
  color: #fe505a;
  position: absolute;
  top: 18px;
  left: -2px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.booking-pagination .arrow--next:before {
  content: "\f054";
  font: 15px "FontAwesome";
  color: #fe505a;
  position: absolute;
  top: 18px;
  right: -2px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.booking-pagination .arrow__info {
  font: 14px 'aleoitalic', sans-serif;
  color: #969b9f;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.booking-pagination--margin {
  margin-top: 112px;
}
.movie .movie__info {
  margin-left: -15px;
  margin-right: -15px;
}
.movie .movie__images {
  position: relative;
  border: 3px solid #ffd564;
}
.movie__images img {
  /* min-height: 200px; */
  background-color: #dbdee1;
  width: 100%;
  /* float: left; */
}
.movie--time .movie__images img {
  /* min-height: auto; */
}
.movie .movie__images img {
  max-width: 100%;
}
.movie .movie__title {
  display: inline-block;
  margin-bottom: -6px;
  max-width: 100%;
}
.movie .movie__rate {
  position: relative;
  padding: 20px 17px 19px;
  border: 3px solid #ffd564;
  border-top: none;
  font: 16px 'aleoregular', sans-serif;
  color: #4c4145;
}
.movie .movie__rate .score {
  display: inline-block;
  padding-left: 15px;
}
.movie .movie__rate .movie__rate-number {
  font: 11px 'Roboto', sans-serif;
  display: block;
}
.movie .movie__rating,
.movie-beta__item .movie__rating,
.movie .movie__age_limit {
  width: 47px;
  height: 47px;
  padding-top: 12px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  background-color: #ffd564;
  border: solid 3px #fff;
  font: 15px 'Roboto', sans-serif;
  color: #4c4145;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 6px;
  left: 6px;
}
.movie .movie__time {
  position: relative;
  font-size: 13px;
  color: #fe505a;
  margin-bottom: 20px;
  padding-left: 20px;
}
.movie .movie__time:before {
  content: "\f017";
  font: 16px "FontAwesome";
  color: #fe505a;
  position: absolute;
  top: 6px;
  left: 0;
}
.movie .movie__option {
  font-size: 13px;
  margin-bottom: 3px;
}
.movie .comment-link {
  position: relative;
  display: inline-block;
  font: 16px 'aleoregular', sans-serif;
  color: #fe505a;
  margin-top: 30px;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.movie .comment-link:after {
  content: '';
  background-image: url('../images/components/wave-danger.svg');
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -2px;
}
.movie .comment-link:hover {
  color: #4c4145;
}
.movie .comment-link:hover:after {
  background-image: url('../images/components/wave-main.svg');
}
.movie .movie__btns {
  position: absolute;
  right: 0;
  top: 0;
}
.movie .movie__btns .btn {
  display: block;
}
.movie .movie__btns .watchlist {
  float: right;
  margin-top: 20px;
}
.movie .movie__describe {
  font-size: 13px;
}
.movie .movie__media {
  padding: 20px 5px;
  position: relative;
  width: 100%;
  height: 162px;
  background-image: url(../images/components/bg-movie.png);
  background-repeat: repeat-x;
}
.swiper-container {
  transition: all .2s;
}
.movie .movie__media .swiper-container {
  max-height: 120px;
  opacity: 0;
}
.movie .movie__media .movie__media-switch {
  position: absolute;
  top: -48px;
  right: 0;
}
.movie .movie__media .list--photo {
  margin-right: -3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  padding-left: 41px;
  padding-right: 21px;
}
.movie .movie__media .list--photo:before {
  content: "\f030";
  font-size: 13px;
  top: 5px;
  left: 21px;
}
.movie .movie__media .list--video {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  padding-left: 41px;
  padding-right: 21px;
}
.movie .movie__media .list--video:before {
  content: "\f03d";
  font-size: 13px;
  top: 5px;
  left: 21px;
}
.movie .movie__media .movie__media-item {
  padding: 0 5px;
  display: block;
}
.timetable--performance_name {
  padding-top: 25px;
  margin-bottom: 5px;
}
.time-select {
  margin-top: 8px;
}
.time-select .time-select__group {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
  background-color: #f5f5f5;
}
.time-select .time-select__group:before {
  content: '';
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 31%;
  top: 0;
}
.time-select .time-select__group:after {
  content: '';
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 31%;
  bottom: 0;
}
.schedule__page .time-select .time-select__group:before {
  /* left: 33%; */
  content: none;
}
.schedule__page .time-select .time-select__group:after {
  /* left: 33%; */
  content: none;
}
.schedule__page .performances--table {
  border-left: 2px solid #fff;
}
.schedule__page .performances--table > .row {
  border-bottom: 2px solid #fff;
}
.schedule__page .time-select .time-select__place {
  margin-bottom: 15px;
}
.schedule__page .performances--table > .row:last-child {
  border-bottom: none;
}
.schedule__page .performance--timetable {
  border-left: 2px solid #fff;
}
.time-select .group--first:before {
  display: none;
}
.time-select .group--last:after {
  display: none;
}
.time-select .time-select__place {
  font-size: 16px;
  margin-top: 21px;
  margin-left: 5px;
  margin-bottom: 23px;
}
.time-select .time-select__item.with_tags {
  min-width: 85px;
  padding-right: 7px;
}
.time-select .time-select__item {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 12px;
  background-color: #ffd564;
  /* padding: 9px 15px 8px 14px; */
  margin: 5px 16px 5px 0;
  cursor: pointer;
  float: left;
}
.time-select .time-select__item:hover {
  background-color: #fe505a;
}
.time-select .time-select__item:before {
  content: '';
  width: 55px;
  height: 28px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 3px;
  left: 3px;
}
.time-select .time-select__item.long:before {
  width: 124px;
}
.time-select .time-select__item.long:after {
  width: 135px;
  -webkit-background-size: 134px 34px;
  background-size: 134px 34px;
}
.time-select .time-select__item.with_tags.long:after {
  width: 102%;
  -webkit-background-size: 101% 34px;
  background-size: 101% 34px;
}
.time-select .time-select__item.with_tags:after {
  width: 105%;
  -webkit-background-size: 101% 34px;
  background-size: 101% 34px;
}
.time-select .time-select__item:after {
  content: '';
  width: 67px;
  height: 34px;
  background-image: url(../images/components/bg-time.png);
  background-repeat: no-repeat;
  -webkit-background-size: 67px 34px;
  background-size: 67px 34px;
  position: absolute;
  top: 0px;
  left: -2px;
  z-index: -1;
}
.time-select .time-select__item:hover:after {
  background-image: url(../images/components/bg-time-hover.png);
}
.time-select .time-select__item.active {
  background-color: #fe505a;
}
.time-select .time-select__item.active:after {
  background-image: url(../images/components/bg-time-hover.png);
}
.time-select .items-wrap {
  padding-top: 15px;
  margin-bottom: 5px;
}
.time-select--wide {
  margin-top: -3px;
  margin-bottom: 15px;
}
.time-select--wide .time-select__group:before,
.time-select--wide .time-select__group:after {
  left: 23%;
}
#cimenas-map {
  height: 100%;
  min-height: 404px;
  margin-top: 8px;
}
#cinema-map {
  height: 530px;
  width: 100%;
}
#location-map {
  height: 380px;
  width: 100%;
  margin-bottom: -60px;
}
.hide-map {
  display: none;
}
.show-time {
  display: none;
}
.pop_up_box_text {
  display: block;
}
.pop_up_box_text:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-right-color: #4c4145;
  border-width: 7px;
  margin-top: -7px;
}
.mfp-counter {
  display: none;
}
.mfp-zoom-out-cur {
  cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.cinema {
  position: relative;
}
.cinema .cinema__images {
  position: relative;
  display: block;
}
.cinema .cinema__images img {
  max-width: 100%;
}
.cinema .cinema__images:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(76, 65, 69, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cinema .cinema__images:hover:before {
  opacity: 0;
}
.cinema .cinema-title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 45px;
  margin-top: 5px;
}
.cinema .cinema-rating {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding-top: 38px;
  font: 20px 'aleobold', sans-serif;
  text-align: center;
  color: #4c4145;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cinema .cinema-rating:before {
  content: '';
  background-image: url(../images/rate/star-off.svg);
  background-repeat: no-repeat;
  -webkit-background-size: 14px 14px;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -7px;
}
.cinema .cinema-rating:after {
  content: '';
  background-image: url(../images/rate/star-off.svg);
  background-repeat: no-repeat;
  -webkit-background-size: 14px 14px;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -7px;
}
.cinema .cinema__images:hover .cinema-rating {
  transform: scale(0);
  opacity: 0;
}
.cinema-wrap {
  margin-top: 30px;
  overflow: hidden;
  margin-bottom: 10px;
}
.cinema-wrap .row:before,
.cinema-wrap .row:after {
  display: initial;
}
.trailer-wrapper {
  margin-top: 30px;
  overflow: hidden;
  margin-bottom: 60px;
}
.trailer-block {
  overflow: hidden;
  padding-bottom: 65px;
  margin-top: 30px;
  border-bottom: 1px solid #dbdee1;
  position: relative;
}
.hidden-content {
  display: none;
  overflow: hidden;
  clear: both;
}
.trailer {
  background-color: #4c4145;
  height: 100%;
  overflow: hidden;
}
.trailer .trailer__name {
  font: 13px 'aleoregular', sans-serif;
  color: #ffffff;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 20px;
}
.trailer .trailer__number {
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 12;
}
.trailer .trailer__number:before {
  content: "\f03d";
  color: #7c7578;
  font: 42px "FontAwesome";
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -22px;
  z-index: -1;
}
.trailer-sample {
  display: block;
  margin-bottom: 10px;
}
.trailer-sample img {
  max-width: 100%;
}
.trailer-btn {
  display: block;
  width: 25px;
  height: 5px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  bottom: 20px;
  padding: 15px 0;
}
.trailer-btn .btn-circled {
  margin-left: 10px;
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.trailer-btn .btn-circled:after {
  content: '';
  width: 5px;
  height: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: -10px;
}
.trailer-btn .btn-circled:before {
  content: '';
  width: 5px;
  height: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: -10px;
}
.trailer-btn:hover .btn-circled,
.trailer-btn:hover .btn-circled:before,
.trailer-btn:hover .btn-circled:after {
  background-color: #fe505a;
}
.trailer-block--short {
  padding-bottom: 30px;
}
.rates {
  background-color: #f5f5f5;
  border-bottom: 2px solid #ffffff;
}
.rates .rates__obj {
  padding-left: 20px;
}
.rates .rates__obj * {
  font-size: 16px;
}
.rates .rates__obj .rates__obj-name {
  position: relative;
  display: block;
  padding: 25px 0;
}
.rates .rates__obj .rates__obj-name:before {
  background-color: #FFFFFF;
  content: "";
  height: 25px;
  right: 0;
  position: absolute;
  top: 0;
  width: 2px;
}
.rates .rates__obj .rates__obj-name:after {
  background-color: #FFFFFF;
  bottom: 0;
  content: "";
  height: 25px;
  right: 0;
  position: absolute;
  width: 2px;
}
.rates .rates__vote {
  text-align: center;
  font-size: 13px;
}
.rates .rates__result {
  text-align: center;
  font: 20px 'aleobold', sans-serif;
  background-color: #ffd564;
}
.rates .rates__stars .score {
  margin-left: 50px;
}
.rates .rates__stars .score img {
  width: 15px;
  height: 15px;
}
.rates .rates__done {
  font-size: 13px;
  color: #4c4145;
  margin-left: -17px;
}
.rates:first-of-type .rates__obj-name:before {
  display: none;
}
.rates:last-of-type .rates__obj-name:after {
  display: none;
}
.rates--top {
  background-color: #fff0c7;
}
.rates--top .rates__obj-name {
  font-weight: bold;
}
.rates-wrapper table {
  border-collapse: collapse;
  border-spacing: 0;
}
.offer {
  background-color: #4c4145;
  overflow: hidden;
  display: block;
  text-align: center;
  min-height: 325px;
  padding: 0 25px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.offer .offer__head {
  position: relative;
  height: 120px;
  display: block;
  margin-bottom: 41px;
}
.offer .offer__head:before {
  background-image: url("../images/components/wave-light.svg");
  background-repeat: no-repeat;
  background-size: 84px 8px;
  bottom: 0px;
  content: "";
  height: 8px;
  left: 50%;
  margin-left: -42px;
  position: absolute;
  width: 84px;
}
.offer .offer__name {
  color: #ffffff;
  font: 30px 'aleobold', sans-serif;
  text-transform: uppercase;
  margin-top: 44px;
  margin-bottom: 17px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.offer .offer__datail {
  color: #ffffff;
  font: 18px 'aleoitalic', sans-serif;
  text-transform: none;
  font-weight: 300;
  line-height: 21px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.offer .offer__full {
  color: #b4b1b2;
  font-size: 13px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.offer:hover {
  background-color: #ffd564;
}
.offer:hover .offer__name,
.offer:hover .offer__datail,
.offer:hover .offer__full {
  color: #4c4145;
}
.offer-place {
  color: #fe505a;
  font-family: 'aleoitalic', sans-serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 23px;
}
.offers-block {
  overflow: hidden;
  margin-top: -10px;
  margin-bottom: 32px;
}
.offers-block--last {
  margin-bottom: -30px;
}
.gallery-item {
  border-bottom: 1px solid #dbdee1;
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 524px;
}
.gallery-item .gallery-item__image {
  display: block;
  position: relative;
}
.gallery-item .gallery-item__image img {
  max-width: 100%;
}
.gallery-item .gallery-item__image:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.gallery-item .gallery-item__image:hover:before {
  width: 80%;
  height: 80%;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  opacity: 1;
}
.gallery-item .gallery-item__image:after {
  content: "\f0c1";
  font: 20px "FontAwesome";
  color: #ffffff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.gallery-item .gallery-item__image:hover:after {
  opacity: 1;
}
.gallery-item .gallery-item__descript {
  position: relative;
  margin-top: 8px;
  display: block;
}
.gallery-item .gallery-item__descript .gallery-item__icon {
  padding: 0 11px 0 13px;
  color: #ffffff;
  position: relative;
  z-index: 5;
}
.gallery-item .gallery-item__descript .gallery-item__name {
  display: inline-block;
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: #363639;
  font-weight: bold;
  padding-left: 8px;
  margin-bottom: 9px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gallery-item .gallery-item__descript:hover .gallery-item__name {
  color: #ffffff;
}
.gallery-item .gallery-item__descript:before {
  content: '';
  width: 40px;
  height: 28px;
  background-color: #ffd564;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gallery-item .gallery-item__descript:hover:before {
  width: 100%;
}
.contact {
  text-align: center;
}
.contact .contact__title {
  font: 30px 'aleobold', sans-serif;
  line-height: 30px;
  margin-top: 45px;
  margin-bottom: 23px;
}
.contact .contact__describe {
  font-size: 22px;
  font-weight: normal;
  font-family: 'aleoitalic', sans-serif;
}
.contact .contact__mail {
  display: inline-block;
  padding: 0 15px 0 42px;
  font-size: 16px;
  margin-top: 46px;
  position: relative;
}
.contact .contact__mail:before {
  content: "\f0e0";
  font: 16px "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: 4px;
  left: 15px;
}
.contact .contact__tel {
  display: inline-block;
  padding: 0 15px 0 42px;
  font-size: 16px;
  margin-top: 46px;
  position: relative;
}
.contact .contact__tel:before {
  content: "\f095";
  font: 16px "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: 4px;
  left: 15px;
}
.form {
  text-align: center;
}
.form .form__title {
  font: 30px 'aleobold', sans-serif;
  line-height: 30px;
  margin-bottom: 26px;
}
.form .form__name,
.form .form__mail,
.form .form__message {
  margin-bottom: 10px;
  width: 100%;
  border: none;
  box-shadow: none;
  border: 1px solid #dbdee1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 13px;
  color: #b4b1b2;
  padding: 9px 18px 10px;
}
.form .form__message {
  min-height: 110px;
}
.contact-form-wrapper {
  background-color: #ffd564;
  overflow: hidden;
  margin: 76px 0;
  padding: 56px 0 60px;
}
.contact-info {
  text-align: left;
}
.contact-info .contact-info__field {
  position: relative;
  width: 360px;
  display: inline-block;
  margin-right: 28px;
}
.contact-info .contact-info__field .form__mail {
  padding-left: 60px;
}
.contact-info .contact-info__field:before {
  content: '';
  width: 39px;
  height: 39px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  background-color: #4c4145;
  position: absolute;
  top: 0px;
  left: 0;
}
.contact-info .contact-info__field:after {
  content: '';
  color: #b4b1b2;
  font: 13px "FontAwesome";
  position: absolute;
  top: 10px;
  left: 15px;
}
.contact-info .contact-info__field-mail:after {
  content: "\f0e0";
  left: 13px;
}
.contact-info .contact-info__field-tel:after {
  content: "\f095";
}
.error {
  margin-top: 240px;
  margin-bottom: 140px;
  background-color: #4c4145;
  padding-top: 93px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
.error .error__image {
  height: 99px;
  width: 207px;
}
.error .error__text {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 20px;
  font-family: 'aleobold', sans-serif;
  margin-top: -3px;
  margin-bottom: 46px;
}
.couter {
  overflow: hidden;
  text-align: center;
  margin-top: 390px;
  margin-bottom: 70px;
}
.couter .timer-wrap {
  display: inline-block;
  position: relative;
  padding: 8px;
}
.couter .timer-bg {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 180px;
  height: 180px;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 3px #fff;
}
.couter .digits {
  font: 50px 'Roboto', sans-serif;
  color: #ffffff;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  text-align: center;
}
.couter .digits-label {
  font: 20px 'aleoitalic', sans-serif;
  color: #ffffff;
  margin-top: -2px;
  position: absolute;
  top: 123px;
  left: 0;
  width: 100%;
  text-align: center;
}
.couter .digits + div > canvas {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.order {
  text-align: center;
}
.order .order__images {
  width: 76px;
}
.order .order__title {
  font: 30px 'aleobold', sans-serif;
  text-transform: uppercase;
  line-height: 26px;
  margin-top: 5px;
}
.order .order__descript {
  font-size: 16px;
  text-transform: none;
  font-weight: normal;
  font-family: 'aleoitalic', sans-serif;
}
.order .order__control {
  margin-top: 36px;
}
.order .order__control .order__control-btn {
  border: 1px solid #4C4145;
  border-radius: 3px;
  color: #4C4145;
  font-size: 13px;
  padding: 4px 20px 6px 20px;
  position: relative;
  transition: all 0.5s ease 0s;
}
.order .order__control .order__control-btn.active,
.order .order__control .order__control-btn:hover,
.order .order__control .order__control-btn:focus {
  background-color: #969B9F;
  border-color: #969B9F;
  color: #FFFFFF;
  text-decoration: none;
}
.order .order__control .order__control-btn.active {
  padding: 4px 15px 6px 28px;
}
.order__control-btn.active:before {
  content: "\f00c";
  color: #FFFFFF;
  font: 13px "FontAwesome";
  left: 12px;
  position: absolute;
  top: 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.order-step-area {
  border-bottom: 1px solid #dbdee1;
  padding-bottom: 2px;
  margin-left: 15px;
  margin-right: 15px;
}
.order-step-area .order-step {
  font: 16px 'aleoregular', sans-serif;
  padding-left: 55px;
  position: relative;
  width: 33.2%;
  display: inline-block;
}
.order-step-area .order-step:before {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 21px 46px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 0;
  top: -1px;
}
.order-step-area .order-step:after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.order-step-area .first--step {
  margin-right: -3px;
}
.order-step-area .first--step:before {
  border-color: transparent transparent #ffd564 transparent;
}
.order-step-area .first--step:after {
  background-color: #ffd564;
}
.order-step-area .second--step {
  margin-right: -3px;
}
.order-step-area .second--step:before {
  border-color: transparent transparent #fe505a transparent;
}
.order-step-area .second--step:after {
  background-color: #fe505a;
}
.order-step-area .third--step:before {
  border-color: transparent transparent #4c4145 transparent;
}
.order-step-area .third--step:after {
  background-color: #4c4145;
  width: 101%;
}
.order-step-area .order-step--disable {
  color: #dbdee1;
}
.order-step-area .order-step--disable:before {
  border-color: transparent transparent #dbdee1 transparent;
}
.order-step-area .order-step--disable:after {
  background-color: #dbdee1;
}
.choose-film .film-images {
  position: relative;
}
.choose-film .film-images:before {
  content: '';
  width: 99.8%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.choose-film .film-images:hover:before {
  opacity: 0;
}
.choose-film .choose-film__title {
  font-size: 13px;
  padding-left: 10px;
}
.choose-film .film--choosed {
  position: relative;
}
.choose-film .film--choosed:before {
  opacity: 0;
}
.choose-film .film--choosed:after {
  content: "\f00c";
  color: #4c4145;
  font: 20px "FontAwesome";
  text-align: center;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding-top: 40px;
  background-color: #ffd564;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}
.choose-film .swiper-slide:hover {
  cursor: url(../images/components/cursor.png), auto;
}
.choose-indector {
  position: relative;
  z-index: 13;
  width: 100%;
  background-color: #4c4145;
  color: #ffffff;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 6px 21px 7px;
  cursor: pointer;
}
.choose-indector:before {
  content: "\f077";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 8px;
  right: 21px;
}
.hide-content:before {
  content: "\f078";
}
.choose-indector--film {
  margin-top: -9px;
  margin-bottom: 10px;
}
.choose-sits {
  text-align: center;
  margin-top: 70px;
}
.choose-sits .choose-sits__info {
  display: inline-block;
  font-size: 13px;
  padding: 10px 20px 0 40px;
  margin-bottom: 52px;
}
.choose-sits .choose-sits__info .sits-price {
  position: relative;
  display: inline-block;
  padding: 0 22px;
}
.choose-sits .choose-sits__info .sits-price:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}
.choose-sits .choose-sits__info .marker--none:before {
  display: none;
}
.choose-sits .choose-sits__info .sits-state {
  position: relative;
  display: inline-block;
  padding: 0 25px;
}
.choose-sits .choose-sits__info .sits-state:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}
.sits-anchor {
  position: relative;
  color: #969b9f;
  font-size: 13px;
}
.sits-anchor:before {
  content: '';
  background-color: #969b9f;
  width: 380px;
  height: 5px;
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -190px;
}
.sits {
  position: relative;
  margin-top: 35px;
}
.sits .sits__indecator {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px;
  border: 1px solid #4c4145;
  font-size: 13px;
  padding-top: 5px;
}
.sits .sits__line {
  width: 30px;
  position: absolute;
  top: -1px;
  left: 0;
}
.sits .sits__number {
  margin-top: 60px;
  font-size: 0;
}
.sits .sits__checked {
  position: relative;
  width: 50px;
  height: 450px;
  background-color: #4c4145;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 5px;
  padding: 50px 10px 60px;
}
.sits .sits__checked:before {
  content: "\f00c";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 18px;
}
.sits .sits__checked:after {
  content: "=";
  font: 13px;
  color: #ffffff;
  position: absolute;
  bottom: 41px;
  left: 20px;
}
.sits .sits__checked .checked-place {
  overflow: hidden;
  max-height: 340px;
}
.sits .sits__checked .checked-result {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
.sits .sits__checked .choosen-place {
  display: block;
  color: #ffffff;
  font-size: 10px;
  padding: 8px 0;
}
.sits .sits__row {
  font-size: 0;
}
.sits .sits__row .sits__place {
  position: relative;
  margin: 5px;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  font-size: 10px;
  color: #ffffff;
  z-index: 13;
  text-indent: -9999px;
}
.sits .sits__row .sits__place:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.sits .sits__row .sits__place:hover {
  text-indent: 0;
  cursor: pointer;
}
.sits .sits__row .sits__place:hover:before {
  background-color: #4c4145;
}
.sits .sits__row .sits-state--not:hover {
  text-indent: -9999px;
  cursor: auto;
}
.sits .sits__row .sits-state--not:hover:before {
  background-color: #dbdee1;
}
.sits .sits__row .sits-state--your {
  text-indent: -9999px;
}
.sits .sits__row .sits-state--your:after {
  content: "\f00c";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 7px;
  left: 9px;
  z-index: 15;
  text-indent: 0px;
}
.sits .sits__row .sits-state--your:hover {
  text-indent: -9999px;
}
.sits .sits__row .sits-state--your:hover:after {
  content: "\f00d";
  left: 10px;
}
.additional-margin {
  margin-top: 20px;
}
.sits__line .additional-margin {
  margin-top: 25px;
}
.sits-area--mobile {
  text-align: left;
  margin-top: 20px;
}
.sits-area--mobile img {
  max-width: 100%;
}
.sits-area--mobile .sbHolder {
  display: block;
  float: left;
  margin-right: 15px;
  width: 140px;
  height: 35px;
  border: 1px solid #DBDEE1;
  background-color: #fff;
}
.sits-area--mobile .sbHolder .sbSelector {
  margin-top: 4px;
  margin-left: 5px;
  color: #4c4145;
  font-size: 13px;
}
.sits-area--mobile .sbHolder .sbOptions {
  width: 140px;
  top: 37px !important;
  border: none;
  padding: 14px 7px;
  z-index: 23;
  background-color: #4c4145;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.sits-area--mobile .sbHolder .sbOptions a {
  color: #b4b1b2;
  border: none;
}
.sits-area--mobile .sbHolder .sbOptions a:hover,
.sits-area--mobile .sbHolder .sbOptions a:focus {
  color: #ffffff;
}
.sits-area--mobile .sbHolder .sbToggle {
  top: 10px;
  right: -2px;
}
.sits-area--mobile .sbHolder .sbToggle:before {
  content: "\f078";
  color: #4c4145;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.sits-area--mobile .sbHolder .sbToggleOpen:before {
  content: "\f077";
}
.sits-area--mobile .sits-select {
  margin-bottom: 20px;
}
.sits-area--mobile .watchlist {
  margin-top: 2px;
  display: block;
  margin: 20px 0;
  width: 120px;
}
.sits-area--mobile .sits__checked {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #4c4145;
  margin-top: 0px;
  padding: 0px 50px;
}
.sits-area--mobile .sits__checked:before {
  content: "\f00c";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 18px;
  left: 18px;
}
.sits-area--mobile .sits__checked:after {
  content: "=";
  font: 13px;
  color: #ffffff;
  position: absolute;
  bottom: 16px;
  right: 55px;
}
.sits-area--mobile .sits__checked .checked-place {
  overflow: hidden;
  max-width: 80%;
}
.sits-area--mobile .sits__checked .checked-result {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 100%;
  text-align: right;
  padding-top: 5px;
}
.sits-area--mobile .sits__checked .choosen-place {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  font-size: 12px;
  padding: 16px 0;
}
.book-result {
  margin: -9px 0 -7px;
}
.book-result .book-result__item {
  display: inline-block;
  font-size: 13px;
  color: #4c4145;
  padding-right: 30px;
}
.book-result .book-result__count {
  padding: 0 25px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 2px;
}
.book-result .booking-cost {
  color: #fe505a;
}
.reservation-message {
  position: relative;
  font-size: 13px;
  padding-left: 45px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.reservation-message:before {
  content: '';
  background-image: url(../images/icons/speech.svg);
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-size: 42px 36px;
  background-size: 42px 36px;
  width: 45px;
  height: 40px;
  position: absolute;
  top: -4px;
  left: -1px;
}
.reservation-message:after {
  content: 'i';
  font: 18px 'aleobold', sans-serif;
  color: #4c4145;
  position: absolute;
  top: 2px;
  left: 18px;
}
.ticket {
  width: 1170px;
  position: relative;
  margin-top: 68px;
  padding: 37px 0;
  text-align: center;
  background-image: url(../images/icons/stroke.svg);
  background-repeat: no-repeat;
}
.ticket .ticket__inner {
  border: 3px solid #dbdee1;
  overflow: hidden;
  float: left;
  height: 300px;
  width: 820px;
}
.ticket .ticket__indecator {
  position: relative;
  border: 3px solid #dbdee1;
  width: 50px;
  float: left;
  height: 300px;
  font-family: 'PT Mono';
  font-size: 12px;
  color: #dbdee1;
}
.ticket .indecator-text {
  position: absolute;
  width: 100px;
}
.ticket .indecator-text:before {
  content: '';
  background-image: url(../images/icons/stars-light.svg);
  background-repeat: no-repeat;
  width: 80px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: -95px;
}
.ticket .indecator-text:after {
  content: '';
  background-image: url(../images/icons/stars-light.svg);
  background-repeat: no-repeat;
  width: 80px;
  height: 16px;
  position: absolute;
  top: 0px;
  right: -95px;
}
.ticket .indecator--pre {
  margin-right: -3px;
}
.ticket .indecator--post {
  margin-left: -3px;
}
.ticket .pre--text {
  -webkit-transform: rotate(90deg) translateZ(0);
  -moz-transform: rotate(90deg) translateZ(0);
  -o-transform: rotate(90deg) translateZ(0);
  -ms-transform: rotate(90deg) translateZ(0);
  transform: rotate(90deg) translateZ(0);
  margin-top: 137px;
  left: -26px;
}
.ticket .post--text {
  -webkit-transform: rotate(-90deg) translateZ(0);
  -moz-transform: rotate(-90deg) translateZ(0);
  -o-transform: rotate(-90deg) translateZ(0);
  -ms-transform: rotate(-90deg) translateZ(0);
  transform: rotate(-90deg) translateZ(0);
  margin-top: 137px;
  left: -29px;
}
.ticket .ticket__place {
  color: #fe505a;
}
.ticket .ticket__item {
  display: block;
  margin-bottom: 10px;
  font-family: 'PT Mono';
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
}
.ticket .ticket__item--primery {
  font-size: 20px;
}
.ticket .ticket__date,
.ticket .ticket__time {
  display: inline-block;
  margin-right: 30px;
  margin-top: 30px;
}
.ticket .ticket__price {
  margin-top: 40px;
}
.ticket .ticket__film {
  border-bottom: 1px solid #dbdee1;
  padding-bottom: 44px;
  margin-bottom: 28px;
}
.ticket .ticket__movie {
  text-transform: none;
}
.ticket-primery {
  overflow: hidden;
  border-left: 3px double #dbdee1;
  margin-top: 37px;
  padding: 27px 35px 22px 30px;
}
.ticket-secondary {
  float: left;
  text-align: left;
  padding: 47px 80px 30px 60px;
}
.ticket-position {
  display: inline-block;
  overflow: hidden;
}
.ticket-control {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
}
.ticket-control .list--download {
  border-radius: 3px 0 0 3px;
  margin-right: -5px;
}
.ticket-control .list--download:before {
  content: "\f019";
  font-size: 13px;
  top: 5px;
}
.ticket-control .list--print {
  border-radius: 0 3px 3px 0;
}
.ticket-control .list--print:before {
  content: "\f02f";
  font-size: 13px;
  top: 5px;
}
.booking-form input {
  display: none;
}
.bannercontainer {
  width: 100%;
  position: relative;
  padding: 0;
  min-height: 500px;
  max-height: 500px;
  overflow: hidden;
  /* background-color: rgba(46, 41, 46, 0.2); */
  background-color: white;
}
.tparrows.tp-leftarrow.hebe {
  background: none;
  display: block;
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  color: #ffffff;
  border: 3px solid transparent;
  transform: matrix(1, 0, 0, 1, 20, -11) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tparrows.tp-leftarrow.hebe:before {
  content: '';
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  background-color: transparent;
  background-image: url(../images/icons/left-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tparrows.tp-leftarrow.hebe .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
  text-align: right;
  padding-right: 15px;
  padding-left: 10px;
}
.tparrows.tp-leftarrow.hebe .slider__info:before {
  content: 'Предыдущий';
  font: 13px 'aleoitalic', sans-serif;
  color: #ffd564;
  position: absolute;
  bottom: 22px;
  right: 19px;
}
.tparrows.tp-leftarrow.hebe .slider__info:after {
  content: '';
  background-image: url("../images/components/wave.svg");
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  bottom: 43px;
  right: 19px;
}
.tparrows.tp-leftarrow.hebe:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -41px !important;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
}
.tparrows.tp-leftarrow.hebe:hover .slider__info {
  opacity: 1;
  display: inline-block;
}
.tparrows.tp-leftarrow.hebe:hover:before {
  left: 9px;
  margin-top: -20px;
}
.tparrows.tp-rightarrow.hebe {
  background: none;
  margin-top: -18px !important;
  display: block;
  width: 40px;
  height: 40px;
  left: auto !important;
  right: 0 !important;
  min-width: auto;
  min-height: auto;
  color: #ffffff;
  border: 3px solid transparent;
  transform: matrix(1, 0, 0, 1, -20, -11) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tparrows.tp-rightarrow.hebe:before {
  content: '';
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  background-color: transparent;
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tparrows.tp-rightarrow.hebe .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
  padding-right: 10px;
  padding-left: 15px;
}
.tparrows.tp-rightarrow.hebe .slider__info:before {
  content: 'Следующий';
  font: 13px 'aleoitalic', sans-serif;
  color: #ffd564;
  position: absolute;
  top: 67px;
  left: 19px;
}
.tparrows.tp-rightarrow.hebe .slider__info:after {
  content: '';
  background-image: url("../images/components/wave.svg");
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  top: 53px;
  left: 19px;
}
.tparrows.tp-rightarrow.hebe:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px !important;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
}
.tparrows.tp-rightarrow.hebe:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}
.tparrows.tp-rightarrow.hebe:hover:before {
  right: 9px;
  margin-top: -20px;
}
.tp-leftarrow.hebe,
.tp-rightarrow.hebe {
  top: 50% !important;
  margin-top: -18px !important;
}
.arrow-left {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}
.arrow-left:before {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/left-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.arrow-left .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
}
.arrow-left:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}
.arrow-left:hover .slider__info {
  opacity: 1;
  display: inline-block;
}
.arrow-left:hover:before {
  left: 9px;
  margin-top: -22px;
}
.arrow-right {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}
.arrow-right:before {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.arrow-right .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 130px;
  font: 13px 'aleoitalic', sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
}
.arrow-right:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}
.arrow-right:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}
.arrow-right:hover:before {
  right: 9px;
  margin-top: -22px;
}
.post .no-hover {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.post .no-hover:before {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.post .no-hover:hover {
  width: 40px;
  height: 40px;
  margin-top: -18px;
  background: none;
  border: none;
}
.arrow-left.no-hover:hover:before {
  left: 3px;
}
.arrow-right.no-hover:hover:before {
  right: 3px;
}
.slide .slide__name {
  font-size: 80px;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}
.slide .slide__name--smaller {
  font-size: 60px;
  width: 100%;
  text-align: center;
  margin-left: 0;
  left: 0 !important;
  z-index: 40;
}
.slide .tp-splitted {
  text-align: center;
}
.slide .slide__name--specific {
  font-family: 'aleoregular', sans-serif;
}
.slide .highlight {
  color: #c2c2c2;
}
.slide .slide__descript {
  color: #ffffff;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-left: 0px;
  left: 0 !important;
}
.slide .slide__time {
  font: 18px 'Roboto', sans-serif;
  color: #ffffff;
  z-index: 40;
}
.slide .slide__date {
  font: 18px 'Roboto', sans-serif;
  color: #ffffff;
  font-weight: bold;
  z-index: 40;
}
.slide .position-center {
  width: 100%;
  left: 0 !important;
  text-align: center;
}
.slide .postion-place--one {
  margin-left: -90px;
}
.slide .postion-place--two {
  margin-left: -32px;
}
.slide .postion-place--three {
  margin-left: 20px;
}
.slide .postion-place--four {
  margin-left: 70px;
}
.slide .slide__text {
  font: 13px 'Roboto', sans-serif;
  color: #ffffff;
  text-align: right;
  line-height: 21px;
}
.slide .slide__link {
  font: 16px 'aleoregular', sans-serif;
  color: #fe505a;
  text-transform: uppercase;
  padding-right: 20px;
}
.slide .slide__link:before {
  content: "\f054";
  font: 16px "FontAwesome";
  color: #fe505a;
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.slide .slide__link:hover {
  opacity: 0.7;
  color: #fe505a;
}
.slide .slider-wrap-btn {
  width: 100%;
  text-align: center;
  margin-left: 0px;
  left: 0 !important;
  z-index: 40;
}
.slide .slider--btn {
  color: #ffffff;
}
.slide .slider--btn:hover {
  color: #ffffff;
}
.slide .slide__video .media-element {
  position: absolute;
  left: 50%;
  margin-left: 0px;
  margin-top: -250px;
}
.slide .slide__video {
  left: 0 !important;
}
.fading-slide:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4c4145;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
}
.movie-best {
  position: relative;
  margin-top: -100px;
  z-index: 50;
}
.movie-best .movie-best__rating,
.movie-best .movie-row-splitter {
  background-color: #ffd564;
  text-align: center;
  font: 20px 'aleobold', sans-serif;
  color: #4c4145;
  text-transform: uppercase;
  padding-bottom: 25px;
  padding-top: 26px;
  position: relative;
}
.movie-best .movie-best__rating:before {
  content: "";
  background-image: url("../images/icons/stars.svg");
  background-repeat: no-repeat;
  height: 20px;
  left: 50%;
  margin-left: -205px;
  position: absolute;
  top: 27px;
  width: 95px;
}
.movie-best .movie-best__rating:after {
  content: "";
  background-image: url("../images/icons/stars.svg");
  background-repeat: no-repeat;
  height: 20px;
  margin-right: -205px;
  position: absolute;
  right: 50%;
  top: 27px;
  width: 95px;
}
.movie-best .movie-row-splitter {
  height: 20px;
  padding: 0px;
  background-color: transparent;
}
.movie-best .movie-best__check {
  cursor: pointer;
  position: relative;
  background-color: #ffd564;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font: 12px;
  text-transform: uppercase;
  color: #4c4145;
  padding-top: 55px;
  padding-bottom: 15px;
}
.movie-best .movie-best__check:before {
  content: '';
  width: 20px;
  height: 55px;
  background-image: url(../images/icons/mause.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: 50%;
  margin-left: -10px;
}
.movie-best .movie-beta__info {
  background-color: #4c4145;
  padding: 0 10px;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.movie-best .movie-beta__info li {
  border-bottom: 1px solid rgba(180, 177, 178, 0.5);
  padding-top: 7px;
  padding-bottom: 3px;
}
.movie-best .movie-beta__info .last-block {
  border: none;
  margin-bottom: 0;
}
.movie-best .movie-beta__info * {
  color: #b4b1b2;
  margin-bottom: 14px;
  padding: 0 5px;
  line-height: 14px;
  font-size: 13px;
}
.movie-best .movie-beta__info .slide__link {
  color: #fe505a;
  font: 14px 'aleoregular', sans-serif;
  padding-right: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding-top: 4px;
  padding-bottom: 5px;
  padding-right: 30px;
}
.movie-best .movie-beta__info .slide__link:before {
  color: #fe505a;
  content: "\f054";
  font: 14px "FontAwesome";
  position: absolute;
  right: 10px;
  top: 6px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.movie-best .movie-beta__info .slide__link:hover {
  background-color: #fe505a;
  color: #ffffff;
}
.movie-best .movie-beta__info .slide__link:hover:before {
  color: #ffffff;
}
.movie-best .movie-beta__info .best-voted {
  padding-top: 10px;
  padding-bottom: 7px;
  display: inline-block;
  margin-bottom: 8px;
}
.movie-best .movie-beta__info .movie__time {
  position: relative;
  padding-left: 23px;
}
.movie-best .movie-beta__info .movie__time:before {
  content: "\f017";
  font: 16px "FontAwesome";
  color: #b4b1b2;
  position: absolute;
  top: 0px;
  left: 3px;
}
.movie-best .movies_background {
  background-color: #ffd564;
  min-height: 310px;
  position: absolute;
  top: 70px;
  z-index: 1;
  height: 80%;
}
.movie-best .movie-beta__item {
  width: 16.666666%;
  float: left;
  position: relative;
  z-index: 7;
  overflow: hidden;
}
.movie-best .movie-beta__item .best-rate {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  color: #4C4145;
  font: bold 20px 'Aleo', sans-serif;
  height: 100px;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  padding-top: 38px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
.movie-best .movie-beta__item .best-rate:before {
  background-image: url("../images/rate/star-off.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  content: "";
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  top: 20px;
  width: 14px;
}
.movie-best .movie-beta__item .best-rate:after {
  background-image: url("../images/rate/star-off.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  bottom: 20px;
  content: "";
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 14px;
}
.movie-best .movie-beta__item img {
  max-width: 100%;
}
.movie-best .movie-beta__item:hover .movie-beta__info {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
}
.movie-best .movie-beta__item:hover .best-rate {
  background-color: #ffd564;
  opacity: 1;
}
.home--page .post-item {
  margin-bottom: 30px;
}
.mega-select-marker {
  margin-bottom: 3px;
  display: inline-block;
}
.mega-select-marker .select-marker {
  margin-bottom: 0;
  font-family: 'aleobold', sans-serif;
  color: #4c4145;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 34px;
  display: inline-block;
}
.mega-select-marker .select-marker span {
  font-size: 24px;
  text-transform: none;
}
.mega-select-marker .marker-indecator {
  margin-top: -4px;
  display: inline-block;
  float: left;
  position: relative;
  z-index: 10;
  display: none;
}
.mega-select-marker .marker-indecator:before {
  content: '';
  background-repeat: no-repeat;
  width: 140px;
  height: 140px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -70px;
  z-index: -1;
}
.mega-select-marker .location:before {
  background-image: url(../images/icons/location.svg);
}
.mega-select-marker .cinema:before {
  background-image: url(../images/icons/camera.svg);
  width: 200px;
  margin-left: -20px;
}
.mega-select-marker .film-category:before {
  background-image: url(../images/icons/fiml.svg);
}
.mega-select-marker .actors:before {
  background-image: url(../images/icons/actors.svg);
  width: 200px;
  margin-left: -100px;
}
.mega-select-marker .director:before {
  background-image: url(../images/icons/director.svg);
  top: -25px;
}
.mega-select-marker .country:before {
  background-image: url(../images/icons/country.svg);
}
.mega-select-top {
  padding-top: 72px;
  padding-bottom: 34px;
  margin-bottom: -10px;
}
.social-group {
  padding-top: 50px;
}
.social-group .social-group__head {
  color: #4c4145;
  position: relative;
  margin-bottom: 98px;
  font: 30px 'aleobold', sans-serif;
  line-height: 21px;
  margin-top: 20px;
}
.social-group .social-group__head:before {
  content: '';
  background-image: url(../images/components/wave-dark.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  bottom: -56px;
  left: 0;
}
.social-group .social-group__content {
  color: #4c4145;
  font-size: 16px;
  line-height: 26px;
}
.social-group .facebook-group {
  border: 1px solid #dbdee1;
  padding: 20px 10px 20px 10px;
}
.social-group .twitter-group {
  border: 1px solid #dbdee1;
  padding: 25px 25px 35px;
}
.social-group .twitter-group #tw3 {
  display: none;
}
.social-group .twitter-group .twitter-article {
  margin-bottom: -9px;
}
.social-group .twitter-group #twitter-feed {
  position: relative;
}
.social-group .twitter-group #twitter-feed .twitter__head {
  font-size: 18px;
  font-family: Arial;
  font-weight: bold;
  color: #333;
  padding-top: 3px;
  margin-bottom: 23px;
}
.social-group .twitter-group #twitter-feed .twitter__follow {
  position: absolute;
  top: 0;
  right: 0;
}
.social-group .twitter-group #twitter-actions {
  float: right;
  margin-top: -9px;
}
.social-group .twitter-group #twitter-actions .intent {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 15px;
}
.social-group .twitter-group #twitter-actions #intent-reply {
  background-image: url(../images/icons/reply.svg);
  background-repeat: no-repeat;
}
.social-group .twitter-group #twitter-actions #intent-reply:hover {
  background-image: url(../images/icons/reply-hover.svg);
}
.social-group .twitter-group #twitter-actions #intent-retweet {
  background-image: url(../images/icons/retweet.svg);
  background-repeat: no-repeat;
}
.social-group .twitter-group #twitter-actions #intent-retweet:hover {
  background-image: url(../images/icons/retweet-hover.svg);
}
.social-group .twitter-group #twitter-actions #intent-fave {
  background-image: url(../images/icons/fave.svg);
  background-repeat: no-repeat;
}
.social-group .twitter-group #twitter-actions #intent-fave:hover {
  background-image: url(../images/icons/fave-hover.svg);
}
.social-group .twitter-group .twitter-text .tweet-time {
  bottom: auto;
  left: auto;
  right: 0;
  top: -45px;
}
.icon-block .fa {
  color: #4c4145;
  font-size: 50px;
  padding-bottom: 40px;
  padding-top: 40px;
  width: 120px;
  text-align: center;
}
.table--icons th {
  background-color: #ffd564;
  font: 18px 'Roboto', sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  padding: 21px 25px;
  color: #4c4145;
}
.table--icons tr {
  background-color: #F5F5F5;
}
.table--icons td {
  border: 1px solid #ffffff;
  font-size: 14px;
  padding: 21px 25px;
  color: #4c4145;
}
.table--icons .fa {
  font-size: 20px;
}
.login {
  background-color: #ffffff;
  padding-top: 58px;
  padding-bottom: 22px;
}
.login .login__title {
  font-size: 22px;
  font-family: 'aleobold', sans-serif;
  line-height: 20px;
  color: #4c4145;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 28px;
}
.login .login__title .login-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: 'aleoitalic', sans-serif;
  text-transform: none;
}
.login .login__tracker {
  text-align: center;
  font: 16px 'aleoitalic', sans-serif;
  color: #4c4145;
  margin: 33px 0 35px;
}
.login .form__tracker {
  font-size: 13px;
  display: block;
  margin-top: 39px;
}
.login .form__tracker:hover {
  color: #fe505a;
}
.login .login__input {
  font-size: 13px;
  color: #b4b1b2;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  border: 1px solid #dbdee1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 5px 0;
  padding: 9px 20px 8px;
}
.login .login__check-info {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #b4b1b2;
  display: block;
  margin-top: 3px;
  margin-bottom: 27px;
}
.login .login__control {
  text-align: center;
}
.checkbox {
  width: 13px;
  height: 13px;
  border: 1px solid #e0e4e6;
  display: block;
  clear: left;
  float: left;
  border-radius: 3px;
  -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  background-image: url('../images/components/checked.png');
  background-position: 0 0;
  margin-right: 10px;
  margin-top: 6px;
}
.field-wrap {
  padding: 0 40px;
  margin: 0 auto;
  max-width: 400px;
}
/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(76, 65, 69, 0.6);
  z-index: 300;
}
/* Overlay closing cross */
.overlay .overlay-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 0px;
  overflow: hidden;
  border: none;
  background-color: transparent;
  color: transparent;
  outline: none;
  z-index: 310;
}
.overlay .overlay-close:before {
  content: "\f00d";
  font-size: 13px;
  font-family: "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  text-align: center;
}
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay-hugeinc .login {
  -webkit-perspective: 1200px;
  perspective: 1200px;
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}
.overlay-hugeinc.open .login {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.overlay-hugeinc.close .login {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}
.logo--dark {
  top: 100px;
  left: 50%;
  margin-left: -68px;
}
.logo--dark img {
  width: 111px;
  height: 17px;
}
.logo--dark .slogan--dark {
  font-style: italic;
  font-size: 12px;
  margin-top: 3px;
}
.logo--lg {
  top: 175px;
  left: 50%;
  margin-left: -151px;
}
.logo--lg img {
  width: 302px;
  height: 50px;
}
.coming-title {
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  font-family: 'aleoitalic', sans-serif;
  margin-top: 18px;
}
.copy--light {
  color: #ffffff;
  font: 16px 'Roboto', sans-serif;
  font-style: italic;
}
.copy-bottom--high {
  bottom: 88px;
}
.social--colored {
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 34px;
  padding-bottom: 41px;
}
.social--colored .social__variant {
  color: #ffffff;
  margin-right: 13px;
  margin-left: 13px;
}
.social--colored .social__variant.fa-facebook {
  background-color: #3b5998;
}
.social--colored .social__variant.fa-facebook:after {
  border-color: #3b5998;
}
.social--colored .social__variant.fa-twitter {
  background-color: #00acee;
}
.social--colored .social__variant.fa-twitter:after {
  border-color: #00acee;
}
.social--colored .social__variant.fa-tumblr {
  background-color: #34526f;
}
.social--colored .social__variant.fa-tumblr:after {
  border-color: #34526f;
}
.social--colored .social__variant.fa:hover {
  background-color: #4c4145;
}
.social--colored .social__variant.fa:hover:after {
  border-color: #4c4145;
}
.price--gold .price-inner {
  background-color: #ffd564;
}
.price--gold .price-inner:before {
  border-color: #ffd564;
}
.price--gold .price__package,
.price--gold .price__value,
.price--gold .price__feather {
  color: #4c4145;
}
.price--gold .price__feather {
  border-color: rgba(255, 255, 255, 0.3);
}
.progress--light .progress__bar {
  background-color: #dbdee1;
}
.progress--light .progress__bar .progress__current {
  background-color: #fe505a;
}
.progress--lines .progress__bar {
  background-color: #4c4145;
  position: relative;
  overflow: hidden;
}
.progress--lines .progress__bar .progress__current {
  background-color: #dbdee1;
}
.progress--lines .progress__bar:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #dbdee1;
  position: absolute;
  top: 7px;
  left: 1px;
}
.promo--short {
  background: transparent;
  border-top: 6px solid #4c4145;
  border-bottom: 6px solid #4c4145;
  padding: 28px 20px 10px;
}
.promo--short .promo__head {
  color: #4c4145;
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
  margin-top: 8px;
}
.promo--short .promo__head:before {
  content: '';
  background-image: url(../images/components/wave-dark.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: -116px;
}
.promo--short .promo__head:after {
  content: '';
  background-image: url(../images/components/wave-dark.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: -116px;
}
.promo--short .promo__describe {
  padding-bottom: 25px;
}
.promo--short .promo__images {
  display: block;
  margin: 0 auto;
  width: 76px;
}
.promo--info {
  padding: 39px 60px 32px;
  background-color: #4c4145;
  margin-top: 54px;
  text-align: left;
}
.promo--info .promo__head {
  color: #fff;
  text-transform: none;
  position: relative;
  margin-bottom: 57px;
}
.promo--info .promo__head:before {
  content: '';
  background-image: url(../images/components/wave-light.svg);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  bottom: -31px;
  left: 0;
}
.promo--info .promo__content {
  position: relative;
}
.promo--info .promo__content .content__text {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}
.promo--info .promo__content .btn--follow {
  position: absolute;
  right: 0;
  bottom: 0;
}
.testionaial--corner {
  background-color: #f5f5f5;
  min-height: 240px;
  margin-bottom: 10px;
}
.testionaial--corner .testionaial__images {
  margin-right: 20px;
  position: relative;
}
.testionaial--corner .testionaial__images:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #f5f5f5 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}
.testionaial--corner .testionaial__images:after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  right: 14px;
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
}
.testionaial--corner .testionaial__author {
  padding-top: 27px;
}
.testionaial--corner .testionaial__text {
  border: none;
  font-style: normal;
  margin-top: 0px;
  padding-top: 6px;
  padding-bottom: 5px;
}
.testionaial--corner .testionaial__text:before,
.testionaial--corner .testionaial__text:after {
  display: none;
}
.testionaial--rect {
  padding-right: 20px;
  padding-bottom: 20px;
}
.testionaial--rect .testimonial-inner {
  background-color: #fe505a;
  position: relative;
  padding: 0px 40px 39px;
}
.testionaial--rect .testimonial-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #4c4145;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}
.testionaial--rect .testionaial__author {
  text-align: right;
  font-size: 16px;
  font-family: 'aleoitalic', sans-serif;
  color: #ffffff;
  font-weight: normal;
}
.testionaial--rect .testionaial__text {
  border: none;
  color: #ffffff;
  font-style: normal;
  margin-top: 0;
  padding: 33px 0 10px;
}
.testionaial--rect .testionaial__text:before,
.testionaial--rect .testionaial__text:after {
  display: none;
}
.post--preview {
  padding-right: 20px;
}
.post--preview .post__image {
  width: 50%;
  float: left;
  margin-right: 13px;
  position: relative;
}
.post--preview .post__image img {
  max-width: 100%;
}
.post--preview--full .post__image {
  min-height: 150px;
  background-color: #dbdee1;
}
.post--preview .post__date {
  overflow: hidden;
  margin-bottom: 1px;
  padding-top: 14px;
}
.post--preview .post__date:before {
  top: 13px;
}
.post--preview .post__title {
  min-height: 60px;
  max-width: 105px;
  display: inline-block;
  min-height: 70px;
}
.post--preview .post--btn {
  font-size: 13px;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: -7px;
  margin-top: 10px;
}
.post--preview--wide .post__image {
  width: 37%;
}
.post--preview--wide .post__title {
  font-size: 16px;
  max-width: 200px;
}
.post--preview--wide .post--btn {
  font-size: 16px;
}
.post--news .post__text {
  font-size: 13px;
  line-height: 21px;
}
.post--news h1 {
  margin-bottom: 0;
}
.posts-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
}
.post-item {
  border-bottom: 1px solid #dbdee1;
  margin-top: 0px;
  margin-bottom: 10px;
  max-width: 524px;
  padding-right: 0px;
}
.post-item .post-item__image {
  display: block;
  position: relative;
  /* min-height: 225px; */
  background-color: #c1c1c1;
}
.post-item .post-item__image img {
  max-width: 100%;
}
.post-item .post-item__image:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.post-item .post-item__image:hover:before {
  /* width: 80%;
  height: 80%;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  opacity: 1;
  z-index: 10; */
}
.post-item .post-item__image:after {
  content: "\f0c1";
  font: 20px "FontAwesome";
  color: #ffffff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  -webkit-transition: 0.35s;
  -o-transition: 0.35s;
  transition: 0.35s;
}
.post-item .post-item__image:hover:after {
  /* opacity: 1;
  z-index: 11; */
}
.post-item .post-item__descript {
  position: relative;
  margin-top: 8px;
  display: flex;
  min-height: 70px;
  align-items: center;
}
.post-item .post-item__descript .post-item__icon {
  padding: 0 11px 0 13px;
  color: #ffffff;
  position: relative;
  z-index: 5;
}
.post-item .post-item__descript .post-item__name {
  display: inline-block;
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: #363639;
  padding-left: 8px;
  margin-bottom: 9px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 13px;
  line-height: 21px;
}
.paginatioon--full {
  padding-right: 0;
  width: 100%;
  float: left;
}
.comment--answer {
  padding-left: 30px;
}
.comment--answer:before {
  content: "\f178";
  font: 14px "FontAwesome";
  color: #4c4145;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -3px;
}
.comment-more {
  text-align: center;
  margin-top: 34px;
}
.comment-more .watchlist {
  padding-left: 41px;
  padding-right: 19px;
}
.comment-more .watchlist:before {
  content: "\f075";
  font-size: 13px;
  left: 21px;
}
.category--popular:before {
  background-image: url(../images/icons/heart.svg);
}
.category--discuss:before {
  background-image: url(../images/icons/comment.svg);
}
.category--cooming:before {
  background-image: url(../images/icons/film.svg);
}
.category--count {
  color: #ffffff;
  font-size: 13px;
}
.category--count ol {
  padding-left: 25px;
}
.category--count .category__item {
  padding-left: 0;
}
.category--count .category__item:before {
  display: none;
}
.category--light {
  background-color: transparent;
  padding-left: 3px;
  padding-right: 3px;
}
.category--light .category__title {
  color: #4c4145;
}
.category--light .category__item {
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.category--light .category__item:before {
  color: #4c4145;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.category--light .category__item:hover {
  color: #fe505a;
}
.category--light .category__item:hover:before {
  color: #fe505a;
}
.category--light .category__item--static {
  cursor: auto;
  display: block;
}
.category--light .category__item--static:hover {
  color: #4c4145;
}
.category--light .category__item--static:hover:before {
  color: #4c4145;
}
.categoty--position {
  padding-top: 48px;
}
.tags--dark {
  padding-left: 0;
  margin: 10px 0 20px;
}
.tags--dark:before {
  display: none;
}
.tags--dark .tags__item {
  display: inline-block;
  background-color: #4c4145;
  color: #e5e5da;
  padding: 1px 9px 3px;
  margin-right: -2px;
  margin-bottom: -1px;
  font-size: 11px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tags--dark .tags__item:hover {
  background-color: #fe505a;
  color: #ffffff;
}
.tags--unmarked {
  padding-left: 0;
}
.tags--unmarked:before {
  display: none;
}
.tags--unmarked .tags__item {
  font-size: 13px;
  padding-right: 26px;
}
.tags--aside {
  float: right;
  margin-right: -26px;
  min-width: 330px;
  margin-top: -35px;
}
.choose-container .select {
  float: left;
}
.choose-container .datepicker {
  margin-top: 4px;
  margin-left: 50px;
}
.choose-container--short {
  margin-top: -13px;
}
.select-area .select--cinema {
  margin-right: 0px;
}
.select--cinema {
  margin-left: 80px;
}
.select--cinema .select {
  margin-right: 25px;
}
.select--cinema .sbOptions {
  margin-left: -80px;
}
.select--cinema .sbHolderб
.movie_page .select--cinema .sbHolder {
  width: 125px;
}
.select--cinema .sbToggle {
  left: -66px;
}
.select--cinema .sbToggle:before {
  content: "\f03d";
  font-size: 14px;
  top: 2px;
}
.select--cinema .sbToggle:after {
  content: 'Кинотеатр';
}
.select--film-category {
  margin-left: 84px;
}
.select-film-category-ml-50 {
  margin-left: 50px;
}
.select--film-category .sbToggle {
  left: -35px;
}
.select--film-category .sbToggle:before {
  content: "\f008";
  font-size: 14px;
  top: 2px;
}
.select--film-category .sbToggle:after {
  content: 'Жанр';
}
.movie--preview {
  margin-top: 40px;
  margin-left: -15px;
  overflow: hidden;
}
.movie--preview .movie__images {
  border: none;
}
.movie--preview .movie__feature .movie__feature-item {
  position: relative;
  width: 32.5%;
  margin-top: 2px;
  margin-right: -1px;
  padding-right: 16px;
  background-color: #4c4145;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
}
.movie--preview .movie__feature .movie__feature--comment:before {
  content: "\f075";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 23px;
  right: 9px;
}
.movie--preview .movie__feature .movie__feature--video:before {
  content: "\f03d";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 24px;
  right: 14px;
}
.movie--preview .movie__feature .movie__feature--photo:before {
  content: "\f030";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 24px;
  right: 9px;
}
.movie--preview .movie__rate {
  border: none;
  border-top: 1px solid #dbdee1;
  border-bottom: 1px solid #dbdee1;
  padding-top: 13px;
  padding-bottom: 12px;
}
.movie--preview .movie__rate .score {
  padding-left: 0;
  margin-bottom: 1px;
}
.movie--preview .movie__rating {
  left: 149px;
}
.movie--preview .movie__show-btn {
  padding-bottom: 5px;
  position: absolute;
  top: 18px;
  right: 0;
  color: #fe505a;
}
.movie--preview .has_sessions.movie__show-btn {
  padding-right: 20px;
}
.movie--preview .has_sessions.movie__show-btn:hover {
  color: #4c4145;
}
.movie--preview .has_sessions.movie__show-btn:before {
  color: #fe505a;
  content: "\f078";
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  right: 1px;
  top: 3px;
  transition: all 0.3s ease 0s;
  z-index: 0;
}
.movie--preview .has_sessions.movie__show-btn:hover:before {
  color: #4c4145;
}
.movie--preview .has_sessions.movie__show-btn:after {
  background-image: url("../images/components/wave-danger.svg");
  background-repeat: repeat-x;
  background-size: 40px 4px;
  bottom: 2px;
  content: "";
  height: 4px;
  position: absolute;
  right: 0;
  width: 100%;
}
.movie--preview .has_sessions.movie__show-btn:hover:after {
  background-image: url("../images/components/wave-main.svg");
}
.movie--preview .movie__option {
  line-height: 25px;
}
.movie--preview .time-select {
  display: none;
  margin-top: 42px;
}
.preview-footer {
  margin-top: 26px;
  position: relative;
}
.movie--full .movie__feature .movie__feature-item {
  padding-right: 22px;
  padding-top: 21px;
  width: 32%;
}
.movie--time {
  overflow: hidden;
  padding-right: 40px;
  margin-bottom: 23px;
  min-height: 205px;
}
.movie--time .movie__images {
  border: none;
}
.movie--time .movie__title {
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
}
.movie--time .movie__time {
  margin-top: 4px;
  margin-bottom: 8px;
}
.movie--time .movie__time:before {
  top: 3px;
}
.movie--time .time-select .time-select__item {
  margin-right: 8px;
  margin-bottom: 1px;
}
.movie-time-wrap {
  overflow: hidden;
}
.movie-time-wrap .datepicker {
  margin-bottom: 33px;
  padding-left: 15px;
}
.movie--test {
  width: 50%;
  float: left;
  margin-bottom: 8px;
}
.movie--test .movie__images {
  width: 50%;
  border: none;
  position: relative;
}
.movie--test .movie__images:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  position: absolute;
  top: 0;
  z-index: 20;
}
.movie--test .movie__images:after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  top: 0;
}
.movie--test .movie-beta__link {
  display: block;
  position: relative;
}
.movie--test .movie-beta__link:after {
  content: '';
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 19;
}
.movie--test .movie-beta__link:hover:after {
  background-color: rgba(255, 255, 255, 0.4);
}
.movie--test .movie__info {
  overflow: hidden;
  padding: 17px 17px;
  position: relative;
  min-height: 200px;
  margin: 0;
}
.movie--test .movie__title {
  font-size: 16px;
  font-weight: bold;
}
.movie--test .movie__time {
  margin-bottom: 0;
}
.movie--test .movie__rate {
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.movie--test .movie__rate .movie__rating {
  display: block;
  position: absolute;
  top: -13px;
  right: 30px;
  left: auto;
}
.movie--test .movie__rate .score {
  position: absolute;
  top: 2px;
  left: 0;
}
.movie--test .movie__rate .score img {
  width: 15px;
}
.movie--test--light {
  background-color: #f5f5f5;
}
.movie--test--light .movie__images:before {
  border-color: transparent #f5f5f5 transparent transparent;
}
.movie--test--light .movie__images:after {
  background-color: #f5f5f5;
}
.movie--test--dark {
  background-color: #dbdee1;
}
.movie--test--dark .movie__images:before {
  border-color: transparent #dbdee1 transparent transparent;
}
.movie--test--dark .movie__images:after {
  background-color: #dbdee1;
}
.movie--test--left .movie__images {
  float: left;
}
.movie--test--left .movie__images:before {
  border-width: 0 20px 20px 0;
  right: 0;
}
.movie--test--left .movie__images:after {
  right: 14px;
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
}
.movie--test--right .movie__images {
  float: right;
}
.movie--test--right .movie__images:before {
  border-width: 20px 20px  0 0;
  left: 0;
}
.movie--test--right .movie__images:after {
  left: 14px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.movie--test--right.movie--test--light .movie__images:before {
  border-color: #f5f5f5 transparent transparent transparent;
}
.movie--test--right.movie--test--dark .movie__images:before {
  border-color: #dbdee1 transparent transparent transparent;
}
.rates--full .rates__stars .score {
  margin-left: 80px;
}
.cinema--full .cinema__title {
  font: 24px 'aleobold', sans-serif;
  text-transform: uppercase;
}
.cinema--full .cinema__rating {
  background-color: #ffd564;
  width: 750px;
  margin: 0 auto;
  font: 16px 'aleobold', sans-serif;
  padding-top: 28px;
  padding-bottom: 27px;
  display: block;
  position: relative;
}
.cinema--full .cinema__rating:before {
  content: '';
  background-image: url(../images/icons/stars.svg);
  background-repeat: no-repeat;
  width: 95px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 26px;
  margin-left: -143px;
}
.cinema--full .cinema__rating:after {
  content: '';
  background-image: url(../images/icons/stars.svg);
  background-repeat: no-repeat;
  width: 95px;
  height: 20px;
  position: absolute;
  right: 50%;
  top: 26px;
  margin-right: -143px;
}
.cinema--full .cinema__info {
  background-color: #ffd564;
  width: 750px;
  margin: 0px auto;
  padding-top: 20px;
  padding-bottom: 21px;
}
.cinema--full .cinema__info .cinema__info-item {
  font-size: 13px;
  margin-bottom: 2px;
}
.cinema--full .cinema__gallery {
  overflow: hidden;
  max-height: 240px;
}
.cinema--full .cinema__gallery .swiper-slide {
  position: relative;
}
.cinema--full .cinema__gallery .swiper-slide:before {
  content: '';
  background-color: #fff;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.cinema--full .cinema__gallery .swiper-slide:hover {
  cursor: url(../images/components/cursor.png), auto;
}
.cinema--full .cinema__gallery .swiper-slide:hover:before {
  opacity: 0;
}
.cinema-container {
  padding-top: 52px;
  text-align: center;
}
.share--centered {
  display: inline-block;
  margin-bottom: 11px;
}
.comment--light .comment {
  border-color: #fff;
}
.offer {
  background-repeat: no-repeat;
  background-position: 50% 7px;
}
.offer--winter {
  background-image: url(../images/icons/snow-dark.svg);
}
.offer--family {
  background-image: url(../images/icons/users-dark.svg);
}
.offer--day {
  background-image: url(../images/icons/wizard-dark.svg);
}
.offer--teen {
  background-image: url(../images/icons/smile-dark.svg);
}
.offer--gift {
  background-image: url(../images/icons/gift-dark.svg);
}
.offer--winter:hover {
  background-image: url(../images/icons/snow-light.svg);
}
.offer--family:hover {
  background-image: url(../images/icons/users-light.svg);
}
.offer--day:hover {
  background-image: url(../images/icons/wizard-light.svg);
}
.offer--teen:hover {
  background-image: url(../images/icons/smile-light.svg);
}
.offer--gift:hover {
  background-image: url(../images/icons/gift-light.svg);
}
.gallery-item .gallery-item--video:before,
.gallery-item .gallery-item--video-link:before {
  background-color: #fe505a;
}
.choose-sits__info--first {
  border-right: 1px solid #4c4145;
}
.sits-price--cheap:before {
  background-color: #fff0c7;
}
.sits-price--middle:before {
  background-color: #ffc8cb;
}
.sits-price--expensive:before {
  background-color: #cdb4bd;
}
.sits-state--not:before {
  background-color: #dbdee1;
}
.sits-state--your:before {
  background-color: #4c4145;
}
.auth--home {
  position: absolute;
  top: -10px;
  right: 155px;
}
.auth--home .auth__show {
  background: transparent;
}
.btn-control--home {
  margin-top: 1px;
}
.twitter--large .twitter__head {
  display: none;
}
.twitter--large .twitter-follow-button {
  display: none;
}

/* ============================================================================================ */

.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.schedule__page .select-area .select--cinema {
  margin-right: 20px;
}
.bannercontainer.empty-slider {
  min-height: 200px;
}
.disabled_click {
  pointer-events: none;
  opacity: .5;
}
.disabled_click {
  pointer-events: none;
  opacity: .5;
}
.disabled_click_office {
  /* pointer-events: none; */
  opacity: 1;
  background-color: #7ec0e2 !important;
  /* color: #fff; */
}
/* .disabled_click_office a {
  color: #fff;
} */
.disabled_click_office:after {
  /* pointer-events: none; */
  opacity: 0.1 !important;
  background-color: blue !important;
}
.time-select__item a {
  position: relative;
  z-index: 3;
  float: left;
  /* width: 100%; */
  height: 100%;
  padding: 10px 15px 6px 14px;
}
.time-select__item:hover,
.time-select__item:hover a {
  color: #ffffff;
}
.wrapper--clear__filter {
  float: right;
  position: relative;
  line-height: 100%;
}
.clear__filter {
  position: relative;
  top: 8px;
  font-weight: bold;
}
.clear__filter:after {
  content: '';
  background-image: url(../images/components/wave-danger.svg);
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -5px;
}
.fake-swiper_slide {
  height: 121px;
  background-color: #f5f5f5;
  margin: 0px 5px;
  padding: 0px;
 }
 .animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.yt-loader {
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  background: #ef534e;
  height: 3px;
  left: 0;
  top: 0;
  width: 0%;
  z-index: 9999;
  position: absolute;
}
.yt-loader.run-animation {
  -webkit-animation-name: horizontalProgressBar;
  animation-name: horizontalProgressBar;
}

.yt-loader:after{
display: block;
position: absolute;
content:'';
right: 0px;
width: 100px;
height: 100%;
box-shadow: #ef534e 1px 0 6px 1px;
opacity: 0.5;
}
@keyframes horizontalProgressBar
{
  0%   {width: 0%;}
  20%  {width: 10%;}
  30%  {width: 15%;}
  40%  {width: 18%;}
  50%  {width: 20%;}
  60%  {width: 22%;}
  100% {width: 100%;}
}
.collapse-object_attributes {
  position: relative;
}
.collapse-object_attributes:after {
  content: '';
  background-image: url(../images/components/wave-danger.svg);
  -webkit-background-size: 40px 4px;
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -5px;
}
.session__tags {
  display: flex;
  justify-content: space-around;
  flex-flow: column nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: relative;
  top: 3px;
  left: 3px;
  height: 28px;
  font-size: 9px;
  border: 1px solid #ffffff;
  transition: .3s;
  float: left;
}
.tag {
  list-style-type: none;
  padding: 1px;
  align-self: center;
}
/* .wrapper,
.footer-wrapper {
  opacity:0;
  transition:0.5s;
} */
.signal {
  border: 5px solid #fe505a;
  border-radius: 50px;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  visibility: visible;
}

@keyframes pulsate {
  0% {
    transform: scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.footer_banners {
  width: 100%;
  display: flex;
  justify-content: left;
}
.footer_banners li {
  float: left;
  margin-right: 20px;
  align-content: center;
  align-items: center;
  align-self: center;
  display: flex;
}
.filter__wrapper {
  opacity: 0;
  transition: .2s;
}
.video-overlay-play-button {
  position: absolute;
  top: 20%;
  left: 34%;
  width: 70px;
}
.movie__media-item:hover .video-overlay-play-button circle {
  stroke: #ffd564;
}
.movie__media-item:hover .video-overlay-play-button polygon {
  fill: #ffd564;
}

section .col-sm-12 {
  background-color: #fff !important;
}

.premier {
  background-image: url(/img/premier.png);
  position: absolute;
  height: 71px;
  width: 72px;
  top: 0px;
  right: -1px;
}

.btn--filter_categories {
  float: right;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: sans-serif;
}
.btn--filter_categories__item {
  font-size: 13px;
  font-weight: 500;
  font-family: sans-serif;
}

.filter--small-view_only {
  display: none;
}

/* ============================================================================================ */
/* ===============================                     ======================================== */
/* ===============================     MEDIA QUERY     ======================================== */
/* ===============================                     ======================================== */
/* ============================================================================================ */

@media screen and (min-width: 1930px) {
  .slide__video video {
    width: 2560px !important;
    height: 1440px !important;
  }
  .wrapper {
    min-height: 100%;
  }
  .footer-wrapper--mod {
    clear: both;
    position: relative;
    z-index: 10;
    height: 233px;
    margin-top: -233px;
  }
  .post-item .post-item__image img {
    min-height: 255px;
  }
  .cinema .cinema__images img {
    min-height: 255px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1929px) {
  .post-item .post-item__image {
    /* min-height: 255px; */
    min-height: 130px;
    height: 130px;
    overflow: hidden;
  }
  .post-item .post-item__image img {
    transform: translateY(-25%);
  }
  .cinema .cinema__images img {
    min-height: 255px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .post-item .post-item__image {
        min-height: 100px;
        height: 100px;
        overflow: hidden;
    }
    .post-item .post-item__image img {
        transform: translateY(-25%);
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  ul#navigation > li > ul.mega-menu {
    width: 940px;
    left: -592px;
  }
  .quote {
    padding-left: 35px;
    padding-right: 35px;
  }
  .post__preview .arrow-right {
    right: -2px;
  }
  .post--preview .post__image {
    float: none;
  }
  .post--preview--wide .post__title {
    max-width: 160px;
  }
  .post--preview--wide .post__image {
    width: 39%;
    float: left;
  }
  .post--preview .post__title {
    min-height: 90px;
  }
  .promo--info .promo__content .btn--follow {
    bottom: -40px;
    right: -40px;
  }
  .post--preview--full .post__title {
    display: block;
    max-width: 210px;
    min-height: 45px;
  }
  .movie .movie__media {
    padding-top: 33px;
  }
  .movie--preview .movie__feature .movie__feature-item {
    width: 49.5%;
  }
  .trailer .trailer__name {
    margin-bottom: 18px;
  }
  .trailer .trailer__number {
    margin-bottom: 16px;
  }
  .offer {
    padding: 0 15px;
    min-height: 345px;
  }
  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }
  .mega-select--full {
    width: 100%;
  }
  .mega-select--full .mega-select {
    float: none !important;
  }
  .mega-select--full .mega-select .select__field {
    width: 100%;
    padding-right: 23%;
  }
  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }
  .movie--test .movie__info {
    min-height: 173px;
  }
  .movie--test .movie__option {
    line-height: 13px;
  }
  .movie--test .movie__rate .movie__rating {
    right: 20px;
  }
  .facebook-group .fgroup {
    width: 180px !important;
    height: 323px !important;
  }
  .movie-best .movie-beta__info .best-voted {
    padding-top: 5px;
    padding-bottom: 3px;
    margin-bottom: 4px;
  }
  .margin-slider {
    margin-right: 40px;
  }
  .ticket {
    width: 950px;
    background-size: 950px 375px;
  }
  .ticket .ticket__inner {
    width: 760px;
  }
  .ticket-secondary,
  .ticket-primery {
    padding-left: 30px;
    padding-right: 35px;
  }
  .select .sbOptions {
    margin-left: 0;
  }
  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }
  .items-wrap {
    padding-left: 20px;
  }
  .post-item .post-item__image img {
    min-height: 205px;
  }
  .cinema .cinema__images img {
    min-height: 205px;
  }
}

@media screen and (max-width: 1000px) {
  .filter--small-view_only {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 0;
  }
  .filter--small-view_only .btn--filter_categories {
    margin: 5px;
    font-size: 12px;
  }
  .footer_banners {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .control-panel {
    margin-right: 75px;
  }
  ul#navigation {
    margin-right: 0;
  }
  ul#navigation > li > ul.mega-menu {
    width: 100%;
    width: 200px;
    background-color: #2e292e;
    padding: 0 15px;
  }
  ul#navigation li.mega-menu__coloum {
    padding-left: 0;
  }
  #navigation .mega-menu .mega-menu__list {
    display: block;
    background-color: transparent;
  }
  ul#navigation li.mega-menu__coloum--outheading {
    padding-top: 0;
    margin-top: -4px;
  }
  .search {
    top: 10px;
  }
  .post--preview .post__image {
    width: 75%;
    float: none;
  }
  .post--preview--wide .post__image {
    width: 55%;
    float: none;
  }
  .post .post__date {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .footer-info {
    padding-top: 30px;
    text-align: center;
  }
  .footer-info .heading-special--small {
    float: none;
    margin-right: 0;
  }
  .social {
    padding-bottom: 25px;
  }
  .copy {
    padding-bottom: 12px;
  }
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    padding-left: 24px;
    padding-right: 24px;
  }
  .promo--info .promo__content .btn--follow {
    bottom: -20px;
    right: -20px;
  }
  .mega-select .select__field {
    width: 588px;
  }
  .mega-select .select__group {
    width: 496px;
  }
  .mega-select-present .text-helper {
    margin-left: 515px;
  }
  .mega-select--full {
    width: 100%;
  }
  .mega-select--full .mega-select {
    float: none !important;
  }
  .mega-select--full .mega-select .select__field {
    width: 100%;
    padding-right: 28%;
  }
  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }
  .watchlist--map {
    margin: 20px 0 10px;
  }
  .movie .movie__rate {
    padding-left: 3px;
    padding-right: 3px;
  }
  .movie .movie__btns {
    top: auto;
    bottom: 0;
    right: auto;
    left: -240px;
  }
  .movie .movie__btns--full {
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
  }
  .movie--preview .col-sm-7 {
    min-height: 420px;
  }
  .movie--preview .movie__rate {
    padding-left: 10px;
  }
  .movie--preview .movie__rating {
    left: 125px;
  }
  .movie--preview .movie__btns {
    left: -175px;
  }
  .movie--preview .movie__btns .watchlist {
    margin-bottom: 0;
  }
  .movie--preview .movie__btns .watchlist {
    margin-top: 3px;
  }
  .select-area .select {
    margin-right: 35px;
  }
  .trailer .trailer__name {
    margin-bottom: 20px;
  }
  .trailer .trailer__number {
    margin-bottom: 18px;
  }
  .rates .rates__stars .score {
    margin-left: 10px;
    width: 95px !important;
  }
  .rates .rates__done {
    margin-left: 0;
  }
  .offer {
    padding: 0 15px;
    min-height: 345px;
  }
  .wrapper-images {
    -webkit-background-size: 2120px 1250px;
    background-size: 2120px 1250px;
  }
  .auth--home {
    right: 145px;
  }
  .movie--test {
    width: 100%;
  }
  .movie-best {
    margin-top: -50px;
  }
  .movie-best .movie-beta__item {
    width: 25%;
  }
  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }
  .facebook-group {
    margin-bottom: 15px;
  }
  .facebook-group .fgroup {
    width: 180px !important;
    height: 323px !important;
  }
  .sits .sits__row .sits__place {
    width: 25px;
    height: 25px;
    margin: 4px;
  }
  .sits .sits__number {
    margin-top: 100px;
  }
  .margin-slider {
    margin-right: 75px;
  }
  .movie--full .movie__about {
    min-height: 415px;
  }
  .movie--time .time-select {
    clear: both;
    margin-left: 20px;
  }
  .ticket {
    left: 50%;
    margin-left: -585px;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    margin-top: -50px;
    margin-bottom: -50px;
  }
  .ticket-secondary,
  .ticket-primery {
    padding-left: 15px;
    padding-right: 20px;
  }
  .single-cin .ui-datepicker {
    margin-left: -60px;
  }
  .sits .sits__indecator {
    margin: 1px;
  }
  .select .sbOptions {
    margin-left: 0;
  }
  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }
  .post-item .post-item__image img {
    min-height: 210px;
  }
  .cinema .cinema__images img {
    min-height: 210px;
  }
}

@media screen and (max-width: 800px) {
  .watchlist--map {
    display: block;
    float: none;
    max-width: 190px;
  }
  .watchlist--map-full {
    float: right;
    margin-top: 0;
  }
  .tab-pane .container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .home--page .post-item {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .movie-best .movie-beta__item img {
    width: 100%;
  }

  .control-panel {
    margin-right: 75px;
  }
  ul#navigation {
    margin-right: 0;
  }
  ul#navigation > li > ul.mega-menu {
    width: 100%;
    width: 200px;
    background-color: #2e292e;
    padding: 0 15px;
  }
  ul#navigation li.mega-menu__coloum {
    padding-left: 0;
  }
  #navigation .mega-menu .mega-menu__list {
    display: block;
    background-color: transparent;
  }
  ul#navigation li.mega-menu__coloum--outheading {
    padding-top: 0;
    margin-top: -4px;
  }
  .post__preview .arrow-left,
  .post__preview .arrow-right,
  .post__preview .arrow-left:before,
  .post__preview .arrow-right:before,
  .tparrows.tp-leftarrow.hebe,
  .tparrows.tp-rightarrow.hebe,
  .tparrows.tp-leftarrow.hebe:before,
  .tparrows.tp-rightarrow.hebe:before {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  .post__preview .arrow-left:hover,
  .post__preview .arrow-right:hover,
  .tparrows.tp-leftarrow.hebe:hover,
  .tparrows.tp-rightarrow.hebe:hover {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
  }
  .post__preview .arrow-right .slider__info,
  .post__preview .arrow-right:hover .slider__info,
  .post__preview .arrow-left:hover .slider__info,
  .tparrows.tp-leftarrow.hebe .slider__info,
  .tparrows.tp-leftarrow.hebe:hover .slider__info,
  .tparrows.tp-rightarrow.hebe .slider__info,
  .tparrows.tp-rightarrow.hebe:hover .slider__info {
    display: none;
  }
  .post__preview .arrow-left:hover:before,
  .tparrows.tp-leftarrow.hebe:hover:before {
    left: 3px;
  }
  .post__preview .arrow-right:hover:before,
  .tparrows.tp-rightarrow.hebe:hover:before {
    right: 3px;
  }
  .tparrows.tp-leftarrow.hebe:hover {
    margin-top: -61px !important;
  }
  .tparrows.tp-leftarrow.hebe:hover:before {
    margin-top: 23px;
  }
  .tparrows.tp-rightarrow.hebe:hover:before {
    margin-top: 23px;
  }
  .search {
    top: 10px;
  }
  .banner-wrap {
    max-width: 250px;
  }
  .panel-group {
    margin-bottom: 20px;
  }
  .post {
    padding-right: 0;
    overflow: hidden;
  }
  .post .post--btn {
    margin-left: -125px;
    margin-top: 90px;
  }
  .post--preview {
    margin-bottom: 20px;
  }
  .sitebar {
    padding-bottom: 20px;
    padding-left: 0;
    margin-top: 60px;
  }
  .banner-wrap {
    text-align: center;
    height: 250px;
  }
  .banner-wrap img {
    max-height: 100%;
  }
  .post__images {
    float: none !important;
  }
  .post .post__images--left {
    margin-right: 20px;
  }
  .post .post__images--right {
    margin-left: 20px;
  }
  .footer-info {
    padding-top: 30px;
    text-align: center;
  }
  .footer-info .heading-special--small {
    float: none;
    margin-right: 0;
  }
  .social__variant {
    margin-bottom: 25px;
  }
  .copy {
    padding-bottom: 12px;
  }
  .promo {
    margin-bottom: 15px;
  }
  .promo--info .promo__content .btn--follow {
    bottom: -40px;
    right: -40px;
  }
  .price {
    padding-right: 20px;
  }
  .watchlist,
  .read-more {
    display: inline-block;
    margin-bottom: 15px;
  }
  .mega-select .select__field {
    width: 100%;
    padding-right: 220px;
  }
  .mega-select .select__group {
    width: 100%;
    top: 46px;
  }
  .mega-select-present .text-helper {
    margin-left: 0;
    float: right;
    margin-right: 10px;
  }
  .mega-select .mega-select__point {
    margin-right: 10px;
  }
  .mega-select .filter-wrap {
    margin: 0 5px;
  }
  .mega-select .mega-select__filter {
    font-size: 12px;
  }
  .mega-select--full {
    width: 100%;
  }
  .mega-select--full .mega-select {
    float: none !important;
  }
  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }
  .mega-select--full .mega-select .select__field {
    padding-right: 30%;
  }
  .contant--right .post {
    padding-left: 0px;
  }
  .contant--right .preview-wrapper {
    padding-left: 00px;
  }
  .contant--right .page-heading {
    padding-left: 30px;
    background-position: 0px 50%;
  }
  .contant--right .comment-wrapper {
    padding-left: 0px;
  }
  .sitebar--left {
    padding-right: 0;
    margin-top: 60px;
  }
  .pagination {
    padding: 0;
  }
  .col--modificator {
    margin-left: 0;
  }
  .movie .movie__images,
  .movie .movie__rate {
    /* max-width: 190px; */
  }
  .movie .movie__media {
    margin-top: 50px;
  }
  .movie .movie__media .movie__media-switch {
    top: -40px;
    right: auto;
    left: 0;
  }
  .movie--test .movie__images {
    max-width: 100%;
  }
  .movie__feature {
    max-width: 190px;
  }
  .select {
    margin-left: 0;
  }
  .select.select--cinema {
    margin-left: 50px;
  }
  .select.select--film-category {
    margin-left: 34px;
  }
  .datepicker {
    margin-top: 23px;
  }
  .watchlist--map {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .time-select .time-select__place {
    margin-bottom: 0;
  }
  .time-select .time-select__group:before,
  .time-select .time-select__group:after {
    display: none;
  }
  .select .sbHolder {
    margin-left: 50px;
  }
  .select .sbOptions {
    z-index: 30;
  }
  .datepicker--sample {
    margin-left: 0px;
  }
  .cinema .cinema__images {
    max-width: 272px;
  }
  .trailer,
  .trailer-sample {
    max-width: 524px;
    margin-bottom: 15px;
    display: block;
  }
  .rates .rates__stars .score {
    margin: 0px auto;
    width: 95px !important;
  }
  .rates .rates__done {
    margin-left: 0;
  }
  .cinema--full .cinema__rating,
  .cinema--full .cinema__info {
    width: 100%;
  }
  .tab-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .movie--time {
    padding-right: 0;
  }
  .logo--dark {
    top: 60px;
  }
  .error {
    margin-top: 160px;
    padding-top: 73px;
    padding-bottom: 80px;
  }
  .wrapper-images {
    -webkit-background-size: 2120px 1250px;
    background-size: 2120px 1250px;
  }
  .auth--home {
    right: 145px;
  }
  .movie--test {
    width: 100%;
  }
  .movie-best .movies_background {
    min-height: 310px;
    position: absolute;
    top: 70px;
    width: 92.4%;
    z-index: 0;
  }
  .movie-best .movie-beta__item {
    width: 33.3%;
  }
  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }
  .movie-best {
    padding: 0 15px;
    margin-top: -10px;
  }
  .bannercontainer {
    min-height: 250px;
  }
  .change--col {
    padding: 0;
  }
  .movie-best .movie-best__check {
    overflow: hidden;
  }
  .movie-best .movie-beta__info {
    width: 100%;
  }
  .social-group .social-group__content {
    margin-bottom: 15px;
  }
  .facebook-group,
  .twitter-group {
    max-width: 270px;
  }
  .preview-footer {
    border-top: 1px solid #DBDEE1;
    border-bottom: 1px solid #DBDEE1;
  }
  .movie--preview .movie__rate {
    border: none;
  }
  .order-step-area .order-step {
    width: 100%;
    margin-bottom: 25px;
  }
  .contact-info .contact-info__field {
    width: auto;
  }
  .sits-area {
    width: 950px;
  }
  .sits .sits__number {
    margin-top: 100px;
  }
  .post--preview .post__image {
    width: 100%;
    max-width: 115px;
  }
  .post--preview .post--btn {
    display: block;
    margin-top: 15px;
    width: 135px;
    margin-left: 130px;
  }
  .movie--test {
    width: 30%;
    margin: 10px;
  }
  .movie--test .movie__images {
    width: 100%;
  }
  .movie--test .movie__images:after,
  .movie--test .movie__images:before {
    display: none;
  }
  .banner-wrap {
    display: inline-block;
    margin: 20px;
    margin-left: 0;
    max-width: 225px;
    width: 30.6%;
    height: auto;
  }
  .banner-wrap--last {
    margin-right: 0;
  }
  .promo {
    padding-bottom: 48px;
  }
  .store-variant {
    display: inline-block;
    width: 30%;
  }
  .store-variant:after {
    background-image: url("../images/components/wave-dark.svg");
    background-repeat: no-repeat;
    background-size: 84px 8px;
    content: "";
    height: 8px;
    left: 50%;
    margin-left: -42px;
    position: absolute;
    bottom: -4px;
    width: 84px;
  }
  .facebook-group {
    float: left;
    margin-right: 45px;
  }
  .social-group .twitter-group {
    overflow: hidden;
    min-height: 375px;
  }
  .similar-wrap {
    width: 32%;
    display: inline-block;
  }
  .similar-wrap .post__image {
    float: none;
  }
  .similar-wrap .post--btn {
    margin-left: 0px;
  }
  .margin-slider {
    margin-right: 100px;
  }
  .movie-mobile {
    float: left;
    margin-right: 20px;
  }
  .mobile-category {
    width: 45.5%;
    display: inline-block;
    margin: 10px;
  }
  .rs-cat {
    margin-right: 0px;
    margin-left: 20px;
  }
  .ls-cat {
    margin-left: 0px;
    margin-right: 20px;
  }
  .movie--time .movie__images {
    float: left;
    margin-right: 15px;
  }
  .movie--time .movie__time {
    overflow: hidden;
  }
  .offer {
    min-height: 350px;
  }
  .sits .sits__number {
    margin-top: 100px;
  }
  .sits-area {
    width: 840px;
    position: relative;
    left: 50%;
    margin-left: -420px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    margin-top: -150px;
    margin-bottom: -150px;
  }
  .ticket {
    left: 50%;
    margin-left: -585px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    margin-top: -90px;
    margin-bottom: -90px;
  }
  .ticket-secondary,
  .ticket-primery {
    padding-left: 15px;
    padding-right: 20px;
  }
  .watchlist--map {
    display: block;
    float: none;
    max-width: 185px;
  }
  .single-cin .ui-datepicker {
    margin-left: -60px;
  }
  .social-group .social-group__content {
    margin-bottom: 40px;
  }
  .mega-select .select__btn--sample {
    margin-top: -31px;
    float: right;
  }
  .select .sbOptions {
    margin-left: 0;
  }
  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }
  .cinema .cinema__images img {
    min-height: 330px;
  }
}

@media screen and (max-width: 640px) {
  .performance-container {
    margin-right: 0 !important;
  }
  .performance-container h3 {
    padding-bottom: 25px;
  }
  .performance-container .performance-block {
    width: 45% !important;
    margin: 0 5% 2.5% 0 !important;
  }
  .performance-container .performance-block:nth-child(2n) {
    margin-right: 0 !important;
  }

  .performance-container .performance-block .btn--post_categories {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .wrapper-images {
    -webkit-background-size: 2220px 1350px;
    background-size: 2220px 1350px;
  }
  .slide .slide__video .media-element {
    margin-top: -200px;
  }
  .movie--test {
    width: 45%;
    margin: 10px;
    max-width: 215px;
  }
  .banner-top,
  .banner-wrap,
  .adv-place {
    display: none;
  }
  .bannercontainer {
    min-height: 200px;
  }
  .store-variant {
    display: block;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .store-variant:after {
    display: none;
  }
  .store-variant img {
    width: 100%;
  }
  .similar-wrap {
    width: 100%;
    display: block;
  }
  .similar-wrap .post__image {
    float: left;
  }
  .similar-wrap .post--btn {
    margin-left: 125px;
  }
  .similar-wrap .post__title {
    max-width: 115px;
    min-height: 70px;
  }
  .movie__media-item {
    margin-top: 7px;
  }
  .movie-mobile {
    float: none;
    margin-right: 0;
  }
  .movie .movie__btns {
    position: relative;
  }
  .movie .movie__btns .watchlist {
    float: none;
  }
  .movie .movie__btns .btn {
    display: inline-block;
    margin-right: 10px;
  }
  .watchlist--map-full {
    display: block;
    float: none;
    max-width: 190px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 570px) {
  .movie .movie__images, .movie .movie__rate {
    max-width: none;
  }
  .col-sm-12 .page-heading .btn.btn-md.btn--post_categories {
    max-width: 100%;
    word-spacing: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .facebook-group {
    float: none;
    margin-bottom: 20px;
  }
  .watchlist--map-full {
    max-width: none;
    width: 100%;
  }
  .rs-cat {
    margin: 0;
  }
  .ls-cat {
    margin: 0;
  }
  .mobile-category {
    width: 100%;
    display: block;
    margin: 10px 0px;
  }
  .movie--time .time-select {
    clear: both;
    margin-left: 20px;
  }
  .offers-wrap {
    width: 100%;
  }
  .sits-area {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    margin-top: -200px;
    margin-bottom: -230px;
  }
  .ticket {
    left: 50%;
    margin-left: -585px;
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  .cinema .cinema__images {
    max-width: none;
  }
}

@media screen and (max-width: 480px) {
  .social__variant:first-child {
    margin-left: 0;
  }
  .select.select--cinema:not(.foo) {
    margin-left: 35px;
  }
  .swiper-slide {
    margin: 0;
  }
  .swiper-slide.media-video {
    margin: 0;
  }
  .swiper-slide.media-video.fake-swiper_slide {
    margin: 0;
  }
  .post.post--news.col-sm-4 {
    min-height: auto !important;
    max-height: none !important;
    padding-left: 0;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 30px;
  }
  .post.post--news.col-sm-4:last-child {
    border-bottom: none;
  }
  .post .post__title-link {
    font: 20px 'aleoregular', sans-serif;
  }

  .cinema .cinema__images img {
    min-height: auto;
  }

  .tags .tags__label {
    margin-right: 5px;
  }
  .tags--unmarked .tags__item {
    font-size: 13px;
    padding-right: 5px;
  }
  .tags .item-active {
    color: #fe505a;
  }

  .nav-link .nav-link__item {
    margin-left: -5px;
  }
  .nav-link .nav-link__item:before {
    margin-right: 5px;
  }
  /*
  #navigation-box {
    min-height: 102px;
  }
  */
  .control-panel {
    top: 55px;
    right: 50%;
    margin-right: -70px;
  }
  #navigation-toggle,
  #navigation-toggle.open-menu {
    left: auto;
    right: 10px;
  }
  .header-wrapper ul#navigation {
    top: 55px;
    left: 0;
    right: 0;
  }
  .header-wrapper .logo {
    width: 30%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-wrapper .control-panel {
    left: 20px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
  }
  .header-wrapper .control-panel a {
    font-size: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    background-color: transparent;
    border: solid 1px transparent;
    box-shadow: none;
  }
  .header-wrapper .control-panel a:after {
    content: '';
    display: block;
    /* position: absolute; */
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBjbGFzcz0iIj48Zz48Zz4KCTxnPgoJCTxnPgoJCQk8Y2lyY2xlIGN4PSIzODYiIGN5PSIyMTAiIHI9IjIwIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L2NpcmNsZT4KCQkJPHBhdGggZD0iTTQzMiw0MGgtMjZWMjBjMC0xMS4wNDYtOC45NTQtMjAtMjAtMjBjLTExLjA0NiwwLTIwLDguOTU0LTIwLDIwdjIwaC05MVYyMGMwLTExLjA0Ni04Ljk1NC0yMC0yMC0yMCAgICAgYy0xMS4wNDYsMC0yMCw4Ljk1NC0yMCwyMHYyMGgtOTBWMjBjMC0xMS4wNDYtOC45NTQtMjAtMjAtMjBzLTIwLDguOTU0LTIwLDIwdjIwSDgwQzM1Ljg4OCw0MCwwLDc1Ljg4OCwwLDEyMHYzMTIgICAgIGMwLDQ0LjExMiwzNS44ODgsODAsODAsODBoMTUzYzExLjA0NiwwLDIwLTguOTU0LDIwLTIwYzAtMTEuMDQ2LTguOTU0LTIwLTIwLTIwSDgwYy0yMi4wNTYsMC00MC0xNy45NDQtNDAtNDBWMTIwICAgICBjMC0yMi4wNTYsMTcuOTQ0LTQwLDQwLTQwaDI1djIwYzAsMTEuMDQ2LDguOTU0LDIwLDIwLDIwczIwLTguOTU0LDIwLTIwVjgwaDkwdjIwYzAsMTEuMDQ2LDguOTU0LDIwLDIwLDIwczIwLTguOTU0LDIwLTIwVjgwaDkxICAgICB2MjBjMCwxMS4wNDYsOC45NTQsMjAsMjAsMjBjMTEuMDQ2LDAsMjAtOC45NTQsMjAtMjBWODBoMjZjMjIuMDU2LDAsNDAsMTcuOTQ0LDQwLDQwdjExNGMwLDExLjA0Niw4Ljk1NCwyMCwyMCwyMCAgICAgYzExLjA0NiwwLDIwLTguOTU0LDIwLTIwVjEyMEM1MTIsNzUuODg4LDQ3Ni4xMTIsNDAsNDMyLDQweiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJCQk8cGF0aCBkPSJNMzkxLDI3MGMtNjYuNzIsMC0xMjEsNTQuMjgtMTIxLDEyMXM1NC4yOCwxMjEsMTIxLDEyMXMxMjEtNTQuMjgsMTIxLTEyMVM0NTcuNzIsMjcwLDM5MSwyNzB6IE0zOTEsNDcyICAgICBjLTQ0LjY2MywwLTgxLTM2LjMzNi04MS04MXMzNi4zMzctODEsODEtODFjNDQuNjYzLDAsODEsMzYuMzM2LDgxLDgxUzQzNS42NjMsNDcyLDM5MSw0NzJ6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L3BhdGg+CgkJCTxwYXRoIGQ9Ik00MjAsMzcxaC05di0yMWMwLTExLjA0Ni04Ljk1NC0yMC0yMC0yMGMtMTEuMDQ2LDAtMjAsOC45NTQtMjAsMjB2NDFjMCwxMS4wNDYsOC45NTQsMjAsMjAsMjBoMjkgICAgIGMxMS4wNDYsMCwyMC04Ljk1NCwyMC0yMEM0NDAsMzc5Ljk1NCw0MzEuMDQ2LDM3MSw0MjAsMzcxeiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJCQk8Y2lyY2xlIGN4PSIyOTkiIGN5PSIyMTAiIHI9IjIwIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L2NpcmNsZT4KCQkJPGNpcmNsZSBjeD0iMjEyIiBjeT0iMjk3IiByPSIyMCIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9jaXJjbGU+CgkJCTxjaXJjbGUgY3g9IjEyNSIgY3k9IjIxMCIgcj0iMjAiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSJhY3RpdmUtcGF0aCIgc3R5bGU9ImZpbGw6I0ZGRkZGRiIgZGF0YS1vbGRfY29sb3I9IiMwMDAwMDAiPjwvY2lyY2xlPgoJCQk8Y2lyY2xlIGN4PSIxMjUiIGN5PSIyOTciIHI9IjIwIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L2NpcmNsZT4KCQkJPGNpcmNsZSBjeD0iMTI1IiBjeT0iMzg0IiByPSIyMCIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9jaXJjbGU+CgkJCTxjaXJjbGUgY3g9IjIxMiIgY3k9IjM4NCIgcj0iMjAiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSJhY3RpdmUtcGF0aCIgc3R5bGU9ImZpbGw6I0ZGRkZGRiIgZGF0YS1vbGRfY29sb3I9IiMwMDAwMDAiPjwvY2lyY2xlPgoJCQk8Y2lyY2xlIGN4PSIyMTIiIGN5PSIyMTAiIHI9IjIwIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L2NpcmNsZT4KCQk8L2c+Cgk8L2c+CjwvZz48c3R5bGUgaWQ9InN0eWxpc2gtMjYiIGNsYXNzPSJzdHlsaXNoIGFjdGl2ZS1wYXRoIiB0eXBlPSJ0ZXh0L2NzcyIgc3R5bGU9IiI+QGNoYXJzZXQgIlVURi04IjtAbmFtZXNwYWNlIHVybChodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sKTtAbmFtZXNwYWNlIHN2ZyB1cmwoaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcpOzwvc3R5bGU+PC9nPiA8L3N2Zz4=);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
  .tparrows.hebe.tp-leftarrow,
  .tparrows.hebe.tp-rightarrow {
    transform: none !important;
  }
  .tparrows.hebe.tp-leftarrow {
    left: 0 !important;
  }
  .tparrows.hebe.tp-rightarrow {
    right: 0  !important;
  }
  .bannercontainer,
  .tp-revslider-mainul .slide,
  .banner.rev_slider.revslider-initialised.tp-simpleresponsive {
    min-height: 100px !important;
    height: 18vh !important;
  }


  .col-sm-12 .page-heading {
    background-image: none;
    padding-left: 0;
    text-align: center;
    margin-top: 27px;
  }

  .col-sm-12 .page-heading .btn.btn-md.btn--post_categories {
    padding: 5px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .footer_banners {
    flex-wrap: wrap;
  }
  .footer_banners  li {
    margin-bottom: 10px;
  }

  .top-scroll {
    bottom: 15px;
    right: 15px;
  }

  .movie-best .movie-beta__info * {
    margin-bottom: 2px;
    font-size: 11px;
  }
  .movie-best .movie-beta__info .slide__link {
    font: 9px 'aleoregular', sans-serif;
  }
  .movie-best .movie-beta__info .slide__link:before {
    top: 50%;
    transform: translateY(-50%);
  }

  .search-wrapper {
    height: 135px;
  }
  .search .sbHolder {
    top: 75px;
    border: none;
    right: auto;
    left: 50%;
    margin-left: -140px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .search .search__button {
    top: 74px;
    right: auto;
    left: 50%;
  }
  .search .search__field {
    padding-right: 19px;
  }
  .post__preview .arrow-left,
  .post__preview .arrow-right,
  .post__preview .arrow-left:before,
  .post__preview .arrow-right:before,
  .tp-leftarrow.hebe,
  .tp-rightarrow.hebe,
  .tp-leftarrow.hebe:before,
  .tp-rightarrow.hebe:before {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
  }
  .post__preview .arrow-left:hover,
  .post__preview .arrow-right:hover,
  .tp-leftarrow.hebe:hover,
  .tp-rightarrow.hebe:hover {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
  }
  .post__preview .arrow-right .slider__info,
  .post__preview .arrow-right:hover .slider__info,
  .post__preview .arrow-left:hover .slider__info,
  .tp-leftarrow.hebe:hover .slider__info,
  .tp-rightarrow.hebe .slider__info,
  .tp-rightarrow.hebe:hover .slider__info {
    display: none;
  }
  .post__preview .arrow-left:hover:before,
  .tp-leftarrow.hebe:hover:before {
    left: 3px;
  }
  .post__preview .arrow-right:hover:before,
  .tp-rightarrow.hebe:hover:before {
    right: 3px;
  }
  .tp-leftarrow.hebe:hover:before {
    margin-top: 23px;
  }
  .tp-rightarrow.hebe:hover:before {
    margin-top: 23px;
  }
  .list-input {
    padding-left: 10px;
  }
  .quote--intext {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .quote .quote__author .quote__author-name {
    padding-left: 2px;
  }
  .comment .comment__reply {
    top: 40px;
  }
  .tabs--vertical .nav-tabs {
    float: none;
  }
  .tabs--vertical .tab-content {
    margin-left: 0;
  }
  .mega-select .select__field {
    padding-right: 20px;
  }
  .mega-select .select__field {
    margin-top: 10px;
  }
  .mega-select .mega-select__point {
    margin-right: 10px;
    float: none;
  }
  .mega-select .filter-wrap {
    margin: 5px;
  }
  .ui-datepicker {
    margin-left: -85px;
  }
  .tags--aside {
    margin-top: 0;
    margin-right: 0;
    float: none;
  }
  .col-width-lg {
    width: 67%;
  }
  .rates .rates__vote {
    display: none;
  }
  .rates .rates__obj-name:before,
  .rates .rates__obj-name:after {
    display: none;
  }
  .wrapper-images {
    -webkit-background-size: 3120px 1950px;
    background-size: 3120px 1950px;
  }
  .logo--lg {
    margin-left: -130px;
  }
  .logo--lg img {
    width: 260px;
    height: 42px;
  }
  .header-wrapper--home {
    position: relative;
    height: 55px;
  }
  .bannercontainer {
    min-height: 100px;
  }
  .movie-best .movie-beta__item img {
    width: 100%;
  }
  .auth--home {
    right: 130px;
  }
  .slide .slide__video .media-element {
    margin-top: -130px;
  }
  .movie-best .movie-beta__item {
    width: 50%;
  }
  .third--item {
    display: none;
  }
  .post--preview .post--btn {
    display: block;
    margin-top: 0px;
    width: 135px;
    margin-left: 0px;
  }
  .mega-select--full .mega-select .select__field {
    padding-right: 80px;
  }
  .movie--test {
    width: 100%;
    margin: 10px 0px;
    max-width: 250px;
    display: block;
  }
  .movie__media-item {
    margin-top: 0px;
  }
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    background: none;
    padding-left: 7px;
    padding-right: 7px;
    color: #fe505a;
  }
  .nav-tabs > li > a,
  .nav-tabs > li > a:hover,
  .nav-tabs > li > a:focus {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cinema-item {
    width: 100%;
  }
  .facebook-group {
    margin-right: 0;
  }
  .similar-wrap .post__title {
    min-height: 100px;
  }
  .hidden-exrtasm {
    display: none;
  }
  .sits-area {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    margin-top: -250px;
    margin-bottom: -280px;
  }
  .ticket {
    left: 50%;
    margin-left: -585px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    margin-top: -130px;
    margin-bottom: -130px;
  }
  .mega-select-marker .select-marker {
    line-height: 45px;
  }
  .mega-select-marker .select-marker span {
    font-size: 18px;
    line-height: 20px;
  }
  .mega-select-marker .cinema:before {
    margin-left: -70px;
  }
  .movie--test .movie__info {
    min-height: 175px;
  }
  .movie--test .movie__rate {
    position: relative;
    margin-left: -17px;
    margin-top: 20px;
  }
  .sits-area--mobile .sbHolder {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
  .sits-area--mobile .sbHolder .sbOptions {
    width: 100%;
  }
  .hidden-xs-down {
    display: none !important;
  }
}

@media screen and (max-width: 365px) {
  .ui-datepicker {
    margin-left: -10px;
  }
  .movie-best {
    margin-top: 10px;
  }
  .movie-best .movie-beta__item {
    width: 100%;
  }
  .second--item {
    display: none;
  }
  .movie-best .movie-best__rating:before,
  .movie-best .movie-best__rating:after {
    display: none;
  }
  .rates .rates__obj .rates__obj-name {
    font-size: 14px;
    padding: 15px 0;
  }
  .rates .rates__result {
    font-size: 16px;
  }
  .preview-footer {
    border: none;
  }
  .movie--preview .movie__rate {
    border-top: 1px solid #DBDEE1;
    border-bottom: 1px solid #DBDEE1;
    min-height: 110px;
  }
  .movie--preview .movie__show-btn {
    top: 72px;
    left: 15px;
    right: auto;
  }
  .choose-container .datepicker {
    margin-left: 0px;
  }
  .watchlist--map {
    float: none;
  }
  .single-cin .ui-datepicker {
    margin-left: -5px;
  }
  .choose-container--short .select .sbToggle {
    left: -20px;
  }
  .choose-container--short .select .sbHolder {
    margin-left: 35px;
    margin-right: 10px;
  }
  .post--preview .post__title {
    min-height: 105px;
    max-width: 105px;
  }
  .movie-best {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  /* .movie-best .movie-beta__info {
    position: relative;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  } */
  /* .movie-best .movie-beta__item:hover .movie-beta__info {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  } */
  .movie-best .movie-beta__item .best-rate {
    top: 25%;
  }
  .select-area {
    padding: 13px 10px 40px 20px !important;
  }
}

@media (max-width: 319px) {
  .post--preview .post__image {
    width: 100%;
  }
}