:root{
	--lightmuted-font-color: #e4e4e4;
	--darkmuted-font-color: #545454;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--main-bg);
}

header .topbar {
    background-color: var(--top-bar-bg);
}

header .topbar .container {
    max-width: 1250px;
}

header .topbar .left-nav li {
    border-right: 1px solid rgba(230, 230, 230, .4);
    position: relative;
}

header .topbar .left-nav li:last-child {
    border-right: 0;
}

header .topbar .left-nav a {
    font-size: 11px;
    display: block;
    height: 32px;
    padding: 8px 20px;
    text-decoration: none;
}


header .topbar .left-nav .topbar_lang_flag a {
    letter-spacing: 2px;
    color: var(--top-bar-color);
    font-weight: 500;
    min-width: 88px;
    text-align: center;
}

header .topbar .left-nav .topbar_currency a {
    color: var(--top-bar-color);
    font-weight: 400;
    letter-spacing: .1px;
    text-align: center;
}

header .topbar .left-nav .topbar_currency > a::after {
    content: "\f0d7";
    font-size: 100%;
    color: #fff;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    top: 50%;
    -webkit-transform: translateY(-50%);
    margin-left: 11px;
    transform: translateY(-50%);
    color: var(--top-bar-color);
}

header .topbar .left-nav .tel {
    display: block;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--top-bar-color);
}

header .topbar .left-nav .tel i {
    font-size: 18px;
    margin-right: 8px;
}

header .topbar .left-nav .sub-menu {
    display: none;
    position: absolute;
    list-style: none;
    width: 100%;
}

header .topbar .left-nav .sub-menu li a {
    transition: .3s;
    color: var(--top-bar-color);
    background-color: var(--top-bar-bg);
}

header .topbar .left-nav .sub-menu li:hover a {
    color:var(--first-nav-active-item-color);
}

header .topbar .left-nav .topbar_currency .sub-menu li a {
    font-size: 12px;
}

header .topbar .left-nav .topbar_currency .sub-menu li {
    border-bottom: solid 1px #ddd;
    border-right: 0;
}

header .topbar .left-nav .topbar_currency .sub-menu li:last-child {
    border-bottom: 0;
}

header .topbar .right-nav li {
    padding: 0px 15px 0px 10px;
    border-right: 1px solid rgba(230, 230, 230, .4);
    position: relative;
}

header .topbar .right-nav li:first-child {
    border-left: 1px solid rgba(230, 230, 230, .4);
}

header .topbar .right-nav li a {
    font-size: 11px;
    display: flex;
    align-items: center;
    color: var(--top-bar-color);
    text-decoration: none;
}

header .topbar .right-nav li a .iconbox {
    width: 15px;
    display: block;
    height: 32px;
    position: relative;
    margin-right: 10px;
    overflow: hidden;
}

header .topbar .right-nav li a .iconbox i {
    position: absolute;
    font-size: 12px;
    color:  var(--top-bar-color);
    line-height: 32px;
    text-align: center;
    width: 100%;
    font-weight: 600;
}

header .topbar .right-nav li a .iconbox .firsticon {
    bottom: 0;
    transition: .3s;
    opacity: 1;
}

header .topbar .right-nav li a .iconbox .second-icon {
    top: 100%;
    transition: .3s;
    opacity: 0;
}

header .topbar .right-nav li:hover a .iconbox .firsticon {
    bottom: 100%;
    opacity: 0;
}

header .topbar .right-nav li:hover a .iconbox .second-icon {
    top: 0;
    opacity: 1;
}

header .topbar .right-nav .social {
    padding-left: 10px;
}

header .topbar .right-nav .social li {
    padding: 0 10px;
    border: 0
}

header .topbar .right-nav .social li a .iconbox {
    margin: 0;
}

header .topbar .right-nav .social li a .iconbox i {
    font-weight: 400;
    font-size: 13px;
}

header .topbar .right-nav .social li a .iconbox .second-icon.icon-facebook {
    color: #3b5998 !important;
}

header .topbar .right-nav .social li a .iconbox .second-icon.icon-twitter {
    color: #55acee !important;
}

header .topbar .right-nav .social li a .iconbox .second-icon.icon-youtube-play {
    color: #cd201f !important;
}

header .mobile-topbar {
    display: none;
}

.d-none-desktop {
    display: block;
}


@media(max-width:1280px) {
    header .topbar .container {
        max-width: 970px;
    }
}

@media(min-width:1140.01px) {
    header .topbar .left-nav .sub-menu {
        display: none !important;
    }

    header .topbar .left-nav li:hover .sub-menu {
        display: block !important;
    }

    .d-none-desktop{
        display: none;
    }
}

header .topbar .nav > li > a.submenu-link::after {
	content: "\f107" !important;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	top: 50%;
	-webkit-transform: translateY(-50%);
	margin-left: 5px !important;
	transform: translateY(-50%);
	color: #6a6a6a;
	font-size: 11px !important;
}
	
@media(max-width:1140px) {
    header .topbar {
        padding: 1px 0;
    }

    header .topbar .container {
        max-width: 100%;
        padding: 0;
    }

    header .topbar .left-nav .tel-nmb {
        display: none;
        visibility: hidden;
    }

    .d-desktop{
        display: none;
    }

    header .topbar .left-nav {
        width: 50%;
    }

    header .topbar .left-nav > li {
        border-right: 0;
        width: 100%;
    }

    header .topbar .nav.left-nav > li:first-child {
        border-right: 1px solid #e4e4e4;
    }

    header .topbar .left-nav > li:hover .sub-menu {
        display: none;
    }
}


header .main-menu {
    background-color: var(--first-nav-bg);
    padding: 2px 10px;
    transition: .3s ease;
    border-bottom: 1px solid var(--top-bar-border-b);
    box-shadow: 1px 2px 2px rgba(0,0,0,0.2);
}

header .main-menu .wrapper {
    align-items: center
}

header .main-menu .wrapper .menu {
    margin-left: auto;
    margin-right: 5px;
}

header .main-menu .wrapper .menu .nav-item {
    padding: 0 9px;
}

header .main-menu .wrapper .menu .nav-link {
    padding: 0 8px;
    height: 27px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize !important;
    letter-spacing: .05em;
    color:var(--first-nav-item-color);
    line-height: 27px;
    border-radius: 2px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    transition: .3s;
    border-bottom: 2px solid;
}

header .main-menu .wrapper .menu .nav-item:hover .nav-link,
header .main-menu .wrapper .menu .nav-item.active .nav-link {
    color: var(--first-nav-active-item-color);
}

header .main-menu .wrapper .menu .nav-link::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--first-nav-active-item-bg);
    position: absolute;
    left: 0;
    top: 100%;
    border-radius: 2px;
    z-index: -1;
    transition: .3s;
}

header .main-menu .wrapper .menu .nav-item:hover .nav-link::before,
header .main-menu .wrapper .menu .nav-item.active .nav-link::before {
    top: 0;
}

header .main-menu .wrapper .right-menu .nav {
    align-items: center;
}

header .main-menu .wrapper .right-menu li a {
    color: var(--first-nav-item-color);
    position: relative;
    padding: 0;
    margin-left: 10px;
}

header .main-menu .wrapper .right-menu li a .iconbox {
    width: 35px;
    height: 35px;
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden;
}

header .main-menu .wrapper .right-menu li a .iconbox i {
    position: absolute;
    width: 100%;
    display: block;
    line-height: 35px;
    font-size: 20px;
}

header .main-menu .wrapper .right-menu li a .iconbox .firsticon {
    bottom: 0;
    transition: .3s;
    opacity: 1;
}

header .main-menu .wrapper .right-menu li a .iconbox .second-icon {
    top: 100%;
    transition: .3s;
    opacity: 0;
}

header .main-menu .wrapper .right-menu li a .count {
    position: absolute;
    width: 15px;
    height: 15px;
    top: -8px;
    right: -8px;
    background-color: #f1f1f1;
    color: #424242;
    border-top-left-radius: 40%;
    border-top-right-radius: 40%;
    border-bottom-right-radius: 40%;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
    z-index: 1;
}

header .main-menu .wrapper .right-menu li a .count.active {
    background-color:var(--first-nav-active-item-bg);
    color: var(--first-nav-active-item-color);
}

header .main-menu .wrapper .right-menu .user,
header .main-menu .wrapper .right-menu .menu-toggler {
    display: none;
}

header .main-menu .navigation {
    display: none;
}

header .mobilenavbar {
    display: none;
}

@media(min-width:1140.01px) {
    header .main-menu .wrapper .right-menu li:hover a .iconbox .firsticon {
        bottom: 100%;
        opacity: 0;
    }

    header .main-menu .wrapper .right-menu li:hover a .iconbox .second-icon {
        top: 0;
        opacity: 1;
    }

    header .main-menu.scroll {
        position: fixed;
        width: 100%;
        top: -50px;
        z-index: 9999999;
        transition: .5s;
        animation: topp .3s ease;
        animation-fill-mode: forwards;
        background-color: var(--second-top-bar-bg);
        border-bottom: 1px solid var(--second-top-bar-bottom-border-color);
        box-shadow: 1px 2px 2px rgba(0,0,0,0.2);

    }

    @keyframes topp {
        0% {
            top: -50px;
            opacity: .5
        }

        100% {
            top: 0px;
            opacity: 1;
        }
    }

    header .main-menu.scroll img {
        width: auto;
    }
}

