/******* Shortcode: Image ********/
.tcvpb-image a{
	position: relative;
	display: block;
	outline: none;
	border-bottom: 0 !important;
}

.tcvpb-image a img{
	display: block;
}

.tcvpb-image a.lightbox{
	position: relative;
}

.tcvpb-image a span{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -50px;
	line-height: 22px;
	text-align: center;
	color: #fff;
	opacity: 0;
}

.tcvpb-image a:hover span{
	opacity: 1;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.tcvpb-image a i{
	position: absolute;
	width: 32px;
	height: 32px;
	opacity: 0;
	left: 50%;
	margin-left: -16px;
	top: 50%;
	margin-top: -16px;
	color: #fff;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.tcvpb-image a:hover i{
	opacity: 1;
}

.tcvpb-image canvas{
	position: absolute;
	left: 0;
	top: 0;
	max-width: 100%;
	width: 100%!important;
	height: 100%!important;
	opacity: 0;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.tcvpb-image a:hover canvas{
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
	opacity: 1;
}

.tcvpb-image a:hover canvas.grey-effect{
	background: rgba(0, 0, 0, 0.5);
}

/******* Shortcode: Image Hotspots ********/
.tcvpb-hotspot-tooltip{
	display: block;
	border-radius: 50%;
	position: absolute;
	height: 30px;
	width: 30px;
	line-height: 30px;
	z-index: 2;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}

.tcvpb-hotspot-tooltip span{
	position: relative;
}

.tcvpb-hotspot-tooltip i{
	font-size: 12px;
}

.tcvpb-hotspot-pulse {
	display: block;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	-webkit-animation: tcvpb_pulsate 2s ease-out infinite;
	animation: tcvpb_pulsate 2s linear infinite;
	opacity: 0;
	z-index: 1;
	top: -5px;
	left: -5px;
}

@keyframes tcvpb_pulsate {
    0% {
    	-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
    	opacity: 0.0;
    }
    50% {opacity: 1.0;}
    100% {
    	-webkit-transform: scale(1.2, 1.2);
    	-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
    	opacity: 0.0;
    }
}

@-moz-keyframes tcvpb_pulsate {
    0% {
		-moz-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
    	opacity: 0.0;
    }
    50% {opacity: 1.0;}
    100% {
    	-moz-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
    	opacity: 0.0;
    }
}

@-webkit-keyframes tcvpb_pulsate {
    0% {
    	-webkit-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
    	opacity: 0.0;
    }
    50% {opacity: 1.0;}
    100% {
    	-webkit-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
    	opacity: 0.0;
    }
}

@-ms-keyframes tcvpb_pulsate {
    0% {
    	-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
    	opacity: 0.0;
    }
    50% {opacity: 1.0;}
    100% {
    	-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
    	opacity: 0.0;
    }
}

/******* Shortcode: Image Switch ********/
.tcvpb-image-combo{
	display: inline-block;
	position: relative;
}

.tcvpb-image-combo a{
	display: inline-block;
	outline: 0;
}

.tcvpb-image-combo .tcvpb_image_first_image {
	z-index: 1;
	opacity: 1;
	-webkit-transition: opacity 800ms ease-in-out;
	-o-transition: opacity 800ms ease-in-out;
	transition: opacity 800ms ease-in-out;
}

.tcvpb-image-combo .tcvpb_image_second_image {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 800ms ease-in-out;
	-o-transition: opacity 800ms ease-in-out;
	transition: opacity 800ms ease-in-out;
}

.tcvpb-image-combo:hover .tcvpb_image_second_image {
  opacity: 1;
  -webkit-transition: opacity 800ms ease-in-out;
  -o-transition: opacity 800ms ease-in-out;
  transition: opacity 800ms ease-in-out;
}

/********** Shortcode: Animation Box *************************************************************/
.tcvpb-animo,
.tcvpb-animo-children > *{
	visibility: hidden;
}

.tcvpb-animo.animated,
.tcvpb-animo.animation_completed{
	visibility: visible;
}

.tcvpb-animo-children .animation_completed{
	visibility: visible;
}

/********** Shortcode: Scroll Popup ********************************************************/
.tcvpb-popup-wrapper{
	display: block;
}

.tcvpb-popup-shadow{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.8);
}

.tcvpb-popup-close{
	content: "";
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	outline: none;
	top: 10px;
	right: 10px;
	z-index: 99999999;
	cursor: pointer;
}

.tcvpb-popup-content img{
	margin-bottom: 15px;
	width: 100%;
}

.tcvpb-popup-content{
	display: none;
	background: #fff;
	z-index: 99999999;
	overflow-y: auto;
	padding: 20px;
	text-align: left;
}

.tcvpb-popup-content p:last-child{
	margin-bottom: 0;
}

.tcvpb-popup-content i{
	top: 2px;
	left: 2px;
	position: absolute;
}

.tcvpb-popup-content.top_center,
.tcvpb-popup-content.top_right,
.tcvpb-popup-content.top_left{
	top: 0;
}

.tcvpb-popup-content.top_center,
.tcvpb-popup-content.center_center,
.tcvpb-popup-content.bottom_center{
	right: 0;
	left: 0;
	margin: auto;
}

.tcvpb-popup-content.top_right,
.tcvpb-popup-content.center_right,
.tcvpb-popup-content.bottom_right{
	right: 0;
}

.tcvpb-popup-content.top_left,
.tcvpb-popup-content.center_left,
.tcvpb-popup-content.bottom_left{
	left: 0;
}

.tcvpb-popup-content.center_center,
.tcvpb-popup-content.center_right,
.tcvpb-popup-content.center_left{
	top: 0;
	bottom: 0;
	margin: auto;
}

.tcvpb-popup-content.bottom_center,
.tcvpb-popup-content.bottom_right,
.tcvpb-popup-content.bottom_left{
	bottom: 0;
}


/********** Shortcode: Nivo Slider ********************************************************/
.nivo-controlNav{
	text-align: center;
}

.nivo-controlNav a{
	margin: 0 5px;
	color: #444;
}

.nivo-controlNav a:hover{
	font-weight: 700;
}


/********** Shortcode: Columns & sections *************************************************************/
.tcvpb_container:before,
.tcvpb_container:after{
	display: table;
	line-height: 0;
	content: "";
}

.tcvpb_container:after{
	clear: both;
}

.section_body_fullwidth .tcvpb_section_content .tcvpb_container{
	width: 100%;
}

.tcvpb_section_tc{
	position: relative;
	overflow:hidden;
}

.tcvpb_section_tc > *{
	z-index: 1;
	position: relative;
}

.tcvpb_section_tc header,
.tcvpb_section_tc footer{
	text-align: center;
}

.tcvpb_section_tc header h3{
	font-family: 'Open Sans';
	font-weight: 300;
	display: inline-block;
	color: #333;
	text-transform: uppercase;
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 24px;
	position: relative;
}

.tcvpb_section_tc header .tcvpb_section_header_icon:before,
.tcvpb_section_tc header .tcvpb_section_header_icon:after{
	display: block;
	content: "";
	background: #ddd;
	height: 1px;
	width: 82px;
	position: absolute;
	top: 50%;
}

.tcvpb_section_tc header .tcvpb_section_header_icon i{
	line-height: 36px;
}

.tcvpb_section_tc header .tcvpb_section_header_icon:before{
	left: -82px;
}

.tcvpb_section_tc header .tcvpb_section_header_icon:after{
	right: -82px;
}

.tcvpb_section_tc header .tcvpb_section_header_icon{
	position: relative;
	height: 36px;
	width: 36px;
	left: 50%;
	margin-left: -18px;
	color: #e42382;
	font-size: 18px;
	margin-bottom: 32px;
}

.tcvpb_section_tc header p{
	font-family: 'Open Sans';
	font-weight: 300;
	font-size: 18px;
	margin-bottom: 85px;
	text-transform: uppercase;
	color: #676767;
	line-height: 24px;
}

.tcvpb_section_tc.pattern_overlayed header h3,
.tcvpb_section_tc.pattern_overlayed header h3:after,
.tcvpb_section_tc.pattern_overlayed header p,
.tcvpb_section_tc.pattern_overlayed header .tcvpb_section_header_icon,
.tcvpb_section_tc.color_overlayed header h3,
.tcvpb_section_tc.color_overlayed header h3:after,
.tcvpb_section_tc.color_overlayed header p,
.tcvpb_section_tc.color_overlayed header .tcvpb_section_header_icon,
.tcvpb_section_tc.pattern_overlayed_dotted header h3,
.tcvpb_section_tc.pattern_overlayed_dotted header h3:after,
.tcvpb_section_tc.pattern_overlayed_dotted header p,
.tcvpb_section_tc.pattern_overlayed_dotted_2 header h3,
.tcvpb_section_tc.pattern_overlayed_dotted_2 header h3:after,
.tcvpb_section_tc.pattern_overlayed_dotted_2 header p,
.tcvpb_section_tc.pattern_overlayed_dotted_2 header .tcvpb_section_header_icon,
.tcvpb_section_tc.pattern_overlayed_lined header h3,
.tcvpb_section_tc.pattern_overlayed_lined header h3:after,
.tcvpb_section_tc.pattern_overlayed_lined header p,
.tcvpb_section_tc.pattern_overlayed_lined header .tcvpb_section_header_icon,
.tcvpb_section_tc.pattern_overlayed_lined_h header h3,
.tcvpb_section_tc.pattern_overlayed_lined_h header h3:after,
.tcvpb_section_tc.pattern_overlayed_lined_h header p,
.tcvpb_section_tc.pattern_overlayed_lined_h header .tcvpb_section_header_icon{
	color: #fff;
}

.tcvpb_section_tc.pattern_overlayed a,
.tcvpb_section_tc.pattern_overlayed_dotted a,
.tcvpb_section_tc.pattern_overlayed_dotted_2 a,
.tcvpb_section_tc.pattern_overlayed_lined a,
.tcvpb_section_tc.pattern_overlayed_lined_h a,
.tcvpb_section_tc.color_overlayed a{
	color: #e42382;
}

.section_gray_body .tcvpb_section_content{
	background: #f4f4f4;
	padding: 55px 0;
}

.section_body_fullwidth .tcvpb_section_content .tcvpb_container{
	width: 100%;
}

.tcvpb_video_background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
	visibility: hidden;
}

