/*
Theme Name: eStore
Theme URI: http://themegrill.com/themes/estore/
Author: ThemeGrill
Author URI: http://themegrill.com
Description: eStore is responsive ecommerce WordPress theme that helps to easily setup beautiful functional Store site in no time.
Version: 0.1
License: GNU General Public License, version 3 (GPLv3)
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
Tags: light, white, one-column, two-columns, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-menu, featured-images, translation-ready, threaded-comments
Text Domain: eStore
*/


/**
* Table of Contents:
 * 1.0 - Reset
 * 2.0 - Typography
 * 3.0 - Elements
 * 4.0 - Forms
 * 5.0 - Links
 * 6.0 - Accessibility
 * 7.0 - Alignments
 * 8.0 - Clearings
 * 9.0 - Widgets
 * 10.0 - Posts and pages
 * 11.0 - Asides
 * 12.0 - Comments
 * 13.0 - Infinite scroll
 * 14.0 - Media
 * 15.0 - Sidebar css
 * 16.0 - Responsive grid for pages
 * 17.0 - Common Css
* ----------------------------------------------------------------------------
 */


/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%;
    /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll;
    /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%;
    /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%;
    /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
    /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
    /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
    box-sizing: border-box;
}

body {
    background: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}


/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #454545;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
    font-size: 20px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

address {
    margin: 0 0 15px;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul,
ol {
    margin: 0 0 15px 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 15px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 15px 15px;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
    vertical-align: middle;
}

figure {
    margin: 0;
}

table {
    margin: 0 0 15px;
    width: 100%;
    border-collapse: collapse;
}

th {
    font-weight: bold;
    border: 1px solid #CCC;
    padding: 5px 10px;
}

td {
    border: 1px solid #CCC;
    padding: 5px 10px;
}


/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input,
select,
textarea {
    font-size: 100%;
    /* Corrects font size not being inherited in all browsers */
    margin: 0;
    /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: middle;
}

.navigation .nav-links a,
.bttn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #333333;
    color: #fff;
    cursor: pointer;
    /* Improves usability and consistency of cursor style between image-type 'input' and others */
    font-size: 14px;
    line-height: 13px;
    height: 33px;
    border: none;
    padding: 10px 15px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    text-shadow: none;
    transition: background 0.5s ease;
}

.navigation .nav-links a:hover,
.bttn:hover,
button,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #00a9e0;
    color: #ffffff !important;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
    border: 0;
    padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
    color: #666;
    border: 1px solid #ccc;
    height: 36px;
    width: 100%;
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border: 1px solid #AAA;
}

.searchform input[type="text"]:focus {
    border: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
    padding: 3px 6px;
}

textarea {
    overflow: auto;
    /* Removes default vertical scrollbar in IE6/7/8/9 */
    padding-left: 3px;
    vertical-align: top;
    /* Improves readability and alignment in all browsers */
    color: #666;
    border: 1px solid #ccc;
    height: 160px;
    max-width: 100%;
    width: 100%;
}


/*--------------------------------------------------------------
5.0 Links
--------------------------------------------------------------*/

a {
    color: #00a9e0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

a:visited {}

a:hover,
a:focus,
a:active {
    color: #049acb;
}


/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar */
}


/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 15px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}


/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/

.clearfix:before,
.clearfix:after,
.row:before,
.row:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.tg-container:after,
.tg-container:before {
    content: '';
    display: table;
}

.clearfix:after,
.row:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.tg-container:after {
    clear: both;
}

.clear {
    clear: both;
}


/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 25px;
    padding-bottom: 10px;
}


/* Make sure select elements fit in widgets */

.widget select {
    max-width: 100%;
}


/* Search widget */

.widget_search .search-submit {
    display: none;
}

.home section.widget {
    margin: 0;
    padding: 0;
}


/*--------------------------------------------------------------
10.0 Posts and pages
--------------------------------------------------------------*/
.sticky {
}

h1.entry-title {
    color: #353535;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
}

h1.entry-title a {
    color: #3d3d3d;
}

.hentry {
    margin: 0 0 15px;
}

.updated {
    display: none;
}

