@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
    background-color: #383838;
    font-family: 'Montserrat', sans-serif;
    color: #dedede;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.btn-primary {
    background: #252525;
    border-color: #7d7d7d;
    color: #b3b3b3;
}
    .btn-primary:hover {
        background-color: #343434;
        border-color: #7d7d7d;
    }
a{
    transition:all;
    transition-duration:.5s;
}
.slogan {
    color: #b7b7b7;
    margin-top: 18px;
    font-size:14px;
}

:root {
    --maincolor: #ff7004;
    --darkermaincolor: #ff862a;
    --bordercolor: #dee2e6;
}

.main-logo {
    display: block;
    margin-top: 15px;
}

    .main-logo img {
        max-width: 100%;
    }

.left-menu {
    float: left;
    width: 210px;
    min-height: 100vh;
    height: 100%;
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 14px;
}

.main-content {
    float: right;
    width: calc(100% - 210px);
}

.header-bottom {
    margin-top: 40px;
}
.contact-page .form-control {
    background-color: #383838;
    color: #9a9a9a;
}
/*#region global */
.list-group-item a {
    color: #141414;
}

.list-group-item.active {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
}

    .list-group-item.active a {
        color: #fff;
    }

.topic-item {
    text-align: center;
    height: 100%;
    padding: 50px 10px;
    color: #cacaca;
}
    .topic-item a {
        color: #cacaca;
    }
.success-icon {
    font-size: 4rem;
}

.page-title h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.breadcrumb {
    margin: 15px;
}

    .breadcrumb ul li {
        display: inline-block;
        font-size:13px;
    }

        .breadcrumb ul li a {
            color: #a5aeb1;
        }

        .breadcrumb ul li i {
            font-size: 12px;
            margin: 0 10px;
        }

    .breadcrumb .current-item {
        font-weight: normal;
        color: #e4e4e4;
    }

.form-control:focus {
    border-color: var(--darkermaincolor);
    box-shadow: none;
}
li.hasdropdown {
    position: relative;
}

    li.hasdropdown .nav-dropdown {
        display: none;
        position: absolute;
        border-radius: 4px;
        z-index: 10;
        box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%);
        padding: 0;
        background-color: #fff;
        min-width: 150px;
    }

.nav-dropdown.right {
    right: 0;
}

li.hasdropdown:hover .nav-dropdown {
    display: block;
}

    li.hasdropdown:hover .nav-dropdown:before {
        content: '';
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-bottom-color: #fff;
        border-top: 0;
        margin-left: -5px;
        margin-top: -5px;
        z-index: 1;
    }

    li.hasdropdown:hover .nav-dropdown.right:before {
        right: 10px;
    }

.mobilefilter {
    display: none;
}

