@charset "utf-8";
/*====================
	1. General code
==========================*/
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v14-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Regular'), local('Montserrat-Regular'),
       url('../fonts/montserrat-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v14-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

body {
	font-family: 'Montserrat', open sans, verdana;
	margin:0px;
	padding:0px;
	font-weight: 200;
	font-size:14px;
	line-height:28px;
	overflow-x:hidden;
	color:#333;
}
@media (min-width:1200px) {
	.container {
	max-width: 1190px;
}
}
/*----------------------
	Typography
------------------------------*/
h1, h2, h3, h4, h5, h6 {
	color:#36312e;
	margin:0 auto 20px;
	font-family: 'Montserrat',open sans, verdana;
	font-weight: 600;
	line-height: 30px;
}
h1 {
	font-size: 36px;
	line-height: 40px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size:24px;
}
h5 {
	font-size: 19px;
}
h6 {
	font-size: 18px;
}
p {
	margin-bottom: 20px;
}
a, a strong {
	transition-duration:0.5s;
	-moz-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	-webkit-transition-duration:0.5s;
	-ms-transition-duration:0.5s;
	text-decoration:none;
	color:#2072ef;
}
a:hover, a:focus, a strong:hover {
	text-decoration:none;
	outline:none;
	color:#0850be;
}
ul, ol {
	margin:0 0 20px;
}
ul li, ol li {
	margin: 0 0 16px;
}
ul li strong, strong {
	color:#111;
	font-weight:700 !important;
}
img {
	max-width:100%;
	width:auto;
	height:auto;
}

/*-----------------
	Button
-------------------------*/
.btn {
	background: #2072ef;
	border: medium none;
	border-radius: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
	height: auto;
	margin: auto;
	padding: 4px 25px;
	transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
}
.btn.btn-lg {
	line-height: 30px;
	padding: 16px 45px;
}
.btn.btn-sm {
	font-size: 11px;
	padding: 1px 10px;
	line-height: 26px;
}
.btn.btn-xs {
	font-size: 11px;
	padding: 1px 18px;
	line-height: 22px;
}
.btn:hover, .btn:focus, .btn.outline-btn:hover {
	color: #ffffff;
	outline: none;
	background: #0344a6;
	box-shadow: none;
	border-color:#0344a6;
}
.btn-link {
	font-weight: 500;
	color: #2072ef !important;
}
.btn-link:hover {
	text-decoration: none;
	color:#2072ef;
}
.btn.outline-btn {
	background:none;
	color:#2072ef;
	border:#2072ef solid 1px;
}
.btn.review-btn {
	background:none;
	color:#fead00;
	border:#fead00 solid 1px;
}
.btn.review-btn:hover {
	color: #fff;
	outline: none;
	background: #fead00;
	box-shadow: none;
	border-color:#fead00;
}
.btn.large-btn {
	background:none;
	color:#2072ef;
	border:#2072ef solid 1px;
  font-size: 30px;
  padding: 10px;
}
.btn.large-btn:hover {
	color: #fff;
	outline: none;
	background: #2072ef;
	box-shadow: none;
	border-color:#2072ef;
}
/*-----------------
	Form
---------------------------*/
.form-group {
	margin-bottom: 20px;
	position: relative;
}
.form-label {
	color: #323232;
	font-size: 14px;
	font-weight: 500;
	margin: 0 auto 1px;
	display: block;
}
.form-control {
	background: #fff none repeat scroll 0 0;
	border-radius:6px;
	border: #ccc solid 1px;
	box-shadow: none;
	color: #888888;
	font-size: 14px;
	height: 46px;
	line-height: 30px;
	padding: 5px 18px;
}
textarea.form-control {
	padding:15px 20px;
	min-height: 150px;
}
.form-control:hover {
	box-shadow:none;
	outline:none
}
.form-control:focus {
	box-shadow:none;
	border-color:#cbe3f6;
	outline:none
}
.select {
	position:relative;
}
.select select {
	appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}
.select::after {
	color: #878787;
	content: "";
	cursor: pointer;
	font-family: fontawesome;
	font-size: 15px;
	padding: 12px 0;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 0;
}
.form-control option {
	padding: 10px;
}
.control-label {
	color:#555;
	font-size:15px;
	font-weight:700;
}
.radio label, .checkbox label {
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	padding-left: 30px;
	position: relative;
}
.radio input[type=radio],  .checkbox input[type=checkbox] {
	display: none;
}
.radio label:before {
	background-color:transparent;
	border-style:solid;
	border-width:1px;
	border-color:#cacaca;
	border-radius:50%;
	content: "";
	display: inline-block;
	height: 20px;
	left: 0;
	top:6px;
	position: absolute;
	width: 20px;
}
.checkbox label::before {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #111111;
	content: "";
	display: inline-block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 4px;
	width: 16px;
}
.radio input[type=radio]:checked + label:before {
	content: "\2022";
	font-size: 30px;
	text-align: center;
	line-height: 11px;
	color:#2072ef;
}
.checkbox input[type=checkbox]:checked + label:before {
	content: "\2713";
	font-size: 12px;
	text-align: center;
	line-height: 14px;
}
.black_input .form-control {
	background:#222;
	border-radius:3px;
	color:#fff;
	border:#222 solid 1px;
	font-size:17px;
}
.checkbox, .radio {
	padding-top: 5px;
}

/*-----------------
	Table
---------------------------*/

table {
	margin:0 0 30px;
	width:100%;
}
table th, table td {
	border: 1px solid #e2e1e1;
	padding: 15px;
	padding: 14px 18px;
}
table th img, table td img {
	max-width:100%;
}
table thead {
	background:#eee;
}
table thead th, table thead td {
	text-transform:uppercase;
	font-weight:900;
	color:#111;
}
.border-none, .border-none td, .border-none th {
	border:0;
	padding: 8px;
}

/*-----------------------------------------------------------
	Section-background-color & sectino-heading
-------------------------------------------------------------------*/
.secondary-bg {
	background:#1e1c1c;
}
.primary-bg {
	background: #e5edf8;
}
.gray-bg {
	background: #f6f8fc;
}
.dark-overlay {
	position: relative;
}
.dark-overlay:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.5);
}
.section-padding {
	padding: 30px 0;
}
.section-header {
	margin: 0 auto;
	max-width: 650px;
	padding-bottom: 10px;
	padding-top: 14px;
}
.section-header h2 {
	margin:0 auto 36px;
}
.z-index {
	z-index:2;
	position:relative;
}
.divider {
	border-top:#e7e7e7 solid 1px;
}
.white-text, .white-text p, .white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6 {
	color:#fff;
}