@media(max-width:1140px) {
    header .main-menu .wrapper .menu {
        display: none;
    }

    header .main-menu .wrapper .right-menu {
        margin-left: auto;
    }
}

@media(max-width:1140px) {
    header .main-menu {
        padding: 14px 0px;
    }

    header .main-menu .container-fluid {
        padding: 0 5px;
    }

    header .main-menu .wrapper .logo img {
        width: auto;
    }

    header .main-menu .wrapper .right-menu .user,
    header .main-menu .wrapper .right-menu .menu-toggler {
        display: block;
    }

    header .main-menu .wrapper .right-menu li a .iconbox i {
        font-size: 22px;
    }

    header .main-menu .wrapper .right-menu .wishlist {
        display: none;
    }

    header .main-menu .wrapper .right-menu .icon-circle2 {
        font-size: 5px !important;
        display: block;
        position: relative;
        line-height: 5px;
        margin-bottom: 4px;
    }

    header .main-menu .wrapper .right-menu .toggler {
        width: 35px;
        display: flex;
        text-align: center;
        height: 35px;
        flex-direction: column;
        justify-content: center;
    }

    header .main-menu .wrapper .right-menu .icon-circle2:last-child {
        margin-bottom: 0;
    }

    header .main-menu .wrapper .menu {
        position: fixed;
        display: block;
        width: 300px;
        z-index: 999999;
        height: 100vh;
        top: 0;
        background-color: var(--secondary-bg);
        right: -300px;
        margin: 0;
        transition: .5s ease;
    }

    header .main-menu .wrapper .menu.active {
        right: 0;
    }

    header .main-menu .menu .navigation {
        display: block;
    }

    header .main-menu .menu .navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 66px;
        padding: 20px 15px;
        font-size: 13px;
        text-transform: uppercase;
        color: var(--side-menu-header-color);
        position: relative;
        background-color: var(--side-menu-header-bg);
    }

    header .main-menu .menu .navigation p {
        margin: 0;
    }

    header .main-menu .menu .navigation .close-btn {
        position: relative;
        display: block;
        width: 20px;
        height: 20px;
    }

    header .main-menu .menu .navigation .close-btn::before {
        content: "";
        position: absolute;
        width: 2px;
        height: 16px;
        background-color: var(--side-menu-active-color) !important;
        top: calc(50% - 8px);
        left: calc(50% - 1px);
        transform: rotate(45deg);
    }

    header .main-menu .menu .navigation .close-btn::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 2px;
        background-color: var(--side-menu-active-color) !important;
        transform: rotate(45deg);
        left: calc(50% - 8px);
        top: calc(50% - 1px);
    }

    header .main-menu .wrapper .menu .nav {
        flex-direction: column;
        text-align: center;
        overflow: scroll;
        height: calc(100vh - 66px);
        background-color: var(--side-menu-body-bg);
    }

    header .main-menu .wrapper .menu .nav li {
        padding: 0 10px;
    }

    header .main-menu .wrapper .menu .nav li a {
        border-bottom: 2px solid var(--side-menu-body-bg) !important;
        color: var(--side-menu-body-color) !important;
        font-weight: 400;
        font-size: 13px;
        height: auto;
        padding: 12px;
    }

    header .main-menu .wrapper .menu .nav li a::before {
        display: none;
    }

    header .main-menu .wrapper .menu .nav li.active a {
        color: var(--side-menu-active-color) !important
    }

    header .mobilenavbar {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--mobile-btmbar-bg);
        padding: 7px 0 5px;
        z-index: 999;

    }

    header .mobilenavbar .nav {
        display: flex;
        width: 100%;
    }

    header .mobilenavbar .nav li {
        flex: 1;
        color: var(--mobile-btmbar-ft);
        font-size: 14px;
        text-align: center;
    }

    header .mobilenavbar .nav li span {
        display: block;
        margin-top: -2px;
        line-height: 18px;
    }

    header .mobilenavbar .nav li a {
        display: inline-block;
        color: var(--mobile-btmbar-ft);
        font-size: 22px;
        line-height: 25px;
        padding: 0 10px;
        text-decoration: none;
        position: relative;
    }

    header .mobilenavbar .nav li a .count {
        position: absolute;
        width: 15px;
        height: 15px;
        top: -1px;
        right: 2px;
        background-color: var(--main-color);
        color: var(--main-bg);
        border-top-left-radius: 40%;
        border-top-right-radius: 40%;
        border-bottom-right-radius: 40%;
        line-height: 15px;
        font-size: 10px;
        text-align: center;
        z-index: 1;
    }
}

.sidebar-open-overlay {
    z-index: 100001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    content: '';
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: opacity .8s ease, visibility .9s ease, transform .4s ease;
}

.sidebar-open-overlay.active {
    z-index: 99999;
    visibility: visible;
    opacity: 1;
}

.shopping-bag {
    position: fixed;
    display: block;
    width: 300px;
    z-index: 999999;
    height: 100vh;
    top: 0;
    background-color: #f3f3f3;
    right: -300px;
    margin: 0;
    transition: .5s ease;
}

.shopping-bag.active {
    right: 0;
}

.shopping-bag .head {
    border: 1px solid #eaeaec;
    font-size: 14px;
    color: #454545;
    padding: 22px 20px;
    clear: both;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopping-bag .head p {
    margin: 0;
}

.shopping-bag .head p .badge {
    display: inline-block;
    background-color: var(--first-nav-active-item-bg);
    line-height: 10px;
    height: 14px;
    min-width: 16px;
    margin-left: 3px;
    text-align: center;
    font-size: 11px;
    color: var(--first-nav-active-item-color);
    font-weight: 500;
    border-radius: 0;
    padding: 2.5px;
}

.shopping-bag .head .close-btn {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    transition: .3s;
}

.shopping-bag .head .close-btn:hover {
    transform: rotate(90deg);
}

.shopping-bag .head .close-btn::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #333;
    top: calc(50% - 8px);
    left: calc(50% - 1px);
    transform: rotate(45deg);
}

.shopping-bag .head .close-btn::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #333;
    transform: rotate(45deg);
    left: calc(50% - 8px);
    top: calc(50% - 1px);
}

.shopping-bag .body {
    position: relative;
    height: calc(100% - 67px);
}

