body {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: #333
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b2d42;
    font-weight: 700;
    margin: 0 0 10px
}

a {
    color: #2b2d42;
    font-weight: 500;
    -webkit-transition: .2s color;
    transition: .2s color
}

a:focus,
a:hover {
    color: #59ab6e;
    text-decoration: none;
    outline: 0
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #59ab6e;
    border: none;
    border-radius: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: .2s all;
    transition: .2s all
}

.primary-btn:focus,
.primary-btn:hover {
    opacity: .9;
    color: #fff
}

.input {
    height: 40px;
    padding: 0 15px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    width: 100%
}

textarea.input {
    padding: 15px;
    min-height: 90px
}

.input-number {
    position: relative
}

.input-number input[type=number]::-webkit-inner-spin-button,
.input-number input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.input-number input[type=number] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    padding: 0 35px 0 15px
}

.input-number .qty-down,
.input-number .qty-up {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0
}

.input-number .qty-down {
    right: 0;
    bottom: 0
}

.input-number .qty-down:hover,
.input-number .qty-up:hover {
    background-color: #e4e7ed;
    color: #59ab6e
}

.input-select {
    padding: 0 15px;
    background: #fff;
    border: 1px solid #e4e7ed;
    height: 40px
}

.input-checkbox,
.input-radio {
    position: relative;
    display: block
}

.input-checkbox input[type=checkbox]:checked,
.input-checkbox input[type=checkbox]:not(:checked),
.input-radio input[type=radio]:checked,
.input-radio input[type=radio]:not(:checked) {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden
}

.input-checkbox label,
.input-radio label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer
}

.input-checkbox input[type=checkbox]+label span,
.input-radio input[type=radio]+label span {
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #e4e7ed;
    background: #fff
}

.input-radio input[type=radio]+label span {
    border-radius: 50%
}

.input-radio input[type=radio]+label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s
}

.input-checkbox input[type=checkbox]+label span:after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #fff;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .2s;
    transition: all .2s
}

.input-checkbox input[type=checkbox]:checked+label span,
.input-radio input[type=radio]:checked+label span {
    background-color: #59ab6e;
    border-color: #59ab6e
}

.input-radio input[type=radio]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1)
}

.input-checkbox input[type=checkbox]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.input-checkbox .caption,
.input-radio .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: .3s max-height;
    transition: .3s max-height
}

.input-checkbox input[type=checkbox]:checked~.caption,
.input-radio input[type=radio]:checked~.caption {
    max-height: 800px
}

.section {
    padding-top: 30px;
    padding-bottom: 30px
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0
}

.section-title .section-nav {
    float: right
}

.section-title .section-nav .section-tab-nav {
    display: inline-block
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px
}

.section-tab-nav li:last-child {
    margin-right: 0
}

.section-tab-nav li a {
    font-weight: 700;
    color: #8d99ae
}

.section-tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #59ab6e;
    -webkit-transition: .2s all;
    transition: .2s all
}

.section-tab-nav li.active a {
    color: #59ab6e
}

.section-tab-nav li a:focus:after,
.section-tab-nav li a:hover:after,
.section-tab-nav li.active a:after {
    width: 100%
}

.section-title .section-nav .products-slick-nav {
    top: 0;
    right: 0
}

#breadcrumb {
    padding: 30px 0;
    background: #fbfbfc;
    border-bottom: 1px solid #e4e7ed;
    margin-bottom: 30px
}

#breadcrumb .breadcrumb-header {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 15px;
    text-transform: uppercase
}

#breadcrumb .breadcrumb-tree {
    display: inline-block
}

#breadcrumb .breadcrumb-tree li {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase
}

#breadcrumb .breadcrumb-tree li+li {
    margin-left: 10px
}

#breadcrumb .breadcrumb-tree li+li:before {
    content: '/';
    display: inline-block;
    color: #8d99ae;
    margin-right: 10px
}

#breadcrumb .breadcrumb-tree li a {
    color: #8d99ae
}

#breadcrumb .breadcrumb-tree li a:hover {
    color: #59ab6e
}

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #253134
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px
}

.header-links li:last-child {
    margin-right: 0
}

.header-links li a {
    color: #fff
}