/*================
	 Header
===========================*/
#header {
    background: #fff;
    left: 0;
    right: 0;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    z-index: 22;
    padding: 5px 0;
}
#header.nav-stacked {
	position:relative;
	top:0;
	left:0;
	right:0;
}
#header.sticky {
	position:fixed;
	top:0;
}
 @-webkit-keyframes fadeHeaderInDown {
 0% {
 opacity:0;
 -webkit-transform:translate3d(0, -100%, 0);
}
 100% {
 opacity:1;
 -webkit-transform:translate3d(0, 0, 0);
}
}
 @-moz-keyframes fadeHeaderInDown {
 0% {
 opacity:0;
 -moz-transform:translate3d(0, -100%, 0);
}
 100% {
 opacity:1;
 -moz-transform:translate3d(0, 0, 0);
}
}
 @-o-keyframes fadeHeaderInDown {
 0% {
 opacity:0;
 -o-transform:translate3d(0, -100%, 0);
}
 100% {
 opacity:1;
 -o-transform:translate3d(0, 0, 0);
}
}
 @keyframes fadeHeaderInDown {
 0% {
 opacity:0;
 transform:translate3d(0, -100%, 0);
}
 100% {
 opacity:1;
 transform:translate3d(0, 0, 0);
}
}
#header.sticky, .fadeHeaderInDown {
	-webkit-animation-name:fadeHeaderInDown;
	-moz-animation-name:fadeHeaderInDown;
	-o-animation-name:fadeHeaderInDown;
	animation-name:fadeHeaderInDown;
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:22;
	background:#fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#header:not(.is-alternate) {
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
}
#header.nav-stacked.transparent {
	position: absolute;
	background: none;
	box-shadow: none;
}
#header.nav-stacked.transparent.sticky {
	position:fixed;
	top:0;
	background:#1d1d1d;
}
header.transparent .navbar-nav li a {
	color:#fff;
}
 @media (min-width:768px) {
.collapse.navbar-collapse {
	display: block;
}
}
.collapse.navbar-collapse {
	width: auto;
	flex-basis: auto;
	text-align: right;
	flex-grow: inherit;
}
.arrow {
	display: none;
}
.navbar-nav {
	display:block;
}
.navbar-nav > li {
	display: inline-block;
	vertical-align: top;
	margin:0 0 0 15px;
}
.navbar.navbar-default {
	padding:0;
}
.navbar-nav li a {
    display: block;
    color: #36312e;
    font-size: 17px;
    padding: 12px 13px;
    margin: 0 auto;
}
.navbar-nav li a:hover, .navbar-nav li.active a, header.transparent .navbar-nav li a:hover, header.transparent .navbar-nav li.active a {
	text-decoration:none;
	color:#2072ef;
}