.shopping-bag .body .noproduct {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.shopping-bag .body .noproduct p {
    font-size: 12px;
    color: #bdbdbd;
    font-weight: 500;
    margin-top: 25px;
}





section.banner img {
    width: 100%;
}

section.banner .item {
    transition: .3s;
}

section.banner .item:hover {
    transform: scale(1.1);
}

section.topCategories {
    padding: 10px 0;
}

section.topCategories .title {
    padding: 10px;
}

section.topCategories .title h4 {
    font-size: 20px;
    text-align: center;
    color: var(--main-color);
    margin: 0;
    line-height: 35px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    text-decoration: underline;
}

section.topCategories .topCategories-carousel {
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
}

.container {
    max-width: 1250px;
}

section.topCategories .topCategories-carousel a {
    text-decoration: none;
}

section.topCategories .topCategories-carousel img {
    max-width: 150px;
    margin: auto;
}

section.topCategories .topCategories-carousel p {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
    margin: 5px 0;
}

section.topCategories .topCategories-carousel .owl-nav {
    display: block;
    margin: 0;
}

section.topCategories .topCategories-carousel .owl-nav .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

section.topCategories .topCategories-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

section.topCategories .topCategories-carousel .owl-nav button {
    font-size: 30px;
    margin: 0;
    padding: 5px;
}

section.topCategories .topCategories-carousel .owl-nav button:hover {
    background-color: #fff;
    color: #000;
}

section.topCategories .topCategories-carousel .owl-nav button:focus {
    outline: 0;
}

@media(max-width:1280px) {
    .container {
        max-width: 970px;
    }
}

@media(max-width:979px) {
    .container {
        max-width: 754px;
    }
}

footer {
    background-color: var(--footer-bg);
    padding: 25px 0 40px;
}

footer .row {
    align-items: center;
}

footer .nav .nav-link {
    padding: 0;
    margin-right: 20px;
    font-size: 13px;
    color: var(--footer-color);
    font-weight: 600;
    margin-bottom: 5px;
}

footer img {
    display: block;
    margin: auto;
}

footer .social {
    text-align: right;
    padding-top: 10px;
}

footer .social a {
    margin-left: 40px;
    color: var(--footer-color);
    transition: .3s;
    text-decoration: none;
}

footer .social a:hover {
    color: var(--footer-color);
}

footer .copyright {
    color: var(--footer-color);
    font-size: 12px;
    margin: 0;
    margin-top: 10px;
}

@media(min-width:1140.1px) {
    footer .row .col-xl-4 {
        width: 33.33% !important;
    }
}

@media(max-width:1140px) {
    footer .row .col-xl-4 {
        order: 2
    }

    footer .row .col-xl-4:nth-child(2) {
        order: 0
    }

    footer .row img {
        padding: 30px 0;
    }

    footer .row .nav {
        justify-content: center;
        padding: 30px 0;
    }

    footer .row .nav .nav-item:last-child a {
        margin-right: 0;
    }

    footer .row .social {
        text-align: center;
        padding: 25px;
    }

    footer .row .social a {
        margin: 10px;
    }

    footer .copyright {
        margin-bottom: 30px;
        text-align: center;
    }
}

@media(max-width:768px) {
    footer .row img {
        padding: 0;
        margin-left: 15px;
    }

    footer .row .nav {
        justify-content: flex-start;
        padding-left: 15px;
    }

    footer .row .nav .nav-item:last-child a {
        margin-right: 0;
    }

    footer .row .social {
        padding-top: 5px;
        text-align: left;
        padding-left: 15px;
    }

    footer .row .social a {
        margin: 0px;
        margin-right: 30px;
    }

    footer .copyright {
        padding-left: 15px;
        text-align: left;
    }
	
	section.topProducts .title .see-more{
		display: none;
	}
}





section.topProducts {
    padding: 10px 0 80px;
}

section.topProducts .container-fluid {
    max-width: 1250px;
}

section.topProducts .title {
    padding: 10px;
}

section.topProducts .title h4 {
    font-size: 20px;
    text-align: center;
    color: var(--main-color);
    margin: 0;
    line-height: 35px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    text-decoration: underline;
	display: inline-block;
	text-align: center;
}

section.topProducts .title .see-more{
	font-size: 14px;
	margin-top: 15px;
	color: var(--index-prod-title-color);
	float: right;
}

.products {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
    flex-flow: wrap;
    padding-top: 15px;
}

.single-product {
    padding: 20px 12px 0px 12px;
    width: 25%;
    position: relative;
    opacity: 0;
}

.fadeIn {
    opacity: 1 !important;
    transition: opacity .4s ease;
}

.single-product .sale, .sale.tag {
    position: absolute;
    background-color: var(--tag-bg) !important;
    color: var(--tag-color);
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    z-index: 3;
    padding: 0 5px;
    top: 0;
    right: 0;
    font-size: 14px !important;
    border-radius: 2px
}

.single-product .sale.tag {
/*    top: 26px;*/
}

.single-product .top {
    position: relative;
}



.single-product img {
    width: 100%;
}

.single-product .product-image2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.single-product .buttons {
    position: absolute;
    left: 7px;
    bottom: 7px;
    display: flex;
    z-index: 999;
    opacity: 0;
    transition: opacity .3s ease;
}

.single-product:hover .product-image2 {
    z-index: 99
}

.single-product:hover .buttons {
    opacity: 1;
}

.single-product:hover .sale {
    display: none;
}

.single-product .buttons a {
    width: 45px !important;
    height: 45px !important;
    background-color: var(--btn-bg);
    transition: background-color .3s ease, color .3s ease, opacity .3s ease;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-right: 6px;
    border-radius: 3px;
    color: var(--btn-color);
    text-decoration: none;
    order: 1;
}

.products.border1 .single-product .buttons a {
    background-color: rgba(255, 255, 255, .7);
    color: var(--secondary-color);
}

.products.border1 .single-product .buttons a:hover,
.single-product .buttons a:hover {
    background-color: var(--btn-hover-bg);
}

.products.border1 .single-product .buttons a:hover {
    color: var(--btn-hover-color);
}

.products.border1 .single-product .buttons .add-to-cart span,
.single-product .buttons .add-to-cart span {
    display: none;
}

.products.border1 .single-product .buttons .add-to-cart,
.single-product .buttons .add-to-cart {
    font-size: 22px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    transition: background-color .3s ease, color .3s ease, width .3s ease;
    overflow: hidden;
}

.products.border1 .single-product .buttons a.add-to-cart {
    color: var(--btn-bg)
}

.single-product .buttons .add-to-cart:hover i {
    display: none;
}

.products.border1 .single-product .buttons .add-to-cart:hover span,
.single-product .buttons .add-to-cart:hover span {
    display: block;
    font-size: 13px;
}

.single-product .buttons .add-to-cart:hover {
    width: 130px !important;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 47px
}

.single-product .buttons .add-to-cart:hover + a + a + a,
.single-product .buttons .add-to-cart:hover + a + a,
.single-product .buttons .add-to-cart:hover + a {
    opacity: 0;
}

.single-product .derails {
    padding: 8px;
}

.single-product .derails .links,
.single-product .derails .links a {
    color: #757575;
    font-size: 11px;
    text-transform: uppercase;
    transition: color .3s ease;
    text-decoration: none;
    margin-bottom: 3px;
}

.single-product .derails .links a:hover {
    color: var(--btn-hover-color);
}

.single-product .derails .title {
    color: var(--index-prod-title-color);
    font-weight: 500;
    font-size: 16pxem;
    padding: 0;
    display: block;
    text-decoration: none;
    transition: color .3s ease;
    font-weight: 600;
}

.single-product .derails .title:hover {
    color: var(--prod-title-hover-color);
}

.products.border1 .single-product .derails .title {
    color: var(--prod-title-color);
    font-size: 15px;
}

.single-product .derails .price {
    font-size: 16px;
    color: var(--prod-price-color);
    margin-bottom: 0;
    font-weight: bold;
}

.single-product .derails .price .old-price {
    font-size: 14px;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 5px;
    color: var(--prod-dprice-color);
    font-weight: lighter;
}

.single-product .derails .items-sold {
    line-height: 5px;
    margin: 0;
    font-size: 15px;
    color: var(--index-title-color);
    display: inline-block;
    position: relative;
    top: 5px;
    padding: 0;
}


@media(max-width:1140px) {
    .single-product {
        width: 33.33%;
    }

    .single-product .sale {
        font-size: 12px !important;
        line-height: 18px
    }

    .single-product .derails .links {
        display: none;
    }

    .single-product .derails .title {
        font-size: 12px !important;
    }

    .single-product .derails .price {
        font-size: 12px;
    }

    .single-product .derails .price .old-price {
        font-size: 11px;
    }

    .single-product .derails .items-sold {
        font-size: 12px;
    }

    .single-product .buttons a {
        width: 30px !important;
        height: 30px !important;
        line-height: 32px;
        font-size: 14px;
        margin: 6px 6px 0;
        text-transform: uppercase;
    }

    .single-product .buttons {
        flex-flow: wrap;
        justify-content: center;
        width: 100%;
        left: 0;
    }

    .single-product .buttons .add-to-cart span {
        display: block !important;
        font-size: 13px;
    }

    .single-product .buttons .add-to-cart i {
        display: none;
    }

    .single-product .buttons .add-to-cart {
        font-size: 12px;
        text-align: center;
        width: calc(100% - 16px) !important;
        order: 2;
        display: block;
        margin: 0;
        margin-top: 6px;
        color: #fff
    }

    .single-product .buttons .add-to-cart:hover {
        width: calc(100% - 16px) !important;
        font-size: 12px;
        line-height: 32px
    }
}

@media(max-width:768px) {

    section.categories .container-fluid,
    section.topProducts .container-fluid {
        padding: 0 12px;
    }

    .single-product {
        width: 50%;
		padding-top: 2px;
    }
	
	.products {
		padding-top: 0px;
	}
}

@media(max-width:320px) {
    .single-product {
        width: 100%;
		padding-top: 0px;
    }
}


section.cart {
    padding: 50px 0;
    min-height: calc(100vh - 250px);
}

section.cart .wrapper {
    display: flex;
}

section.cart .wrapper .details {
    width: 72%;
    padding-right: 20px;
}

section.cart .wrapper .details th {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 15px 18px
}

section.cart .wrapper .details th:nth-child(3) {
    text-align: center;
    width: 300px;
}

section.cart .wrapper table {
    border-collapse: collapse;
}

section.cart .wrapper .details .cart-item {
    background-color: rgba(0, 0, 0, .02);
}

section.cart .wrapper table img {
    width: 80px;
}

section.cart .wrapper table tbody td {
    padding: 20px;
    vertical-align: middle;
    color: #000;
}

section.cart .wrapper table td:first-child {
    padding-right: 0;
}

section.cart .wrapper table .close-btn {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: .3s ease;
}

section.cart .wrapper table .close-btn:hover {
    background-color: #000;
    color: #fff;
    transform: rotate(90deg);
}

section.cart .wrapper table .product-name a {
    color: var(--main-color);
    font-size: 16px;
    text-decoration: none;
}

section.cart .wrapper table .product-price {
    font-size: 14px;
}

section.cart .wrapper table td.product-subtotal {
    color:var(--first-nav-active-item-bg);
}

section.cart .wrapper table td.product-quantity .quantity {
    display: flex;
    align-items: center
}

section.cart .wrapper table td.product-quantity .quantity .button {
    border: 0;
    font-size: 9px;
    color: #000;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}
section.cart .wrapper table td.product-quantity .quantity .button i{
    color: #707070;
    transition: .3s ease;
}
section.cart .wrapper table td.product-quantity .quantity .button:hover i{
    opacity: .5;
}

section.cart .wrapper table td.product-quantity .quantity .button:focus {
    outline: 0;
}


section.cart .wrapper table td.product-quantity .quantity .qty {
    width: 40px;
    text-align: center;
    margin: 0 2px;
    border: 0;
    font-size: 16px;
    background-color: transparent;
    color: #707070;
}

section.cart .wrapper table tfoot .buttons {
    display: flex;
    margin-top: 25px;
}

section.cart .wrapper table tfoot .buttons input {
    padding: 10px 20px;
    font-size: 14px;
    border: 0;
    background-color: #0000000d;
    max-width: 150px;
    text-align: center;
    margin-right: 15px;
    border-radius: 3px;
}

section.cart .wrapper table tfoot .buttons button {
    border: 0;
    font-size: 14px;
    padding: 10px 24px;
    color: var(--btn-color);
    font-weight: 500;
    border-radius: 3px;
    background-color:var(--first-nav-active-item-bg);
    transition: background-color .3s ease;
}

section.cart .wrapper table tfoot .buttons button span {
    margin-left: 15px;
    display: inline-block;
}

section.cart .wrapper table tfoot .buttons button:disabled {
    opacity: .6;
}

section.cart .wrapper table tfoot .buttons button:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

section.cart .wrapper table tfoot .buttons button:hover span {
    animation: rotate-icon 2s linear;
    animation-iteration-count: infinite;
}

@keyframes rotate-icon {
    100% {
        transform: rotate(360deg)
    }
}

section.cart .wrapper table tfoot .buttons button.update-cart {
    margin-left: auto;
}

.btn-primary {
    background-color:var(--btn-bg);
    color: var(--btn-color);
    padding: 10px 24px;
    border: 0;
    transition: background-color .3s ease;
}

.btn-primary:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

.btn-primary:focus {
    box-shadow: none !important;
	background-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-color) !important;
}

.btn-primary:active {
    background-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-color) !important;
}