.header-links li a:hover {
    color: #59ab6e
}

.header-links li i {
    color: #59ab6e;
    margin-right: 5px
}

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #364245
}

.header-logo {
    float: left
}

.header-logo .logo img {
    display: block
}

.header-search {
    padding: 15px 0
}

.header-search div {
    position: relative
}

.header-search div .input-select {
    margin-right: -4px;
    border-radius: 40px 0 0 40px
}

.header-search div .input {
    width: calc(100% - 120px);
    margin-right: -4px
}

.header-search div .search-btn {
    height: 40px;
    width: 100px;
    background: #59ab6e;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0 40px 40px 0
}

.header-ctn {
    float: right;
    padding: 15px 0
}

.header-ctn>div {
    display: inline-block
}

.header-ctn>div+div {
    margin-left: 15px
}

.header-ctn>div>a {
    display: block;
    position: relative;
    width: 90px;
    text-align: center;
    color: #fff
}

.header-ctn>div>a>i {
    display: block;
    font-size: 18px
}

.header-ctn>div>a>span {
    font-size: 12px
}

.header-ctn>div>a>.qty {
    position: absolute;
    right: 15px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
    background-color: #59ab6e
}

.header-ctn .menu-toggle {
    display: none
}

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0 0 0 2px #e4e7ed;
    box-shadow: 0 0 0 2px #e4e7ed;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden
}

.dropdown.open>.cart-dropdown {
    opacity: 1;
    visibility: visible
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px
}

.cart-dropdown .cart-list .product-widget {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0
}

.cart-dropdown .cart-list .product-widget .product-img {
    left: 0;
    top: 0
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2b2d42
}

.cart-dropdown .cart-btns {
    margin: 0 -17px -17px
}

.cart-dropdown .cart-btns>a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: #59ab6e;
    color: #fff;
    text-align: center;
    font-weight: 700;
    -webkit-transition: .2s all;
    transition: .2s all
}

.cart-dropdown .cart-btns>a:first-child {
    margin-right: -4px;
    background-color: #253134
}

.cart-dropdown .cart-btns>a:hover {
    opacity: .9
}

.cart-dropdown .cart-summary {
    border-top: 1px solid #e4e7ed;
    padding-top: 15px;
    padding-bottom: 15px
}

#navigation {
    background: #fff;
    border-bottom: 2px solid #e4e7ed;
    border-top: 3px solid #59ab6e
}

.main-nav>li+li {
    margin-left: 30px
}

.main-nav>li>a {
    padding: 20px 0
}

.main-nav>li.active>a,
.main-nav>li>a:focus,
.main-nav>li>a:hover {
    color: #59ab6e;
    background-color: transparent
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #59ab6e;
    -webkit-transition: .2s all;
    transition: .2s all
}

.main-nav>li.active>a:after,
.main-nav>li>a:focus:after,
.main-nav>li>a:hover:after {
    width: 100%
}

.header-ctn li.nav-toggle {
    display: none
}

@media only screen and (max-width:991px) {
    .header-ctn .menu-toggle {
        display: inline-block
    }

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #364245;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        padding-top: 60px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: .2s all;
        transition: .2s all
    }

    #responsive-nav.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: 100%
    }

    .main-nav {
        margin: 0;
        float: none
    }

    .main-nav>li {
        display: block;
        float: none
    }

    .main-nav>li+li {
        margin-left: 0
    }

    .main-nav>li>a {
        padding: 15px;
        color: #fff
    }
}

#hot-deal.section {
    padding: 60px 0;
    margin: 30px 0;
    width: auto;
    height: auto;
    background-image: url('../img/create_your_own_banner_large.jpg');
    background-position: center;
    background-repeat: no-repeat
}

.hot-deal {
    text-align: center
}

.hot-deal .hot-deal-countdown {
    margin-bottom: 30px
}

.hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #59ab6ee6;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px
}

.hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.hot-deal .hot-deal-countdown>li>div h3 {
    color: #fff;
    margin-bottom: 0
}

.hot-deal .hot-deal-countdown>li>div span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #fff
}

.hot-deal p {
    text-transform: uppercase;
    font-size: 24px
}

.hot-deal .cta-btn {
    margin-top: 15px
}