/*----------------
	Sub-Menu
----------------*/
.navbar .navbar-nav li.dropdown > a {
	padding-right: 28px;
}
.navbar .navbar-nav li.dropdown > a::after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	right:9px;
	top: 14px;
}
ul.sub-menu {
	background: #fff none repeat scroll 0 0;
	display: none;
	list-style: outside none none;
	min-width: 200px;
	padding: 0;
	position: absolute;
	left: 0;
	top: 100%;
	width: auto;
	z-index: 9999;
	text-align: left;
	box-shadow:rgba(0, 0, 0, 0.12) 0 0 15px;
}
ul.sub-menu ul.sub-menu {
	left:100%;
	top:0;
	display:none;
}
.navbar .navbar-nav li:hover > ul.sub-menu,  .navbar .navbar-nav li ul.sub-menu:hover > ul.sub-menu {
	display: block;
}
.navbar ul li ul.sub-menu li {
	float: none;
	margin: 0;
	display: block;
}
.navbar ul li ul.sub-menu li a {
	padding: 7px 7px;
	color: #2072ef;
	border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
	font-size: 14px;
}
.navbar ul li ul.sub-menu li a:hover {
	background:#2072ef;
  color: #fff;
}
#menu-slide {
	display:none;
}
.navbar ul li .nav-btn {
    padding: 11px 25px;
    background-color: #262524;
    color: #fff;
}
.navbar ul li .nav-btn:hover {
	background: #2072ef;
}
/*---------------------
	 Sub-Header
-------------------------*/
.breadcrumb {
	background: none;
	padding: 0;
	margin: 0 auto;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
}
.breadcrumb-item {
	padding-left: .5rem;
	font-size: 14px;
	color: #9e9e9d;
	font-weight: 400;
	margin: 0;
	line-height: 40px;
}
.breadcrumb-item a {
	color: #9e9e9d;
}
.breadcrumb-item a:hover {
	color: #2072ef;
}
.search-form {
	position: relative;
	display: inline-block;
	float: right;
}
.search-form input {
	background: #eff0f1;
	border: 0;
	font-size: 14px;
	padding: 5px 15px;
}
.search-btn {
	background: no-repeat;
	border: 0;
	position: absolute;
	top: 5px;
	right: 3px;
	font-size: 15px;
}
.sub-header {
	background: #fff;
	padding: 8px 0;
	border-top: #e5edf8 solid 2px;
}

/*================
	 Home Page
===========================*/ 
.intro-text {
	padding: 50px 0;
}
.intro-text h1 {
	font-size: 45px;
	line-height: 65px;
	font-weight: bold;
	margin: 0 auto 30px;
}
.search-form-wrap {
	position: relative;
}
.search-form-wrap input {
	background: #fff;
	height: 85px;
	width: 100%;
	border: 0;
	padding: 25px 32px;
	font-size: 22px;
}
.search-form-wrap button {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	font-size: 30px;
	height: 85px;
	width: 85px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	background: #2072ef;
}
.search-form-wrap {
	margin: 0 auto 17px;
}
.products-box {
	box-shadow: rgba(0, 0, 0, 0.05) 0 0 15px;
	padding: 40px 28px 50px;
	position: relative;
	margin: 0 auto 30px;
	height: 88%;
}
.product-image {
	max-width: 86px;
	margin: 0 0 20px;
}
.products-box a {
	color: #36312e;
}
.products-box a:hover {
	color: #2072ef;
}
.products-box h4 {
	margin: 0 auto 8px;
  font-size: 21px;
}
.angle-arrow {
	position: absolute;
	right: 0px;
	font-size: 24px;
	bottom: 20px;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transform: scale(0);
	-webkit-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
}
.angle-arrow a {
	padding: 1px 30px;
	display: inline-block;
}
.products-box:hover .angle-arrow {
	transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	right: 17px;
}
.categories-box {
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.03) 0 0 16px;	
	position: relative;
	margin: 0 auto 15px;
}
.categories-box a {
	color: #333;
	padding: 22px 50px 22px 30px;
	display: block;
	font-size: 15px;
	letter-spacing: 0.5px;
}
.categories-box a:hover, .recently-product a:hover {
	color: #fff;
	background: #2072ef;
	border-color: #2072ef;
}
.categ-arrow {
	position: absolute;
	top: 19px;
	right: 23px;
	font-size: 24px;
}
.recently-updated {
	background: #fff;
	padding: 50px;
	box-shadow: rgba(0, 0, 0, 0.06) 0 0 40px;
	margin: 0 auto 20px;
}
.recently-product {
	margin: 0 auto 15px;
}
.recently-product a {
	padding: 16px 20px;
	border: #ddd5d2 solid 1px;
	border-radius: 8px;
	display: block;
	color: #333;
	font-size: 15px;
	letter-spacing: 0.3px;
}
.recently-product a i {
	width: 20px;
	height: 20px;
	color: #fff;
	background: #2072ef;
	border-radius: 50px;
	text-align: center;
	font-size: 19px;
	margin-right: 4px;
}
.recently-product a:hover i {
	background: #fff;
	color: #2072ef;
}
.underline-btn {
	position: relative;
	font-weight: 600;
	font-size: 15px;
}
.underline-btn::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #2072ef;
	bottom: -6px;
}
.blog-wrap {
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.06) 0 0 40px;
	margin: 0 auto 25px;
}
.blog-detail {
	padding: 30px;
}
.blog-detail h4 {
	margin: 0 auto 12px;
  font-size: 16px;
}
.blog-detail h4 a {
	color: #333;
}
.blog-detail h4 a:hover {
	color: #2072ef;
}
.categories-li a {
	padding: 4px 10px;
	border-radius: 6px;
	border: #2072ef solid 1px;
	font-size: 13px;
}
.categories-li a:hover {
	background: #2072ef;
	color: #fff;
}
.recently-reviews {
	position: relative;
	background: #fff;
	padding: 50px;
	z-index: 2;
	margin-bottom: -30px;
}
.recently-reviews::after {
	position: absolute;
	top: 0;
	height: 100%;
	left: -90%;
	content: "";
	background: #fff;
	width: 100%;
	z-index: -1;
}
.recently-reviews::before {
	position: absolute;
	top: 0;
	height: 100%;
	right: -15%;
	content: "";
	background: #fff;
	width: 100%;
	z-index: -1;
}
.recently-reviews ul {
	padding: 0;
}
.recently-reviews ul li {
	padding: 0 0 0 30px;
	position: relative;
	margin: 0 auto 25px;
	list-style: none;
	display: inline-block;
	vertical-align: top;
	width: 48%;
}
.recently-reviews ul li::after {
	position: absolute;
	top: 0;
	left: -10px;
	content: "\f105";
	font-family: 'FontAwesome';
	width: 25px;
	height: 25px;
	text-align: center;
	border: #e8e7e7 solid 1px;
	border-radius: 50%;
	font-size: 17px;
	line-height: 21px;
}
.recently-reviews ul li a {
	color: #555;
	letter-spacing: 0.5px;
	font-size: 15px;
}
.recently-reviews ul li a:hover {
	color: #2072ef;
}
.review-heading {
	padding: 30px 10px 30px 150px;
}
.review-heading h2 {
	line-height: 40px;
}
.review-img {
	position: relative;
	z-index: 22;
}


