/*====================================
=            Global Rules            =
====================================*/

/* Import Font From Google Fonts */
/*@import url(http://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);*/
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300italic,300,900italic,900,700italic,700,500italic,500,400italic);

/* Fix Defaults */
body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #666666;
}
* {
	word-wrap: break-word;
}
img {
	max-width: 100%;
	height: auto;
}
.entry-content h1,
.entry-content .h1,
.entry-content h2,
.entry-content .h2,
.entry-content h3,
.entry-content .h3 {
	margin-top: 35px;
	margin-bottom: 20px;
}
/* Transition For Anchor Tag */
a,
.cdr-transition,
button,
input {
	-webkit-transition: 200ms all;
	-moz-transition: 200ms all;
	-ms-transition: 200ms all;
	-o-transition: 200ms all;
	transition: 200ms all;
	
}

/* Navigation Fix */
#page {
	padding-top: 60px;
}

/* Section Style */
.cdr-section {
	padding: 90px 0;
}
.cdr-section-small {
	padding: 50px 0;
}
.cdr-section .section-title {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 800;
	text-transform: uppercase;
	color: #555555;
}
.cdr-section .section-description {
	max-width: 900px;
	font-size: 16px;
	margin: 0 auto;
}

/* Special Whitespace */
.whitespace {
	width: 100%;
	padding-top: 75px;
	clear: both;
}
.whitespace-mini {
	padding-top: 40px;
}

/* 404 Error Page */
.error-404 {
    margin-bottom: 150px;
}
/*-----  End of Global Rules  ------*/

/*===============================================
=            Bootstrap Reset and Fix            =
===============================================*/

/* Navbar Fix */
.admin-bar .navbar-fixed-top {
	top: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar .navbar-fixed-top {
		top: 46px;
	}
}

/*-----  End of Bootstrap Reset and Fix  ------*/

/*==============================
=            Header            =
==============================*/

/*==========  Primary Navbar  ==========*/
#primary-navbar {
	background-color: rgba(255,255,255, 0.95);
	border-bottom: 0px;
	margin-bottom: 0;
	box-shadow: 0 2px 4px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 2px 4px 0px rgba(0,0,0,0.2);
}

/* Site Logo  */
#logo {
    text-indent: -9999px;
    background-image: url(../images/logo.png);
    background-size: 100% auto;
    width: 200px;
    background-repeat: no-repeat;
    padding: 0;
    height: 62px;
    background-position: center;
}

/* Primary Menu */
#primary-menu > .navbar-nav > li > a {
	padding: 20px 0px;
	margin-right: 30px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 800;
	color: #5E5E5E;
	border-bottom: 2px solid transparent;
}
#primary-menu > .navbar-nav > li:last-child > a {
	margin: 0;
}
#primary-menu > .navbar-nav > li > a:hover,
#primary-menu > .navbar-nav > li > a:focus,
#primary-menu > .navbar-nav > li.open > a {
	background-color: transparent;
	color: #1775d6;
	border-bottom: 2px solid #1775d6;
}

#primary-menu > .navbar-nav > li > .dropdown-menu {
	padding: 0;
	border-radius: 0px;
	border: none;
	box-shadow: 0 2px 4px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 2px 4px 0px rgba(0,0,0,0.2);

}
#primary-menu > .navbar-nav > li > .dropdown-menu > li > a {
	padding: 10px 20px;
}

/* Menu Buttons */
#primary-menu > .navbar-nav > li.pricing-table > a,
#primary-menu > .navbar-nav > li.account-access > a,
#primary-menu > .navbar-nav > li.products-demo > a {
	border-bottom: 0px;
	padding: 10px;
	background-color: #1775d6;
	color: #FFF;
	margin-top: 12px;
	margin-right: 10px;
	border-radius: 2px;
	letter-spacing: .8px;
}
#primary-menu > .navbar-nav > li.pricing-table > a:hover,
#primary-menu > .navbar-nav > li.account-access > a:hover,
#primary-menu > .navbar-nav > li.products-demo > a:hover {
	background-color: #17c9d6;
}
#primary-menu > .navbar-nav > li.pricing-table > a:before,
#primary-menu > .navbar-nav > li.account-access > a:before,
#primary-menu > .navbar-nav > li.products-demo > a:before {
	content: "";
	font: normal normal normal 14px/1 FontAwesome;
	padding-right: 10px;
}

#primary-menu > .navbar-nav > li.pricing-table > a:before {
	content: "\f155";
}
#primary-menu > .navbar-nav > li.account-access > a:before {
	content: "\f023";
}
#primary-menu > .navbar-nav > li.products-demo > a:before {
	content: "\f021";
}