.btn-secondary {
    background-color:var(--btn-hover-bg);
    color: var(--btn-hover-color);
    padding: 10px 24px;
    border: 0;
    transition: background-color .3s ease;
}

.btn-secondary:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

.btn-secondary:focus {
    box-shadow: none !important;
	background-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-color) !important;
}

.btn-secondary:active {
    background-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-color) !important;
}

section.cart .wrapper .total {
    width: 28%;
    padding-left: 20px;
    min-width: 300px;
}

section.cart .wrapper .total h3 {
    font-size: 16px;
    color: #707070;
    padding: 8px 15px 18px;
    margin: 0;
}

section.cart .wrapper .total .table-wrap {
    background-color: rgba(0, 0, 0, .02);
    width: 100%;
    padding: 15px;
}

section.cart .wrapper .total table {
    width: 100%;
}

section.cart .wrapper .total table tr.cart-subtotal th {
    font-size: 14px;
    font-weight: 500;
}

section.cart .wrapper .total table tr.cart-subtotal td {
    font-size: 14px;
    text-align: right;
    padding-top: 10px;
}

section.cart .wrapper .total table tr.order-total {
    background-color: var(--secondary-bg);
    color: var(--secondary-color);
}

section.cart .wrapper .total table tr.order-total th {
    font-weight: 500;
    padding: 12px 15px;
}

section.cart .wrapper .total table tr.order-total td {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 15px
}

section.cart .wrapper .total .checkout {
    width: 100%;
    display: block;
    margin-top: 10px;
    background-color:var(--btn-bg);
    color: var(--btn-color);
    text-align: center;
    padding: 16px 22px;
    text-decoration: none;
    transition: background-color .3s ease;
}

section.cart .wrapper .total .checkout i {
    margin-left: 4px;
    position: relative;
    left: 0;
}

section.cart .wrapper .total .checkout:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

section.cart .wrapper .total .checkout:hover i {
    animation: rightbtn .5s;
}

@keyframes iconrightbtn {
    50% {
        left: 0px;
        opacity: 1
    }

    50% {
        left: 20px;
        opacity: 0
    }

    51% {
        left: -20px;
        opacity: 0
    }

    100% {
        left: 0px;
        opacity: 1
    }
}

@keyframes iconleftbtn {
    50% {
        left: 0px;
        opacity: 1
    }

    50% {
        left: -20px;
        opacity: 0
    }

    51% {
        left: 20px;
        opacity: 0
    }

    100% {
        left: 0px;
        opacity: 1
    }
}



@media(max-width:1020px) {
    section.cart .wrapper {
        flex-direction: column;
    }

    section.cart .wrapper .total {
        width: 100%;
        padding: 0;
        margin-top: 100px;
        min-width: auto;
    }

    section.cart .wrapper .details {
        width: 100%;
        padding: 0;
    }

    section.cart .wrapper .details table {
        width: 100%;
    }
}