/*================
	 Category Page
===========================*/ 
.section-heading h1, .section-heading h2, .section-heading h3, .section-heading h4, .section-heading h5, .section-heading h6 {
	display: inline-block;
	border-bottom: #333 solid 1px;
	line-height: 55px;
}
.blue-text *, .blue-text {
	color: #2072ef;
	border-color: #2072ef !important;
}
.ul_list ul {
	padding: 0;
}
.ul_list ul li {
	list-style: none;
	padding: 0 0 0 20px;
	margin: 0 auto 18px;
	position: relative;
	vertical-align: top;
	line-height: 24px;
}
.col_3 ul li {
	display: inline-block;
	width: 31.5%;
}
.col_2 ul li {
	display: inline-block;
	width: 48%;
}
.ul_list ul li a {
	color: #333;
}
.ul_list ul li a:hover {
	color: #2072ef;
}
.ul_list ul li::after {
	position: absolute;
	top: 10px;
	left: 0px;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50px;
	border: #a5a5a5 solid 1px;
}
.links a {
	display: inline-block;
	margin-right: 20px;
}
.style-none {
	padding: 0;
}
.style-none li {
	list-style: none;
}
.btn .tooltip-icon {
	margin: 0 3px 0 0;
	background: none;
	color: #fff;
	font-size: 12px;
	width: 20px;
	height: 20px;
	line-height: 16px;
}
.review-links {
	padding-left: 50px;
	position: relative;
}
.review-links:after {
	position: absolute;
	top: 0px;
	left: 22px;
	opacity: 0.7;
	content: "";
	height: 100%;
	width: 1px;
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #efefef 8%, #d1d1d1 17%, #b0aeaf 26%, #989697 32%, #979392 32%, #7c7a7b 39%, #706c6b 43%, #686463 49%, #6a6665 54%, #6e6a69 56%, #7b7776 61%, #969495 68%, #adabac 73%, #bdbbbc 77%, #cfcfcf 82%, #ebebeb 91%, #f7f7f7 96%, #fefefe 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#efefef 8%,#d1d1d1 17%,#b0aeaf 26%,#989697 32%,#979392 32%,#7c7a7b 39%,#706c6b 43%,#686463 49%,#6a6665 54%,#6e6a69 56%,#7b7776 61%,#969495 68%,#adabac 73%,#bdbbbc 77%,#cfcfcf 82%,#ebebeb 91%,#f7f7f7 96%,#fefefe 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#efefef 8%,#d1d1d1 17%,#b0aeaf 26%,#989697 32%,#979392 32%,#7c7a7b 39%,#706c6b 43%,#686463 49%,#6a6665 54%,#6e6a69 56%,#7b7776 61%,#969495 68%,#adabac 73%,#bdbbbc 77%,#cfcfcf 82%,#ebebeb 91%,#f7f7f7 96%,#fefefe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */
}
.ul_list.review-links ul li {
	list-style: none;
	padding: 0 0 0 20px;
	margin: 0 auto 10px;
	position: relative;
	vertical-align: top;
	line-height: 24px;
}