.single .byline,
.group-blog .byline,
.posted-on,
.blog-author,
.blog-cat {
    display: inline;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

.bypostauthor {
}

.cat-links {
    margin-right: 10px;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 15px 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 15px;
}

.edit-link .post-edit-link {
    background: #293037;
    padding: 4px 10px;
    color: #FFF !important;
    line-height: 1;
    border-radius: 3px;
    font-size: 13px;
}

.edit-link .post-edit-link:before {
    content: "\f044";
    font-family: FontAwesome;
    margin-right: 5px;
}

#blog-post article.hentry,
.search article.hentry,
.archive article.hentry,
.tag article.hentry,
.category article.hentry {
    margin-bottom: 20px;
    padding-bottom: 20px;
    /*border-bottom: 1px dashed #DDD;*/
}

article.hentry .edit-link {
    display: block;
    margin-top: 20px;
}

article.hentry h1.entry-title {
    margin-bottom: 5px;
    line-height: 1.2;
}

article.hentry .entry-footer > span {
    margin-right: 15px;
    font-size: 13px;
}

.page-header .page-title {
    color: #333333;
    padding-bottom: 15px;
}

.entry-footer a {
    color: #999;
}

.entry-footer a:hover {
    color: #DC3522;
}

.nav-links .meta-nav {
    display: none;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    width: 50%;
    float: left;
}

.nav-links .nav-next {
    text-align: right;
}

.nav-links .nav-previous a:before {
    content: "\f0d9";
    font-family: FontAwesome;
    font-style: normal;
    margin-right: 5px;
}

.nav-links .nav-next a:after {
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    margin-left: 5px;
}

.entry-thumbnail {
    margin-bottom: 34px;
    position: relative;
}

.entry-exrecpt {
    width: 60%;
    float: right;
}

.short-content {
    margin-bottom: 10px;
}

.short-content + .bttn {
    float: right;
}

.entry-footer {
    margin-top: 10px;
}

.full-width {
    float: none;
    width: 100%;
}


/*--------------------------------------------------------------
11.0 Asides
--------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}


/*--------------------------------------------------------------
12.0 Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

#comments h2.comments-title {
    font-style: italic;
    margin: 15px 0;
    font-weight: 300;
    font-size: 22px;
    background: #23A38F;
    display: inline-block;
    padding: 8px 15px;
    color: #FFF;
}

#comments h3 {
    margin: 0 0 10px;
    color: #141414;
    font-weight: 600;
    display: inline-block;
    line-height: 22px;
    font-size: 18px;
}

#commentform label {
    width: 120px;
    display: block;
}

textarea#comment {
    width: 100%;
    height: 150px;
}


/*Comment Lists*/

.comments-area ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-area ol.children {
    margin: 0 0 0 15px;
}

.comment-list .comment-body {
    padding: 15px;
    margin-bottom: 20px;
    background: #2093b3;
    border-top: 2px solid #23A38F;
}

.comment-author img {
    vertical-align: text-top;
    margin-right: 15px;
}

.comment-author {
    float: left;
}

.comment-author .fn {
    font-style: normal;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
}

.comment-author .fn .url {
    color: #333;
    padding: 0 5px;
}

.comment-author .fn .url:hover {
    background: #23A38F;
    color: #FFF;
}

.comment-author .says {
    display: none;
}

.commentmetadata {
    float: right;
    font-weight: normal;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
}

.commentmetadata a {
    color: #666;
}

.commentmetadata .comment-edit-link {
    color: #01AEFD;
}

.commentmetadata + .clear {
    margin-bottom: 20px;
}

.reply .comment-reply-link {
    background: none repeat scroll 0 0 #293037;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
    padding: 2px 10px;
}

#respond {
    background: #f2f2f2;
    padding: 20px;
    margin-top: 20px;
    color: #141414;
}

#commentform .form-submit {
    margin-bottom: 0;
}

#cancel-comment-reply-link {
    font-style: italic;
    color: #FFF;
}

#cancel-comment-reply-link:before {
    font-family: FontAwesome;
    content: "\f057";
    margin: 0 5px 0 20px;
    font-style: normal;
    color: #FFF;
}

.logged-in-as a {
    color: #27a4c8;
}