@media(max-width:768px) {
    section.cart .wrapper .details table thead {
        display: none;
    }

    section.cart .wrapper .details .cart-item {
        display: flex !important;
        padding: 15px 40px 15px 80px;
        position: relative;
        flex-flow: wrap
    }

    section.cart .wrapper .details .cart-item td {
        width: 100%;
        padding: 0;
    }

    section.cart .wrapper .details .cart-item .product-remove {
        position: absolute;
        right: 5px;
        padding: 0;
        width: 35px;
    }

    section.cart .wrapper .details .cart-item .product-thumbnail {
        position: absolute;
        padding: 0;
        left: 0;
        width: 80px;
    }

    section.cart .wrapper .details .cart-item .product-name,
    section.cart .wrapper .details .cart-item .product-price {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    section.cart .wrapper .details .cart-item .product-quantity {
        padding-left: 20px;
        text-align: right;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding-bottom: 25px;
        padding-top: 10px;
    }

    section.cart .wrapper .details .cart-item .product-subtotal {
        padding-left: 20px;
    }

    section.cart .wrapper .details .buttons {
        flex-direction: column;
    }

    section.cart .wrapper .details .buttons input {
        max-width: 100%;
        width: 100%;
        order: 2;
        margin-right: 0;
    }

    section.cart .wrapper .details .buttons button {
        width: 100%;
        order: 2;
    }

    section.cart .wrapper .details .buttons button.update-cart {
        order: 1;
        margin-bottom: 25px;
    }
}






section.checkout {
    padding: 50px 0;
}

section.checkout .have-account {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    color: var(--secondary-color);
}

section.checkout .have-account i {
    margin-right: 15px;
    font-size: 16px;
}

section.checkout .have-account a {
    color:var(--first-nav-active-item-bg);
    text-decoration: none;
}

section.checkout .cuppon {
    margin-bottom: 30px;
}

section.checkout .cuppon .head {
    width: calc(100% - 33.33333333%);
    background-color: var(--secondary-bg);
    border-radius: 2px;
    font-size: 17px;
    line-height: 26px !important;
    letter-spacing: 1px;
    padding: 20px 20px 20px 55px;
}

section.checkout .cuppon .head a {
    color: var(--secondary-color);
    display: inline-block;
    text-decoration: none
}

section.checkout .cuppon .body {
    width: calc(100% - 33.33333333%);
    background-color: rgba(0, 0, 0, .02);
    padding: 20px 30px 30px;
    display: none;
}

section.checkout .cuppon .body p {
    font-size: 14px;
    color: var(--secondary-bg);
    margin-bottom: 20px;
}

section.checkout .cuppon .body input {
    padding: 10px 18px;
    border: none;
    margin: 1px 0;
    font-size: 14px;
    line-height: 21px;
    width: 52%;
    background-color: rgba(0, 0, 0, .05);
    height: 44px;
}

section.checkout .cuppon .body button {
    padding: 11px 22px;
    font-size: 14px;
    height: 44px;
    margin-left: 12px;
    font-weight: 500;
}

section.checkout .wrapper {}

section.checkout .wrapper .billing-details {
    width: calc(100% - 33.33333333%);
    padding: 0 32px 0 15px;
}

section.checkout .wrapper .total {
    width: 33.33333333%;
}

section.checkout .wrapper .billing-details h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

section.checkout .wrapper .billing-details .billing-details-title {
    padding: 0 5px;
}

section.checkout .wrapper .billing-details label {
    line-height: 24px;
    color: #000;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

section.checkout .wrapper .billing-details label span {
    color:var(--first-nav-active-item-bg);
    font-weight: bold;
}

section.checkout .wrapper .billing-details .form-control {
    border: none;
    background-color: rgba(0, 0, 0, .05);
    padding: 12px 17px;
    font-size: 14px;
    font-weight: 400;
    height: 44px;
    color: #000;
    border-radius: 0;
    border-bottom: 0;
    transition: .2s;
}

section.checkout .wrapper .billing-details .form-control:focus {
    outline: 0;
    box-shadow: none !important;
    border-bottom: 2px solidvar(--first-nav-active-item-bg);
}

section.checkout .wrapper .billing-details select.form-control:focus {
    outline: 0;
    box-shadow: none !important;
    border-bottom: 0;
}

section.checkout .wrapper .billing-details .form-control::placeholder {
    font-size: 12px;
}

section.checkout .wrapper .billing-details .form-control:focus::placeholder {
    opacity: 0;
}

section.checkout .wrapper .billing-details textarea.form-control {
    height: 80px;
}

section.checkout .wrapper .billing-details textarea.form-control::placeholder {
    font-size: 14px;
}

section.checkout .wrapper .billing-details .ch-box {
    margin-bottom: 80px !important;
}

section.checkout .wrapper .billing-details .ch-box input {
    display: inline-block;
    position: relative;
    top: 2px;
}

section.checkout .wrapper .billing-details .ch-box label {
    margin-left: 10px;
}

section.checkout .wrapper .billing-details .input-wrap {
    margin-bottom: 25px;
}

section.checkout .wrapper .billing-details .inputs-wrap {
    justify-content: space-between
}

section.checkout .wrapper .billing-details .inputs-wrap .input-wrap {
    width: calc(50% - 16px)
}

section.checkout .wrapper .total h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    margin-bottom: 10px;
}

section.checkout .wrapper .total .table-wrap {
    background-color: rgba(0, 0, 0, .02);
    width: 100%;
    padding: 20px 18px 15px;

}

section.checkout .wrapper .total table {
    width: 100%;
}

section.checkout .wrapper .total table thead th {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    padding: 20px 0px;
}

section.checkout .wrapper .total table thead th:last-child {
    padding: 20px 20px;
    max-width: 90px
}

section.checkout .wrapper .total table tr td {
    color: #000;
    font-size: 14px;
    padding: 10px 0;
}

section.checkout .wrapper .total table tr td:last-child {
    padding-left: 5px;
    text-align: center;
}

section.checkout .wrapper .total table .product {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

section.checkout .wrapper .total table .vat td,
section.checkout .wrapper .total table .cart-subtotal td {
    padding: 20px 0px 20px;
}

section.checkout .wrapper .total table .vat td:last-child,
section.checkout .wrapper .total table .cart-subtotal td:last-child {
    color:#000;
}

section.checkout .wrapper .total table .order-total {
    background-color: var(--secondary-bg);
}

section.checkout .wrapper .total table .order-total td {
    color: var(--secondary-color);
    padding: 12px;
    font-size: 16px;
}

section.checkout .wrapper .total table .order-total td:last-child {
    padding: 0;
    font-weight: 600;
}

section.checkout .wrapper .total .payment {
    padding-top: 30px;
}

section.checkout .wrapper .total .payment .collapsepayments label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-bottom: 0;
    max-width: calc(100% - 30px);
}

section.checkout .wrapper .total .payment .collapsepayments input {
    position: relative;
    top: 2px;
}

section.checkout .wrapper .total .payment .collapsepayments input:checked + label {
    color:var(--first-nav-active-item-bg);
}

section.checkout .wrapper .total .payment .collapsepayments .input-wrap:first-child p {
    display: block;
}

section.checkout .wrapper .total .payment .collapsepayments img {
    display: inline;
}

section.checkout .wrapper .total .payment .collapsepayments p {
    font-size: 13px;
    color: #8a8a8a;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
}

input[type='radio']:checked:before {
    content: '';
    display: block;
    width: 45%;
    height: 45%;
    border-radius: 50%;
    transform: translate(50%, 50%);
    background-color:var(--first-nav-active-item-bg);
}

section.checkout .wrapper .total .recive-email-wrap {
    margin-top: 5px;
}

section.checkout .wrapper .total .recive-email-wrap label {
    line-height: 24px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 12px;
    display: inline;
    margin-left: 10px;
}

section.checkout .wrapper .total .recive-email-wrap input {
    position: relative;
    top: 2px;
}

section.checkout .wrapper .total .plaicy {
    padding: 30px 25px 5px;
    margin-bottom: 0;
    font-size: 13px;
    color: #8a8a8a;
    line-height: 24px
}

section.checkout .wrapper .total .plaicy a {
    color:var(--first-nav-active-item-bg);
    text-decoration: none;
}

section.checkout .wrapper .total .place-order {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    padding: 17px 10px;
}


@media (max-width:768px) {
    section.checkout .cuppon {
        padding: 0 15px;
    }

    section.checkout .cuppon .head,
    section.checkout .cuppon .body {
        width: 100% !important;
    }

    section.checkout .cuppon .body input {
        width: 100%;
        margin-bottom: 20px;
    }

    section.checkout .cuppon .body button {
        margin-left: 0;
    }

    section.checkout .wrapper {
        flex-flow: wrap;
    }

    section.checkout .wrapper .billing-details {
        width: 100%;
        padding-right: 15px;
    }

    section.checkout .wrapper .billing-details .inputs-wrap {
        flex-direction: column;
    }

    section.checkout .wrapper .billing-details .input-wrap {
        width: 100% !importaNT;
    }

    section.checkout .wrapper .total {
        width: 100%;
        padding: 15px;
    }

    section.checkout .wrapper .total .place-order {
        padding: 10px;
    }
}


section.categories {
    padding: 30px 0;
}

section.categories .container-fluid {
    max-width: 1250px;
}

section.categories .products {
    padding-top: 30px;
}



.filter .filter-bar {
    display: flex;
    align-items: center;
    padding: 10px 0 0;
}

.filter .advance-toggler {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 500;
    width: 90px;
    margin-right: auto;
    padding: 10px 0;
    cursor: pointer;
}

.togglelines {
    display: block;
    position: relative;
    width: 22px;
    height: 3px;
    background-color: var(--main-color);
    transition: background .01s ease .3s;
    margin-right: 12px;
}

.togglelines:after,
.togglelines:before {
    content: "";
    width: 22px;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    top: -7px;
    transition: top .3s ease .3s, transform .3s ease 0s, width .01s ease .3s;
}

.togglelines:after {
    top: 7px;
    width: 12px;
}

.open .togglelines {
    background-color: 0 0;
}

.open .togglelines:after,
.open .togglelines:before {
    transition: top .3s ease, transform .3s ease .3s, width .01s ease .3s;
}

.open .togglelines:before {
    top: 0;
    transform: rotate(-45deg);
}

.open .togglelines:after {
    top: 0;
    transform: rotate(45deg);
    width: 22px;
}


.filter .short {
    color: var(--secondary-color);
    font-size: 14px;
    background-color: var(--secondary-bg);
    width: 200px;
    text-align: center;
    border-radius: 17px;
    height: 35px;
    line-height: 35px;
    background-color: #f9f9f9;
    position: relative;
    cursor: pointer;
    margin: 0 20px;
}

.filter .short::after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 7px;
    width: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all .15s ease-in-out;
    z-index: 9999;

}

.filter .short.open {
    border-radius: 0;
    box-shadow: 0 3px 6px 0 #00000016;
}

.filter .short.open::after {
    transform: rotate(-135deg)
}

.filter .short .sort-list {
    width: auto;
    min-width: 100%;
    right: 25px;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 200px;
    overflow-y: scroll !important;
    transform-origin: 50% 0;
    transform: scale(.75) translateY(-21px);
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9;
    width: 100%;
    padding-right: 5px;
}

.filter .short .sort-list li {
    cursor: pointer;
    line-height: 40px;
    list-style: none;
    transition: all .2s;
}

.filter .short .sort-list li a {
    width: 100%;
    color: var(--secondary-color);
    font-size: 12px;
    text-decoration: none;
    padding-right: 10px;
    padding-left: 10px;
    display: block;
}

.filter .short .sort-list li a:hover {
    background-color:var(--first-nav-active-item-bg);
    color: #fff;
}

.filter .short.open .sort-list {
    margin-top: 0;
    background-color: #f9f9f9;
    box-shadow: 0 8px 6px 0 #00000016;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0) !important;
}



.filter .short .sort-list::-webkit-scrollbar {
    width: 4px;
}

.filter .short .sort-list::-webkit-scrollbar-thumb {
    background-color: #eee;
}



.filter .view {
    padding: 12px 20px;
}

.filter .view p {
    margin: 0;
    display: flex;
    align-items: center;
    color: var(--main-bg);
}

.filter .view p a {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    line-height: 10px;
    margin-left: 10px;
    color: #a9a9a9;
}

.filter .view p span {
    padding-right: 5px;
}

.filter .view p a {
    font-size: 20px;
    transition: .3s;
}

.filter .view p a.active,
.filter .view p a:hover {
    color:var(--main-color);
}

.filter .search {
    padding-left: 20px;
    position: relative;
}

.filter .search .search-btn {
    color: #000;
    cursor: pointer;
    position: relative;
    padding: 0 35px;
    padding: 0 20px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    box-sizing: border-box;
    width: auto;
    border-radius: 17px;
    background-color: #f9f9f9;
    text-decoration: none;
    font-size: 13px;
}

.filter .search.open .search-btn {
    background-color: #fff;

}

.filter .search .search-btn span {
    margin-right: 20px;
    transition: .4s;
}

.filter .search .search-btn i {
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.filter .search.open .search-btn span,
.filter .search.open .search-btn i {
    opacity: 0;
}

.filter .search form {
    position: absolute;
    top: 0;
    right: 55px;
    width: 0;
    z-index: 9999;
    overflow: hidden;
    transition: .5s ease;
}

.filter .search.open form {
    width: 500%;
}

.filter .search form input {
    right: 0;
    width: 100%;
    height: 35px;
    border: 0;
    background-color: #f9f9f9;
    border-radius: 30px;
    padding: 5px 40px;
    font-size: 14px;
}

.filter .search form i {
    position: absolute;
    right: 20px;
    top: 11px;
    font-size: 14px;
}


.filter .search .close-btn {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    background-color: #fff;
}

.filter .search.open .close-btn {
    opacity: 1 !important;
    pointer-events: all;
}

.filter .search .close-btn::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #666;
    top: calc(50% - 8px);
    left: calc(50% - 1px);
    transform: rotate(45deg);
}

.filter .search .close-btn::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #666;
    transform: rotate(45deg);
    left: calc(50% - 8px);
    top: calc(50% - 1px);
}

.filter .advance-filter {
    width: 100%;
    padding: 20px 30px;
    background-color: #f5f5f5;
    position: relative;
    top: 10px;
    display: none;
}

.filter .advance-filter .types {
    display: flex;
}

.filter .advance-filter .type {
    padding-right: 35px;
    width: calc(25% - 10px);
}

.filter .advance-filter .type .heading {
    padding: 15px 20px;
    font-size: 16px;
    color: #505050;
    background-color: #00000005;
    width: 100%;
    margin-bottom: 12px;
}