/*================
	 Alternatives Page
===========================*/
.product-detail {
	background: #e5edf8;
	padding: 30px 0;
}
.product-thumb {
	float: left;
	width: 110px;
	height: 110px;
	background: #fff;
	padding: 10px;
	text-align: center;
	border-radius: 8px;
	display:flex;
	align-items: center;
}
.product-info {
	float: right;
	width: 84%;
}

.ratings-wp i {
	color: #b1b0b0;
}
.ratings-wp i.active {
	color: #ffd200;
}
.Founded-in p {
	display: inline-block;
	background: #fff;
	padding: 1px 24px;
	border-radius: 30px;
	margin: 12px auto;
}
.product-info h2 {
	margin: 0 auto 10px;
}
.top-alternatives {
	background: #fff;
	padding: 18px;
}
.top-alternatives h5 {
	background: #dbe3ed;
	padding: 13px 17px;
	margin: -18px -18px 15px;
    font-size: 16px;
}
.top-alternatives ul {
	margin: 0 auto;
	padding: 0;
}
.top-alternatives ul li {
	margin: 0 auto 2px;
	list-style: none;
	position: relative;
	padding-left: 18px;
}
.top-alternatives ul li:after {
	position: absolute;
	top: 10px;
	left: 0px;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50px;
	border: #a5a5a5 solid 1px;
}
.top-alternatives ul li a {
	color: #555555;
	font-size: 15px;
}
.top-alternatives ul li a:hover {
	color: #2072ef;
}
#show_more {
	color: #2072ef;
	font-size: 14px;
	cursor: pointer;
	padding-top: 2px;
}
.s-less, .top-alt, .s-more.hide {
	display: none;
}
.s-less.show {
	display: block;
}
 

/*------------- 
	Sidebar
----------------*/
.sidebar-wrap {
	background: #fff;
	padding: 20px;
	margin: 0 auto 30px;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.08) 0 0 20px;
}
.sidebar-title {
	margin: -20px -20px 24px;
	padding: 24px 20px 20px;
	position: relative;
}
.sidebar-title:after {
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	content: "";
	border-bottom: #333 solid 2px;
}
.sidebar-title h3 {
	font-size: 15px;
	margin: 0 auto;
}
.sidebar-wrap ul, .features-list ul {
	margin: 0 auto;
	padding: 0;
}
.sidebar-wrap ul li, .features-list ul li {
	margin: 0 auto 10px;
	list-style: none;
	position: relative;
	padding-left: 18px;
}
.sidebar-wrap ul li:after, .features-list ul li:after {
	position: absolute;
	top: 10px;
	left: 0px;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50px;
	border: #a5a5a5 solid 1px;
}
.sidebar-wrap ul li a {
	color: #555555;
	font-size: 15px;
}
.sidebar-wrap ul li a:hover {
	color: #2072ef;
}
.popularity-bar {
	margin: 0 auto 20px;
}
.popularity-bar p {
	margin: 0 auto 6px;
	font-size: 16px;
    font-weight: 400;
}
.progress {
	height: 29px;
	background-color: #fff;
	border-radius: 0px;
	padding: 4px;
	border: rgba(0, 0, 0, 0.2) solid 1px;
}
.progress-bar {
	border-radius: 0px;
	background: #20c1ef;
}
.average .progress-bar {
	background: #efb720;
}
.poor .progress-bar {
	background: #f34d69;
}

/*----------------------- 
	Alternatives List
----------------*/
.alternatives-list, .content-wrap {
	border: #e3e2e2 solid 1px;
	border-radius: 8px;
	padding: 25px;
	margin: 0 auto 25px;
	position: relative;
	display: table;
	width: 100%;
}
.content-wrap ul {
	line-height: 18px;
    list-style: none;
	margin-bottom: 35px;
}
.content-wrap ul li i {
    margin-right: 5px;
    color: #00388d;
}
.content-wrap h3 {
    font-size: 25px;
	margin-bottom: 35px;
}
.alternatives-image {
	float: left;
	width: 120px;
	text-align: center;
}

