/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    width: 100%;
    height: 100%;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

strong {
    font-weight: 600;
}

body, html {
    font-family: "proxima-nova";
    font-weight: 400;
    background: #fff;
    color: #383A3F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y:auto;
}

.wrapper {
    max-width: 1180px;
    min-width: 1180px;
    width: 1180px;
    padding: 0px 60px;
    margin: 0 auto;
}

button {
    cursor: pointer;
}

button, input, textarea {
    outline: none !important;
}

.clear {
    clear: both;
}

.title {
    font-size: 21px;
    line-height: 25px;
    color: #1F2021;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.btn {
    height: 50px;
    display: block;
    background: transparent;
    text-decoration: none;
    color: #383A3F;
    font-size: 21px;
    -webkit-transition: ease margin 0.4s, ease background 0.4s;
    -moz-transition: ease margin 0.4s, ease background 0.4s;
    -ms-transition: ease margin 0.4s, ease background 0.4s;
    -o-transition: ease margin 0.4s, ease background 0.4s;
    transition: ease margin 0.4s, ease background 0.4s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

.btn span {
    position: relative;
    top: 1px;
    -webkit-transition: ease margin 0.4s, ease background 0.4s;
    -moz-transition: ease margin 0.4s, ease background 0.4s;
    -ms-transition: ease margin 0.4s, ease background 0.4s;
    -o-transition: ease margin 0.4s, ease background 0.4s;
    transition: ease margin 0.4s, ease background 0.4s;
    margin-left: 5px;
}

.btn:hover span {
    margin-left: 10px;
}

.input-row {
    position: relative;
}

/*HEADER*/

header {
    position: fixed;
    width: 100%;
    z-index: 200;
}

.blocks {
    padding-top: 75px;
}

.header-in {
    display: table;
    width: 100%;
    background-color: #45549E;
    padding: 0 25px;
}

.header-left,
.header-right {
    display: table-cell;
}

.header-left {
    vertical-align: middle;
    width: 181px;
}

.header-right {
    vertical-align: top;
    padding-left: 90px;
    text-align: right;
}

.header-nav {
    display: inline-block;
}

.header-nav div {
    display: inline-block;
}

.header-nav a {
    display: block;
    position: relative;
    color: #FFF;
    font-weight: 700;
    padding: 0 15px;
    line-height: 75px;
    text-decoration: none;
}

.with-submenu a i {
    display: none;
    position: absolute;
    top: 8px;
    right: 20px;

    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: transform 250ms ease-in-out;
    -ms-transition: transform 250ms ease-in-out;
    -o-transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
}

.with-submenu.active a i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-nav a.active:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 13px 10px;
    border-color: transparent transparent #ffffff transparent;
}

.header-nav a:after {
    position: absolute;
    content: '';
    height: 2px;
    background: #FFF;
    left: 0;
    bottom: 0;
    width: 0;

    -webkit-transition: width 200ms ease-in-out;
    -moz-transition: width 200ms ease-in-out;
    -ms-transition: width 200ms ease-in-out;
    -o-transition: width 200ms ease-in-out;
    transition: width 200ms ease-in-out;
}

.header-nav a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
}

.header-logo a.mobile-logo {
    display: none !important;
}

.header-search {
    display: inline-block;
    width: 370px;
    position: relative;
    margin-left: 30px;
}

.header-search .input-row input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    font-size: 16px;
    color: #FFF;
    padding-right: 40px;
    padding-left: 10px;
    font-weight: 700;
    box-sizing: border-box;
}

.header-search i {
    display: block;
    position: absolute;
    font-size: 15px;
    top: 0px;
    right: 10px;
    color: #FFF;
}

input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

.header-logo img {
    max-width: 100%;
    width: 181px;
}

.header-cart,
.header-user {
    display: inline-block;
    margin-left: 25px;
}

.header-cart i,
.header-user i {
    color: #FFF;
    font-size: 21px;
}

.header-submenu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
}

.mobile-search,
.mobile-nav-search {
    display: none !important;
}

.mobile-submenu {
    display: none;
}

.header-submenu.active {
    display: block;
}

.submenu-in {
    background-color: #FFF;
    padding: 0 30px 30px 30px;
    -webkit-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
    box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
}

.submenu-top {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.submenu-top-item {
    display: table-cell;
    vertical-align: top;
    border-left: 1px solid #C6C6C6;
    padding: 30px 30px 22px 30px;
}

.submenu-top-item:first-child {
    border: none;
    padding-left: 0;
}

.submenu-top-item a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.26px;
    text-decoration: none;
    margin-bottom: 8px;

    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -ms-transition: color 200ms ease;
    -o-transition: color 200ms ease;
    transition: color 200ms ease;
}

.submenu-top-item a:hover {
    color: #939393
}

.submenu-bottom {
    border-top: 1px solid #C6C6C6;
    padding-top: 25px;
}

.submenu-bottom-title {
    font-size: 24px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.35px;
    margin-bottom: 20px;
}

.submenu-bottom-items {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.submenu-bottom-item {
    display: table-cell;
    vertical-align: top;
    text-decoration: none;
    padding-right: 20px;
    position: relative;
}

.submenu-bottom-item:last-child {
    padding-right: 0;
}

.submenu-bottom-item .item-in {
    display: table;
    width: 100%;
}

.submenu-bottom-item .item-left {
    display: table-cell;
    vertical-align: top;
    width: 77px;
}

.submenu-bottom-item .item-left img {
    width: 100%;
}

.submenu-bottom-item .item-right {
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
}

.submenu-bottom-item .item-right div {
    font-size: 20px;
    font-weight: 700;
    color: #BABABA;
    letter-spacing: 0.29px;
    margin-bottom: 12px;
}

.submenu-bottom-item .item-right .submenu-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #FDA733;
    letter-spacing: 0.26px;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
}


.featured {
    padding: 30px 0;
}