.product {
    position: relative;
    margin: 15px 0;
    -webkit-box-shadow: 0 0 0 0 #e4e7ed, 0 0 0 1px #e4e7ed;
    box-shadow: 0 0 0 0 #e4e7ed, 0 0 0 1px #e4e7ed;
    -webkit-transition: .2s all;
    transition: .2s all
}

.product:hover {
    -webkit-box-shadow: 0 0 6px 0 #e4e7ed, 0 0 0 2px #59ab6e;
    box-shadow: 0 0 6px 0 #e4e7ed, 0 0 0 2px #59ab6e
}

.product .product-img {
    position: relative
}

.product .product-img>img {
    width: 100%
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px
}

.product .product-img .product-label>span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px
}

.product .product-img .product-label>span.sale {
    background-color: #fff;
    border-color: #59ab6e;
    color: #59ab6e
}

.product .product-img .product-label>span.new {
    background-color: #59ab6e;
    border-color: #59ab6e;
    color: #fff
}

.product .product-body {
    position: relative;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    z-index: 20
}

.product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8d99ae
}

.product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px
}

.product .product-body .product-name>a {
    font-weight: 700
}

.product .product-body .product-name>a:focus,
.product .product-body .product-name>a:hover {
    color: #59ab6e
}

.product .product-body .product-price {
    color: #59ab6e;
    font-size: 18px
}

.product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae
}

.product .product-body .product-rating {
    position: relative;
    margin: 15px 0 10px;
    height: 20px
}

.product .product-body .product-rating>i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #fff;
    color: #e4e7ed;
    z-index: 10
}

.product .product-body .product-rating>i.fa-star {
    color: #59ab6e
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #e4e7ed
}

.product .product-body .product-btns>button {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: 0 0;
    border: none;
    -webkit-transition: .2s all;
    transition: .2s all
}

.product .product-body .product-btns>button:hover {
    background-color: #e4e7ed;
    color: #59ab6e;
    border-radius: 50%
}

.product .product-body .product-btns>button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #253134;
    color: #fff;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    transition: .2s all
}

.product .product-body .product-btns>button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px)
}

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: #253134;
    text-align: center;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .2s all;
    transition: .2s all;
    z-index: 2
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #59ab6e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: .2s all;
    transition: .2s all
}

.product .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #59ab6e;
    opacity: 0;
    visibility: hidden
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #fff;
    color: #59ab6e;
    border-color: #59ab6e;
    padding: 0 30px 0 50px
}

.product .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible
}

.product-widget {
    position: relative
}

.product-widget+.product-widget {
    margin: 30px 0
}

.product-widget .product-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px
}

.product-widget .product-img>img {
    width: 100%
}

.product-widget .product-body {
    padding-left: 75px;
    min-height: 60px
}

.product-widget .product-body .product-category {
    text-transform: uppercase;
    font-size: 10px;
    color: #8d99ae
}

.product-widget .product-body .product-name {
    text-transform: uppercase;
    font-size: 12px
}

.product-widget .product-body .product-name>a {
    font-weight: 700
}

.product-widget .product-body .product-name>a:focus,
.product-widget .product-body .product-name>a:hover {
    color: #59ab6e
}

.product-widget .product-body .product-price {
    font-size: 14px;
    color: #59ab6e
}

.product-widget .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae
}

.product-widget .product-body .product-price .qty {
    font-weight: 400;
    margin-right: 10px
}

.product-widget .delete {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    text-align: center;
    font-size: 10px;
    padding: 0;
    background: #253134;
    border: none;
    color: #fff
}

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2
}

.products-slick .product.slick-slide {
    margin: 15px
}

.products-tabs>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px
}

.products-tabs>.tab-pane.active {
    opacity: 1;
    visibility: visible;
    height: auto
}

.products-slick-nav {
    position: absolute;
    right: 15px;
    z-index: 10
}

.products-slick-nav .slick-next,
.products-slick-nav .slick-prev {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 20px;
    height: 20px;
    display: inline-block !important;
    margin: 0 2px
}

.products-slick-nav .slick-next:before,
.products-slick-nav .slick-prev:before {
    font-size: 14px
}

.aside+.aside {
    margin-top: 30px
}