.alt-pro-thumb {
	background: #fff;
	display: table-cell;
	height: 115px;
	width: 115px;
	border-radius: 6px;
	border: #e8e8e8 solid 1px;
	padding: 18px;
	margin: 0 auto 5px;
	position: relative;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}
.alternatives-info {
	float: left;
	width: 60%;
	margin-left: 2.5%;
}
.alt-act {
	text-align: center;
	float: right;
	width: 20%;
}
.alt-act .btn {
	margin: 0 auto 8px;
}
.alternatives-info h3 {
	font-size: 22px;
	margin: 0 auto 10px;
}

.alternatives-info a {
	color: #36312e;
}
.alternatives-info a:hover {
	color: #2072ef;
}
.alternatives-info .product-by, .alternatives-info .ratings-wp {
	font-size: 15px;
	margin: 0 auto 6px;
}
.likes-wrap {
	display: inline-block;
	background: #2072ef;
	border-radius: 0px;
	padding: 2px 10px;
	line-height: 18px;
	color: #fff;
	font-size: 13px;
	cursor: pointer;
}
.likes-wrap a {
	color: #fff;
}
.likes-wrap:hover {
	background: #0344a6;
}
.alt-no {
	background: #807e7d;
	color: #fff;
	position: absolute;
	top: -8px;
	width: 27px;
	height: 27px;
	border-radius: 0px;
	text-align: center;
	line-height: 30px;
}
.alt-no::after {
	position: absolute;
	top: 0;
	right: -16px;
	border-width: 10px 8px 0;
	border-style: solid;
	border-color: transparent transparent transparent #5e5b5a;
	content: "";
	overflow: hidden;
}
.box-header {
	background: #f5f4f4;
	margin: -25px -25px 22px;
	padding: 22px 25px;
}
.box-header * {
	margin: 0 auto;
}
.features-list ul li {
	display: inline-block;
	vertical-align: top;
	width: 48%;
	padding-right: 10px;
}
.review-form {
	padding: 20px 0 10px;
}
.form_rating {
	opacity: 0.5;
}
.form-label {
	color: #797979;
	display: block;
	float: left;
	font-size: 15px;
	line-height: 33px;
	padding-right: 14px;
	text-align: right;
	width: 156px;
	font-weight: 500;
}
.form_group input[type="text"], .form_group input[type="email"] {
	border: 1px solid #e8e7e7;
	border-radius: 0;
	display: block;
	float: left;
	height: 38px;
	line-height: 1;
	padding: 5px 8px;
	width: 78%;
    box-shadow: 0 0 7px #e7e5e5 inset;
}
.form_group textarea {
	border: 1px solid #e8e7e7;
	border-radius: 0;
	display: block;
	float: left;
	height: 80px;
	line-height: 1.5;
	width: 78%;
	padding: 5px 8px;
	font-weight: bold;
	color: #0991B3;
    box-shadow: 0 0 7px #e7e5e5 inset;
}
.form_group {
	overflow: hidden;
	margin: 0 0 22px;
}
.alt-pro-thumb:hover .alt_hover {
	transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
}
.alt_hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(8, 36, 47, 0.6);
	transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
}
.alt-pro-thumb .btn-sm {
	margin: 45px auto;
	max-width: 80%;
}
.target-demo, .hint {
	display: inline;
}
.rating-start-wrap {
	display: inline-block;
}
input.rating_check[type="checkbox"] {
	display: none;
}
.tooltip-icon {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	display: inline-block;
	font-size: 14px;
	text-decoration: none;
	color: #333;
	height: 25px;
	line-height: 22px;
	margin: 7px 6px 0 8px;
	text-align: center;
	vertical-align: middle;
	width: 25px;
	cursor: pointer;
}
.sidebar-wrap .tooltip-icon {
	font-size: 10px;
	height: 20px;
	line-height: 17px;
	width: 20px;
}
.buttons-wrap {
	padding-top: 10px;
}


/*----------------------- 
	Footer
----------------*/
#footer {
	padding: 20px 0;
	color: #fff;
}
.footer-nav {
	text-align: right;
}
.footer-nav ul {
	margin: 0 auto;
	padding: 0;
}
.footer-nav ul li {
	display: inline-block;
	position: relative;
	margin: 0 0 0 25px;
	color: #fff;
}
.footer-nav ul li:after {
	position: absolute;
	top: 0;
	left: -17px;
	content: "|";
}
.footer-nav ul li a {
	color: #fff;
}
.footer-nav ul li:first-child:after {
	display: none;
}
.footer-nav ul li:first-child {
	margin-left: 0;
}