.filter .advance-filter .type ul {
    padding-left: 27px !important;
    padding-right: 10px;
    list-style: none;
}

.filter .advance-filter .type ul li a {
    color: #999;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    text-decoration: none;
}

.filter .advance-filter .type ul li a:hover {
    color: #111;
}

.filter .advance-filter .type ul li.active a {
    color:var(--first-nav-active-item-bg);
}

.filter .advance-filter .showing-result {
    padding-top: 13px;
    font-size: 13px;
    color: #7c7c7c;
    text-align: right;
    margin-bottom: 5px;
}

@media (max-width:1140px) {

    .filter,
    .filter .advance-filter {
        display: none !important;
    }
}



.product {
    padding: 50px 0 0;
}

.product .wrapper {
    display: flex;
    align-items: flex-start;
}

.product .wrapper .left-image {
    width: 60%;
    display: flex;
    align-items: flex-start
}

.product .wrapper .right-content {
    width: 40%;
}

.product .wrapper .left-image .gallery-thumbs {
    width: 115px;
    margin-right: 15px;

    height: 400px;
}

.product .wrapper .left-image .gallery-thumbs .swiper-slide {
    height: auto;    
}


.product .wrapper .left-image .gallery-main {
    width: calc(100% - 130px);
}

.product .wrapper .left-image .gallery-thumbs .swiper-slide {
    padding: 2px;
    transition: .3s ease;
    opacity: 1;
}

.product .wrapper .left-image .gallery-thumbs .swiper-slide:hover,
.product .wrapper .left-image .gallery-thumbs .swiper-slide-thumb-active {
    
    opacity: 0.4
}

.product .wrapper .left-image .gallery-thumbs img {
    width: 100%;
    border-radius: 3px;

    object-fit: contain;
    height: 100%;
    display: block;
}

.product .wrapper .left-image .gallery-main img {
    width: 100%;
    border-radius: 5px;
}

.product .wrapper .left-image .gallery-main .popup {
    position: absolute;
    z-index: 9999;
    bottom: 10px;
    display: flex;
    left: 10px;
}

.product .wrapper .left-image .gallery-main .popup i {
    width: 28px;
    height: 28px;
    display: inline-block;
    text-align: center;
    background-color: #333;
    line-height: 28px;
    border-radius: 50%;
    font-size: 13px;
    padding: 1px;
    color: #fff;
    transition: .3s ease;
}

.product .wrapper .left-image .gallery-main .popup .lightgallery-open {
    margin-right: 10px;
}

.product .wrapper .left-image .gallery-main .popup .lightgallery-open i {
    background-color: #fff;
    color: #333;
}

.product .wrapper .left-image .gallery-main .popup .lightgallery-open:hover {
    transform: scale(1.05);
}

.product .wrapper .left-image .gallery-main .popup .video-gallery a {
    text-decoration: none
}
.product .wrapper .left-image .gallery-main .popup .video-gallery a i{
    font-size: 11px;
    line-height: 26px
}

.product .wrapper .left-image .gallery-main .popup .video-gallery span {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    display: inherit;
    padding: 3px 5px;
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    margin-left: 2px;
}

.product .wrapper .left-image .gallery-main .popup .video-gallery:hover i {
    transform: scale(.95);
}

.product .gallery-main .swiper-button-prev::after,
.product .gallery-main .swiper-button-next::after {
    display: none;
}

.product .gallery-main .swiper-button-prev,
.product .gallery-main .swiper-button-next {
    width: 45px;
    height: 45px;
    display: block;
    z-index: 4;
    cursor: pointer;
    font-size: 16px !important;
    border: 1px solid transparent;
    color: rgba(0, 0, 0, .5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    background-color: rgba(255, 255, 255, .5);
    line-height: 45px;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
}

.product .gallery-main:hover .swiper-button-prev,
.product .gallery-main:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.product .gallery-main .swiper-button-prev:hover,
.product .gallery-main .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, .75);
}

.product .gallery-main .swiper-button-prev.swiper-button-disabled,
.product .gallery-main .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    pointer-events: none !important;
}

.product .gallery-main .swiper-button-prev i,
.product .gallery-main .swiper-button-next i {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    transition: .3s ease;
}

.product .gallery-main .swiper-button-prev i.first-icon {
    right: 0;
}

.product .gallery-main .swiper-button-prev i.second-icon {
    left: 100%;
    opacity: 0;
}

.product .gallery-main .swiper-button-prev:hover i.first-icon {
    right: 100%;
    opacity: 0;
}

.product .gallery-main .swiper-button-prev:hover i.second-icon {
    left: 0%;
    opacity: 1
}

.product .gallery-main .swiper-button-next i.first-icon {
    left: 0;
    opacity: 1;
}

.product .gallery-main .swiper-button-next i.second-icon {
    right: 100%;
    opacity: 0;
}

.product .gallery-main .swiper-button-next:hover i.first-icon {
    left: 100% !important;
    opacity: 0;
}

.product .gallery-main .swiper-button-next:hover i.second-icon {
    right: 0%;
    opacity: 1;
}

.product .right-content {
    padding-left: 38px;
}

.product .right-content .product-title {
    color: var(--prod-title-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
}

.product .right-content .product-price {
    display: block;
    color:var(--prod-price-color);
    line-height: 43px;
    font-size: 29px;
    font-weight: 400;
    margin: 10px 0;
}

.product .right-content p {
    color: #5e5e5e;
    font-size: 15px;
    margin: .85em 0;
    line-height: 20px
}

.product .right-content p.text {
    font-family: 'Lato', sans-serif;
}

.product .right-content .grams {
    margin: 0;
}

.product .right-content .stock {
    color:var(--first-nav-active-item-bg);
    font-size: 12px;
    font-weight: 500;
    margin-top: 20px;
}

.product .right-content .add-btns {
    display: flex;
    margin-bottom: 5px;
}

.product .right-content .add-btns form {
    display: flex;
    margin-right: 10px;
}

.product .right-content .add-btns input {
    width: 40px;
    height: 46px;
    border: 1px solid #eae1e1;
    color: #707070;
    text-align: center;
    padding: 2px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.product .right-content .add-btns .buttons {
    display: flex;
    flex-direction: column;
}

.product .right-content .add-btns button {
    height: 23px;
    width: 26px;
    border: 1px solid #eae1e1;
    background-color: #fff;
    border-left: 0;
    transition: background-color .3s ease;
    font-size: 10px;
    color: #707070;
}
.product .right-content .add-btns button:focus{
    outline: 0;
}

.product .right-content .add-btns button:hover {
    background-color: #efefef;
}

.product .right-content .add-btns button.minus {
    border-top: 0;
    border-bottom-right-radius: 4px;
}

.product .right-content .add-btns button.plus {
    border-top-right-radius: 4px;
}

.product .right-content .add-to-cart {
    font-size: 18px;
    text-transform: uppercase;
    padding: 9.5px 50px;
}

.product .right-content .compare {
    color: #707070;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    transition: opacity .3s ease;
    margin-bottom: 20px;
}

.product .right-content .compare:hover {
    opacity: .5;
}

.product .right-content .compare i {
    font-size: 16px;
    font-weight: 600;
    padding-right: 10px;
    position: relative;
    top: 3px;
}

.product .right-content .sku {
    color: #979797;
    font-size: 13px;
}

.product .right-content .categories b,
.product .right-content .sku b {
    color: #1f1f1f;
    font-size: 13px;
}

.product .right-content .categories a {
    color: #979797;
    font-size: 13px;
    text-decoration: none;
    transition: color .3s ease;
}

.product .right-content .categories a:hover {
    color:var(--first-nav-active-item-bg);
}

.product .right-content .social {
    font-size: 13px;
    color: #707070;
    font-weight: 600;
    margin-top: 35px;
}

.product .right-content .social a {
    font-size: 16px;
    color: #707070;
    margin-left: 20px;
    position: relative;
    top: 3px
}




.product > .review {
    padding-top: 100px;
}

.product .review .nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
}

.product .review .nav-tabs a {
    padding: 9px 70px;
    color: #949494;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 500;
    transition: .3s ease;
    border: 0;
}

.product .review .nav-tabs a::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #3b3b3b;
    bottom: 0;
    position: absolute;
    left: 0;
    opacity: 0;
}

.product .review .nav-tabs a.active::after,
.product .review .nav-tabs a:hover::after {
    opacity: 1;
}

.product .review .nav-tabs a.active::after {
    background-color:var(--first-nav-active-item-bg);
}

.product .review .nav-tabs a:hover {
    color: #3b3b3b
}

.product .review .nav-tabs a.active {
    color:var(--first-nav-active-item-bg);
}


.product .review .tab-content {
    background-color: #fafafa;
    padding: 50px 15px;
}

.product .review .tab-content .additional-info h3 {
    text-align: center;
    color: #1f1f1f;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 700;
}

.product .review .tab-content .additional-info table {
    max-width: 490px;
    margin: auto;
    width: 100%;
}

.product .review .tab-content .additional-info table tr {
    background-color: #f0f0f0;
}