.tcvpb_video_background .mejs-container{
	background:none !important;
}

.tcvpb_video_background .mejs-overlay-loading{
	display: none !important;
}

.tcvpb-parallax{
	background-position: 50% top;
	background-attachment:fixed;
	background-size: cover;
}

.tcvpb_container [class*="column_tc_span"]{
	display: block;
	float: left;
	min-height: 20px;
	margin-left: 2.564102564102564%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.section_no_column_margin .tcvpb_container [class*="column_tc_span"],
.tcvpb_container [class*="column_tc_span"]:first-child{
	margin-left: 0;
}

.tcvpb_column_tc_span12  {width: 100%;}
.tcvpb_column_tc_span11  {width: 91.45299145299145%;}
.tcvpb_column_tc_span10  {width: 82.90598290598291%;}
.tcvpb_column_tc_span9   {width: 74.35897435897436%;}
.tcvpb_column_tc_span8   {width: 65.81196581196581%;}
.tcvpb_column_tc_span7   {width: 57.26495726495726%;}
.tcvpb_column_tc_span6   {width: 48.71794871794872%;}
.tcvpb_column_tc_span5   {width: 40.17094017094017%;}
.tcvpb_column_tc_span4   {width: 31.62393162393162%;}
.tcvpb_column_tc_span3   {width: 23.07692307692308%;}
.tcvpb_column_tc_span2   {width: 14.52991452991453%;}
.tcvpb_column_tc_span1   {width: 5.982905982905983%;}

.section_no_column_margin .tcvpb_column_tc_span12  {width: 100%;}
.section_no_column_margin .tcvpb_column_tc_span11  {width: 91.6666666666665%;}
.section_no_column_margin .tcvpb_column_tc_span10  {width: 83.3333333333334%;}
.section_no_column_margin .tcvpb_column_tc_span9   {width: 74.9999999999999%;}
.section_no_column_margin .tcvpb_column_tc_span8   {width: 66.6666666666665%;}
.section_no_column_margin .tcvpb_column_tc_span7   {width: 58.3333333333332%;}
.section_no_column_margin .tcvpb_column_tc_span6   {width: 49.9999999999999%;}
.section_no_column_margin .tcvpb_column_tc_span5   {width: 41.6666666666665%;}
.section_no_column_margin .tcvpb_column_tc_span4   {width: 33.3333333333332%;}
.section_no_column_margin .tcvpb_column_tc_span3   {width: 24.9999999999999%;}
.section_no_column_margin .tcvpb_column_tc_span2   {width: 16.6666666666665%;}
.section_no_column_margin .tcvpb_column_tc_span1   {width:  8.3333333333332%;}

.section_equalize_5 .tcvpb_column_tc_span3,
.section_equalize_5 .tcvpb_column_tc_span2{
	width:  17.95084476%;
}

.section_equalize_5 .tcvpb_container [class*="column_tc_span"]{
	margin-left: 2.564102564102564%;
}

.section_no_column_margin.section_equalize_5 .tcvpb_container [class*="column_tc_span"],
.section_equalize_5 .tcvpb_container [class*="column_tc_span"]:first-child{
	margin-left: 0;
}

.section_no_column_margin.section_equalize_5 .tcvpb_column_tc_span3,
.section_no_column_margin.section_equalize_5 .tcvpb_column_tc_span2{
	width:  20%;
}




/********** Shortcode: Abbreviation *************************************************************/
.tcvpb-abbr{
	border-bottom: 1px dotted #666;
	cursor: help;
}


/********** jQuery UI helpers *************************************************************/
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
}