@media screen and (max-width: 782px) {
	#primary-menu > .navbar-nav {
		padding: 0 25px;
	}
	#primary-menu > .navbar-nav > li > a {
		margin: 0;
		padding: 10px 10px;
		position: relative;
		background-color: #FFF;
		margin-bottom: 5px;
	}
	#primary-menu > .navbar-nav > li > a:hover,
	#primary-menu > .navbar-nav > li.open > a {
		background-color: #FFF;
	}
	#primary-menu > .navbar-nav > li.menu-item-has-children > a:after {
		content: '\f105';
		font-family: FontAwesome;
		font-size: 14px;
		position: absolute;
		right: 10px;
	}
	#primary-menu > .navbar-nav > li.pricing-table > a,
	#primary-menu > .navbar-nav > li.account-access > a,
	#primary-menu > .navbar-nav > li.products-demo > a {
		margin: 0px;
	}
	#primary-navbar .container > .navbar-header {
		margin: 0;
	}
}

/*==========  Dashboard Header  ==========*/
.dashboard-header {
	background-color: #f5f5f5;
	padding-top: 50px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 50px;
}
.dashboard-header.user-not-logged-in {
	padding-bottom: 50px;
}
	.dashboard-header .dashboard-title {
		margin: 0;
		font-size: 24px;
		margin-top: 10px;
	}
	.dashboard-header .user-profile {}
		.dashboard-header .user-profile > .profile-details {
			display: inline-block;
			float: right;
			margin-top: 10px;
			margin-right: 20px;
		}
			.dashboard-header .user-profile > .profile-details > .user-name {
				font-size: 18px;
				font-weight: 600;
				margin: 0;
				margin-bottom: 3px;
			}
			.dashboard-header .user-profile > .profile-details > .profile-edit-link {
				font-size: 14px;
			}
				.dashboard-header .user-profile > .profile-details > .profile-edit-link > a{
					color: #666;
				}
		.dashboard-header .user-profile > .profile-image {
			display: inline-block;
			float: right;
		}
		.dashboard-header .user-profile > .profile-image > img {
			border-radius: 50%;
		}
	.dashboard-header .dashboar-navigation {
		padding-top: 15px;
	}
	.dashboard-header .dashboar-navigation > .nav-tabs {
		border-bottom: none;
	}

/*-----  End of Header  ------*/

/*==============================
=            Footer            =
==============================*/

/* Footer Text */
.site-footer {
	background-color: #2b2b2b;
	padding: 25px 0;
	text-align: center;
	color: #999999;
}

.site-footer  a {
	color: #d8d8d8;
	text-decoration: none;
}
.site-footer  a:hover {
	color: #b2b2b2;
}

/* Footer Sidebar */
.footer-sidebar {
	background-color: #333333;
	color: #999999;
	padding: 75px 0;
	border-top: 4px solid #1775d6;
	font-size: 14px;
}

	.footer-sidebar a {
		color: #d8d8d8;
		text-decoration: none;
	}

	.footer-sidebar a:hover {
		color: #898989;
	}

/* Widget Area */
.footer-widget-area {}
	.footer-widget-area > .widget > .widget-title {
		font-size: 24px;
		margin-bottom: 25px;
		color: #d9d9d9;
	}
	.footer-widget-area > .widget > ul,
	.footer-widget-area > .widget > div > ul.menu {
		padding: 0;
	}
		.footer-widget-area > .widget > ul > li,
		.footer-widget-area > .widget > div > ul.menu > li {
			list-style: none;
			line-height: 25px;
		}

/*-----  End of Footer  ------*/



/*==============================
=            Banner            =
==============================*/

#banner {}
	#banner > .banner-content {
		text-align: center;
	}
		.banner-content > .inside-content {
			background-color: rgba(3,44,87,.8);
			padding: 80px 0px;
			color: #FFF;
		}
			.banner-content > .inside-content > h3 {
				font-size: 24px;
				font-weight: 400;
				margin: 0;
				margin-bottom: 45px;
			}
			.banner-content > .inside-content > .transparent-stripe {
				width: 80px;
				height: 2px;
				background-color: #FFF;
				margin: 0 auto;
				margin-bottom: 30px;
			}
			.banner-content > .inside-content > h1 {
				margin: 0;
				font-size: 46px;
				letter-spacing: 2px;
				margin-bottom: 25px;
				font-weight: 800;
			}
			.banner-content > .inside-content > .banner-description {
				max-width: 1000px;
				margin: 0 auto;
				font-size: 18px;
				line-height: 30px;
				margin-bottom: 60px;
			}
			.banner-content > .inside-content > .action-button {

			}

/*-----  End of Banner  ------*/

/*=====================================
=            Products Area            =
=====================================*/

.themes-list {
	overflow: hidden;
}
	.themes-list > div > .theme-item {
		margin-bottom: 50px;
	}
		.themes-list > div > .theme-item .item-inside {
			position: relative;
			padding: 5px;
			border: 1px solid #e8e8e8;
		}
			.themes-list > div > .theme-item .theme-title {
				font-size: 18px;
				font-weight: 600;
				line-height: 25px;
			}
			.theme-item > .item-inside > img {
				width: 100%;
				height: auto;
			}
			.theme-item > .item-inside > .overlay-content {
				position: absolute;
				width: 100%;
				height: 100%;
				background-color: rgba(0,0,0,.8);
				top: 0px;
				left: 0px;
				text-align: center;
				opacity: 0;
				-webkit-transition: all 0.3s;
				-moz-transition: all 0.3s;
				-ms-transition: all 0.3s;
				-o-transition: all 0.3s;
				transition: all 0.3s;
				
			}
			.theme-item > .item-inside:hover > .overlay-content {
				opacity: 1;
			}
			.theme-item > .item-inside > .overlay-content a {
				position: relative;
				top: 50%;
			}