/*#region product box */
.productItem {
    position: relative;
    text-align: center;
    margin: 0 15px 40px 15px;
    height: 100%;
}

    .productItem .salelabel, .productItem .newlabel {
        border-radius: 2px;
        padding: 2px 8px;
        display: inline-block;
        font-size: 10px;
        color: #fff;
        z-index: 1;
    }

    .productItem .salelabel {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #f8353e;
    }

    .productItem .newlabel {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #007a58;
    }

    .productItem .circle {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        color: #191919;
        position: absolute;
        right: 10px;
        top: 10px;
        text-align: center;
        display: inline-block;
        transition: all;
        transition-duration: .8s;
        opacity: 0;
        z-index: 1;
    }

        .productItem .circle:hover {
            background-color: var(--maincolor);
            color: #fff;
        }

        .productItem .circle i {
            line-height: 46px;
        }

        .productItem .circle.favorite {
            opacity: 1;
        }

        .productItem .circle.quickview {
            top: 66px;
        }

    .productItem:hover .circle {
        opacity: 1;
    }
    .productItem .wr-image {
        position: relative;
        overflow: hidden;
    }
    .productItem img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: all;
        transition-duration: 1s;
        opacity:1;
    }
    .productItem:hover img {
        display: block !important;
        opacity:.7;
    }

    .productItem .productinfo {
        background-color: #484747c7;
        padding: 10px 15px;
        position: absolute;
        bottom: 50px;
    }

        .productItem .productinfo h3 {
            font-size: 18px;
            margin-bottom:0;
        }

        .productItem .productinfo a.p-name {
            color: #b7b7b7;
            transition: all;
            transition-duration: .5s;
            display: block;
        }

    .productItem:hover .productinfo a.p-name {
        color: #fff;
    }

    .productItem .btn-addcart {
        display: block;
        width: 80%;
        height: 45px;
        line-height: 45px;
        background-color: #fff;
        text-align: center;
        font-size: 14px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        z-index: 11;
        margin: auto;
        font-weight: 600;
        visibility: hidden;
        transition: all .3s ease 0s;
        transform: translateY(20px);
        color: #3f3f3f;
        opacity: 0;
    }

    .productItem:hover .btn-addcart {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    .productItem .btn-addcart:hover {
        color: var(--maincolor);
    }

.mf-rating {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 22px;
    width: 122px;
    margin-right: 10px;
}

.productinfo .mf-rating .star-rating {
    margin: 8px auto;
}

.star-rating::before {
    content: "\eab3\eab3\eab3\eab3\eab3";
    color: #ccc;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 3px;
    font-family: LineIconsPro Light;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

    .star-rating span:before {
        color: #f2b309;
    }

.rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 22px;
    width: 122px;
    margin: auto;
}

    .rating::before {
        content: "\eab3\eab3\eab3\eab3\eab3";
        font-family: LineIconsPro Light;
        float: left;
        top: 0;
        left: 0;
        position: absolute;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: 3px;
    }

.productItem .productinfo .old-price {
    text-decoration: line-through;
    display: inline-block;
    margin-right: 10px;
}

.productItem .productinfo .price.hassaleprice {
    color: #f8353e;
}
/*#endregion */
/*#endregion */
/*#region header */
.btn-mob {
    display: none;
}

header .header-top {
    background-color: #2f333a;
    padding: 8px 0;
}

header .header-top-massege {
    color: var(--maincolor);
    font-style: italic;
}

header .ul-contact li {
    display: inline-block;
    margin-right: 15px;
}

    header .ul-contact li:last-child {
        margin-right: 0;
    }

    header .ul-contact li a {
        color: #fff;
    }

        header .ul-contact li a:hover {
            color: var(--maincolor);
        }

.mainnav-right {
    margin-bottom: 0;
    float: right;
}

    .mainnav-right > li {
        margin-right: 10px;
        display: inline-block;
    }

        .mainnav-right > li:last-child {
            margin-right: 0;
        }

        .mainnav-right > li > a {
            color: #191919;
        }

    .mainnav-right i {
        font-size: 24px;
    }

    .mainnav-right > li.account {
        padding-left: 10px;
        border-left: solid 1px #191919;
    }

.lnkcart {
    display: inline-block;
    position: relative;
}

.wrap-header {
    position: relative;
    padding: 25px 0;
}

header .frmMainSearch {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    width: 350px;
}

header a:hover, .header-bottom ul.top-menu li a:hover {
    color: #f3f3f3;
}

.account-dropdown ul li {
    border-bottom: 1px solid #e8e8e8;
}

    .account-dropdown ul li a {
        font-size: 14px;
        display: block;
        color: #191919;
        padding: 10px;
        text-transform: uppercase;
        white-space: nowrap;
        line-height: normal;
        text-align: left;
    }

li.hasdropdown .nav-dropdown.cart-dropdown {
    width: 300px;
    padding: 10px;
}

.account-dropdown ul li:last-child {
    border-bottom: 0;
}

.header-bottom ul.top-menu > li {
    display: block;
    position: relative;
}

.header-bottom ul.top-menu li a {
    color: #757879;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 5px;
    display: block;
}

    .header-bottom ul.top-menu li a.arrdown {
        padding-left: 0;
        font-size: 12px;
    }

    .header-bottom ul.top-menu li a.acategory {
        padding-right: 10px;
    }

.header-bottom ul.top-menu > li ul.sublist {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 5px;
}

.header-bottom ul.top-menu li ul.sublist li {
    line-height: 30px;
}

    .header-bottom ul.top-menu li ul.sublist li a {
        font-size: 13px;
        display: block;
        color: #575757;
        text-transform: capitalize;
        white-space: nowrap;
        text-align: left;
    }
.header-bottom ul.top-menu a.active {
    color: #f3f3f3;
}
.header-bottom ul.top-menu li ul.sublist li a:hover, .header-bottom ul.top-menu li ul.sublist li a.active {
    color: #f3f3f3;
}
/*#endregion */
/*#region footer */
footer {
    color: #757879;
    position: fixed;
    bottom: 15px;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            color: var(--maincolor);
        }

.footer-top {
    padding: 20px 0;
}

.footer-bottom {
}
/*#endregion */

/*#region account page */

.page.login-page .customer-blocks {
    border: 1px solid #e8e8e8;
    padding: 32px 50px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #fff;
    position: relative;
    margin: 30px 0;
}

.login-nav {
    margin-bottom: 30px;
}

    .login-nav a {
        float: left;
        width: 50%;
        border-bottom: 1px solid #e9e9e9;
        text-align: center;
        color: #27406d;
        padding: 5px 0;
    }

        .login-nav a.active {
            border-bottom: solid 2px var(--maincolor);
        }


/*#endregion */
/*#region news page */

.news-item-page {
    margin-bottom: 30px;
}

    .news-item-page img {
        max-width: 100% !important;
    }

.news-item {
    height: 100%;
}

    .news-item img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }

    .news-item .news-head {
        margin: 15px 0;
    }

    .news-item .news-title {
        color: #212121
    }

        .news-item .news-title:hover {
            color: var(--maincolor);
        }

    .news-item .news-body {
        color: #474747;
    }

    .news-item .read-more {
        background: #4d4d4d;
        color: #fff;
        width: 130px;
        height: 45px;
        line-height: 45px;
        display: inline-block;
        text-align: center;
    }

        .news-item .read-more:hover {
            background: var(--maincolor);
        }

    .news-item .buttons {
        margin: 15px 0;
    }

    .news-item .news-date {
        font-size: 14px;
        color: var(--maincolor);
    }

    .news-item .picture {
        overflow: hidden;
    }

        .news-item .picture img {
            transition: all .3s ease 0s;
        }

    .news-item:hover img {
        transform: scale(1.1) rotate( 3deg );
        transition: all .3s ease 0s;
    }