/*--------------------------------------------------------------
13.0 Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .paging-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

.infinity-end.neverending .site-footer {
    display: block;
}

#infinite-footer {
    display: none;
}


/*--------------------------------------------------------------
14.0 Media
--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.wp-caption {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 1.2% auto 0;
    max-width: 98%;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 10px 0;
}

.site-main .gallery {
    margin-bottom: 1.5em;
}

.gallery-caption {}

.site-main .gallery a img {
    border: none;
    height: auto;
    max-width: 90%;
}

.site-main .gallery dd,
.site-main .gallery figcaption {
    margin: 0;
}

.site-main .gallery-columns-4 .gallery-item {}

.site-main .gallery-columns-4 .gallery-item img {}


/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object {
    max-width: 100%;
}


/*--------------------------------------------------------------
  15.0 sidebar CSS
--------------------------------------------------------------*/

.widget .widget-title {
    border-bottom: 1px solid #d6d6d6;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.widget .widget-title span {
    border-bottom: 3px solid #00a9e0;
    padding-bottom: 7px;
}

.widget_archive ul,
.widget_categories ul,
.widget_recent_entries ul,
.widget_meta ul,
.widget_recent_comments ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
    list-style: outside none none;
    margin: 0;
    padding: 0px;
}

.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li,
.widget_recent_comments li,
.widget_recent_entries li,
.widget_rss li,
.widget_nav_menu li {
    border-bottom: none;
    color: #333;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 10px;
    padding: 0 0 5px 25px;
    position: relative;
    -webkit-transition: color 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s;
    -ms-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
    display: block;
}

.widget_categories ul.children,
.widget_pages ul.children,
.widget_meta ul.children,
.widget_recent_comments ul.children,
.widget_recent_entries ul.children,
.widget_rss ul.children,
.widget_nav_menu ul.children {
    margin-top: 5px;
}

.widget ul.children li:last-child {
    margin: 0;
    padding-bottom: 0;
}

.widget_archive li a,
.widget_categories li a,
.widget_pages li a,
.widget_meta li a,
.widget_recent_comments li a,
.widget_recent_entries li a,
.widget_rss li a,
.widget_nav_menu li a {
    color: #333;
}