/*========================
	Responsive-CSS
=============================*/
@media (min-width:992px) and (max-width:1200px) {
.product-info {
	width: 80%;
}
.alternatives-list, .content-wrap {
	padding: 15px;
}
.alt-pro-thumb {
	height: 110px;
	width: 110px;
}	
.alternatives-image {
	width: 115px;
}
.alternatives-info {
	width: 50%;
}
.alt-act {
	width: 27%;
}
.box-header {
	margin: -15px -15px 22px;
	padding: 18px 15px;
}
.alt-pro-thumb .btn-sm {
	margin: 38px auto;
	max-width: 90%;
	padding: 0 9px;
}
.form_group input[type="text"], .form_group input[type="email"], .form_group textarea {
	width: 70%;
}
.intro-text h1 {
	font-size: 36px;
	line-height: 48px;
	margin: 0 auto 20px;
}
.search-form-wrap input {
	height: 60px;
	width: 100%;
	padding: 25px;
	font-size: 16px;
}	
.search-form-wrap button {
	font-size: 20px;
	height: 60px;
	width: 60px;
	
}
.intro-text p {
	line-height: 22px;
	font-size: 13px;
}
.intro-text {
	padding: 30px 0;
}	
.categories-box a {
	padding: 20px 26px 20px 16px;
	font-size: 14px;
	letter-spacing: 0;
}
.categ-arrow {
	right: 16px;
}	
.review-heading {
	padding: 30px 10px 30px 100px;
}	
	
}


@media (min-width:768px) and (max-width:991px) {
.navbar-nav > li {
	margin: 0px;
}
.navbar-nav li a {
	font-size: 14px;
	padding: 10px 8px;
}	
.navbar .navbar-nav li.dropdown > a {
	padding-right: 24px;
}
.breadcrumb-item {
	line-height: 22px;
	font-size: 11px;
	padding: 6px 0;
}	
.search-form input {
	width: 160px;
}
.product-thumb {
	width: 140px;
	height: 140px;
}
.product-info {
	margin-bottom: 30px;
}
.alternatives-list, .content-wrap {
	padding: 25px 15px;
}
.alt-pro-thumb {
	height: 95px;
	width: 105px;
	padding: 14px;
}
.alternatives-image {
	width: 110px;
}	
.likes-wrap {
	font-size: 11px;
}
.alt-act {
	width: 25%;
}
.alternatives-info {
	width: 56%;
	margin-left: 1.5%;
}
.alt-pro-thumb .btn-sm {
	margin: 38px auto;
	max-width: 90%;
	padding: 0 9px;
}
.box-header {
	margin: -25px -15px 22px;
	padding: 17px 15px;
}
#footer {
	text-align: center;
	padding: 30px 0;
}
.footer-nav {
	text-align: center;
	margin-bottom: 15px;
}
.col_3 ul li, .col_2 ul li {
	list-style: none;
	padding: 0 0 0 20px;
	margin: 0 auto 11px;
	width: 48%;
}
.form_group input[type="text"], .form_group input[type="email"], .form_group textarea {
	width: 70%;
}	
.review-links {
	padding-left: 0;
	padding-bottom: 26px;
}	
.review-links::after {
	display: none;
}
.product-info {
	width: 75%;
}	
.product-detail .text-right {
	text-align: left !important;
}	
.intro-text {
	padding: 20px 0;
}
.intro-text h1 {
	font-size: 36px;
	line-height: 38px;
}	
.search-form-wrap input {
	height: 65px;
	padding: 25px;
	font-size: 18px;
}
.search-form-wrap button {
	font-size: 20px;
	height: 65px;
	width: 65px;
}	
.intro-image {
	max-width: 400px;
	margin: 0 auto;
}
.products-box {
	padding: 30px 25px 40px;
	margin: 0 auto 30px;
	height: 88%;
}	
.blog-img img {
	width: 100%;
}
	
}