.ui-helper-clearfix:after {
	clear: both;
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
}


/********** Shortcode: Tabs *************************************************************/
.tcvpb-tabs {
	position: relative;
	margin-bottom: 40px;
	clear: both;
}

.tcvpb-tabs .nav-tabs{
	margin: 0;
	border-bottom: none;
	display: inline-block;
}

.tcvpb-tabs .nav-tabs li {
	list-style: none;
	float: left;
	display: block;
	white-space: nowrap;
	margin: 0;
	position: relative;
	margin-right: 0px;
	padding: 0;
	border-top: 1px solid #e1e1e1;
	border-left: 1px solid #e1e1e1;
	background: #f3f3f3;
	font-size: 14px;
	line-height: 14px;
}

.tcvpb-tabs .nav-tabs li a{
	text-decoration: none;
	text-align: center;
	clear:both;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
	color: #505050;
	display: block;
	font-weight: normal;
	padding: 15px 20px;
	width: 100%;
	height: 100%;
}

.tcvpb-tabs .nav-tabs li a:hover{
	color:#e42382;
}

.tcvpb-tabs .nav-tabs li:hover a{
	color: #333;
}

.tcvpb-tabs .nav-tabs li.active {
	background: #fff;
	position: relative;
}

.tcvpb-tabs .nav-tabs li.active:before{
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: #e42382;
	border-left: 1px solid #e42382;
	border-right: 1px solid #e42382;
	position: absolute;
	top: -4px;
	left: -1px;
}

.tcvpb-tabs .nav-tabs li.active:after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 1;
}

.tcvpb-tabs .nav-tabs li.active a{
	color: #505050;
	font-weight: 700;
	cursor: default;
}

.tcvpb-tabs .nav-tabs li:last-child{
	border-right: 1px solid #e1e1e1;
}

.tcvpb-tabs .tcvpb-tabs-wrapper{
	border: 1px solid #e1e1e1;
}

.tcvpb-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 20px 15px;
}

.tab-icon{
	font-weight: normal;
}

.tcvpb-tabs .tab-content{
	position: relative;
	border-top: 1px solid #e1e1e1;
  	margin-top: -3px;
}

.tcvpb-tabs .tab-pane{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
	overflow: auto;
	border: 1px solid #e1e1e1;
	border-top: none;
	padding: 10px 16px 20px 16px;
}

.tcvpb-tabs .tab-pane p:last-child{
	margin-bottom: 0;
}

.tcvpb-tabs .tab-pane.active_pane{
	display: block;
	position: relative;
}

/* style 2 */
.tcvpb-tabs-style2 .nav-tabs li{
	border-top: 1px solid #e42382;
	border-left: 1px solid #e42382;
	border-right: 1px solid #e42382;
	background: #e42382;
}

.tcvpb-tabs-style2 .nav-tabs li a{
	color: #fff;
}

.tcvpb-tabs-style2 .nav-tabs li a:hover{
	color:#505050;
}

.tcvpb-tabs-style2 .nav-tabs li.active{
	background: #fff;
}

.tcvpb-tabs-style2 .nav-tabs li.active:before{
	height: 4px;
	background: #fff;
	border-top: 1px solid #e42382;
	border-left: 1px solid #e42382;
	border-right: 1px solid #e42382;
	top: -4px;
	left: -1px;
}

.tcvpb-tabs-style2 .nav-tabs li.active a{
	color: #505050;
}

.tcvpb-tabs-style2 .nav-tabs li:last-child{
	border-right: 1px solid #e42382;
}

.tcvpb-tabs-style2 .tcvpb-tabs-wrapper{
	border: 1px solid #e42382;
}


/* bottom positioned tabs */
.tcvpb-tabs-position-bottom .nav-tabs {
	border-bottom: none;
	position: absolute;
	bottom:-45px;
}

.tcvpb-tabs-position-bottom .nav-tabs li {
	border-top: none;
	border-bottom: 1px solid #e1e1e1;
}

.tcvpb-tabs-position-bottom .ui-tabs-panel {
	padding: 20px 15px;
}

.tcvpb-tabs-position-bottom .nav-tabs li.active:after{
	top: -1px;
	bottom: auto;
}


/* left or right positioned tabs */

.tcvpb-tabs-vertical .nav-tabs li a{
	padding: 15px;
	text-align: right;
}

/* left positioned tabs */
.tcvpb-tabs-position-left .tcvpb-tabs-wrapper{
	margin-left: 200px;
}

.tcvpb-tabs-position-left .nav-tabs {
	width: 200px;
	float: left;
	margin-bottom: 40px;
}

.tcvpb-tabs-position-left .nav-tabs li{
	float: none;
	line-height: 14px;
	border-right: none;
}

.tcvpb-tabs-position-left .nav-tabs li:last-child{
	border-bottom: 1px solid #e1e1e1;
	border-right: none;
}

.tcvpb-tabs-position-left .nav-tabs li.active{
	background: #fff;
}

.tcvpb-tabs-position-left .nav-tabs li.active:after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	bottom: auto;
	left: auto;
	right: -1px;
	top: 0;
}

/* right positioned tabs */
.tcvpb-tabs-position-right .tcvpb-tabs-wrapper{
	margin-right: 200px;
}

.tcvpb-tabs-position-right .nav-tabs {
	width: 200px;
	float: right;
	margin-bottom: 40px;
}

.tcvpb-tabs-position-right .nav-tabs li{
	float: none;
	line-height: 14px;
	border-left: none;
	border-right: 1px solid #e1e1e1;
}

.tcvpb-tabs-position-right .nav-tabs li a{
	text-align: left;
}

.tcvpb-tabs-position-right .nav-tabs li:last-child{
	border-bottom: 1px solid #e1e1e1;
	border-left: none;
}

.tcvpb-tabs-position-right .nav-tabs li.active{
	background: #fff;
}

.tcvpb-tabs-position-right .nav-tabs li.active:after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	bottom: auto;
	right: auto;
	left: -1px;
	top: 0;
}

/* Bellow width break point */
.tcvpb-tabs.tcvpb-tabs-fullwidthtabs .nav-tabs{
	width: 100%;
}

.tcvpb-tabs.tcvpb-tabs-fullwidthtabs .nav-tabs li {
	margin-right: 0px;
	width: 100%;
	margin-left: 0;
	float: none;
	text-align: left;
	padding: 5px 15px;
	border: 1px solid #e6ebed;
	border-bottom:none;
}

.tcvpb-tabs.tcvpb-tabs-fullwidthtabs .nav-tabs li.active{
	background: #f9f9f9;
}