.widget_archive a::before,
.widget_categories a:before,
.widget_pages a:before,
.widget_meta a:before,
.widget_recent_comments a:before,
.widget_recent_entries a:before,
.widget_rss a:before,
.widget_nav_menu a:before {
    color: #888888;
    content: "\f187";
    font-family: "FontAwesome";
    font-size: 14px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.widget_categories a::before {
    content: "\f07b";
}

.widget_recent_entries a::before {
    content: "\f101";
}

.widget_meta a::before,
.widget_nav_menu a:before {
    content: "\f1db";
}

.widget_recent_comments a::before {
    content: "\f086";
}

.widget_rss a::before {
    content: "\f09e";
}

.widget_pages a:before {
    content: "\f1ea";
}

.widget_tag_cloud a {
    background: #ebebeb none repeat scroll 0 0;
    border: medium none;
    color: #888888;
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 6px 10px;
}

.widget_archive a:hover::before,
.widget_categories a:hover:before,
.widget_pages a:hover:before,
.widget_meta a:hover:before,
.widget_recent_comments a:hover:before,
.widget_recent_entries a:hover:before,
.widget_rss a:hover:before,
.widget_nav_menu a:hover:before,
.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_pages li a:hover,
.widget_meta li a:hover,
.widget_recent_comments li a:hover,
.widget_recent_entries li a:hover,
.widget_rss li a:hover,
.widget_nav_menu li a:hover,
.widget_tag_cloud a:hover {
    color: #00a9e0;
}

.widget_tag_cloud a:hover {
    background: #00a9e0 none repeat scroll 0 0;
    color: #fff;
}

.widget_recent_entries .post-date {
    color: #9f9f9f;
    display: block;
    font-size: 12px;
}


/*--------------------------------------------------------------
16.0 Responsive grid for pages
--------------------------------------------------------------*/

.tg-column-wrapper {
    clear: both;
    margin-left: -3%;
}

.tg-column-1 {
    width: 100%;
    float: left;
    margin-left: 3%;
}

.tg-column-2 {
    width: 47%;
    margin-left: 3%;
    float: left;
}

.tg-column-3 {
    float: left;
    margin-left: 3%;
    width: 30.33%;
}

.tg-column-4 {
    width: 22%;
    margin-left: 3%;
    float: left;
}

.tg-column-bottom-margin {
    margin-bottom: 3%;
}


/*--------------------------------------------------------------
17.0 COMMON CSS
--------------------------------------------------------------*/

body {
    font-weight: 400;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    overflow: hidden;
}

.tg-container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hide {
    display: none;
}


/*--------------------------------------------------------------
18.0 header css
--------------------------------------------------------------*/


/*--------------------------------------------------------------
   Top header css
--------------------------------------------------------------*/

.top-header-wrapper {
    background: #f0f0f0;
}

.left-top-header {
    float: left;
}

.right-top-header {
    float: right;
}

.left-header-block {
    border-right: 1px solid #c0bfbf;
    color: #6d6c6c;
    float: left;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 12px;
    padding-right: 10px;
}

.left-header-block i {
    margin-right: 5px;
}

.contact-info {
    border-right: none;
}

.right-header-block {
    float: left;
}

.right-header-block a {
    color: #6d6c6c;
    line-height: 38px;
    display: block;
    float: left;
    font-size: 12px;
    padding: 0 10px;
    font-weight: 600;
}

.right-header-block a:hover {
    background: #00a9e0;
    color: #ffffff;
}

.language-translate ul {
    margin: 0;
}

.language-translate li {
    list-style: none;
    display: none;
}

.language-translate li.active {
    display: block;
}

.language-translate a {
    border-left: 1px solid #c0bfbf;
    border-right: 1px solid #c0bfbf;
}


/*--------------------------------------------------------------
   Middle header css
--------------------------------------------------------------*/

.middle-header-wrapper {
    padding: 20px 0;
}

.logo,
.site-title-wrapper,
.logo-wrapper {
    float: left;
}

.logo-wrapper {
    margin: 14px 0;
}

.logo {
    margin-right: 15px;
}

#site-title {
    float: left;
    font-size: 28px;
    margin: 0
}

#site-title a {
    color: #454545;
}

#site-description {
    color: #565454;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.widget-large-advertise,
.wishlist-cart-wrapper {
    float: right;
    margin: 0;
    padding: 0;
}

.wishlist-cart-wrapper {
    margin: 22px 0;
}

.wishlist-wrapper,
.wcmenucart-contents {
    background: #f65656 none repeat scroll 0 0;
    border-radius: 100%;
    float: left;
    height: 42px;
    line-height: 42px;
    margin-left: 25px;
    text-align: center;
    width: 42px;
    display: block;
    position: relative;
}

.wishlist-wrapper a,
.cart-wrapper a {
    color: #ffffff;
}

.wishlist-wrapper .wishlist-value,
.cart-wrapper .cart-value {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #f65656;
    border-radius: 100%;
    display: block;
    height: 24px;
    line-height: 19px;
    position: absolute;
    right: -10px;
    top: -9px;
    width: 24px;
    color: #f65656;
    font-size: 12px;
}

.wcmenucart-contents {
    background: #00A9E0;
    float: left;
}

.wcmenucart-contents .cart-value {
    border: 2px solid #00A9E0;
    color: #00A9E0;
}

.cart-wrapper {
    float: left;
}

.my-cart-wrap {
    float: left;
    margin-left: 20px;
}

.my-cart-wrap .my-cart {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-total {
    font-size: 12px;
    font-weight: 600;
}


/*--------------------------------------------------------------
   Bottom Header css
--------------------------------------------------------------*/

.bottom-header-wrapper {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.category-menu {
    background: #333 none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-weight: 600;
    line-height: 43px;
    padding: 0 20px;
    text-transform: capitalize;
    width: 230px;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.category-toggle i {
    float: right;
    line-height: 43px;
}

.category-menu:hover {
    background: #00A9E0;
}


/*--------------------------------------------------------------
   Menu  css
--------------------------------------------------------------*/

#site-navigation {
    float: left;
}

#site-navigation ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

#site-navigation ul li {
    float: left;
}

#site-navigation ul li {
    float: left;
    font-size: 14px;
    font-weight: 700;
    line-height: 43px;
    margin-left: 38px;
}