/*#endregion */
/*#region mobile */
.mobilemenu {
    transition: all .4s cubic-bezier(.455,.03,.515,.955);
    left: -100%;
    position: fixed;
    top: 50px;
    display: none;
    z-index: 99;
    background-color: #3a3a3a;
    height: 100%;
    min-height: 100%;
    bottom: 0;
}

@media (max-width: 575px) {
    .main-content{
        float:none;
        width:100%;
    }
    .left-menu {
        float: none;
        width: 100%;
        position: relative;
        height: unset;
        min-height: unset;
    }
    .header-bottom ul.top-menu {
        margin-top: 15px;
    }

    header {
        border-bottom: solid 1px #545353;
    }

    .wrap-header {
        padding: 0;
        height: 50px;
    }

    .btn-mob {
        color: #bbb;
        font-size: 24px;
        line-height: 50px;
        display: inline-block;
        float:right;
    }

        .btn-mob i {
            vertical-align: middle;
        }

    a.main-logo {
        display: inline-block;
        line-height: 50px;
        vertical-align: top;
        margin-top:0;
    }

        a.main-logo img {
            vertical-align: middle;
            width:105px;
        }

    .mainnav-right > li > a {
        line-height: 50px;
    }

    .mainnav-right i {
        font-size: 24px;
        vertical-align: middle;
    }

    .mainnav-right > li.account {
        border-left: 0;
        padding-left: 0;
    }

    header .frmMainSearch {
        display: none;
    }

    .header-bottom {
        display: none;
        background-color: transparent;
    }

        .header-bottom ul.top-menu li {
            display: block;
            text-align: left;
            line-height: unset;
        }

            .header-bottom ul.top-menu li a {
                text-align: left;
            }

    .banner-item {
        height: 400px;
        padding-top: 100px;
    }

    .home-page-category {
        margin: 30px 0;
    }

    .menutoggle {
        overflow: hidden;
        max-height: 100vh;
    }

    .menu-overlay {
        background-color: rgba(0,0,0,.55);
        position: fixed;
        top: 50px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        display: none;
    }

    .menutoggle .menu-overlay {
        display: block;
    }

    .mobilemenu {
        display: block;
        display: flex;
        flex-direction: column;
    }

    .menuopen {
        left: 0;
        width: 85%;
    }

    .btn-mob.mbopen i::before {
        content: '\ebea';
    }

    header .header-top {
        height: 40px;
        padding: 12px 0;
    }

    .mobilemenu .header-bottom {
        display: block;
    }

    .mobilemenu .form-control {
        border-radius: 0;
        border-left: 0;
        border-color: #141414;
    }

    .mobilemenu .btn-primary {
        background-color: transparent;
        color: #000;
        border-color: #141414;
        border-radius: 0;
        border-right: 0;
        border-left: 0;
    }

    .mobilemenu .header-bottom ul.top-menu li a {
        padding: 5px 0;
        line-height: 30px;
        color: #bfbfbf;
        font-size: 16px;
        display: inline-block;
    }

    .product-picture-gallery .gallery-thumbs img {
        width: 100%;
        height: 70px;
        object-fit: cover;
    }

    .header-bottom ul.top-menu li a.arrdown {
        float: right;
        width: 40px;
        text-align: right;
    }

        .header-bottom ul.top-menu li a.arrdown i {
            vertical-align: text-top;
            transition: all;
            transition-duration: 1s;
        }

    .header-bottom ul.top-menu > li ul.sublist {
        margin-left: 10px;
        position: relative;
        box-shadow: none;
        top: unset;
    }

        .header-bottom ul.top-menu > li ul.sublist li {
            border: none;
        }

    .header-bottom ul.top-menu li.active ul.sublist {
        display: block;
    }

    .header-bottom ul.top-menu li ul.sublist li a {
        line-height: 30px;
        padding: 0;
        font-size: 15px;
    }

    .header-bottom ul.top-menu li.active a.arrdown i {
        transform: rotate( -180deg );
    }
    .header-bottom{
        margin-top:0;
    }
    .productItem img {
        webkit-filter: unset;
        filter: unset;
    }
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

/*#endregion */