/*-----  End of Products Area  ------*/

/*=====================================
=            Features Area            =
=====================================*/

.feature-item {
	text-align: center;
	margin-bottom: 50px;
}
	.feature-item > i {
		font-size: 50px;
		margin-bottom: 30px;
	}
	.feature-item > h4{
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase;
		margin-bottom: 15px;
	}

/*-----  End of Features Area  ------*/

/*=========================================
=            Testimonials Area            =
=========================================*/
.testimonials-section {
	background-color: #f5f5f5;
}

.client-testimonials {}
	.client-testimonials > .carousel-inner > .item {}
		.client-testimonials > .carousel-inner > .item > .testimonial-img {
			width: 100px;
			height: 100px;
			margin: 0 auto;
			overflow: hidden;
			border-radius: 50%;
			border: 4px solid #FFF;
			/*box-shadow: 0px 1px 2px rgba(0,0,0,0.2);*/
			margin-bottom: 30px;
		}
			.client-testimonials > .carousel-inner > .item > .testimonial-img > img {
				width: 100%;
				height: auto;
			}
		.client-testimonials > .carousel-inner > .item > .testimonial-content {
			text-align: center;
			font-size: 16px;
			line-height: 28px;
			margin-bottom: 35px;
		}
		.client-testimonials > .carousel-inner > .item > .testimonial-author-meta {
			display: block;
			display: table;
			margin: 0 auto;
			text-align: center;
		}
			.client-testimonials > .carousel-inner > .item > .testimonial-author-meta > .client-name {
				font-size: 18px;
			}
	.client-testimonials > .carousel-indicators {
		bottom: -75px;
	}
	.client-testimonials > .carousel-indicators li {
		background-color: #FFF;
		box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
		border: 2px solid #FFF;
	}
	.client-testimonials > .carousel-indicators li.active {
		background-color: #1775d6;
		border: 2px solid #FFF;
	}

/*-----  End of Testimonials Area  ------*/


/*===================================
=            Action Area            =
===================================*/

.action-section {}
	.action-section > .action-container {}
		.action-container > .inside-content {
			background-color: rgba(43,43,43,0.75);
			color: #FFF;
			text-align: center;
			padding: 100px 0px
		}
			.action-container > .inside-content .action-title {
				font-size: 42px;
				text-transform: uppercase;
				margin-bottom: 25px;
			}
			.action-container > .inside-content .action-details {
				font-size: 18px;
			}
			.action-container > .inside-content .action-button {
				margin: 50px 0;
			}
			.action-container > .inside-content .action-button > a {
				display: table;
				padding: 20px 25px;
				background-color: #1775d6;
				margin: 0 auto;
				color: #FFF;
				font-size: 18px;
				font-weight: 600;
				text-transform: uppercase;;
				letter-spacing: 1px;
				text-decoration: none;
				border-radius: 4px;
			}
			.action-container > .inside-content .action-button > a:hover {
				background-color: #FFF;
				color: #1775d6;
			}

/*-----  End of Action Area  ------*/



/*=====================================
=            Site Elements            =
=====================================*/

/* Default Buttons */
.cdr-btn {
	background-color: #FFF;
	text-transform: uppercase;
	color: #1775d6;
	text-decoration: none;
	padding: 10px 15px;
	margin: 5px;
	font-weight: bold;
}

.cdr-btn:hover,
.cdr-btn:focus {
	background-color: #1775d6;
	color: #FFF;
	text-decoration: none;
}

.cdr-btn.big {
	padding: 15px 25px;
	margin: 10px;
	font-size: 16px;
	font-weight: 800;
	display: inline-block;
	letter-spacing: 1px;
	border-radius: 4px;
}

/* More Products Button */
.cdr-more-products-btn {
	display: block;
	display: table;
	margin: 0 auto;
	border: 1px solid #e8e8e8;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	color: #999;
}
.cdr-more-products-btn:hover {
	text-decoration: none;
	background-color: #f5f4f4;
	color: #000;
}
.action-btn-post {
    text-align: center;
    padding: 25px;
}
.action-btn-post > a {
    border: 1px solid #1775d6;
}
/* WooCommerce Button */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background-color: #1775d6;
	color: #FFF;
	text-decoration: none;
	padding: 10px 15px;
	margin: 5px;
	font-weight: normal;
	border: 1px solid #1775d6;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background-color: #FFF;
	color: #1775d6;
}
.woocommerce .cart-collaterals a.button.alt {
	background-color: #1775d6;
	padding: 15px 20px;
	margin: 0;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	float: none;
}
.woocommerce input.button.alt {
	display: block;
	width: 100%;
	background: #1775d6;
}
.woocommerce input.button.alt:hover {
	background: #FFF;
	color: #1775d6;
}