@media (max-width:767px) {
.navbar-header {
    display: block;
    width: 100%;
}
.logo {
	float: left;
}
#menu-slide {
	display: block;
	float: right;
	background: none;
	border: 0;
	width: 50px;
	margin: 1px auto;
	cursor: pointer;
}
#menu-slide:hover, #menu-slide:focus {
	outline: 0px;
}
.icon-bar {
	background: #36312e;
	height: 3px;
	width: 100%;
	display: block;
	margin: 6px auto;
}
.navbar-collapse, .collapse.navbar-collapsing, .collapse.navbar-collapse.show {
	background: #2072ef;
	margin: 20px auto 0;
	width: 100%;
	padding-top: 10px;
}
.navbar .navbar-nav li:hover > ul.sub-menu, .navbar .navbar-nav li ul.sub-menu:hover > ul.sub-menu {
	display: none;
}
.navbar-nav > li {
	display: block;
	vertical-align: top;
	margin: 0 15px 12px;
	text-align: left;
}
.navbar-nav li a {
	display:block;
	color: #fff;
	padding: 3px 13px;
}
.navbar ul li .nav-btn {
	padding: 7px 25px;
	display: block;
}
.navbar .navbar-nav li.dropdown > a::after {
	display: none;
}
.arrow {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	color: #fff;
	cursor: pointer;
	text-align: center;
	line-height: 30px;
}
ul.sub-menu {
	position: relative;
}
.breadcrumb-item {
	line-height: 22px;
}
.search-form input {
	padding: 3px 15px;
	width: 100%;
}
.search-form {
	width: 83%;
	margin-top: 10px;
}
.product-detail {
	padding: 40px 0;
}
.product-thumb {
	width: 120px;
	height: 120px;
	padding: 16px;
}
.product-info {
	float: none;
	width: 100%;
	display: table;
	padding-top: 20px;
	margin-bottom: 30px;
}	
.Founded-in p {
	margin: 12px auto;
	font-size: 14px;
}
.alt-pro-thumb .btn-sm {
	margin: 35px auto;
	padding: 0 4px;
	font-size: 10px;
}
.alternatives-list, .content-wrap {
	display: block;
}
.form-label {
	display: block;
	float: none;
	font-size: 14px;
	padding-right: 14px;
	text-align: left;
	width: auto;
}
.form_group input[type="text"], .form_group input[type="email"], .form_group textarea {
	display: block;
	float: none;
	width: 100%;
}
h1 {
	font-size: 28px;
}
h2 {
	font-size: 25px;
}
h3 {
	font-size: 23px;
}
.alternatives-info {
	float: none;
	width: 100%;
	margin: 0 auto 15px;
}
.alt-pro-thumb {
	height: 90px;
	width: 90px;
	padding: 10px;
	margin: 0 auto 5px;
}
.alternatives-image {
	float: none;
	width: 90px;
	margin-bottom: 17px;
}	
.alt-act {
	text-align: center;
	float: none;
	width: 100%;
}	
.alternatives-info h3 {
	font-size: 20px;
}	
.btn {
	font-size: 15px;
	padding: 2px 20px;
}
.btn-link {
	font-size: 15px;
}
.box-header {
	padding: 20px 15px;
}
.box-header h4 {
	font-size: 22px;
}	
.features-list ul li {
	display: block;
	width: 100%;
	padding-right: 0;
}
.tooltip .arrow { display: none;}
#footer {
	text-align: center;
	padding: 30px 0;
}
.footer-nav {
	text-align: center;
	margin-bottom: 15px;
}
.sub-header .tooltip-icon {
	margin-top: 13px;
}
.breadcrumb-item {
	line-height: 20px;
	font-size: 12px;
	padding: 0;
}
.section-heading h1, .section-heading h2, .section-heading h3, .section-heading h4, .section-heading h5, .section-heading h6 {
	display: inline-block;
	border-bottom: #333 solid 1px;
	line-height: 40px;
}
.col_3 ul li, .col_2 ul li {
	margin: 0 auto 14px;
	display: block;
	width: 100%;
	line-height: 22px;
}	
.product-detail .text-right {
	text-align: left !important;
}
	

.intro-text {
	padding: 20px 0;
}
.intro-text h1 {
	font-size: 32px;
	line-height: 40px;
}	
.search-form-wrap input {
	height: 60px;
	padding: 25px;
	font-size: 18px;
}
.search-form-wrap button {
	font-size: 20px;
	height: 60px;
	width: 60px;
}	
.intro-image {
	max-width: 400px;
	margin: 0 auto;
}
.products-box {
	padding: 20px 25px 40px;
	margin: 0 auto 30px;
}	
.blog-img img {
	width: 100%;
}
.review-heading {
	padding: 10px;
}
.recently-reviews ul li {
	padding: 0 0 0 30px;
	margin: 0 auto 20px;
	display: block;
	width: 100%;
}
.recently-reviews {
	position: relative;
	background: #fff;
	padding: 25px;
	z-index: 2;
	margin-bottom: -25px;
}
.recently-updated {
	padding: 30px;
}
.recently-product a {
	padding: 11px 14px;
	font-size: 15px;
}
.recently-product {
	margin: 0 auto 8px;
}
	
}


@media (max-width:767px){
.product-thumb {
    width: 90px;
    height: 90px;
    padding: 10px;
    float: left;
}
.product-info {
    float: right;
    padding-top: 0;
    margin-bottom: 30px;
    width: calc(100% - 110px);
}
 .buttons-wrap .btn {
    display: block;
    margin-bottom: 6px;
} 
.alternatives-image {
    width: 90px;
    margin-bottom: 17px;
    float: left;
    margin-right: 5px;
}
.alternatives-list  {
	padding: 20px 15px;
}
.alt-pro-thumb .btn-sm {
	margin: 19px auto;
}
.alternatives-list .alt-act .btn {
    margin: 0 auto 8px;
    width: 100%;
}
}