.product .review .tab-content .additional-info table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.product .review .tab-content .additional-info table tr th {
    color: #222222;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

.product .review .tab-content .additional-info table tr td {
    color: #252525;
    padding: 12px 20px;
    font-size: 14px;
    text-align: right
}

.product .review .tab-content .reviews {
    padding: 0 15px;
    max-width: 610px;
    margin: auto;
}

.product .review .tab-content .reviews h3 {
    color: #1f1f1f;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 400;
}

.product .review .tab-content .reviews p {
    font-size: 14px;
    color: #464646;
}



.related-product {
    padding-top: 30px;
    padding-bottom: 70px;
}

.related-product h4.title {
    color: #262626;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
}

.recent {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.recent h4.title {
    color: #262626;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
}

.recent img {
    width: 100%;
}


@media (max-width:991px) {
    .product {
        padding-top: 0;
    }

    .product .container {
        max-width: 100% !important;
        padding: 0;
    }

    .product .wrapper {
        flex-direction: column
    }

    .product .wrapper .left-image {
        width: 100%;
        display: flex;
    }

    .product .wrapper .right-content {
        width: 100%;
        padding-top: 25px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        max-width: 700px;
        margin: auto;
    }

    .product .wrapper .left-image .gallery-thumbs {
        display: none;
    }

    .product .wrapper .left-image .gallery-main {
        width: 100%;
    }

    .product .review .nav-tabs a {
        padding: 9px 15px;
        font-size: 12px;
    }

    .product .review .tab-content {
        background-color: #fafafa;
        padding: 20px 15px;
    }

    .product .review .tab-content h3 {
        margin-bottom: 20px !important;
    }

    .product .review .tab-content table {
        max-width: 650px !important;
    }

}


/* My Style */
.banner-video,
.banner-img {
height: 480px;
}
@media(max-width:1020px) {
.banner-video,
.banner-img {
height: 300px;
}

}
@media(max-width:700px) {
.banner-video,
.banner-img {
height: 250px;
}

}

.chat-container {
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.06), 0 2px 32px 0 rgba(0,0,0,0.16);
    font-size: 14px;
    bottom: 30px;
    right: 20px; 
    z-index: 99999; 
    border-radius: 50px; 
    background-color: var(--first-nav-active-item-bg); 
    color: var(--first-nav-active-item-color) !important; 
    padding: 12px 24px;
}

@media(max-width:1140px) {
    .chat-container {
        bottom: 60px;
    }
}


.input-checkbox.filter.other {
	display: grid !important;
    grid-template-columns: 10% 1fr;
    justify-items: baseline;
}

.input-checkbox.filter{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	height: 40px;
	font-weight: 600;
}

.sub-cat-filter{
	margin: 0 35px;
	height: 40px;
	font-size: 13px;
	display: none;
}
.sub-cat-filter.open {
	display: block;
}


#orderby::-ms-expand {	display: none; }
#orderby{
    -webkit-appearance: none;
	appearance: none;
	background-color: #f9f9f9;
	text-align: center;
	border-radius: 14px;
	height: 30px;
	font-size: 13px;
}
#orderby:focus{
	border-radius: 0

} 
#orderby option {
	background-color: #f9f9f9;
	text-align: center;
	border-radius: 14px;
	font-size: 13px;
}


.filter .short.orderby-wrapper {
	height: 30px;
}

.dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	display: none;
	position: absolute;
	top: 25px;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	max-height: 450px;
	overflow-x: auto;
	z-index: 99999!important;
    opacity: 1!important;
    visibility: visible!important;
    background-color: var(--first-nav-active-item-bg);
    padding: 15px 0px;
    border-radius: 0 0 5px 5px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a.sub-nav {
	text-decoration: none;
	display: block;
    background-color: var(--first-nav-active-item-bg);
    padding: 0 8px;
    height: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize !important;
    letter-spacing: .05em;
    color: var(--first-nav-active-item-color);
    line-height: 27px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    transition: .3s;
    height: auto;
  }
  
  .dropdown-content a.sub-nav:hover {
    background-color: var(--first-nav-item-bg);
    color: var(--first-nav-item-color);
  }
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}

  .m_filter {
	display: none;
}
@media(max-width:1140px) {
.m_filter {
	display: block;
	}

}


.filter-sidbar{
	position: fixed;
	display: block;
    width: 300px;
    z-index: 999999;
    height: 100vh;
    top: 0;
    background-color: #424242;
    right: -300px;
    margin: 0;
	transition: .5s ease;
	color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
}


.filter-sidbar.show {
	right: 0;
}
.filter-sidbar .sidbar-header{
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    height: 66px;
    padding: 20px 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--side-menu-header-color);
    position: relative;
	background-color: var(--side-menu-header-bg);
	font-weight: bold;
}	


.filter-sidbar .menu .sidbar-header .close-btn {
        position: relative;
        display: block;
        width: 20px;
		height: 20px;
		margin-right: 5px;
    }

    .filter-sidbar .menu .sidbar-header .close-btn::before {
        content: "";
        position: absolute;
        width: 2px;
        height: 16px;
        background-color: var(--secondary-color) !important;
        top: calc(50% - 8px);
        left: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .filter-sidbar .menu .sidbar-header .close-btn::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 2px;
        background-color:  var(--secondary-color);
        transform: rotate(45deg);
        left: calc(50% - 8px);
        top: calc(50% - 1px);
	}
	.filter-options-container {
        padding: 20px 15px;
        background-color: var(--side-menu-body-bg);
        color: var(--side-menu-body-color);
	}
	.filter-option-header {
		width: 300px;
	    height: 30px;
		font-size: 13px;
		font-weight: bold;
	}
	.filter-option-wrapper {
		border-bottom: 2px solid rgba(0, 0, 0, .11);
		padding-bottom: 20px;
		margin-bottom: 5px;
	}

	.filter-cat-expand {
		color: #fff;
	}
	.search-mobile-btn {
		top: 0;
		right: 0;
		z-index: 2;
	}
	.m_filter .icon {
		color: #a9a9a9;
		font-size: 20px;
	}
	.m_filter .icon.active{
		color: var(--first-nav-active-item-bg);
	} 

    .product-list-veiw-link, 
    .product-list-veiw-link:active,
    .product-list-veiw-link:hover,
    .product-list-veiw-link:focus
    {
        color: var(--first-nav-active-item-bg);

    }
    
    #lightgallery{
        height: 500px;
    }

    .product .wrapper .left-image .gallery-main img {
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }
    
    .product-video-modal-dialog {
        margin-top: 80px;
    }
    .product-view-size-guide{
        color:var(--btn-bg);
    }

    .product-view-size-guide:hover
    {
        color:var(--btn-hover-bg);
    }


    @media(max-width:1140px) {
        .product-video-modal-dialog {
            margin-top: 28px;
        }

        #lightgallery{
            height: 300px;
        }
    
        .product .wrapper .left-image .gallery-main img {
            max-height: 300px;
        }
    }

    @media(max-width:700px) {
        .product-video-modal-dialog {
            margin-top: 28px;
        }
        #lightgallery{
            height: 250px;
        }
    
        .product .wrapper .left-image .gallery-main img {
            max-height: 250px;
        }
    }

    

.img-sm {
    width: 80px;
    height: 80px;
}
    

.itemside .info{
	margin: 0 5px;
}