.woocommerce .cart-collaterals a.button.alt:hover {
	background-color: #FFF;
	color: #1775d6
}


/* Login Form */
.cdr-login-container {
	max-width: 360px;
	margin: 0 auto;
	border: 1px solid #e8e8e8;
	padding: 30px;
	margin-bottom: 25px;
	border-radius: 4px;
}
	.cdr-login-container > .cdr-login-form {}
	.cdr-login-container > .cdr-login-form input {
		width: 100%;
		padding: 10px;
		border: 1px solid #e8e8e8;
		border-radius: 4px;
	}
	.cdr-login-container > .cdr-login-form .login-submit input {
		background-color: #1775d6;
		color: #FFF;
		margin-bottom: 20px;
	}
	.cdr-login-container > .cdr-login-form .login-submit input:focus {
		outline: none;
	}
	.cdr-login-container > .cdr-login-form .login-submit input:hover {
		background-color: #17c9d6;
	}
	.cdr-login-container > .cdr-login-form .login-remember label {
		font-weight: inherit;
	}
	.cdr-login-container > .cdr-login-form .login-remember input {
		width: auto;
		margin-top: 25px;
		margin-right: 10px;
	}

/* Social Share Button */
.social-share-items {
    display: table;
    margin: 0 auto;
    margin-top: 25px;
}
.social-share-items > div {
    min-width: 110px;
    float: left;
}

/*==========  Widgets  ==========*/

.widget {}

	.widget > h2 {
		margin: 0;
		margin-bottom: 25px;
		font-size: 24px;
	}
	.widget > ul {
		margin: 0;
		padding: 0;
	}
	.widget > ul > li {
		list-style: none;
	}
		.widget > ul > li > a {
			display: block;
			padding: 10px 0;
			border-bottom: 1px solid #e8e8e8;
			text-decoration: none;
			position: relative;
			overflow: hidden;
		}
		.widget > ul > li > a:before{
			content: "\f105";
			font-family: FontAwesome;
			padding-right: 5px;
			position: absolute;
			left: -20px;
			-webkit-transition: 200ms all;
			-moz-transition: 200ms all;
			-ms-transition: 200ms all;
			-o-transition: 200ms all;
			transition: 200ms all;
		}
		.widget > ul > li > a:hover {
			color: #000;
			padding-left: 10px;
		}
		.widget > ul > li > a:hover:before {
			left: 0px;
		}
/* Recent Comments Widget */
.widget.widget_recent_comments > ul > li {
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8
}
.widget.widget_recent_comments > ul > li > a {
	border-bottom: none;
}
.widget.widget_recent_comments > ul > li > a:before {
	display: none;
}


/* Recent Post Widget */
.cdr-recent-post-widget {}
	.cdr-recent-post-widget > .cdr-post-item {
		border-bottom: 1px dashed #474747;
		padding: 10px 0;
	}
	.cdr-recent-post-widget > .cdr-post-item:first-child {
		padding-top: 0px;
	}
	.cdr-recent-post-widget > .cdr-post-item > .cdr-post-title {
		font-size: 14px;
		font-weight: normal;
		line-height: 25px;
	}

	.cdr-recent-post-widget > .cdr-post-item > .cdr-post-meta {
		font-size: 12px;
	}

/* RSS Widget */
.widget_rss .widget-title img {
	display: none;
}
.widget.widget_rss > ul > li > a {
	border-bottom: 0px;
	padding-bottom: 0px;
	line-height: 20px;
}
.widget.widget_rss > ul > li > a:hover {
	color: #888;
	padding-left: 0px;
}
.widget.widget_rss > ul > li > a:hover:before {
	display: none;
}
.widget.widget_rss > ul > li > span {
	font-size: 12px;
}
.widget.widget_rss > ul > li {
	border-bottom: 1px;
	border-bottom: 1px dashed #646464;
	padding-bottom: 10px;
}