.aside>.aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0 30px
}

.checkbox-filter>div+div {
    margin-top: 10px
}

.checkbox-filter .input-checkbox label,
.checkbox-filter .input-radio label {
    font-size: 12px
}

.checkbox-filter .input-checkbox label small,
.checkbox-filter .input-radio label small {
    color: #8d99ae
}

#price-slider {
    margin-bottom: 15px
}

.noUi-target {
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e4e7ed;
    border-radius: 0
}

.noUi-connect {
    background-color: #59ab6e
}

.noUi-horizontal {
    height: 6px
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -4px;
    border: none;
    background: #59ab6e;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%
}

.noUi-handle:after,
.noUi-handle:before {
    display: none
}

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px)
}

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px
}

.store-sort {
    display: inline-block
}

.store-sort label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px
}

.store-grid {
    float: right
}

.store-grid li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    text-align: center;
    -webkit-transition: .2s all;
    transition: .2s all
}

.store-grid li+li {
    margin-left: 5px
}

.store-grid li:hover {
    background-color: #e4e7ed;
    color: #59ab6e
}

.store-grid li.active {
    background-color: #59ab6e;
    border-color: #59ab6e;
    color: #fff;
    cursor: default
}

.store-grid li a {
    display: block
}

.store-pagination {
    float: right
}

.store-pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    -webkit-transition: .2s all;
    transition: .2s all
}

.store-pagination li+li {
    margin-left: 5px
}

.store-pagination li:hover {
    background-color: #e4e7ed;
    color: #59ab6e
}

.store-pagination li.active {
    background-color: #59ab6e;
    border-color: #59ab6e;
    color: #fff;
    font-weight: 500;
    cursor: default
}

.store-pagination li a {
    display: block
}

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px
}

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px
}

#product-main-img .slick-next,
#product-main-img .slick-prev {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    transition: .2s all
}

#product-main-img:hover .slick-next,
#product-main-img:hover .slick-prev {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

#product-main-img .zoomImg {
    background-color: #fff
}

#product-imgs .product-preview {
    margin: 0 5px;
    border: 1px solid #e4e7ed
}

#product-imgs .product-preview.slick-current {
    border-color: #59ab6e
}

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

#product-imgs .slick-prev:before {
    content: "\f106"
}

#product-imgs .slick-next:before {
    content: "\f107"
}

.product-preview img {
    width: 100%
}

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px
}

.product-details .product-rating>i {
    color: #e4e7ed
}

.product-details .product-rating>i.fa-star {
    color: #59ab6e
}

.product-details .review-link {
    font-size: 12px
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #59ab6e
}

.product-details .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8d99ae
}

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #59ab6e
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px
}

.product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0
}

.product-details .product-options .input-select {
    width: 90px
}

.product-details .add-to-cart {
    margin-bottom: 30px
}

.product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #59ab6e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: .2s all;
    transition: .2s all
}

.product-details .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #59ab6e;
    opacity: 0;
    visibility: hidden
}

.product-details .add-to-cart .add-to-cart-btn:hover {
    background-color: #fff;
    color: #59ab6e;
    border-color: #59ab6e;
    padding: 0 30px 0 50px
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible
}

.product-details .add-to-cart .qty-label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0
}

.product-details .add-to-cart .qty-label .input-number {
    width: 90px;
    display: inline-block
}

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px
}

.product-details .product-btns li+li {
    margin-left: 15px
}

.product-details .product-links {
    margin-top: 15px
}

.product-details .product-links li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px
}

.product-details .product-links li+li {
    margin-left: 10px
}

#product-tab {
    margin-top: 60px
}

#product-tab .tab-nav {
    position: relative;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px
}

#product-tab .tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #e4e7ed;
    z-index: -1
}

#product-tab .tab-nav li {
    display: inline-block;
    background: #fff;
    padding: 0 15px
}

#product-tab .tab-nav li+li {
    margin-left: 15px
}

#product-tab .tab-nav li a {
    display: block;
    font-weight: 700;
    color: #8d99ae
}

#product-tab .tab-nav li.active a {
    color: #59ab6e
}

#product-tab .tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #59ab6e;
    -webkit-transition: .2s all;
    transition: .2s all
}