.tcvpb-tabs.tcvpb-tabs-fullwidthtabs .nav-tabs li.active:after{
	display: none;
}

.tcvpb-tabs-position-bottom.tcvpb-tabs-fullwidthtabs .nav-tabs {
	position: relative;
}

.tcvpb-tabs-position-bottom.tcvpb-tabs-fullwidthtabs .nav-tabs li.active:after{
	display: none;
}

.tcvpb-tabs-position-bottom.tcvpb-tabs-fullwidthtabs .ui-tabs-panel {
	padding: 0;
}

.tcvpb-tabs-position-left.tcvpb-tabs-fullwidthtabs .nav-tabs,
.tcvpb-tabs-position-right.tcvpb-tabs-fullwidthtabs .nav-tabs {
	margin: 0;
	border-bottom:none;
	border-right: 1px solid #eeeeee;
	width: 100%;
	position: relative;
	padding-bottom: 20px;
}

.tcvpb-tabs-position-left.tcvpb-tabs-fullwidthtabs .nav-tabs li,
.tcvpb-tabs-position-right.tcvpb-tabs-fullwidthtabs .nav-tabs li{
	float: none;
	text-align: left;
	line-height: 37px;
	padding: 5px 15px;
	margin-right: 0;
	margin-left: 0;
}

.tcvpb-tabs-position-left.tcvpb-tabs-fullwidthtabs .nav-tabs li.active,
.tcvpb-tabs-position-right.tcvpb-tabs-fullwidthtabs .nav-tabs li.active{
	background: #f9f9f9;
}

.tcvpb-tabs-position-left.tcvpb-tabs-fullwidthtabs .nav-tabs li.active:after,
.tcvpb-tabs-position-right.tcvpb-tabs-fullwidthtabs .nav-tabs li.active:after{
	display: none;
}

.tcvpb-tabs-position-left.tcvpb-tabs-fullwidthtabs .ui-tabs-panel,
.tcvpb-tabs-position-right.tcvpb-tabs-fullwidthtabs .ui-tabs-panel{
	margin-left: 0px;
	margin-right: 0px;
	padding-top:0;
}


/********** Shortcode: Accordion *************************************************************/
.tcvpb-accordion{
	margin-bottom: 40px;
}

.tcvpb-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	border: 1px solid #e1e1e1;
	background: #f3f3f3;
	color:#505050;
	font-weight:700;
	font-size: 16px;
	text-transform: uppercase;
	-webkit-transition: border-width 0.8s ease-in-out;
	-moz-transition: border-width 0.8s ease-in-out;
	-o-transition: border-width 0.8s ease-in-out;
	-ms-transition: border-width 0.8s ease-in-out;
	transition: border-width 0.8s ease-in-out;
	margin-top: 10px !important;
	padding: 13px 16px;
	margin: 0;
}

.tcvpb-accordion .ui-accordion-header:first-child{
	margin-top: 0px !important;
}

.tcvpb-accordion .ui-accordion-content {
	overflow: auto;
	border: 1px solid #e1e1e1;
	border-top: none;
	padding: 10px 16px 20px 16px;
}

.tcvpb-accordion .ui-accordion-content p:last-child{
	margin-bottom: 0;
}

.tcvpb-accordion .ui-accordion-header-icon{
	display: block;
	position: absolute;
	left: auto;
	right: 7px;
	top: 50%;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-align: center;
	background: none;
	color: #505050;
	font-family: 'WebHostingHub-Glyphs';
	font-size: 14px;
}

.tcvpb-accordion .ui-icon-triangle-1-e{
	color: #666;
}

.tcvpb-accordion .ui-icon-triangle-1-e:before{
	content: "\002b";
}

.tcvpb-accordion .ui-icon-triangle-1-s{
	color: #666;
}

.tcvpb-accordion .ui-icon-triangle-1-s:before{
	content: "\2212";
}


/********** Shortcode: Toggle *************************************************************/
.tcvpb-toggle{
	margin-bottom: 10px;
}

.tcvpb-toggle .ui-accordion-header {
	border: 1px solid #e42382;
	background: #e42382;
	color:#fff;
}

.tcvpb-toggle .ui-accordion-content {
	border: 1px solid #e42382;
}

.tcvpb-toggle .ui-accordion-header-icon{
	color: #fff;
}


/********** Shortcode: Tables *************************************************************/
.tcvpb-table-hover table,
.tcvpb-table-striped table{
	border-collapse:separate;
	line-height: 2 !important;
}

.tcvpb-table-condensed table{
	line-height: 1 !important;
	border-collapse:separate;
}

.tcvpb-table-hover table tr,
.tcvpb-table-striped table tr,
.tcvpb-table-condensed table tr{
	border-top: 1px solid #eee !important;
}

.tcvpb-table-hover table th,
.tcvpb-table-striped table th,
.tcvpb-table-condensed table th,
.tcvpb-table-hover table td,
.tcvpb-table-striped table td,
.tcvpb-table-condensed table td{
	padding: 2px 10px;
}

.tcvpb-table-striped table tr:nth-child(2n+1){
	background: #f9f9f9;
}

.tcvpb-table-hover table tr:hover{
	background: #efefef;
}


/********** Shortcode: Alert boxes *************************************************************/
.tcvpb_alert_success,
.tcvpb_alert_info,
.tcvpb_alert_warning,
.tcvpb_alert_error{
	margin-bottom: 40px;
	padding: 19px 48px 19px 19px;
	position: relative;
}

.tcvpb_alert_success i,
.tcvpb_alert_info i,
.tcvpb_alert_warning i,
.tcvpb_alert_error i{
	margin-right: 19px;
}

.tcvpb_alert_success,
.tcvpb_alert_success .tcvpb_alert_box_close{
	background: #e9f3d2;
	color: #91b64f;
}

.tcvpb_alert_info,
.tcvpb_alert_info .tcvpb_alert_box_close{
	background: #cee6e6;
	color: #1e6d81;
}

.tcvpb_alert_warning,
.tcvpb_alert_warning .tcvpb_alert_box_close{
	background: #fbf2e3;
	color: #ffad77;
}

.tcvpb_alert_error,
.tcvpb_alert_error .tcvpb_alert_box_close{
	background: #ffe9e9;
	color: #d04544;
}

.tcvpb_alert_box_close{
	cursor: pointer;
	position: absolute;
	top: 19px;
	right: 19px;
}


/********** Shortcode: Blockquote *************************************************************/
.tcvpb_blockquote,
.tcvpb_pullquote{
	font-size: 28px;
	font-weight: 400;
	line-height: 34px;
	margin-bottom: 40px;
}

.tcvpb_blockquote p{
}

.tcvpb_blockquote p small{
	color: #e42382;
	font-size: 24px;
	font-style: italic;
	font-weight: 400;
	display: block;
	margin-top: 29px;
}