/* Site Stats And Subscribe Widget */
.cdr-subscribe-stats-widget {}
	.cdr-subscribe-stats-widget .cdr-site-stats {}
		.cdr-site-stats .total-dl-counter {
			overflow: hidden;
			margin-bottom: 30px;
		}
			.cdr-site-stats .total-dl-counter > div {
				width: 50%;
				float: left;
			}
				.cdr-site-stats .total-dl-counter > div > .count {
					font-size: 28px;
					font-weight: 800;
					color: #d9d9d9;
					margin-bottom: 5px;
				}
				.cdr-site-stats .total-dl-counter > div > .text {
					font-size: 16px;
				}
		.cdr-site-stats .newsletter-subscribe {}
			.cdr-site-stats .newsletter-subscribe .mailchimp-subscribe-form {}
				.newsletter-subscribe .mailchimp-subscribe-form .newsletter-description {
					margin-bottom: 15px;
					line-height: 24px;
				}
				.newsletter-subscribe .mailchimp-subscribe-form .newsletter-form {
					margin-bottom: 15px;
				}
					.mailchimp-subscribe-form .newsletter-form input {
						background-color: #2b2b2b;
						color: #d9d9d9;
						border-color: #3c3c3c;
					}
					.mailchimp-subscribe-form .newsletter-form input:focus {
						-webkit-box-shadow: none;
						box-shadow: none;
					}
					.mailchimp-subscribe-form .newsletter-form button {
						background-color: #1775d6;
						color: #FFF;
						border-color: #3c3c3c;
						position: relative;
					}
					.mailchimp-subscribe-form .newsletter-form button:focus {
						outline: none;
					}
					.mailchimp-subscribe-form .newsletter-form button > .ajax-loader {
						position: absolute;
						width: 100%;
						height: 100%;
						top: 0;
						left: 0;
						display: none;
					}
					.mailchimp-subscribe-form .newsletter-form button > .ajax-loader > i {
						left: 50%;
						top: 9px;
						margin-left: -12px;
					}
					.mailchimp-subscribe-form .newsletter-form button.clicked > .subscribe-text {
						visibility: hidden;
					}
					.mailchimp-subscribe-form .newsletter-form button.clicked > .ajax-loader {
						display: block;
					}
				.mailchimp-subscribe-form .mcc-output {
					border: 1px solid #3c3c3c;
					padding: 10px;
					color: #FFF;
					margin-bottom: 15px;
					display: none;
				}
		.cdr-site-stats .social-profiles {
			overflow: hidden;
			padding: 25px 0;
		}
			.cdr-site-stats .social-profiles > div {
				width: 50%;
				float: left;
				margin-bottom: 25px;
			}
				.cdr-site-stats .social-profiles > div > div > a {
					display: inline-block;
					background-color: #999;
					width: 36px;
					height: 36px;
					text-align: center;
					font-size: 20px;
					line-height: 38px;
					border-radius: 4px;
					color: #FFF;
				}
				.cdr-site-stats .social-profiles > div.facebook > div a {
					background-color: #3b5998;
				}
				.cdr-site-stats .social-profiles > div.twitter > div a {
					background-color: #58ccff;
				}
				.cdr-site-stats .social-profiles > div.linkedin > div a {
					background-color: #0274b3;
				}
				.cdr-site-stats .social-profiles > div.rss-feed > div a {
					background-color: #fe9900;
				}
				.cdr-site-stats .social-profiles > div > div {
					float: left;
				}
				.cdr-site-stats .social-profiles > div > .profile-text {
					font-weight: bold;
					color: #FFF;
					letter-spacing: .8px;
					margin-left: 15px;
				}
					.cdr-site-stats .social-profiles > div >.profile-text > .profile-desc {
						font-size: 12px;
						display: block;
						font-weight: normal;
						color: #999999;
					}



/* Download Files List */
.product-files {
	padding: 0;
}
	.product-files > li {
		list-style: none;
		position: relative;
		padding-left: 10px;
	}
	.product-files li:before {
		content: "\f1c6";
		font-family: FontAwesome;
		margin-right: 5px;
	}

/* Category Navigations */
.themes-cat-navigation {
	display: table;
	margin: 0 auto;
	margin-bottom: 50px;
	text-align: center;
}
	.themes-cat-navigation > div {
		display: inline-block;
		margin: 10px 5px
	}
	.themes-cat-navigation > div > a {
		display: block;
		padding: 5px 10px;
		border: 1px solid #e8e8e8;
		border-radius: 2px;
		color: #666;
	}
	.themes-cat-navigation > div > a:hover {
		background-color: #1775d6;
		text-decoration: none;
		border-color: #1775d6;
		color: #FFF;
	}
		.themes-cat-navigation > div > a > span {
			background: #666;
			padding: 2px 4px;
			color: #FFF;
			border-radius: 2px;
		}

/* Cart Page */
.woocommerce-page #content table.cart td.actions {
	padding: 0px;
}
.woocommerce-page #content table.cart td.actions > .coupon {
	width: 100%;
	background: #f7f7f7;
	padding: 5px 20px;
	padding-top: 10px;
}
.woocommerce-page #content table.cart td.actions .input-text{
	width: 75%;
	border-radius: 4px;
}
.woocommerce .woocommerce-message {
	border-top-color: #1775d6;
}
.woocommerce .woocommerce-message:before {
	color: #1775d6;
}