#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li.active a:after {
    width: 100%
}

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px
}

.rating-avg .rating-stars {
    margin-left: 10px
}

.rating .rating-stars,
.rating-avg .rating-stars {
    display: inline-block
}

.rating .rating-stars>i,
.rating-avg .rating-stars>i {
    color: #e4e7ed
}

.rating .rating-stars>i.fa-star,
.rating-avg .rating-stars>i.fa-star {
    color: #59ab6e
}

.rating li {
    margin: 5px 0
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #e4e7ed;
    width: 120px;
    margin: 0 10px;
    border-radius: 5px
}

.rating .rating-progress>div {
    background-color: #59ab6e;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px
}

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8d99ae
}

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px
}

.reviews .review-body {
    min-height: 70px
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0
}

.reviews .review-heading .date {
    color: #8d99ae;
    font-size: 10px;
    margin: 0
}

.reviews .review-heading .review-rating {
    margin-top: 5px
}

.reviews .review-heading .review-rating>i {
    color: #59ab6e
}

.reviews .review-heading .review-rating>i.fa-star.fa-star-half-o {
    color: #59ab6e
}

.reviews-pagination {
    text-align: center
}

.reviews-pagination li {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    -webkit-transition: .2s all;
    transition: .2s all
}

.reviews-pagination li:hover {
    background-color: #e4e7ed;
    color: #59ab6e
}

.reviews-pagination li.active {
    background-color: #59ab6e;
    border-color: #59ab6e;
    color: #fff;
    cursor: default
}

.reviews-pagination li a {
    display: block
}

.fa-star-half-o {
    color: #59ab6e !important
}

.review-div .input {
    margin-bottom: 15px
}

.review-div .input-rating {
    margin-bottom: 15px
}

.review-div .input-rating .stars {
    display: inline-block;
    vertical-align: top
}

.review-div .input-rating .stars input[type=radio] {
    display: none
}

.review-div .input-rating .stars>label {
    float: right;
    cursor: pointer;
    padding: 0 3px;
    margin: 0
}

.review-div .input-rating .stars>label:before {
    content: "\f006";
    font-family: FontAwesome;
    color: #e4e7ed;
    -webkit-transition: .2s all;
    transition: .2s all
}

.review-div .input-rating .stars>label:hover:before,
.review-div .input-rating .stars>label:hover~label:before {
    color: #59ab6e
}

.review-div .input-rating .stars>input:checked label:before,
.review-div .input-rating .stars>input:checked~label:before {
    content: "\f005";
    color: #59ab6e
}

.slick-next,
.slick-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #e4e7ed;
    background-color: #fff;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: .2s all;
    transition: .2s all
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background-color: #59ab6e;
    border-color: #59ab6e
}

.slick-next:before,
.slick-prev:before {
    font-family: FontAwesome;
    color: #2b2d42
}

.slick-prev:before {
    content: "\f104"
}

.slick-next:before {
    content: "\f105"
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    color: #fff
}

.slick-prev {
    left: -20px
}

.slick-next {
    right: -20px
}

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    width: 10px;
    height: 10px
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: #e4e7ed;
    border-radius: 50%
}

.slick-dots li.slick-active button:before {
    background-color: #59ab6e
}

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0
}

.product-label {
    display: none
}

@media only screen and (max-width:1201px) {
    .footer-inner {
        padding-left: 10rem
    }
}

@media only screen and (max-width:991px) {
    #top-header .header-links.pull-left {
        float: none !important
    }

    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px
    }

    .header-logo {
        float: none;
        text-align: center
    }

    .header-logo .logo {
        display: inline-block
    }

    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px
    }

    #rating {
        text-align: center
    }

    #reviews {
        margin-top: 30px;
        margin-bottom: 30px
    }

    .footer-inner {
        padding-left: 10rem
    }
}

@media only screen and (max-width:767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px
    }

    .section-tab-nav li {
        margin-top: 10px
    }
}

@media only screen and (max-width:480px) {
    [class*=col-xs] {
        width: 100%
    }

    .store-grid {
        float: none;
        margin-top: 10px
    }

    .store-pagination {
        float: none;
        margin-top: 10px
    }

    .footer-inner {
        padding-left: 5rem
    }
}