/********** Shortcode: UL *************************************************************/
.tcvpb_shortcode_ul{
    list-style: none !important;
    text-align: left;
}

.tcvpb_shortcode_ul li{
    list-style: none !important;
    padding-left: 18px;
    position: relative;
}

.tcvpb_shortcode_ul li p{
    margin-bottom: 0;
}

.tcvpb_shortcode_ul li i{
    font-size: 9px;
    position: absolute;
    top: 9px;
    left: 0;
}


/********** Shortcode: Follow us links *************************************************************/
.tcvpb_follow_us{
	text-align: center;
}

.tcvpb_socialicon{
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 0 4px 20px 4px;
	border: 1px solid #333;
	color: #333;
	opacity: 0.5;
}

.tcvpb_socialicon i{
	top: 0;
	color: #333;
}

.tcvpb_socialicon:hover{
	opacity: 1;
	box-shadow: 0 0 0 1px #333;
}

.pattern_overlayed .tcvpb_socialicon,
.pattern_overlayed_dotted .tcvpb_socialicon,
.pattern_overlayed_dotted_2 .tcvpb_socialicon,
.pattern_overlayed_lined .tcvpb_socialicon,
.pattern_overlayed_lined_h .tcvpb_socialicon,
.color_overlayed .tcvpb_socialicon{
	border: 1px solid #fff;
}

.pattern_overlayed .tcvpb_socialicon i,
.pattern_overlayed_dotted .tcvpb_socialicon i,
.pattern_overlayed_dotted_2 .tcvpb_socialicon i,
.pattern_overlayed_lined .tcvpb_socialicon i,
.pattern_overlayed_lined_h .tcvpb_socialicon i,
.color_overlayed .tcvpb_socialicon i{
	color: #fff;
}

.pattern_overlayed .tcvpb_socialicon:hover,
.pattern_overlayed_dotted .tcvpb_socialicon:hover,
.pattern_overlayed_dotted_2 .tcvpb_socialicon:hover,
.pattern_overlayed_lined .tcvpb_socialicon:hover,
.pattern_overlayed_lined_h .tcvpb_socialicon:hover,
.color_overlayed .tcvpb_socialicon:hover{
	box-shadow: 0 0 0 1px #fff;
}


/********** Shortcode: Stats Excerpt *************************************************************/
.tcvpb_stats_excerpt{
	color: #093d71;
	text-align: center;
	padding: 20px 0 30px 0;
	margin-bottom: 40px;
	position: relative;
}

.tcvpb_stats_excerpt i{
	color: #e42382;
	font-size: 32px;
	margin-right: 13px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -16px;
}

.tcvpb_stats_excerpt .tcvpb_stats_number,
.tcvpb_stats_excerpt .tcvpb_stats_number_sign{
	font-size: 70px;
	font-weight: 600;
	line-height: 70px;
	color: #e42382;
}

.tcvpb_stats_excerpt p{
	padding-top: 11px;
	font-family: 'Open Sans';
	font-size: 18px;
	color: #505050;
}

.pattern_overlayed .tcvpb_stats_excerpt .tcvpb_stats_number,
.pattern_overlayed .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.pattern_overlayed .tcvpb_stats_excerpt p,
.pattern_overlayed .tcvpb_stats_excerpt i,
.color_overlayed .tcvpb_stats_excerpt .tcvpb_stats_number,
.color_overlayed .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.color_overlayed .tcvpb_stats_excerpt p,
.color_overlayed .tcvpb_stats_excerpt i,
.pattern_overlayed_dotted .tcvpb_stats_excerpt .tcvpb_stats_number,
.pattern_overlayed_dotted .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.pattern_overlayed_dotted .tcvpb_stats_excerpt p,
.pattern_overlayed_dotted .tcvpb_stats_excerpt i,
.pattern_overlayed_dotted_2 .tcvpb_stats_excerpt .tcvpb_stats_number,
.pattern_overlayed_dotted_2 .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.pattern_overlayed_dotted_2 .tcvpb_stats_excerpt p,
.pattern_overlayed_dotted_2 .tcvpb_stats_excerpt i,
.pattern_overlayed_lined .tcvpb_stats_excerpt .tcvpb_stats_number,
.pattern_overlayed_lined .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.pattern_overlayed_lined .tcvpb_stats_excerpt p,
.pattern_overlayed_lined .tcvpb_stats_excerpt i,
.pattern_overlayed_lined_h .tcvpb_stats_excerpt .tcvpb_stats_number,
.pattern_overlayed_lined_h .tcvpb_stats_excerpt .tcvpb_stats_number_sign,
.pattern_overlayed_lined_h .tcvpb_stats_excerpt p,
.pattern_overlayed_lined_h .tcvpb_stats_excerpt i{
	color: #fff;
}

.tcvpb_stats_excerpt_style_color{
	background: #e42382;
}

.tcvpb_stats_excerpt_style_color .tcvpb_stats_number,
.tcvpb_stats_excerpt_style_color .tcvpb_stats_number_sign{
	color: #fff;
}

.tcvpb_stats_excerpt_style_color p{
	color: #fff;
}

.tcvpb_stats_excerpt_style_light{
	background: #f3f3f3;
	color: #505050;
}

.tcvpb_stats_excerpt_style_dark{
	background: #505050;
}

.tcvpb_stats_excerpt_style_dark p{
	color: #fff;
}


/********** Shortcode: Knob *************************************************************/
.tcvpb_knob_wrapper{
	text-align: center;
}

.tcvpb_knob_inner_wrap{
	position: relative;
	text-align: center;
}

.tcvpb_knob_wrapper input{
	display: none;
}

.tcvpb_knob_wrapper .tcvpb_knob_number_sign{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	visibility: hidden;
	font-size: 24px;
	z-index: 2;
}

/********** Shortcode: Team *************************************************************/
.tcvpb_team_member{
	text-align: center;
	padding-bottom: 19px;
	margin-bottom: 49px;
}

.tcvpb_team_member .tcvpb_overlayed{
	position: relative;
	line-height: 1;
	margin-bottom: 28px;
}

.tcvpb_team_member.tcvpb_team_member_style_2{
    margin-bottom: 0;
    padding-bottom: 0;
}

.tcvpb_team_member.tcvpb_team_member_style_2 .tcvpb_overlayed{
	margin-bottom: 20px;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	background: rgba(0,0,0,0.6);
}