/* WooCommerce Form */
.woocommerce-billing-fields {
	padding: 25px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.review-and-payment {
	border: 4px solid #1775d6;
	padding: 25px;
}
.woocommerce-billing-fields .form-row input {
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
}
.woocommerce-checkout h3 {
	margin: 0;
	margin-bottom: 25px;
}
/*-----  End of Site Elements  ------*/


/*=================================
=            Dashboard            =
=================================*/

.dashboard-container {}
.dashboard-container .woocommerce {
	margin-bottom: 100px;
}

/*==========  Tables  ==========*/
	.dashboard-container table {}
		.dashboard-container table > thead {}

			.dashboard-container .woocommerce table.my_account_orders td,
			.dashboard-container .woocommerce table.my_account_orders th,
			.dashboard-container .woocommerce table.shop_table td,
			.dashboard-container .woocommerce table.shop_table th {
				padding: 10px 10px;
				border-left: 1px solid #e8e8e8;
			}
			.dashboard-container .woocommerce table.my_account_orders td:first-child,
			.dashboard-container .woocommerce table.my_account_orders th:first-child,
			.dashboard-container .woocommerce table.shop_table td:first-child,
			.dashboard-container .woocommerce table.shop_table th:first-child {
				border-left: none;
			}

			.dashboard-container .woocommerce table.my_account_orders th,
			.dashboard-container .woocommerce table.shop_table th {
				background-color: #f5f5f5
			}
			.dashboard-container .woocommerce h2 {
				margin-bottom: 30px;
			}
			.cart-collaterals table {
				width: 100%;
			}
			.cart-collaterals table th,
			.cart-collaterals table td {
				padding: 10px;
				border: 1px solid #e5e5e5;
			}
			
/*==========  Order Details  ==========*/
.dashboard-container .woocommerce table.shop_table {}
	.dashboard-container .woocommerce table.shop_table > thead {}
		.dashboard-container .woocommerce table.shop_table > thead > tr {}
			.dashboard-container .woocommerce table.shop_table > thead > tr > th {}


/*-----  End of Dashboard  ------*/




/*===========================================
=            Product Single Item            =
===========================================*/

/* Theme Header */
.theme-header {}

	.theme-header .theme-banner {
		padding-top: 50px;
		text-align: center;
	}
	.theme-header .theme-heading {
		padding: 50px 0;
		background-color: #f5f5f5;
	}
		.theme-header .theme-heading .theme-title {
			font-size: 42px;
			font-weight: 800;
			text-transform: uppercase;
			color: #555555;
		}
	.theme-header .theme-action {
		padding: 25px 0;
	}
		.theme-header .theme-action > a {
			background: #555555;
			color: #FFF;
			font-size: 14px;
			padding: 15px 20px;
			border-radius: 4px;
			letter-spacing: 1px;
		}
		.theme-header .theme-action > a:hover {
			background: #1775d6;
		}
		.theme-header .theme-action > a > i {
			padding-right: 5px;
		}

		.theme-header .theme-action > a.paid-product {
			background-color: #65B84E;
		}
		.theme-header .theme-action > a.free-product {
			background-color: #65B84E;
		}
		
	/* Theme Meta Data */
	.theme-header .theme-meta-data {
		border-bottom: 1px solid #e8e8e8;
	}

		/* Meta Data Nav */
		.theme-header .theme-meta-data > .tab-navigation {
			background-color: #f5f5f5;
			border-bottom: 4px solid #1775d6;
		}
			.theme-header .theme-meta-data > .tab-navigation .theme-meta-nav {
				padding: 0px;
				margin: 0;
			}
			.theme-header .theme-meta-data > .tab-navigation .theme-meta-nav > li {
				list-style-type: none;
				display: inline-block;
			}
				.theme-header .theme-meta-data > .tab-navigation .theme-meta-nav > li > a {
					display: inline-block;
					background: #FFF;
					padding: 10px 15px;
					font-size: 14px;
					font-weight: 600;
					letter-spacing: 1px;
					color: #555555;
					border: 1px solid #e9e9e9;
					border-bottom: 0px;
					border-top-left-radius: 4px;
					border-top-right-radius: 4px;
				}
				.theme-header .theme-meta-data > .tab-navigation .theme-meta-nav > li > a:hover,
				.theme-header .theme-meta-data > .tab-navigation .theme-meta-nav > li.active > a {
					color: #FFF;
					background: #1775d6;
					text-decoration: none;
				}

		/* Theme Meta Content */
		.theme-header .theme-meta-data .theme-meta-content {
			padding: 30px 0px;
			overflow: hidden;
		}
			/* Theme Details Tab */
			.theme-meta-content .theme-details-content {
				padding: 0;
			}
				.theme-meta-content .theme-details-content li {
					list-style-type: none;
					margin-bottom: 5px;
				}
					.theme-meta-content .theme-details-content li .name {
						width: 130px;
						display: inline-block;
						position: relative;
					}
					.theme-meta-content .theme-details-content li .name:after {
						content: ":";
						position: absolute;
						right: 0px;
					}
					.theme-meta-content .theme-details-content li .content {
						margin-left: 10px;
					}

			/* Theme Changes Log */
			.theme-meta-content .theme-changes-log {}
				.theme-meta-content .theme-changes-log > .changes-note {
					margin-bottom: 30px;
				}
				.theme-meta-content .theme-changes-log > .panel {
					-webkit-box-shadow: none;
					box-shadow: none;
				}
					.theme-meta-content .theme-changes-log .changes-log-head {
						border-bottom: 1px solid #e8e8e8;
						padding-bottom: 5px;
					}
						.theme-changes-log .changes-log-head > a {
							display: block;
							color: #666;
							position: relative;
						}
						.theme-changes-log .changes-log-head > a:hover,
						.theme-changes-log .changes-log-head > a:focus {
							text-decoration: none;
						}
							.theme-changes-log .changes-log-head > a span {
								font-weight: bold;
							}
							.theme-changes-log .changes-log-head > a .issue-in {
								position: absolute;
								right: 0px;
								top: 0px;
							}
							.theme-changes-log .changes-log-head > a .issue-in:after {
								content: "\f107";
								display: inline-block;
								font-family: FontAwesome;
								font-size: 18px;
								width: 20px;
								height: 20px;
								border: 2px solid #1775d6;
								color: #1775d6;
								border-radius: 50%;
								text-align: center;
								line-height: 18px;
							}
							.theme-changes-log .changes-log-head > a.collapsed .issue-in:after {
								content: "\f105";
							}
				/* Change Log Content */
				.theme-meta-content .theme-changes-log .changes-log-content {}
					.theme-changes-log .changes-log-content .changes-items {
						padding: 0;
					}
						.theme-changes-log .changes-log-content .changes-items > li {
							list-style: none;
							border-bottom: 1px solid #e8e8e8;
							padding:10px;
						}
							.changes-log-content .changes-items > li .change-count {
								padding-right: 10px;
							}
							.changes-log-content .changes-items > li .change-type {
								color: #FFF;
								padding: 3px 5px;
								text-transform: capitalize;
								font-size: 12px;
								margin-left: 10px;
							}
								.changes-items > li.removed .change-type {
									background-color: #e01e1e;
								}
								.changes-items > li.added .change-type {
									background-color: #20d96e;
								}
								.changes-items > li.fix .change-type {
									background-color: #17d6c2;
								}
								.changes-items > li.improved .change-type {
									background-color: #b62cf0;
								}
								.changes-items > li.new .change-type {
									background-color: #2378eb;
								}
								.changes-items > li.depreciate .change-type {
									background-color: #9f9f9f;
								}
								.changes-items > li.resolved .change-type {
									background-color: #00ae77;
								}

			/* Theme Reviews */
			.theme-meta-content .theme-reviews {}
				.theme-reviews .reviews-list {}
					.reviews-list > .product-review {
						overflow: hidden;
						border: 1px solid #e8e8e8;
						padding: 15px;
						margin: 10px 0px;
					}
					.reviews-list > .product-review:first-child {
						margin-top: 0;
					}
						.reviews-list > .product-review > .reviewer-image {
							float: left;
						}
						.reviews-list > .product-review > .review-inside {
							margin-left: 75px;
						}
							.product-review > .review-inside > .review-meta {
								overflow: hidden;
							}
							.product-review > .review-inside > .review-content {
								margin: 10px 0;
							}
								.product-review > .review-inside > .review-meta > div {}
								.product-review > .review-inside > .review-meta > .reviewer-name {
									font-size: 16px;
									font-weight: 600;
									display: inline-block;
									float: left;
								}
								.product-review > .review-inside > .review-meta > .meta-right {
									float: right;
								}
									.product-review > .review-inside > .review-meta > .meta-right > div {
										display: inline-block;
									}
									.product-review > .review-inside > .review-meta > .meta-right > .review-time {
										font-size: 14px;
										font-weight: 600;
										padding-right: 15px;
									}
									.product-review > .review-inside > .review-meta > .meta-right > .star-rating {
										position: relative;
										width: 65px;
										height: 14px;
										overflow: hidden;
										background-image: url(../images/star.png);
										background-repeat: no-repeat;
									}
									.product-review > .review-inside > .review-meta > .meta-right > .star-rating > span {
										position: absolute;
										top: 0;
										left: 0px;
										background-image: url(../images/star-active.png);
										background-repeat: no-repeat;
										text-indent: -5555px;
									}

				/* Ratings Widget */
				.theme-ratings-widget {
					border: 1px solid #e5e5e5;
					padding: 20px;
					font-size: 13px;
					font-weight: 600;
				}
					.average-rating {
						margin-bottom: 7px;
					}
						.average-rating .star-rating {
							display: inline-block;
							position: relative;
							width: 65px;
							height: 14px;
							overflow: hidden;
							background-image: url(../images/star.png);
							background-repeat: no-repeat;
						}
						.average-rating .star-rating > span {
							display: block;
							height: 14px;
							position: absolute;
							top: 0;
							left: 0px;
							background-image: url(../images/star-active.png);
							background-repeat: no-repeat;
						}
					.total-rating {
						margin-bottom: 20px;
					}
					.rating-item{
						padding: 5px 0;
					}
						.rating-item > span {
							display: inline-block;
						}
						.rating-item .individual-rating {
							position: relative;
							overflow: hidden;
							width: 75%;
							height: 10px;
							background-color: #FFF;
							border: 1px solid #e5e5e5;
							border-radius: 2px;
							margin: 0 10px;
						}
							.rating-item .individual-rating > span {
								display: block;
								background-color: #ffbc00;
								height: 8px;
								border-top-right-radius: 3px;
								border-bottom-right-radius: 3px;
							}
			
			/* Theme FAQs */
			.theme-meta-content .theme-faqs {}
				.theme-faqs .faq-item {
					/*border: 1px solid #e8e8e8;*/
					border-radius: 0px;
					/*padding: 10px;*/
					box-shadow: none;
					-webkit-box-shadow: none;
				}
					.theme-faqs .faq-item .faq-heading {}

						.theme-faqs .faq-item .faq-heading > a {
							display: block;
							position: relative;
							color: #555555;
							font-size: 16px;
							font-weight: 600;
							padding: 10px 15px;
							text-decoration: none;
							background-color: #1775d6;
							color: #FFF;
							border: 1px solid #1775d6;
						}
						.theme-faqs .faq-item .faq-heading > a.collapsed {
							background-color: transparent;
							color: #555555;
							border: 1px solid #e8e8e8;
						}
						.theme-faqs .faq-item .faq-heading > a:after {
							position: absolute;
							content: "\f107";
							font-family: FontAwesome;
							top: 0px;
							right: 0px;
							height: 100%;
							width: 40px;
							text-align: center;
							border-left: 1px solid #368feb;
							line-height: 42px;
						}
						.theme-faqs .faq-item .faq-heading > a.collapsed:after {
							content: "\f105";
							font-family: FontAwesome;
							border-color: #e8e8e8;
						}
						/*.theme-faqs .faq-item .faq-heading > a:hover,
						.theme-faqs .faq-item .faq-heading > a:focus {
							text-decoration: none;
						}*/
					.theme-faqs .faq-item .faq-content {
						border: 1px solid #e8e8e8;
						border-top: 0px;
						padding: 25px 30px;
					}

/* Theme Content */
.theme-content {
	margin: 75px 0;
}

.theme-content-details {
    overflow: hidden;
    margin-bottom: 50px;
}
.theme-content-details h2 {
    font-size: 30px;
    line-height: 24px;;
    margin-top: 0px;
    margin-bottom: 25px;
}
.theme-content-details > div {
	margin-bottom: 35px;
}

/*-----  End of Product Single Item  ------*/


/*=======================================
=            Themes Archives            =
=======================================*/

/*==========  Archive Header  ==========*/

.themes-archive-header {
	margin-bottom: 50px;
}
	.themes-archive-header > .overlay {
		background-color: rgba(3,44,87,.8);
	}
	.themes-archive-header .inside-content {
		padding: 75px 0;
		text-align: center;
		color: #FFF;
	}



/*-----  End of Themes Archives  ------*/



/*=====================================
=            Blog Archives            =
=====================================*/

.blog-container {
	padding: 25px 0;
}

.blog-container article {
	border: 1px solid #e8e8e8;
	margin-bottom: 30px;
}
.single .blog-container article {
	padding-bottom: 30px;
}

	.blog-container article .entry-header {}
		.blog-container article .entry-header > .post-banner {}
			.blog-container article .entry-header > .post-banner > img {
				width: 100%;
				height: auto;
			}
		.blog-container article .entry-header .entry-title,
		.blog-container article .entry-header .entry-meta,
		.blog-container article .entry-footer {
			padding: 0 30px;
		}
		.blog-container article .entry-footer .edit-link {
			padding-left: 20px;
		}
		.blog-container article .entry-header .entry-title {
			margin: 0;
			margin-top: 30px;
			margin-bottom: 20px;
		}
		.blog-container article .entry-header .entry-title > a {
			color: #555;
		}

	.blog-container article .entry-content {
		padding: 30px;
	}
	.blog-container article .entry-content a.read-more {
		padding: 10px 20px;
		margin-top: 25px;
		background: #1775d6;
		color: #FFF;
		border-radius: 4px;
		display: table;
		border: 1px solid transparent;
		text-decoration: none;
	}
	.blog-container article .entry-content a.read-more:hover {
		color: #1775d6;
		background: #FFF;
		border-color: #1775d6;
	}

/*==========  Single post  ==========*/
.post-overview {
	color: #B8B4B4;
	font-size: 20px;
	margin-bottom: 25px;
}

/* Author Bio */
.author-info {
	border: 1px solid #e8e8e8;
	padding: 30px;
	margin-bottom: 50px;
	overflow: hidden;
}
	.author-info .author-avatar {
		width: 100px;
		float: left;
		padding: 5px;
		border: 1px solid #e8e8e8;
		border-radius: 4px;
	}
		.author-info .author-avatar > img {
			border-radius: 4px;
		}
	.author-info .author-description {
		margin-left: 120px;
	}
		.author-info .author-description h3 {
			font-size: 16px;
			margin: 0;
			margin-bottom: 15px;
		}

/*-----  End of Blog Archives  ------*/