#site-navigation ul li a {
    color: #454545;
    position: relative;
    text-transform: uppercase;
}

#site-navigation ul li.menu-item-has-children {
    padding-right: 10px;
}

#site-navigation ul li.menu-item-has-children > a:after {
    position: absolute;
    top: -10px;
    right: -15px;
    content: "\f107";
    font-family: FontAwesome;
    color: #454545;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#site-navigation ul li:hover > a,
#site-navigation ul li.current-menu-item > a,
#site-navigation ul li a:hover:after {
    color: #00A9E0;
}


/*--------------------------------------------------------------
   Search User  css
--------------------------------------------------------------*/

.search-user-wrapper {
    float: right;
}

.search-user-block {
    border-left: 1px solid #e5e5e5;
    float: left;
    font-size: 16px;
    line-height: 43px;
    padding: 0 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}

.search-user-block a {
    color: #333;
}

.search-user-block:hover {
    background: #00A9E0;
    color: #fff;
}

.search-user-block:hover a {
    color: #ffffff;
}

.user-wrapper.search-user-block {
    border-right: 1px solid #e5e5e5;
}


/*--------------------------------------------------------------
    Inner page layout CSS
--------------------------------------------------------------*/

#primary {
    float: left;
    width: 72.5%;
}

#secondary {
    float: right;
    width: 25%;
}


/*--------------------------------------------------------------
    blog page layout CSS
--------------------------------------------------------------*/

.page-header {
    background: #f6f6f6 none repeat scroll 0 0;
    padding: 55px 0;
    text-align: center;
    margin-bottom: 70px;
}

.page-header .entry-title {
    color: #00a9e0;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}

.page-header .entry-sub-title {
    font-weight: 600;
    color: #3b3b3b;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 5px;
}

.entry-thumbnail img {
    width: 100%;
}

.posted-on {
    background: #333 none repeat scroll 0 0;
    left: 0;
    padding: 10px 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 130px;
    -webkit-transition: background 0.3s ease 0s;
    -moz-transition: background 0.3s ease 0s;
    -ms-transition: background 0.3s ease 0s;
    -o-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}

.posted-on:hover {
    background: #00a9e0 none repeat scroll 0 0;
}

.posted-on a {
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    display: block;
}

.entry-thumbnail .entry-title {
    font-size: 18px;
    line-height: 24px;
    margin: 40px 0 5px;
    text-transform: uppercase;
}

.entry-thumbnail .entry-title a {
    color: #454545;
}

.entry-thumbnail .entry-title a:hover,
.entry-btn .btn:hover,
.entry-meta a:hover {
    color: #00a9e0;
}

.entry-meta a {
    color: #787878;
    font-size: 11px;
    font-weight: 600;
}

.entry-meta span {
    border-left: 2px solid #b5b5b5;
    display: inline-block;
    line-height: 15px;
    margin: 10px 0;
    padding-left: 10px;
}

.entry-meta span:first-child {
    border-left: none;
    margin-left: 0px;
    padding-left: 0px;
}

article {
    border-top: 1px solid #e4e4e4;
    margin-top: 40px;
    padding-top: 40px;
}

article:first-child {
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
}

.entry-btn .btn {
    color: #7f7d7d;
    font-size: 13px;
    margin-top: 10px;
}

article .entry-content {
    color: #7f7d7d;
    margin-top: 22px;
}


/*--------------------------------------------------------------
   Footer css
--------------------------------------------------------------*/

#colophon {
    margin-top: 40px;
}

#top-footer {
    background: #f6f7f7 none repeat scroll 0 0;
    padding: 50px 0;
}

#bottom-footer {
    background: #e9ebeb none repeat scroll 0 0;
    padding: 10px 0;
}

.copy-right {
    float: left;
}

.payment-partner-wrapper {
    float: right;
}

.payment-partner-wrapper ul {
    margin: 0;
    list-style: none;
}

.payment-partner-wrapper li {
    float: left;
    margin-left: 10px;
}