.tcvpb_team_member:hover .tcvpb_overlayed .tcvpb_overlay {
	opacity: 1;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay p{
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -18px;
	height: 40px;
	line-height: 40px;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay p a{
	color: #ccc;
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #ccc;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	line-height: 40px;
	margin: 0 3px;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay p a i{
	color: #ccc;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay p a:hover{
	color: #fff;
	border: 1px solid #fff;
}

.tcvpb_team_member .tcvpb_overlayed .tcvpb_overlay p a:hover i{
	color: #fff;
}

.tcvpb_team_member .tcvpb_team_member_position{
	text-transform: uppercase;
}

.tcvpb_team_member .tcvpb_team_member_name{
	display: block;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.tcvpb_team_member.tcvpb_team_member_style_2 .tcvpb_team_member_name{
	color: #fff;
	display: block;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 8px;
}

.tcvpb_team_member .tcvpb_team_member_position{
	display: inline-block;
	font-weight: 400;
	font-size: 12px;
	color: #e42382;
	margin-bottom: 8px;
}

.tcvpb_team_member.tcvpb_team_member_style_2 .tcvpb_team_member_position{
	font-size: 14px;
}

.tcvpb_team_member > p{
	margin-bottom: 19px;
	color: #8d8c8c;
}

.tcvpb_team_member .tcvpb_team_member_social_under a{
	margin: 0 5px;
}

.tcvpb_team_member .tcvpb_team_member_social_under a i{
	color: #676767;
}

.tcvpb_team_member .tcvpb_team_member_social_under a:hover i{
	color: #e42382;
}

.tcvpb_team_member_modal{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	overflow-y: auto;
	padding-top: 80px;
	text-align: left;
}

.tcvpb_team_member_modal h4,
.tcvpb_team_member_modal .tcvpb_team_member_position{
	text-align: center;
}

.tcvpb_team_member_modal .tcvpb_container{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.tcvpb_team_member_modal_close{
	width: 32px;
	height: 32px;
	font-size: 32px;
	line-height: 32px;
	position: absolute;
	top: 60px;
	right: 60px;
	cursor: pointer;
}


.tcvpb_team_member.tcvpb_team_member_style_2 .tcvpb_overlayed .tcvpb_overlay .tcvpb_overlay_memeber{
	position: absolute;
	width: 100%;
	bottom: 20px;
	text-align: left;
	padding-left: 19px;
	margin-bottom: -3px;
}


/********** Shortcode: Priceboxes *************************************************************/
.tcvpb_pricing-table-1,
.tcvpb_pricing-table-2{
	text-align: center;
	margin-bottom: 40px;
}

.tcvpb_pricing-table-1{
	background: rgba(255,255,255,0.9);
	color: #333;
	text-align: center;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_header{
	border-bottom: 1px solid #c8c8c8;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_featured_text{
	margin-bottom: 3px;
	min-height: 30px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
}

.tcvpb_pricing-table-1.tcvpb_popular-plan .tcvpb_pricebox_featured_text{
	background: #434342;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_name{
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	background: #333;
	color: #fff;
	padding: 21px 10px;
}

.tcvpb_pricing-table-1.tcvpb_popular-plan{
	position: relative;
	top: -20px;
	margin-bottom: 60px;
	padding-bottom: 10px;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
	z-index: 1;
	position: relative;
}

.tcvpb_pricing-table-1.tcvpb_popular-plan .tcvpb_pricebox_name{
	background: #e42382;
	padding: 31px 10px;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_currency{
	font-size: 20px;
	line-height: 20px;
	position: relative;
	top: -20px;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_price{
	font-size: 50px;
	font-weight: 600;
	line-height: 50px;
	display: inline-block;
	margin: 19px 0;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_monthly{
	font-size: 16px;
	line-height: 16px;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_decsription{
	display: block;
	font-style: italic;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_feature{
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 16px;
	margin-bottom: 16px;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_feature strong{
	font-weight: 300;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_feature:first-of-type{
	padding-top: 38px;
}

.tcvpb_pricing-table-1 .tcvpb_pricebox_feature:last-child{
	border-top: 1px solid #c8c8c8;
	margin-top: 48px;
	padding-top: 16px;
}

.tcvpb_pricing-table-1.tcvpb_popular-plan .tcvpb_pricebox_feature_button{
	margin-bottom: 0;
}

.tcvpb_pricing-table-1.tcvpb_popular-plan .tcvpb_pricebox_feature:last-child{
	padding-top: 25px;
}



.tcvpb_pricing-table-2 .tcvpb_pricebox_header{
	background: #fff;
	color: #333;
	text-align: center;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_name{
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	padding: 21px 10px;
	background: #333;
	color: #fff;
}

.tcvpb_pricing-table-2.tcvpb_popular-plan .tcvpb_pricebox_name{
	background: #e42382;
	color: #fff;
	padding: 25px 10px;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_currency{
	font-size: 15px;
	position: relative;
	top: -33px;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_price{
	font-size: 65px;
	font-weight: 300;
	line-height: 65px;
	display: inline-block;
	padding-bottom: 26px;
	padding-top: 21px;
	font-style: italic;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_monthly{
	font-size: 12px;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_decsription{
	display: block;
	font-style: italic;
	padding-bottom: 30px;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_feature{
	background: #fff;
	display: block;
	border-bottom: 1px solid #c8c8c8;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

.tcvpb_pricing-table-2 .tcvpb_pricebox_feature:last-of-type{
	border-bottom: 4px solid #333;
}

.tcvpb_pricing-table-2.tcvpb_popular-plan .tcvpb_pricebox_feature:last-of-type{
	border-bottom: 4px solid #e42382;
}

.tcvpb_pricing-table-2 .tcvpb_button{
	margin-top: 40px;
	margin-right: 0;
}

.tcvpb_pricebox_feature .ABdev_icon-ok{
	color:#01f001;
}

.tcvpb_pricebox_feature .ABdev_icon-remove{
	color:red;
}


/********** Shortcode: Progress bar *************************************************************/
.tcvpb_meter {
	margin-bottom: 20px;
	font-size: inherit !important;
	background: #e7e7e7 !important;
	margin-left: 0px;
	height: 14px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	position: relative;
}

.tcvpb_meter .tcvpb_meter_percentage {
	display: block;
	text-indent: 20px;
	color: #fff;
	font-size: inherit !important;
	background: #e42382;
	height: 14px;
	line-height: 14px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	overflow: visible !important;
}

.tcvpb_meter_label{
	font-size: 13px;
	line-height: inherit;
	float: none;
}

.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_percentage{
	position: relative;
}

.tcvpb_meter .tcvpb_meter_percentage span{
	text-indent: 0;
	position: absolute;
	display: block;
	width: 42px;
	text-align: right;
	top: -19px;
	right: 0;
	color: #858585;
	z-index: 100;
}

.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_percentage span{
	background: #505050;
	color: #fff;
	text-align: center;
	top: -31px;
	line-height: 22px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_percentage span:after{
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid #505050;
	border-left: 3px solid rgba(255,255,255,0);
	border-right: 3px solid rgba(255,255,255,0);
	position: absolute;
	bottom: -6px;
	left: 18px;

}

.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_percentage span{
	display: none;
}

.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above10 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above20 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above30 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above40 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above50 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above60 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above70 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above80 span,
.tcvpb_progress_bar_balloon .tcvpb_meter .tcvpb_meter_above90 span{
	display: block;
}


/********** Shortcode: Service boxes *************************************************************/
.tcvpb_service_box{
	text-align: center;
	margin-bottom: 55px;
	padding-top: 0;
}

.tcvpb_service_box .tcvpb_icon_boxed{
	display: inline-block;
	width: 100px;
	height: 100px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #e42382;
	position: relative;
	margin-bottom: 24px;
	text-decoration: none;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round:hover a.tcvpb_icon_boxed{
	background: #333 !important;
	-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round a h3:hover{
	color: #e42382;
	-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round_stroke .tcvpb_icon_boxed{
	background: none;
	border: 1px solid #333;
	-webkit-transition: all 180ms ease-in;
	transition: all 180ms ease-in;
}

.tcvpb_service_box.tcvpb_service_box_round_stroke .tcvpb_icon_boxed i{
	color: #333;
	-webkit-transition: all 180ms ease-in;
	transition: all 180ms ease-in;
}

.tcvpb_service_box.tcvpb_service_box_round_stroke:hover a.tcvpb_icon_boxed{
	border: 1px solid #e42382;
	box-shadow: 0 0 0 5px #fff inset;
	background: #e42382;
	-webkit-transition: all 180ms ease-in;
	transition: all 180ms ease-in;
}

.tcvpb_service_box.tcvpb_service_box_round_stroke:hover a.tcvpb_icon_boxed i{
	color: #fff;
	-webkit-transition: all 180ms ease-in;
	transition: all 180ms ease-in;
}

.tcvpb_service_box.tcvpb_service_box_round_stroke a h3:hover{
		color: #e42382;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box .tcvpb_icon_boxed i{
	font-size: 48px;
	color: #fff;
	line-height: 100px;
	position: relative;
	top: -1px;
}

.tcvpb_service_box .tcvpb_icon_boxed:hover:after{
	border-top: 9px solid #333;
	transition: all 180ms ease-in;
	-webkit-transition: all 180ms ease-in;
}

.tcvpb_service_box p{
	line-height: 18px;
	margin-bottom: 22px;
	font-weight: 400;
}

.tcvpb_service_box h3{
	margin-bottom: 19px;
	color: #676767;
	font-size: 18px;
	font-weight: 400;
}


.tcvpb_service_box.tcvpb_service_box_round_aside{
	text-align: left;
}

.tcvpb_service_box.tcvpb_service_box_round_aside h3{
	color: #333;
	margin-bottom: 8px;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round_aside a h3:hover{
	color: #e42382;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round_aside p{
	line-height: 20px;
}

.tcvpb_service_box.tcvpb_service_box_round_aside .tcvpb_icon_boxed{
	float: left;
	text-align: center;
	margin-right: 20px;
	width: 60px;
	height: 60px;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round_aside:hover a.tcvpb_icon_boxed{
	background: #333;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_round_aside .tcvpb_icon_boxed i{
	line-height: 60px;
	font-size: 25px;
	top: 2px;
}

.tcvpb_service_box.tcvpb_service_box_aside_small{
	text-align: left;
}

.tcvpb_service_box.tcvpb_service_box_aside_small h3{
	color: #333;
	font-weight: 600;
	margin-bottom: 15px;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_aside_small h3:hover{
	color: #e42382;
		-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box.tcvpb_service_box_aside_small p{
	line-height: 20px;
}

.tcvpb_service_box.tcvpb_service_box_aside_small .tcvpb_icon_boxed{
	float: left;
	text-align: center;
	margin-right: 20px;
	margin-bottom: 0;
	width: auto;
	height: auto;
	background: none;
}

.tcvpb_service_box.tcvpb_service_box_aside_small .tcvpb_icon_boxed i{
	line-height: 26px;
	font-size: 26px;
	color: #e42382;
}

.tcvpb_service_box_square .tcvpb_icon_boxed{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: none;
	margin-bottom: 13px;
	width: auto;
	height: auto;
}

.tcvpb_service_box_square:hover .tcvpb_icon_boxed{
	background: none;
}

.tcvpb_service_box_square .tcvpb_icon_boxed i{
	color: #333;
	line-height: 48px;
}

.tcvpb_service_box_square:hover a.tcvpb_icon_boxed i{
	color: #e42382;
	-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}

.tcvpb_service_box_square a h3:hover{
		color: #e42382;
	-webkit-transition: all 180ms ease-in-out;
	-o-transition: all 180ms ease-in-out;
	transition: all 180ms ease-in-out;
}





/********** Shortcode: Divider *************************************************************/
.tcvpb_divider{
	clear:both;
	text-align: right;
	line-height: 20px;
	border-top: 1px solid #eeeeee;
	margin: 10px;
}

.tcvpb_divider a{
	text-decoration: none;
	display: inline-block;
}

.tcvpb_divider a:hover{
	text-decoration: none;
}

.tcvpb_divider i{
	position: relative;
	top: 2px;
}

.tcvpb_divider_dashed{
	border-top: 1px dashed #eeeeee;
}

.tcvpb_divider_dotted{
	border-top: 1px dotted #eeeeee;
}


/********** Shortcode: Pullquote *************************************************************/
.tcvpb_pullquote{
	padding: 20px 20px 20px 0;
	font-size: 1.6em;
	float: left;
}

.tcvpb_pullquote_right{
	padding: 20px 0 20px 20px;
	font-size: 1.6em;
	float: right;
}


/********** Shortcode: Tooltip *************************************************************/
.tcvpb_tooltip{
	cursor: pointer;
}

.tipsy {
	font-size: 10px;
	position: absolute;
	padding: 5px;
	z-index: 100000;
	margin-top: -7px;
}

.tipsy-inner {
	background-color: #fff;
	color: #333;
	max-width: 200px;
	padding: 5px 8px 4px 8px;
	text-align: center;
}

.tipsy-inner {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}

.tipsy-arrow {
	position: absolute;
	width: 0;
	height: 0;
	line-height: 0;
	border: 5px dashed #fff;
}

.tipsy-arrow-n {
	border-bottom-color: #fff;
}

.tipsy-arrow-s {
	border-top-color: #fff;
}

.tipsy-arrow-e {
	border-left-color: #fff;
}

.tipsy-arrow-w {
	border-right-color: #fff;
}

.tipsy-n .tipsy-arrow {
	top: 0px;
	left: 50%;
	margin-left: -5px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-nw .tipsy-arrow {
	top: 0;
	left: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-ne .tipsy-arrow {
	top: 0;
	right: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-s .tipsy-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-sw .tipsy-arrow {
	bottom: 0;
	left: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-se .tipsy-arrow {
	bottom: 0;
	right: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-e .tipsy-arrow {
	right: 0;
	top: 50%;
	margin-top: -5px;
	border-left-style: solid;
	border-right: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.tipsy-w .tipsy-arrow {
	left: 0;
	top: 50%;
	margin-top: -5px;
	border-right-style: solid;
	border-left: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}


/********** Shortcode: Source Code *************************************************************/
.tcvpb_prettyprint{
	padding: 24px !important;
}

.tcvpb_prettyprint ol{
	margin: 0 !important;
	padding: 0 !important;
	list-style: decimal outside !important;
}

.tcvpb_prettyprint li{
	margin-left: 20px !important;
	list-style: decimal outside !important;
}


/********** Shortcode: RSS Feed *************************************************************/
.tcvpb_rss,
.tcvpb_rss li{
	list-style: none !important;
	margin-left: 0 !important;
}


/********** Shortcode: Children *************************************************************/
.tcvpb_children,
.tcvpb_children li{
	list-style: none !important;
	margin-left: 0 !important;
}


/********** Shortcode: Sitemap *************************************************************/
.tcvpb_sitemap,
.tcvpb_sitemap li{
	list-style: none !important;
}


/********** Shortcode: Google Map *************************************************************/
.tcvpb_google_map img{
	max-width: none !important;
	border: none !important;
	border-radius: 0px !important;
	box-shadow: none !important;
}


/********** Shortcode: Dropcap *************************************************************/
.tcvpb_dropcap{
	display: block;
	width: 54px;
	height: 54px;
	font-size: 50px;
	line-height: 54px;
	background: #1e6d81;
	text-align: center;
	color: #fff;
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}


/********** Shortcode: Videos *************************************************************/
.tcvpb-videoWrapper-youtube{
	position:relative;
	padding-bottom:56.25%;
	padding-top:0px;
	height:0;
	overflow:hidden;
}

.tcvpb-videoWrapper-youtube iframe,
.tcvpb-videoWrapper-youtube object,
.tcvpb-videoWrapper-youtube embed{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.tcvpb-videoWrapper-vimeo{
	position:relative;
	padding-bottom:53%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.tcvpb-videoWrapper-vimeo iframe,
.tcvpb-videoWrapper-vimeo object,
.tcvpb-videoWrapper-vimeo embed{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


/********** Shortcode: Clear *************************************************************/
.tcvpb_clear{
	clear:both;
}


/********** Shortcode: Callout Boxes *************************************************************/
.tcvpb-callout_box{
	background: #f3f3f3;
	margin-bottom: 20px;
	border-left: 6px solid #e42382;
	padding: 30px 30px;
}

.tcvpb-callout_box_title{
	display: block;
	font-weight: 700;
	font-size: 22px;
	font-family: 'Open Sans';
	color: #505050;
	margin-bottom: 8px;
}

.tcvpb-callout_box p{
	margin-bottom: 0;
	font-size: 14px;
}

.tcvpb-callout_box .tcvpb_column_tc_span3{
	text-align: center;
	padding-top: 30px;
}

.tcvpb-callout_box .span3{
	text-align: right;
}

.tcvpb-callout_box_no_button{
	border-left: none;
	border-top: 6px solid #e42382;
}


/********** Shortcode: Buttons *************************************************************/
.tcvpb-button{
	display: inline-block;
	white-space: nowrap;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-right: 10px;
	margin-bottom: 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.tcvpb-button i{
	margin-left: 10px;
	position: relative;
	top: 1px;
}

.tcvpb-button_light{
	background: none;
	border: 1px solid #333;
	color: #333 !important;
}

.tcvpb-button_dark{
	background: #505050;
	border: 1px solid #505050;
	color: #fff !important;
}

.tcvpb-button_yellow{
	background: #ffd800;
	border: 1px solid #ffd800;
	color: #fff !important;
}

.tcvpb-button_green{
	background: #e42382;
	border: 1px solid #e42382;
	color: #fff !important;
}

.tcvpb-button_red{
	background: #e74c3c;
	border: 1px solid #e74c3c;
	color: #fff !important;
}

.tcvpb-button_blue{
	background: #3498db;
	border: 1px solid #3498db;
	color: #fff !important;
}

.tcvpb-button_gray{
	background: #f2f4f5;
	border: 1px solid #f2f4f5;
	color: #505050 !important;
}

.tcvpb-button_cyan{
	background: #25bfba;
	border: 1px solid #25bfba;
	color: #fff !important;
}

.tcvpb-button_aquamarine{
	background: #25bf80;
	border: 1px solid #25bf80;
	color: #fff !important;
}

.tcvpb-button:hover{
	background: #505050;
	border: 1px solid #505050;
	color: #fff !important;
}

.tcvpb-button_dark:hover{
	background: #e42382;
	border: 1px solid #e42382;
	color: #fff !important;
}

.tcvpb-button_light:hover{
	background: none;
	border: 1px solid #e42382;
	color: #e42382 !important;
}

.tcvpb-button_small{
	padding: 10px 24px;
}

.tcvpb-button_medium{
	padding: 14px 24px;
}

.tcvpb-button_large{
	padding: 17px 40px;
}

.tcvpb-button_xlarge{
	padding: 23px 40px;
}

.tcvpb-button_rounded.tcvpb-button_small{
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px
	border-radius: 40px;
}

.tcvpb-button_rounded.tcvpb-button_medium{
	-webkit-border-radius: 48px;
	-moz-border-radius: 48px
	border-radius: 48px;
}

.tcvpb-button_rounded.tcvpb-button_large{
	-webkit-border-radius: 54px;
	-moz-border-radius: 54px
	border-radius: 54px;
}

.tcvpb-button_rounded.tcvpb-button_xlarge{
	-webkit-border-radius: 66px;
	-moz-border-radius: 66px
	border-radius: 66px;
}


/********** Shortcode: Dropcap *************************************************************/
.tcvpb_dropcap{
	position: relative;
	top: 6px;
	background: #e42382;
}


/**************** Hidden on devices *****************/

/* Responsive */
.hidden-desktop {display: none !important;}
.hidden-tablet {display: inherit !important;}
.hidden-phablet {display: inherit !important;}
.hidden-phone {display: inherit !important;}


@media only screen and (min-width: 768px) and (max-width: 959px) {
	.hidden-desktop {display: inherit !important;}
	.hidden-tablet {display: none !important;}
	.hidden-phablet {display: inherit !important;}
	.hidden-phone {display: inherit !important;}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.hidden-desktop {display: inherit !important;}
	.hidden-tablet {display: inherit !important;}
	.hidden-phablet {display: none !important;}
	.hidden-phone {display: inherit !important;}
}

@media only screen and (max-width: 479px) {
	.hidden-desktop {display: inherit !important;}
	.hidden-tablet {display: inherit !important;}
	.hidden-phablet {display: inherit !important;}
	.hidden-phone {display: none !important;}
}