@media screen and (max-width: 768px){

    .itemside .info .title{
        max-width: 170px;
    }

    
	.text-truncate-mobile {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}


.row-img-wrap{
    height: 300px;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

.row-img{
    max-height: 300px;
    max-width: 260px;
}

.row-img.full-h{
    object-fit: cover;
    height: 100%;
    width: auto !important;
}
.row-img.full-w{
    object-fit: cover;
    height: auto;
    width: 100% !important;
}

@media screen and (max-width: 600px){

    .row-img-wrap{
        height: 240px;
        width: 100%;
        display: grid;
        justify-content: center;
        align-items: center;
    }
    
    .row-img{
        max-height: 240px;
        max-width: 150px;
    }
    
    .single-product .sale
    {
        top: 0;
    }
}

.error{
	color: red !important;
}

.spinner-container{
	text-align: center;
	display: none;
}

.spinner {
  width: 100%;
  height: 25px;
  text-align: center;
  font-size: 9px;
}

.spinner > div {
  background-color: white;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  -moz-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  -o-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect1 {
  -webkit-animation-delay: -1.2s;
  -moz-animation-delay: -1.2s;
  -o-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  -o-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  -moz-animation-delay: -1.0s;
  -o-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;
  -o-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  -o-animation-delay: -0.8s;
  animation-delay: -0.8s;
}



@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { transform: scaleY(0.4); }  
  20% { transform: scaleY(1.0); }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { transform: scaleY(0.4); }
  20% { transform: scaleY(1.0); }
}


.hidden {
    display: none !important;
}

.text-weight-bold{
	font-weight: bold;
}



/* New Style  */
.row-img-wrap a div {
    box-shadow: 2px 0px 6px rgba(0,0,0,0.2);
}

.banner-carousel .owl-nav {
    position: absolute;
    bottom: 13px;
    left: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.banner-carousel .owl-nav button.owl-next, 
.banner-carousel .owl-nav button.owl-prev{
    width: 53px;
    font-size: 30px;
    border: 3px solid var(--top-bar-bg);

    border-radius: 50%;
    box-shadow: 2px 0px 2px rgba(0,0,0,0.2);
	background-color: var(--top-bar-bg);
    color: var(--top-bar-color);
}

.banner-bottom-curve{
    display: block;
    width: 100px;
    height: 44px;
    position: absolute;
    bottom: -24px;
    left: 46%;
    z-index: 2;
}

.banner-bottom-curve svg path{
    fill: var(--main-bg);
}


.banner-carousel .owl-nav button.owl-next,
.banner-carousel .owl-nav button.owl-prev {

    text-align: center !important;
}

.banner-carousel .owl-nav button.owl-next {
    margin-right: 5px;
}

.banner-carousel .owl-nav button.owl-next:focus, 
.banner-carousel .owl-nav button.owl-prev:focus {outline: none;}

.banner-carousel .owl-nav button.owl-next:hover, 
.banner-carousel .owl-nav button.owl-prev:hover {background-color: var(--main-color);}


@media(max-width:991px) {

    .banner-bottom-curve{
        display: none;
    }
}
header .main-menu.scroll .wrapper .right-menu li a,
header .main-menu.scroll .wrapper .menu .nav-link {
    color: var(--second-top-bar-color);
}



/* Logo  */
header .main-menu .wrapper {
    padding: 10px 0;
}

header .main-menu .wrapper .logo img{
    /* border-radius: 50%; */
    border: 2px;
    /* box-shadow: 1px 2px 2px rgba(0,0,0,0.2); */
    max-height: 60px;
}

.size-guide-img-container{
	width: 365px;
	height: 544px;
    
	opacity: 0.8;
    transition: opacity 0.2s;
    border: 1px solid #ced4da;
    position: relative;
	
	background-image: url(/client_side/0/img/fashion/sizeguide.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;  
}
.size-guide-img-container .sizeguide-img {
	width: 365px;
	height: 544px;
}


.input-size-img-wrapper{
	position: absolute;
	width: 100px;
	height: 30px;
	border:3px solid green;
	
	font-size:12px;
	font-weight: bold;
	font-style: italic;
	
	cursor: pointer;
}

.input-size-img-wrapper.error{
	border:3px solid red;
}

.input-size-img-wrapper .input-size-container {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	height: 100%;
}

.input-size-img-wrapper.edit-mode .input-size-container .size-label{
	position: absolute;
	top: -15px;
	left: 0px;
}

.input-size-img-wrapper .input-size-container .size-input{
	display: none;
	width:100%;
	height:100%;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
}

.input-size-img-wrapper.edit-mode .input-size-container .size-input{
	display: block;
}

.size-label div{
	display: inline-block;
}

.size-label.filled-label div{
	background-color: white;
}

.input-size-img-wrapper.edit-mode .input-size-container .size-label div{
	background-color: white;
}


.size-guide-img-container .arrow.arrow-hor{
	top: 10px;
	left: 10px;
    width: 30px;
    height: 3px;
    background-color:#000;
    margin-left:7px;
    margin-top:3px;
    position: absolute;
}

.size-guide-img-container .arrow.arrow-hor:after{
	left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: #000;
    border-width: 7px;
    margin-top: -7px;
}

.size-guide-img-container .arrow.arrow-hor:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #000;
    border-width: 7px;
    margin-top: -7px;
}

.size-guide-img-container .arrow.arrow-ver{
	top: 30px;
	left: 30px;
    width: 3px;
    height: 30px;
    background-color:#000;
    margin-top:3px;
	margin-left:3px;
    position: absolute;
}

.size-guide-img-container .arrow.arrow-ver:after{
	right: 50%;
    top: 0px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #000;
    border-width: 7px;
    margin-top: -7px;
    border-bottom: 9px solid #000;
    border-top: 7px solid transparent;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    margin-right: -7px;
}

.size-guide-img-container .arrow.arrow-ver:before {
    right: 50%;
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #000;
    border-width: 7px;
    margin-top: 0px;
    border-top: 9px solid #000;
    border-bottom: 7px solid transparent;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    margin-right: -7px;
}

.product-fashion-sg-modal{
	max-width: 395px;

}

.page-link{
    color: var(--btn-bg) !important;
    background-color: var(--btn-color) !important;
}
.page-item.active .page-link{
    background-color: var(--btn-bg) !important;
    color: var(--btn-color) !important;
    border-color: var(--btn-bg) !important;
}

a.primary-color,
a.primary-color:visited,
a.primary-color:focus{
  color: var(--btn-bg);
}

.profile-nav-tabs .list-group-item{
  transition: all ease-in 0.5ms;
}

.profile-nav-tabs .list-group-item:hover,
.profile-nav-tabs .list-group-item.active{
  background-color: var(--btn-bg)!important;
  color: var(--btn-color) !important;
  border-color: var(--btn-bg)!important;
}
.profile-nav-tabs .list-group-item:hover a,
.profile-nav-tabs .list-group-item:hover a:focus{
  color: var(--btn-color) !important;
}

.tracking-wrap .step.active:before{
  background-color: var(--btn-bg);
}

.tracking-wrap .step.active .icon{
  color: var(--btn-color) !important;
  background-color: var(--btn-bg);
}

.btn.btn-outline-main{
  background-color: #fff;
  border-color: var(--btn-bg);
  color: var(--btn-bg);
}

.btn.btn-outline-main:hover,
.btn.btn-outline-main:focus{
  background-color: var(--btn-bg)!important;
  color: var(--btn-color) !important;
}

.itemside {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; 
}

.itemside .aside {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0; 
}

.itemside .info {
    padding-left: 15px;
    padding-right: 7px; 
}
.itemside p {
    margin-bottom: 0; 
}

.itemside .title {
    display: block;
    margin-bottom: 5px;
}
  

.tracking-wrap {
    position: relative;
    background-color: #ddd;
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    margin-top: 50px; }
.tracking-wrap .step {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 25%;
    margin-top: -18px;
    text-align: center;
    position: relative; }
.tracking-wrap .step::before {
    height: 7px;
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 18px; }
.tracking-wrap .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-radius: 100%;
    background: #ddd; }
.tracking-wrap .text {
    display: block;
    margin-top: 7px; }
.tracking-wrap .step.active .icon {
    background: var(--btn-bg);
    color: var(--btn-color) }
.tracking-wrap .step.active .text {
    font-weight: 400;
    color: #000; }
.tracking-wrap .step.active:before {
    background: var(--btn-bg) }

    .img-xs, .img-sm, .img-md, .img-lg {
    -o-object-fit: cover;
        object-fit: cover;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }
    
    .img-xs {
    width: 40px;
    height: 40px; }
    
.or-separator{
    position: relative;
    font-size: 15px;
    font-weight: 700;
}
.or-separator::after{
    content: '';
    height: 2px;
    width: 45%;
    background-color: #f4f4f4;
    right: 0;
    position: absolute;
    top: 10px;
}
.or-separator::before{
    content: '';
    height: 2px;
    width: 45%;
    background-color: #f4f4f4;
    left: 0;
    position: absolute;
    top: 10px;
}
.btn-google {
  background-color:  #4285F4;
  color: #fff; 
  position: relative;
  font-size: 14px;
  border-radius: 2px;
}
.btn-google img {
  position: absolute;
  left: -2px;
  top: -2px;
  height: 39px;
  width: 40px;
}

a.link.active{
    color: var(--btn-bg) !important;
    text-decoration: none;
}
        
.btn-outline-primary {
  color: var(--btn-bg);
  background-color: var(--btn-color);
  border-color: var(--btn-bg);
}

.btn-outline-primary:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
}

@media (min-width: 991px){
  .guest-msg{
    min-height: 100px;
  }  
}


.payment-img{
    height: 30px;
    width: auto;
}

@media screen and (max-width: 768px){
	.hidein-mobile-screen{
		display: none !important;
	}
	
}

@media screen and (min-width: 768px){
	 .hidein-desktop-screen{
		display: none !important;
	}
}

.float-start{
	float: left;
}

.float-end{
	float: right;
}

.pointer{
	cursor: pointer;
}

.text-start{
	text-align: left;
}
.text-end{
	text-align: right;
}

/*** product modal */
.modal_cover-image:before {
    background: linear-gradient(180deg,rgba(0,0,0,.3),transparent);
    border-radius: 2px 2px 0 0;
    height: 80px;
    top: 0;
}
.modal_cover-image:after, .modal_cover-image:before {
    content: "";
    pointer-events: none;
    position: absolute;
    width: 100%;
}
.modal_cover-image img {
    border-radius: 3px 3px 0 0;
    width: 100%;
}
.modal-banner-popup .modal-body{
	padding: 0px 5px !important;
	margin-top: 5px;
}
.modal-banner-popup{
	max-height: 550px !important;
}
.modal-banner-popup .modal-content{
	max-height: 550px !important;
	border: 0px;
}
.modal-banner-popup .item-img{
	max-height: 450px !important;
}

.modal-banner-popup .modal-sm-customize{
	height: auto !important;
	max-width: 450px;
}


.modal-banner-popup {
    z-index: 99991050;
	padding: 0px !important;
}

.modal-banner-popup .close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    filter: alpha(opacity=20);
    opacity: 1;
	text-shadow: 0 1px 0 #fff;
	cursor: pointer;
}

.modal-banner-popup p.close {
    position: absolute;
    top: 6px;
    right: 6px;
    opacity: 1;
	color: #fff;
	z-index:55;
	text-shadow: 0px 0px 2px #404040;
	padding: 15px;

}
.modal-banner-popup p.close:hover {
	color: #fff;
}

.product .wrapper .left-image .gallery-main {
    position: relative;
    overflow: hidden;
}

@media(max-width:1020px) {
	.product .wrapper .left-image .gallery-main{
		margin-top: 25px;
	}
}