.featured-content {
    height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.featured-content > div {
}

.featured-content .right {
    float: left;
    width: 100%;
    background: #F5F6F7;
    padding: 15px 30px;
    bottom: 0px;
    position: absolute;
}

.featured-content .left {
    background: no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    float: right;
    width: 70%;
}

.featured-content .right .featured-title {
         font-size: 21px;
    line-height: 24px;
    color: #1F2021;
    letter-spacing: 0.3px;
}

.featured-content .right .featured-button {
    position: relative;
}

.featured-content .right .featured-button a {
    font-size: inherit !important;
}
.featured-button-2 {
    padding: 15px;
    position: absolute;
    top: 0px;
}

.products-selected {
    padding: 40px 0;
}

.products-sel-grid .item {
    width: 24%;
    float: left;
    margin-right: 1.3333333%;
    margin-bottom: 30px;
    position: relative;
}

.products-sel-grid .item:nth-child(4n+4) {
    margin-right: 0;
}

.products-sel-grid .item .img {
    background: #F5F6F7;
    height: 340px;
    display: table;
    width: 100%;
}

.products-sel-grid .item .img .inner {
    display: table-cell;
    vertical-align: middle;
}

.products-sel-grid .item .img img {
    display: block;
    max-width: 100%;
    mix-blend-mode: multiply;
    max-height: 280px;
    margin: 0 auto;
}

.products-sel-grid .item .desc {
    margin-top: 10px;
    width: 100%;
}

.products-sel-grid .item .desc h3 {
    font-size: 14px;
    line-height: 21px;
    color: #1F2021;
    float: left;
    margin: 0;
    width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-sel-grid .item .desc span {
    float: right;
    color: #1f2021;
    font-size: 14px;
    line-height: 21px;
}

.products-sel-grid .item .desc .woocommerce-Price-currencySymbol {
    float: left;
}

.products-archive {
    padding: 50px 0;
}

.archive-content .top .title {
    text-align: left;
    float: left;
}

.archive-content .top .sort-products {
    float: right;
}

.archive-content .top .sort-products i,
.archive-content .top .sort-products span {
    display: inline-block;
    vertical-align: middle;
}

.archive-content .top .sort-products span {
    color: #1f2021;
    font-size: 14px;
    line-height: 21px;
}

.archive-content .top .sort-products i {
    font-size: 20px;
    color: #EFF0F2;
    margin-left: 5px;
    cursor: pointer;
}

.archive-content .top .sort-products i.active {
    color: #1f2021;
}

.archive-content .product-filter {
    float: left;
    width: 25%;
}

.products-grid a {
    text-decoration: none;
}

.archive-content .products-grid {
    float: left;
    width: 75%;
    padding-bottom: 20px;
}
.archive-search .products-grid,
.archive-search .navigate {
    width: 100% !important;
}

.archive-content .products-grid .sort-products {
    float: right;
    margin-bottom: 30px;
}

.single-content .product-img .back-soon,
.products-grid .product-item .back-soon,
.products-sel-grid .item .back-soon {
    position: absolute;
    right: 0;
    top: 0;
    background: #878C94;
    color: #fff;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}

.products-grid .product-item {
    float: left;
    margin-bottom: 20px;
    position: relative;
}

.products-grid.four .product-item {
    width: 24%;
    margin-right: 1.333333%;
}

.products-grid.four .product-item:nth-child(4n+4) {
    margin-right: 0;
}

.archive-content .products-grid.three .product-item {
    width: 32%;
    margin-right: 2%;
}

.archive-content .products-grid.three .product-item:nth-child(3n+3) {
    margin-right: 0;
}

.products-grid .product-item .img {
    background: #F5F6F7;
    height: 250px;
    display: table;
    margin-bottom: 10px;
    width: 100%;
}

.products-grid .product-item .img .inner {
    display: table-cell;
    vertical-align: middle;
}

.products-grid .product-item .img .inner img {
    display: block;
    mix-blend-mode: multiply;
    max-width: 90%;
    margin: 0 auto;
    max-height: 90%;
}

.products-grid .product-item .desc {
    font-size: 14px;
    line-height: 21px;
}

.products-grid .product-item .desc .product-title {
    color: #1F2021;
    font-size: 14px;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: 0.13px;
}

.products-grid .product-item .desc .price {
    color: #1f2021;
    font-size: 14px;
    line-height: 21px;
}

.btn-product-filter {
    display: none;
    background: #1F2021;
    color: #fff;
    line-height: 50px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.close-filter {
    display: none;
    background: #1F2021;
    color: #fff;
    height: 50px;
    width: 50px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 50px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.product-filter {
    position: relative;
}

.product-filter .product-categories {
    padding: 0;
}

.product-filter > ul {
    display: inline-block;
}

.product-filter ul li {

}

.product-filter ul li a {
    color: #383A3F;
    font-size: 14px;
    line-height: 18px;
    padding: 7px 0;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
}

.product-filter ul li a:hover,
.product-filter ul li.current-cat > a {
    font-weight: bold;
}

.product-filter ul li ul {
    margin-left: 20px;
}

.products-archive .product-filter ul.children {
    display: none;
}

.products-archive .product-filter .current-cat-parent > ul.children {
    display: block;
}

.products-archive .product-filter .current-cat > ul.children {
    display: block;
}

.product-categories {
    padding: 40px 0;
}

.categories-grid .cat-item.pink:hover {
    background: #FCBEBF;
}

.categories-grid .cat-item.lightPink:hover {
    background: #FFE7E2;
}

.categories-grid .cat-item.blue:hover {
    background: #CCDEE2;
}

.categories-grid .cat-item.greenGray:hover {

    background: #EAECE1;
}

.categories-grid .cat-item .img img.img-bg {
    height: 100%;
    max-width: none;
    position: absolute;
    left: -9999999px;
    right: -9999999px;
    margin: auto;
}

.categories-grid .cat-item {
    width: 32%;
    margin-right: 2%;
    height: 300px;
    float: left;
    margin-bottom: 20px;
    position: relative;
}

.categories-grid .cat-item a .desc {
    -webkit-transition: ease opacity 200ms;
    -moz-transition: ease opacity 200ms;
    -ms-transition: ease opacity 200ms;
    -o-transition: ease opacity 200ms;
    transition: ease opacity 200ms;
}


.categories-grid .cat-item a {
    width: 100%;
    height: 100%;
    display: block;
}

.products-grid .cat-item {
    width: 49%;
    padding-right: 0px;
    height: 300px;
    float: left;
    margin-bottom: 20px;
    position: relative;
    margin-right: 2%;

}

a.register-first {
    margin-bottom: 25px;
    color: #232326;
    display: block;
}

.categories-grid .cat-item:nth-child(3n+3) {
    margin-right: 0;
}

.products-grid .cat-item:nth-child(odd) {

    margin-right: 2%;
}

.products-grid .cat-item:nth-child(even) {
    margin-right: 0px;
}

.categories-grid .cat-item .img {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

.categories-grid .cat-item .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
    position: absolute;
}

[data-max-height="50"] img {
    max-height: 50% !important;
}

[data-max-height="60"] img {
    max-height: 60% !important;
}

[data-max-height="70"] img {
    max-height: 70% !important;
}

[data-max-height="80"] img {
    max-height: 80% !important;
}

[data-max-height="90"] img {
    max-height: 90% !important;
}

[data-max-width="50"] img {
    max-width: 50% !important;
}

[data-max-width="60"] img {
    max-width: 60% !important;
}

[data-max-width="70"] img {
    max-width: 70% !important;
}

[data-max-width="80"] img {
    max-width: 80% !important;
}

[data-max-width="90"] img {
    max-width: 90% !important;
}


[data-background-vertical="top"] {background-position-y: top;}
[data-background-vertical="center"] {background-position-y: center;}
[data-background-vertical="bottom"] {background-position-y: bottom;}
[data-background-horizontal="left"] {background-position-x: left;}
[data-background-horizontal="center"] {background-position-x: center;}
[data-background-horizontal="right"] {background-position-x: right;}



[data-pos-vertical="top"] img {
    top: 0px !important;
}

[data-pos-vertical="center"] img {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

[data-pos-vertical="bottom"] img {
    bottom: 0px !important;
}

[data-pos-horizontal="left"] img {
    left: 0px !important;
}

[data-pos-horizontal="center"] img {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

[data-pos-horizontal="right"] img {
    right: 0px !important;
}

[data-pos-vertical="center"][data-pos-horizontal="center"] img {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.categories-grid .cat-item .desc {
    padding: 30px;
    position: absolute;
    bottom: 0;
    width: auto;
    font-size: 21px;
    line-height: 25px;
    color: #1F2021;
    letter-spacing: 0.2px;
}
.categories-grid .cat-item .desc span {
    padding: 10px;
    display:inline-block;
}

.categories-grid .cat-item .desc-hor-left {left: 0px; right: auto !important;}
.categories-grid .cat-item .desc-hor-right {right: 0px; left: auto !important;}
.categories-grid .cat-item .desc-hor-center {left: 50%; right: auto !important;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);}
.categories-grid .cat-item .desc-ver-top {top: 0px; bottom: auto !important;}
.categories-grid .cat-item .desc-ver-bottom {bottom: 0px; top: auto !important;}
.categories-grid .cat-item .desc-ver-center {top: 50%; bottom: auto !important;
-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);}
.categories-grid .cat-item .desc-ver-center.desc-hor-center {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align:center;
}


.categories-grid .cat-item.cover .desc-background span {
    background: rgba(255,255,255,0.75);
}

.products-single {
    padding: 50px 0;
}

.products-single .title {
    margin-top: 30px;
}

.single-content {
    padding-bottom: 50px;
    position: relative;
}

.single-content .left {
    width: 40%;
    padding-right: 100px;
    float: left;
    min-height: 1px;
}

.single-content .right {
    width: 60%;
    float: left;
}

.single-content .product-left-in.scrolled {
    position: fixed;
}

.single-content .product-left-in.scrolled-end {
    position: absolute;
    bottom: 50px;
    top: auto !important;
}


.single-content .left .back-to {
    color: #383A3F;
    font-size: 18px;
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: left;
    line-height: 50px;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}

.single-content .left .back-to:hover {
    margin-left: -10px;
}

.single-content .left .title-product {
    font-size: 28px;
    line-height: 36px;
    color: #1F2021;
    margin-bottom: 15px;
}

.single-content .left .price {
    font-size: 14px;
    line-height: 24px;
    color: #1f2021;
    margin-bottom: 30px;
}

.single-content .left .product-add {
    margin-top: 30px;
}

.single-content .left .product-add form .count {
    float: left;
    width: 26%;
    margin-right: 2%;
}

.single-content .left .product-add form .count input {
    height: 50px;
    width: 60%;
    border: 1px solid #878C94;
    text-align: center;
    font-size: 16px;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.single-content .left .product-add form .count input[type=number]::-webkit-outer-spin-button,
.single-content .left .product-add form .count input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-content .left .product-add form .count input[type=number] {
    -moz-appearance: textfield;
}

.single-content .left .product-add form .count .plusminus {
    float: left;
    position: relative;
    width: 40%;
    left: -1px;
}

.single-content .left .product-add form .count .plusminus > div {
    height: 25px;
    width: 100%;
    text-align: center;
    line-height: 25px;
    border: 1px solid #878C94;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
}

.single-content .left .product-add form .count .plusminus .plus {
    border-bottom: 0;
}

.single-content .left .product-add form .count .plusminus > div:hover {
    background: #1F2021;
    border-color: #1F2021;
    color: #fff;
}

.woocommerce .plusminus {
    display: none;
}

.single-content .left .product-add form .btn-add {
    float: left;
    width: 72%;
}

.single-content .left .product-add form .btn-add button span {
    float: right;
}

.single-content .left .product-add form .btn-add button:hover span {
    margin-right: -10px;
}

.single-content .left .product-add form .btn-add button {
    background: #1F2021;
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
    cursor: pointer;
    border: 1px solid #1F2021;
}

.single-content .left .product-add form .btn-add button:hover {
    background: transparent;
    color: #1F2021;
}

.single-content .left .desc {
    font-size: 14px;
    line-height: 24px;
    color: #1F2021;
    letter-spacing: 0.13px;
}

.single-content .left .question i {
    color: #383A3F;
    font-size: 17px;
    margin-right: 5px;
}

.single-content .left .question {
    color: #1f2021;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    display: block;
    text-decoration: none;
}

.single-content .left .social-media {
    border-top: 1px solid #EFF0F2;
    margin-top: 30px;
    padding-top: 30px;
}

.single-content .left .social-media span {
    text-transform: uppercase;
    color: #1f2021;
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
}

.single-content .left .social-media > a {
    display: inline-block;
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
    line-height: 21px;
    margin-left: 8px;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;

}

.single-content .left .social-media > a.twitter:hover {
    color: #00aced;
}

.single-content .left .social-media > a.facebook:hover {
    color: #3b5998;
}

.single-content .left .social-media > a.instagram:hover {
    color: #bc2a8d;
}

.single-content .left .social-media > a.linkedin:hover {
    color: #007bb5;
}

.single-content .left .social-media > a.pinterest:hover {
    color: #cb2027;
}

.single-content .left .social-media > a.whatsapp:hover {
    color: #4dc247;
}

.single-content .left .social-media > a.email:hover {
    color: #1F2021;
}

.single-content .right .product-img {
    background: #F5F6F7;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 15px;
    margin-bottom: 15px;
}

.single-content .right .product-img:last-child {
    margin-bottom: 0;
}

.single-content .right .product-img .inner img {
    display: block;
    max-width: 100%;
    mix-blend-mode: multiply;
    margin: 0 auto;
}

.single-content .right .product-img .pinterest-save {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.single-content .right .product-img .pinterest-save a,
.single-content .right .product-img .pinterest-save a img {
    display: block;
}

.single-content .right .product-img .pinterest-save a img {
    height: 25px;
}

.blog-archive {
    padding: 50px 0;
}

.blog-archive-content .blog-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
    float: left;
}

.blog-archive-content .blog-item a {
    text-decoration: none;
}

.blog-archive-content .blog-item:nth-child(2n+2) {
    margin-right: 0;
}

.blog-archive-content .blog-item .img {
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}

.blog-archive-content .blog-item:hover .img {
    opacity: 0.65;
}

.blog-archive-content .blog-item .img img {
    display: block;
    max-width: 100%;
}

.blog-archive-content .blog-item .date {
    font-size: 14px;
    line-height: 24px;
    color: #1f2021;
    margin-top: 10px;
}

.blog-archive-content .blog-item .blog-item-title {
    font-size: 21px;
    line-height: 25px;
    color: #1F2021;
    letter-spacing: 0.2px;
}

.navigate {
    float: left;
    width: 100%;
    text-align: center;

}

.products-archive .navigate {
    float: right;
    width: 75%;
    text-align: center;
}

.navigate .nav-numbers {
    display: inline-block;
}

.navigate .nav-numbers > a:hover,
.navigate .nav-numbers > a.active {
    color: #1F2021;
}

.navigate .nav-numbers > a {
    text-decoration: none;
    color: #1f2021;
    font-size: 21px;
    line-height: 50px;
    margin: 0 10px;
}

.navigate .previous {
    float: left;
    line-height: 50px;
    padding: 0 20px;
}

.navigate .next {
    float: right;
    line-height: 50px;
    padding: 0 20px;
}

.navigate a.next:hover,
.navigate a.previous:hover {
    background: #1F2021;
    color: #fff;
}

.products-archive .navigate a.next,
.products-archive .navigate a.previous {
    color: #1f2021;
}

.products-archive .navigate a.next:hover,
.products-archive .navigate a.previous:hover {
    color: #1F2021;
    background-color: #fff;
}

.content {
    padding: 50px 0;
}

.intro p {
    font-size: 18px;
    margin-bottom: 30px;
}

p,
.content-wrapper li {
    color: #383A3F;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.single-content .desc ul {
    margin-bottom: 20px;
}

.single-content .desc li {
    color: #383A3F;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.3px;
    padding-left: 15px;
    position: relative;
}

.single-content .desc li::before {
    position: absolute;
    left: 0;
    top: 11px;
     background-color: #3b5998;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
}

p a,
.single-content .desc li a{
    font-weight: bold;
    color: #383A3F;
}

.content-wrapper ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-bottom: 30px;
}

.content-wrapper ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-bottom: 5px;
        padding-left: 0px;
    margin-left: 15px;
}



.content-subtitle {
    font-weight: bold;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.content-title {
    color: #1F2021;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}

.content-content {
    position: relative;
}

.previous-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.previous-page a {
    text-decoration: none;
    color: #383A3F;
    display: block;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}

.previous-page a:hover {
    margin-left: -10px;
}

.fixed-social-media {
    position: absolute;
    left: 0;
    top: 100px;
}

.fixed-social-media > div {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}

.fixed-social-media > div a span {
    opacity: 0;
    padding-left: 10px;
}

.fixed-social-media > div a {
    text-decoration: none;
    display: block;
    color: #fff;
    height: 40px;
    overflow: hidden;
}

.fixed-social-media > div a.facebook {
    background: #3B5998;
}

.fixed-social-media > div a.twitter {
    background: #55ACEE;
}

.fixed-social-media > div a.whatsapp {
    background: #25D366;
}

.fixed-social-media > div a.linkedin {
    background: #333333;
}

.fixed-social-media > div:hover {
    width: auto;
}

.fixed-social-media > div:hover a {
    padding: 0 15px;
}

.fixed-social-media > div:hover a span {
    opacity: 1;
}

.content-header-img {
    margin-bottom: 50px;
}

.content-header-img img {
    max-width: 100%;
    display: block;
}

.content-wrapper {
    width: 60%;
    margin: 0 auto;
}

.content-wrapper .post-date {
    font-size: 14px;
    line-height: 24px;
    color: #1f2021;
}

.content-wrapper .quote {
    color: #1F2021;
    font-size: 32px;
    line-height: 40px;
    display: table;
    margin: 50px 0;
    letter-spacing: 0.3px;
}

.content-wrapper .quote > div {
    display: table-cell;
}

.content-wrapper .quote .quote-img {
    padding-right: 15px;
}

.content-wrapper .split {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding-bottom: 30px;
}

.content-wrapper .split > div {
    display: table-cell;
    vertical-align: top;
}

.content-wrapper .split .img {
    width: 200px;
    position: relative;
}

.content-wrapper .split .img img {
    display: block;
    max-width: 380px;
    position: absolute;
    right: 0;
}

.content-wrapper .split .split-content {
    padding-left: 20px;
}

.content-wrapper .media {
    padding-bottom: 30px;
}

.content-wrapper .media .img img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.read-more-blog {
    padding-top: 50px;
    border-top: 1px solid #EFF0F2;
}

.form-page {
    padding: 50px 0;
}

.contact-content,
.form-page > div > .title {
    width: 85%;
    margin: 0 auto 30px auto;
}

.form-page .title {
    text-align: left;
}

.contact-content > div {
    float: left;
}

.contact-content .contact {
    width: 42%;
    padding-right: 30px;
}

.contact-content .contact .contact-details {
    margin-bottom: 30px;
}

.contact-content .contact .contact-details ul {
    margin-bottom: 20px;
}

.contact-content .contact .contact-details ul li {
    font-size: 16px;
    line-height: 28px;
    color: #1F2021;
    letter-spacing: 0.3px;
}

.contact-content .contact .contact-details ul li.bold {
    font-weight: bold;
}

.contact-content .contact .contact-details ul li a {
    color: #1F2021;
    -webkit-transition: ease text-decoration 0.4s;
    -moz-transition: ease text-decoration 0.4s;
    -ms-transition: ease text-decoration 0.4s;
    -o-transition: ease text-decoration 0.4s;
    transition: ease text-decoration 0.4s;
}

.contact-content .contact .contact-details ul li a:hover {
    text-decoration: none;
}

.contact-content .contact .contact-details ul.ul-split li.first {
    float: left;
    width: 30%;
}

.contact-content .contact .contact-details ul.ul-split li.second {
    float: left;
    width: 70%;
}

.contact-content .contact .social-media {
    margin-bottom: 30px;
}

.contact-content .contact .social-media > a {
    display: inline-block;
    text-decoration: none;
    color: #1f2021;
    font-size: 21px;
    line-height: 28px;
    margin-right: 10px;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;
}

.contact-content .contact .social-media > a.twitter:hover {
    color: #00aced;
}

.contact-content .contact .social-media > a.facebook:hover {
    color: #3b5998;
}

.contact-content .contact .social-media > a.instagram:hover {
    color: #bc2a8d;
}

.contact-content .contact .social-media > a.pinterest:hover {
    color: #cb2027;
}

.contact-content .contact .social-media > a.linkedin:hover {
    color: #007bb5;
}

.downloads .title {
    margin-bottom: 20px;
}

.downloads .download {
    width: 100%;
    height: 50px;
    margin-bottom: 3px;
    background: #F5F6F7;
}

.content-content .downloads .download {
    margin-bottom: 20px;
}

.downloads .download a {
    text-decoration: none;
    color: #383A3F;
    font-size: 14px;
    line-height: 50px;
    padding: 0 15px;
    display: block;
}

.downloads .download a i {
    font-size: 18px;
    color: #1F2021;
    margin-right: 10px;
}

.downloads .download a span {
    color: #1f2021;
    float: right;
}

.contact-content .form {
    width: 58%;
}

.contact-content .form .gform_body {
    border: 1px solid #878C94;
}

.contact-content .form .gform_body > ul > li {
    width: 100%;
    border-bottom: 1px solid #878C94;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.contact-content .form .gform_body > ul > li.two-columns {
    clear: none;
    width: 50%;
    float: left;
}

.contact-content .form .gform_body > ul > li.two-columns.two-columns-left {
    border-right: 1px solid #878C94;
}

.contact-content .form .gform_body > ul > li {
    clear: both;
}

.contact-content .form .gform_body > ul > li:last-child {
    border-bottom: 0;
}

.contact-content .form .gform_body > ul > li textarea,
.contact-content .form .gform_body > ul > li select,
.contact-content .form .gform_body > ul > li .ginput_container_text input,
.contact-content .form .gform_body > ul > li .ginput_container_email input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    color: #383A3F;
}

.contact-content .form .gform_body > ul > li textarea {
    resize: none;
}

.contact-content .form .gform_body > ul > li select {
    background: #fff;
    font-size: 14px;
}

.contact-content .form .gform_body .ginput_container_select:after {
    content: 'navigatedown';
    font-family: SSGizmo;
    font-size: 16px;
    position: absolute;
    top: 22px;
    color: #1F2021;
    right: 30px;
}

.contact-content .form .gform_body > ul > li ul.gfield_radio li {
    display: inline-block;
    margin-right: 20px;
}

.contact-content .form .gform_body > ul > li ul.gfield_radio li input {
    margin-right: 5px;
    position: relative;
    top: -1px;
    cursor: pointer;
}

.contact-content .form .gform_body > ul > li ul.gfield_radio li label {
    cursor: pointer;
}

.contact-content .form .gform_footer input {
    width: 100%;
    -webkit-appearance: none;
    height: 60px;
    background: #1F2021;
    color: #fff;
    border: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #878C94;
    border-left: 1px solid #878C94;
    border-right: 1px solid #878C94;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-content .form .gform_footer input:hover {
    background: transparent;
    color: #1F2021;
}

.maps {
    padding: 50px 0;
}

.maps .address {
    width: 35%;
    float: left;
    height: 400px;
    overflow-y: scroll;
    border: 1px solid #878C94;
}

.maps .address .country .country-title {
    background: #F5F6F7;
    border-bottom: 1px solid #878C94;
    height: 60px;
    width: 100%;
    padding: 0 20px;
    line-height: 60px;
    position: relative;
    color: #383A3F;
    font-size: 14px;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
    cursor: pointer;
}

.maps .address .country .country-title:after {
    content: 'navigatedown';
    font-family: SSGizmo;
    color: #1F2021;
    font-size: 14px;
    position: absolute;
    right: 20px;
}

.maps .address .country .country-title:hover {
    background: #1F2021;
    color: #fff;
}

.maps .address .country .country-title:hover:after {
    color: #fff;
}

.maps .address .country ul {
    display: none;
}

.maps .address .country ul li {
    padding: 20px;
    border-bottom: 1px solid #878C94;
    cursor: pointer;
}

.maps .address .country ul li div {
    font-size: 14px;
    line-height: 21px;
    color: #1F2021;
}

.maps .address .country ul li .street {
    color: #1f2021;
}

.maps .address .country ul li a {
    color: #1F2021;
}

.maps .maps-content .map {
    float: left;
    width: 65%;
    border-right: 1px solid #878C94;
    border-top: 1px solid #878C94;
    border-bottom: 1px solid #878C94;
    height: 400px;
    position: relative;
}

.maps .maps-content .map #map {
    width: 100%;
    height: 100%;
}

.press {
    padding: 50px 0;
}

.press-grid .press-item {
    width: 33.33333%;
    float: left;
    text-align: center;
}

.press-grid .press-item .desc .press-item-title {
    font-size: 14px;
    line-height: 21px;
    color: #1F2021;
    margin-bottom: 20px;
    padding: 10px 42px 0px;
}

.press-grid .press-item .desc .press-item-press {
    font-size: 12px;
    font-weight: bold;
    line-height: 21px;
    color: #1F2021;
}

.press-grid .press-item .img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.social-feed {
    padding-top: 50px;
    display: table;
    width: 100%;
}

.social-feed .instagram-feed {
    width: 67%;
    background: #383A3F;
    padding: 50px 50px 50px 0;
}

.social-feed .twitter-feed {
    width: 33%;
    background: #878C94;
    padding: 50px 0 50px 50px;
}

.social-feed > div {
    display: table-cell;
}

.social-feed > div .title {
    color: #fff;
}

.instagram-feed .instagram-grid .instagram-item {
    width: 32%;
    margin-right: 2%;
    float: left;
}

.instagram-feed .instagram-grid .instagram-item.fourth {
    display: none;
}

.instagram-feed .instagram-grid .instagram-item:nth-child(3) {
    margin-right: 0;
}

.instagram-feed .instagram-grid .instagram-item img {
    max-width: 100%;
    display: block;
    width: 100%;
}

.twitter-feed .twitter-feed-content {
    margin-right: 50px;
    position: relative;
    overflow-y: scroll;
    height: 100%;
    min-height: 233px;
    min-width: 187px;
    max-height: 74%;
}

.twitter-feed .twitter-feed-content .twitter-column {
    position: absolute;
}

.twitter-user {
    margin-bottom: 20px;
}

.twitter-user .top {
    margin-bottom: 5px;
    width: 100%;
    display: block;
}

.twitter-user .top .photo {
    width: 32px;
    height: 32px;
    overflow: hidden;
    float: left;
    margin-right: 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: inset 1px solid #979797;
    background: #D8D8D8;
}

.twitter-user .top .twitter-nata {
    float: left;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
}

.twitter-user .top .twitter-nata .twitter-name {
    font-weight: bold;
}

.twitter-user .twitter-comment {
    color: #EFF0F2;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
}

.twitter-user .twitter-comment a {
    font-weight: 600;
    color: #EFF0F2;
    text-decoration: none;
}

.twitter-user .twitter-img img {
    display: block;
    max-width: 100%;
}



/* ---------- WooCommerce ---------- */
.validation_error {
    color: #8F1C81;
    font-weight: 600;
    font-size: 16px;
    margin: 15px 0px;

}

.validation_message {
    color: #8F1C81;
    font-weight: 400;
    font-size: 14px;
    margin: 5px 0px 15px 0px;
}

.woocommerce table.shop_table {
    border: 0px;
    border-radius: 0px;
}

.woocommerce table.shop_table thead {
}

.woocommerce table.shop_table td {
    padding: 5px 0px;
    border-top: 0px;
}

.woocommerce table.shop_table .product-name a {
    color: #473F46;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: inherit;
}

.woocommerce .quantity .qty {
    width: 50px;
    text-align: center;
    background: #f1f1f1;
    border: 0px;
    line-height: 20px;
    font-size: 15px;
    padding: 15px 7px 15px 0;
}

.woocommerce table.shop_table th {
    padding: 5px 0px;
    text-decoration: none;
    color: #473F46;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: inherit;
    font-weight: 600;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    color: #fff;
    background: #1F2021;
    width: 100%;
    border: 1px solid #1F2021;
    text-align: center;
    padding: 15px 0px;
    text-transform: inherit;
    letter-spacing: 0.3px;
    font-weight: 500;
    border-radius: 0px;
    font-size: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
}
.woocommerce a.button.alt,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
    text-transform: lowercase;
}

.woocommerce a.button.alt::first-letter,
.woocommerce-MyAccount-content h3::first-letter,
.woocommerce-MyAccount-content legend::first-letter {
    text-transform:capitalize;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background: white;
    color: #1F2021;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-weight: 400;
    text-transform: inherit;
    letter-spacing: 0.3px;
    padding: 15px 25px;
    border-radius: 0;
    font-size: 12px;
}

.cart_totals h2 {
    letter-spacing: 0.3px;
    text-transform: inherit;
    color: #999;
    margin-bottom: 15px;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    font-weight: 600;
    vertical-align: middle;
    border-top: 0px;
}

.cart_totals td {
    text-align: right;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: 1;
    background: #f1f1f1;
    border: 0px;
    padding: 15px;
    font-size: 15px;
}

.woocommerce form .form-row label {
    line-height: 2;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    font-size: 12px;
    margin-top: 5px;
    color: #473F46;
}
.woocommerce form .form-row label::first-letter {
    text-transform: capitalize;
}
.woocommerce form .form-row label input{
    vertical-align: middle;
}
.woocommerce form .form-row {
    padding: 0px;
    margin: 10px 0px 0px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #f1f1f1;
    border-radius: 0px;
}

.select2-container .select2-choice {
    background: #f1f1f1;
    border: 0px;
    border-radius: 0px;
    padding: 5px 15px;
}

.woocommerce form .form-row textarea {
    min-height: 150px;
    max-width: 100%;
}

.woocommerce table.shop_table .product-total {
    text-align: right;
}

h3#order_review_heading {
    margin: 35px 0px 10px;
    font-weight: 600;
}

.woocommerce table.shop_table tfoot {
    text-align: right;
}

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
    line-height: 1.5;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
    font-weight: 600;
    text-transform:lowercase;
}
.woocommerce-billing-fields h3::first-letter,
.woocommerce-shipping-fields h3::first-letter {
    text-transform:capitalize;
}
.shop_table.order_details {
    margin-top: 25px;
}

.woocommerce-message,
.woocommerce-thankyou-order-received {
    background: #1F2021;
    border: 0px;
    color: #fff;
    font-weight: 600;
    padding: 20px !important;
}

.woocommerce h2 {
    padding: 5px 0px;
    text-decoration: none;
    color: #473F46;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: inherit;
    font-weight: 600;
    margin-top: 15px;
}

.woocommerce-thankyou-order-received {
    margin-bottom: 25px;
}

.woocommerce-message:before {
    display: none;
}

.woocommerce-message a {
    color: #fff;
}

.woocommerce-billing-fields {
    margin-bottom: 25px;
}

.woocommerce-message .button:hover {
    text-decoration: none;
}

.woocommerce-error:before {
    top: 21px;
}

.woocommerce-MyAccount-navigation {
    float: none;
}

.woocommerce-MyAccount-navigation ul {
    display: table;
    width: 100%;
}

.woocommerce-MyAccount-navigation ul li {
    list-style-type: none;
    display: table-cell;
    text-align: center;
}

.woocommerce header {
    position: relative;
    width: auto;
}

.woocommerce-Address-title {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    padding: 0 !important;
    margin-bottom: 10px;
}

.woocommerce-Address address {
    line-height: 21px;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #1F2021;
    text-decoration: none;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;
    text-transform:lowercase;
}
.woocommerce-MyAccount-navigation ul li::first-letter {
    text-transform:capitalize;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #1f2021;
}

.addresses .woocommerce-Address header {
    padding: 15px;
}

.addresses .woocommerce-Address header h3 {
    text-transform:lowercase;
}

.addresses .woocommerce-Address header h3::first-letter {
    text-transform:capitalize;
}
.addresses .woocommerce-Address header a:before {
    content: 'edit';
    font-family: SSGizmo;
    color: #1F2021;
    position: relative;
    top: 2px;
    margin-right: 3px;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;
}

.addresses .woocommerce-Address header a {
    text-decoration: none;
    color: #1F2021;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;
}

.addresses .woocommerce-Address header a:hover:before,
.addresses .woocommerce-Address header a:hover {
    color: #1f2021;
}

.woocommerce-EditAccountForm fieldset {
    margin-top: 30px;
}

.woocommerce-MyAccount-content form > p input.button {
    margin-top: 20px;
    background: #1F2021;
    color: #fff;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
}

.woocommerce-MyAccount-content form > p input.button:hover {
    background: transparent;
    color: #1F2021;
}

form.register > p input.button,
form.login > p input.button {
    margin-bottom: 10px;
    background: #1F2021;
    color: #fff;
    -webkit-transition: ease background-color 0.4s;
    -moz-transition: ease background-color 0.4s;
    -ms-transition: ease background-color 0.4s;
    -o-transition: ease background-color 0.4s;
    transition: ease background-color 0.4s;
}

form.register > p input.button:hover {
    background: transparent;
    color: #1F2021;
}

form.login > p.woocommerce-LostPassword {
    margin: 0;
}

form.login > p.woocommerce-LostPassword a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    -webkit-transition: ease color 0.4s;
    -moz-transition: ease color 0.4s;
    -ms-transition: ease color 0.4s;
    -o-transition: ease color 0.4s;
    transition: ease color 0.4s;
}

form.login > p.woocommerce-LostPassword a:hover {
    color: #1f2021;
}

.breadcrumbs {
    font-size: 14px;
    line-height: 21px;
    color: #ccc;
    margin-top: 15px;
    display: block;
    font-weight: 400;
}

.breadcrumbs a {
    color: #777;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #383A3F;
}

.breadcrumb_last {
    color: #383A3F;
    font-weight: 500 !important;
}
.img-cover {
        background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
}
.desc.desc-hor-center.desc-ver-bottom.desc-background {
        left: 0px;
    bottom: 0px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    padding: 0px;
    width: 100%;
}
.desc.desc-hor-center.desc-ver-bottom.desc-background span {
        width: 100%;
    text-align: center;
}
.content-right-overlay {
    background: rgba(255,255,255,0.8) !important;
}
.featured-content .right.content-right-bottom {
    position: relative;
    background: white;
    padding: 5px 0px;
}
.featured-type-fullwidth .featured-content .right.content-right-bottom{
        float: none;
    max-width: 1180px;
    min-width: 1180px;
    width: 1180px;
    padding: 10px 60px;
    margin: 0 auto;
}
.featured-image {
    min-width: 100%;
    max-width: 100%;
}
.featured.featured-type-fullwidth .wrapper {
    min-width: 100%;
    max-width: 100%;
    padding: 0px;
}
.featured-button-type-text {
        display: inline-block;
    margin-left: 5px;
}
.featured.nomargintop {padding-top: 0px !important;}
.featured.nomarginbottom {padding-bottom: 0px !important;}
.featured-image-small {
        position: absolute;
    top: 15px;
    right: 15px;
    max-width: 225px;
}
.featured-button-type-button {margin-top: 5px;}
header .nav {
    float: right;
}

header a.cart, header a.login {
    display: block;
    float: right;
    line-height: 75px;
    font-size: 14px;
    text-decoration: none;
    color: #777;
    padding: 0px 10px;
}
div.search {
    display: block;
    float: right;
    line-height: 75px;
    font-size: 14px;
    text-decoration: none;
    color: #777;
    padding: 0px 10px;
}
.search-row {
        width: 100%;
    background: #1F2021;
    font-size: 14px;
    text-decoration: none;
    color: #383A3F;
    display:none;
}
.search-row.show {
    display:block;
}
.search-row input {
        background: transparent;
        border: 0px;
        font-size: 24px;
        width: 100%;
        color: #fff;
        padding: 15px 0px;
}
.search-row .search-input {position:relative;
    margin-top: 75px;
}
.search-row button {
        position: absolute;
        top: 0px;
        right: 0px;
        border: 0px;
        height: 100%;
        width: auto;
        font-size: 30px;
        color: white;
        background: transparent;
}


header a.cart {
    background: #4553a0;
    color: white;
    line-height: 35px;
    margin: 20px 0px;
    font-weight: 700;
    font-size: 15px;
    margin-left: 10px;
}
header a.cart span {
         position: relative;
    top: 0px;
    margin-right: 5px;
}

.ginput_recaptcha {
    margin-top: 10px;
}

.contact-content label.gfield_label {
    font-size: 14px;
    color: #383A3F;
}

.footer-in {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding-top: 70px;
    padding-bottom: 65px;
}

.footer-section {
    display: table-cell;
    padding-left: 50px;
}

.footer-section:first-child {
    padding-left: 0;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-usp {
    display: table;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.26px;
    margin-bottom: 10px;
}

.footer-usp-left {
    display: table-cell;
    vertical-align: top;
    width: 17px;
}

.footer-usp-left i {
    font-size: 21px;
    position: relative;
    top: -3px;
}

.footer-usp-right {
    display: table-cell;
    padding-left: 6px;
}

.footer-logo img {
    height: 38px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.32px;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #939393;
    letter-spacing: 0.23px;
    line-height: 16px;
    margin-bottom: 10px;
    text-decoration: none;

    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -ms-transition: color 200ms ease;
    -o-transition: color 200ms ease;
    transition: color 200ms ease;
}

.footer-section a:hover {
    color: #45549E;
}

.footer-socials {
    margin-bottom: 30px;
}

.footer-socials a {
    display: inline-block;
    padding: 0 15px;
    color: #45549E;
}

.footer-socials a:hover {
    color: #939393;
}

.footer-socials a:first-child {
    padding-left: 0;
}

.footer-in p {
    font-size: 16px;
    font-weight: 600;
    color: #939393;
    letter-spacing: 0.23px;
    line-height: 16px;
    margin-bottom: 13px;
}

.footer-bottom {
    background-color: #45549E;
    text-align: center;
    line-height: 38px;
}

.footer-bottom img {
    display: inline-block;
    max-height: 15px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.footer-bottom p {
    display: inline-block;
    margin-bottom: 0;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.23px;
    font-weight: 700;
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter .input-row {
    height: 55px;
}

.footer-newsletter .input-row input {
    height: 55px;
    width: 100%;
    color: #45549E;
    border: 2px solid #45549E;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
    padding: 0 41px 0 20px;
}

.footer-newsletter button {
    position: absolute;
    bottom: 12px;
    right: 10px;
    background: none;
    border: none;
}

.footer-newsletter button i {
    font-size: 16px;
    color: #45549E;
}

.social-media-in {
    display: table;
    width: 100%;
}

.social-media-left,
.social-media-right {
    display: table-cell;
    vertical-align: top;
    padding: 30px 0;
}

.social-media-left {
    padding-right: 50px;
    position: relative;
}

.social-media-left .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #45549E;
}

.social-media-left-items {
    margin: 0 -11px 30px;
    max-width: 1500px;
}

.social-media-content {
    position: relative;
    z-index: 3;
}

.social-media-left-items a {
    display: inline-block;
    width: 33.333%;
    float: left;
    padding: 0px 11px;
    box-sizing: border-box;
}

.social-media-left-items a img {
    width: 100%;
}


.social-media-right {
    position: relative;
    width: 400px;
    padding-left: 50px;
    padding-right: 50px;
}

.social-media-right .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F0F0F0;
}

.social-media-right img {
    width: 100%;
}

.social-media-title {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.38px;
    text-align: center;
    margin-bottom: 30px;
}

.social-media-right .social-media-link {
    margin-top: 30px;
    text-align: left !important;
}

.social-media-right .social-media-title {
    color: #45549E;
}

.social-media-link a {
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 0.32px;
    text-decoration: none;
}

.social-media-link a:hover i {
    left: 10px;
}

.social-media-link a i {
    position: relative;
    padding-left: 10px;
    left: 0;
    top: 3px;

    -webkit-transition: left 200ms ease-in-out;
    -moz-transition: left 200ms ease-in-out;
    -ms-transition: left 200ms ease-in-out;
    -o-transition: left 200ms ease-in-out;
    transition: left 200ms ease-in-out;
}

.social-media-right-item {
    display: table;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.social-media-right-items {
    max-height: 200px;
    overflow-y: scroll;
}
.social-media-right .social-media-link {
    text-align: center;
}

.social-media-right .social-media-link a {
    color: #45549E;
}

.social-media-right-item .item-left {
    display: table-cell;
    vertical-align: top;
    width: 34px;
}

.social-media-right-item .item-left img {
    width: 100%;
}

.social-media-right-item .item-right {
    display: table-cell;
    vertical-align: top;
    padding-left: 15px;
}

.social-media-right-item a {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.26px;
    text-decoration: none;
    margin-bottom: 8px;
}

.social-media-right-item p {
    font-size: 17px;
    font-weight: 700;
    color: #595959;
    letter-spacing: 0.26px;
    margin-bottom: 0;
    line-height: 22px;
}

.social-media-tags {
    font-size: 14px;
    font-weight: 700;
    color: #595959;
    letter-spacing: 0.21px;
}

.social-media-item-title {
    font-size: 21px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.live-search {
    position: absolute;
    background-color: #FFF;
    width: 370px;
    z-index: 3;
    right: 0;
    padding: 20px 15px;
    top: 49px;
    text-align: left;
    -webkit-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
    box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.50);
}

.live-search-suggestion {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.26px;
    padding: 12px 0;
    border-bottom: 1px solid #45549E;
}

.live-search-suggestion i {
    font-size: 20px;
    top: 11px;
    right: 0;
    color: #45549E;
}

.live-search-items {
    margin-top: 10px;
}

.live-search-item {
    display: table;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 10px 0;
}

.live-search-item .item-section {
    display: table-cell;
    vertical-align: top;
}

.live-search-item .item-image {
    width: 80px;
}

.live-search-item .item-image img {
    width: 100%;
}

.live-search-item .item-title {
    font-size: 20px;
    font-weight: 700;
    color: #45549E;
    letter-spacing: 0.29px;
    margin-bottom: 7px;
}

.live-search-item .item-stock {
    font-size: 18px;
    font-weight: 700;
    color: #0BBA00;
    letter-spacing: 0.26px;
}

.live-search-item .item-content {
    padding-left: 15px;
}

.live-search-item .item-price {
    font-size: 20px;
    font-weight: 700;
    color: #FDA733;
    letter-spacing: 0.29px;
    text-align: right;
}

.categories-in {
    -webkit-column-count: 3;
    -webkit-column-gap:   14px;
    -moz-column-count:    3;
    -moz-column-gap:      14px;
    column-count:         3;
    column-gap:           14px;
}

.category-item-in {
    margin-bottom: 14px;
    position: relative;
}

.category-content {
    position: absolute;
    left: 0;
    bottom: 3px;
    background-color: rgba(255,255,255,0.5);
    color: #1F2021;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.29px;
    line-height: 46px;
    padding: 0 20px;
    white-space: nowrap;
    width: 100%;
    text-align: left;

    -webkit-transition: width 250ms ease-in-out;
    -moz-transition: width 250ms ease-in-out;
    -ms-transition: width 250ms ease-in-out;
    -o-transition: width 250ms ease-in-out;
    transition: width 250ms ease-in-out;
}

.category-item:hover .category-content {
    width: 100% !important;
}

.category-item img {
    width: 100%;
}

.gfield_required {
    display: none;
}

/*
footer .gform_footer .button {
    display: none;
}
*/

.submenu-top-item .submenu-bottom-title {
    margin-bottom: 13px;
}

.submenu-top-item-content {
    font-size: 18px;
    font-weight: 700;
    color: #BABABA;
    letter-spacing: 0.26px;
    margin-bottom: 16px;

}

.submenu-top-item-subtitle {
    font-size: 14px!important;
}

.footer-newsletter .input-row input::-webkit-input-placeholder {
    color: #45549E;
}
.footer-newsletter .input-row input::-moz-placeholder { /* Firefox 19+ */
    color: #45549E;
}
.footer-newsletter .input-row input::-ms-input-placeholder { /* IE 10+ */
    color: #45549E;
}
.footer-newsletter .input-row input::-moz-placeholder { /* Firefox 18- */
    color: #45549E;
}

.media-top {
    margin: 40px 0;
}

.media-top .title {
    font-size: 36px;
    font-weight: 600;
    color: #45549E;
    text-align: left;
    max-width: 250px;
    line-height: 43px;
    margin: 0;
}

.media-in {
    margin: 0 -20px;
}

.media-item {
    display: inline-block;
    width: 50%;
    float: left;
    padding: 0 20px;
    margin-bottom: 25px;
}

.media-item-content {
    height: 340px
}

.media-item-in {
    height: 100%;
}

.media-item-left,
.media-item-right {
    display: inline-block;
    width: 50%;
    float: left;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.media-item-left {
    padding-right: 20px;
}

.media-item-right {
    padding-left: 20px;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-item-top {
    margin-bottom: 9px;
    text-decoration:none;
    display:block;
}

.media-item-top .title {
    font-size: 18px;
    font-weight: 700;
    color: #45549E;
    text-align: left;
    line-height: normal;
    margin-bottom: 0;
}

.media-item-top .subtitle {
    color: #45549E;
}

td.actions .coupon input {
    display: block;
    width: 100% !important;
}

td.actions .coupon input#coupon_code {
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.woocommerce-checkout #payment ul.payment_methods li input {
    margin: 0 1em 0 1px !important;
}