body {
    color: #141414;
}
body.ovh {
    overflow: hidden;
}
input:focus, input:hover{
    outline: 0
}
input::placeholder {
    color: inherit;

}
input:focus::placeholder {
    opacity: 0
}
a, a:hover, a:focus{
    text-decoration: none;
    color:inherit
}
button{
    border: none;
    background: none;
    outline: 0;
}
a, img, button, input{
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.modaloverlay {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 99999999;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.modaloverlay.open {
    visibility: visible;
    opacity: 1;
}
.dropdown-menu.ddownmenu {
    min-width: 130px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    border: none;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin: 0;
}
.ddownmenu:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: -1px;
    width: 7px;
    height: 7px;
    left: 50%;
    -webkit-transform: rotate(45deg)translateX(-50%);
    -ms-transform: rotate(45deg)translateX(-50%);
    -o-transform: rotate(45deg)translateX(-50%);
    transform: rotate(45deg)translateX(-50%);
}
.mainnav .ddownmenu {
    padding-bottom: 0;
}
@media (min-width:768px) {
    .ddownmenu {
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    .dropdown:hover .ddownmenu {
        visibility: visible;
        opacity: 1;
    }
}
.inlinelist {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/*****************************/
/*start header*/
.tophead {
    background-color: #f2f2f2;
}
.topheadcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}
.topnav > li > a, .topoptions > li > a {
    color: #b7b6b6;
    font-size: 12px;
    line-height: 45px;
    display: block;
}
.topnav > li > a:hover, .topoptions > li > a:hover {
    color: #7b7b7b;
}
.tophead .dropdown > a:after {
    content: ' \f0d7';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
}
.midhead {
    margin-top: 35px;
}
.navbtn {
    display: none;
}
.searchbox {
    position: relative;
    width: 100%;
    margin-top: 15px;
}
.searchin {
    height: 45px;
    background-color: #fff;
    width: 100%;
    padding: 0 20px;
    color: #b7b6b6;
    border: 1px solid #ddd;
}
.searchin:focus {
    border-color: #5ad451;
}
.searchbtn {
    position: absolute;
    font-size: 15px;
    color: #000;
    height: 45px;
    padding: 0;
    top: 0;
}

.searchbox .searchbtn:hover {
    color: #5ad451;
}

.shopcart {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 45px;
    margin-top: 15px;
}
.headicon.fa-shopping-cart {
    font-size: 16px;
}

.cartbtn {
    position: relative;
}
.cartbtn .items {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #fff;
    background-color: #5ad451;
    top: -10px;
    line-height: 15px;
    font-size: 13px;
    text-align: center;
}
.cartbtn:hover .items {
    -webkit-animation: vibe 0.7s;
    -o-animation: vibe 0.7s;
    animation: vibe 0.7s;
}

@keyframes vibe{
    0%,100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        -o-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    50% {
        -webkit-transform: translateY(4px);
        -ms-transform: translateY(4px);
        -o-transform: translateY(4px);
        transform: translateY(4px);
    }
    75% {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        -o-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}


.mobnav {
    display: none;
}
.lgnav {
    z-index: 999;
    margin-top: 15px;
    margin-bottom: -25px;
    position: relative;
}
.mainnav {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    align-items: center;
    height: 50px;
    background-color: #5ad451;
    white-space: nowrap;
}
.mainnav > li > a {
    display: block;
    font-size: 14px;
    line-height: 50px;
    padding: 0 15px;
    color: #fff;
}
.mainnav > li:hover > a {
    background-color: #51be49;
}
.mainnav .ddownmenu > li > a:hover {
    background-color: #fff;
    color: #5ad451;
}
.mainnav .ddownmenu .see-all > a, .mainnav .ddownmenu .see-all > a:hover, .mainnav .ddownmenu .see-all > a:focus {
    background-color: #5ad451;
    color: #fff;
}
/*end header*/
/*===================*/
/*start slider*/
.mainslider {
    margin-bottom: 60px;
}
.mainslider .owl-prev, .mainslider .owl-next {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.mainslider .owl-prev {
    right: 5%;
}
.mainslider .owl-next {
    left: 5%;
}
.mainslider .owl-prev:hover, .mainslider .owl-next:hover {
    background-color: #5ad451;
}
.mainslider .slide a {
    display: block;
}
/*end slider*/
/*===================*/
/*start brandslider*/
.brands .owl-prev, .brands .owl-next {
    position: absolute;
    top: 50%;
    color: #bebebe;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.brands .owl-prev {
    right: -30px;
}
.brands .owl-next {
    left: -30px;
}
.brands .owl-prev:hover, .brands .owl-next:hover {
    color: #5ad451;
}
.brands .slide a {
    display: block;
}
/*end brandslider*/
/*===================*/
/*start products*/

.prodshead {
    font-size: 20px;
    color: #141414;
    margin-bottom: 0;
}
.prod {
    border: 1px solid #ddd;
    max-width: 263px;
    margin: 15px auto;
    padding: 30px 20px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
}
.prodimg {
    padding: 10px 0;
    text-align: center;
}
.prodbtns {
    display: flex;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.prodbtns > a {
    line-height: 36px;
    width: 36px;
    display: block;
    background-color: #7f7f7f;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0 2px;
}
.prodbtns > a:hover {
    background-color: #5ad451;
}
.prodbtns > a:nth-child(2) {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}
.prod:hover .prodbtns {
    visibility: visible;
    opacity: 1;
}
.prod:hover .prodbtns > a {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}
.prodname {
    font-size: 14px;
    color: #141414;
    margin-top: 20px;
    overflow: hidden;
    display: inline-block;
}
.prodname:hover {
    color: #5ad451;
}
.prodpricerate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
    margin-top: 5px;
}
.prodprice {
    color: #141414;
    font-size: 14px;
    margin: 0;
}
.oldprice {
    text-decoration: line-through;
    color: #a3a3a3;
}
.prodrate {
    color: #e0e0e0;
    font-size: 11px;
    margin: 0;
}
.prodrate .active {
    color: #ffd34b;
}
.prodlabel {
    position: absolute;
    cursor: default;
    top: 10px;
    line-height: 35px;
    color: #fff;
    background-color: #5ad451;
    text-align: center;
    font-size: 13px;
    padding: 0 5px;
}

/*end products*/
/*===================*/
/*start banners*/
.banner {
    margin: 15px 0;
    overflow: hidden;
}
.banner a {
    display: table;
    margin: auto;
    text-align: center;
}
.banner:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.banner img {
    max-width: 100%
}
/*end banners*/
/*===================*/
/*start footer*/

footer {
    background-color: #141414;
    padding-top: 80px;
    margin-top: 70px;
}
footer .upperfooter {
    margin-bottom: 40px;
}
footer h3 {
    color: #fff;
    margin: 0 0 25px;
    font-size: 16px;
}
footer h3:after {
    content: "";
    display: block;
    width: 19px;
    height: 1px;
    background-color: #5ad451;
    margin-top: 15px;
}
.lists {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.lists .list {
    width: 25%;
    margin: 0;
}
.list li a {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 13px;
    color: #5c5c5c;
}
.list li a:hover {
    color: #5ad451
}

.subs p {
    margin: 0;
    color: #5c5c5c;
}
.subsform {
    width: 100%;
    margin-top: 20px;
    position: relative;
}
.subsin {
    background-color: #1a1a1a;
    border: none;
    width: 100%;
    height: 48px;
    padding: 0 25px;
    color: #3a3939;
    font-size: 13px;
}
.subsbtn {
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 0px;
    height: 48px;
}
.subsbtn:hover {
    color: #5ad451;
}

.lowerfooter {
    background-color: #121212;
}
.lowfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.copyrights {
    color: #5c5c5c;
    margin: 0;
    font-size: 12px;
}
.copyrights a:hover {
    color: #5dc6c8;
}

.social {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.social li a {
    color: #5c5c5c;
    font-size: 17px;
    display: block;
    text-align: center;
}
.social li a:hover {
    color: #5ad451;
}

/*end footer/*
/*===================*/
/*start media*/

@media (min-width:767px)
{

    .mainnav {
        display: flex;
    }

}

@media (min-width:992px) and (max-width:1199px)
{

    .prodpricerate {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width:1199px)
{

    .lgnav .mainnav > li > a {
        font-size: 13px;
        margin: 0;
    }

}


@media (max-width:991px)
{
    header {
        text-align: center;
        padding-top: 35px;
        margin-bottom: 30px;
    }
    .tophead {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999999;
        -webkit-box-shadow: 0 0px 10px rgba(0,0,0,0.05);
        box-shadow: 0 0px 10px rgba(0,0,0,0.05);
    }
    .lgnav {
        display: none;
    }
    .navbtn {
        display: block;
    }

    .dropdown-menu.ddownmenu {
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .ddownmenu:before {
        -webkit-transform: rotate(45deg)translateX(0);
        -ms-transform: rotate(45deg)translateX(0);
        -o-transform: rotate(45deg)translateX(0);
        transform: rotate(45deg)translateX(0);
        top: -3px;
    }

    .mobnav {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 280px;
        display: block;
        z-index: 99999999;
        background-color: #fff;
        -webkit-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
        overflow: auto;
    }
    .mobmainnav {
        margin-top: 60px;
        padding-bottom: 15px;
    }
    .mobmainnav > li > a {
        line-height: 40px;
        padding: 0 30px;
        font-size: 15px;
        display: block;
        border-bottom: 1px solid #ebebeb;
    }
    .mobmainnav > li:last-child > a {
        border-bottom: none;
    }
    .mobmainnav li > a:hover, .mobmainnav li > a:focus {
        color: #5ad451;
    }
    .navclosebtn {
        position: absolute;
        top: 20px;
    }
    .navclosebtn img {
        max-width: 17px
    }
    .mobddown > a:after {
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
        content: '\f067';
        position: absolute;
    }
    .mobddown > a[aria-expanded='true']:after {
        content: '\f068';
    }
    .mobddownmenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #f2f2f2;
    }
    .mobddownmenu > li > a {
        line-height: 35px;
        color: #141414;
        padding: 0 40px;
        display: block;
        font-size: 15px;
    }
    .mobddownmenu > li:not(:last-child) > a{
        border-bottom: 1px solid #e5e5e5;
    }

}

@media (max-width:767px)
{

    .shopcart {
        justify-content: center;
    }
    .searchbox {
        max-width: 400px;
        margin: 25px auto 0;
    }
    .mainslider img {
        min-height: 200px
    }
    .owl-nav {
        display: none;
    }

    .prodbtns {
        visibility: visible;
        opacity: 1;
    }

    .prodbtns a {
        transform: none !important;
    }

    footer {
        text-align: center;
    }
    .lists {
        flex-wrap: wrap;
    }
    .lists .list {
        width: 50%;
        margin-bottom: 30px;
    }
    footer h3::after {
        display: table;
        margin: 15px auto 0;
    }

    .subsform {
        max-width: 450px;
        margin: 20px auto 0;
    }
    .lowfooter {
        flex-direction: column-reverse;
        padding: 15px 0;
        height: auto;
    }
    .social {
        margin-bottom: 8px;
    }

    .prodshead {
        text-align: center;
    }
    .prod {
        text-align: center;
    }
    .prodpricerate {
        flex-direction: column-reverse;
    }
    .prodrate {
        margin-bottom: 8px;
    }

}
@media (max-width:479px) {
    .lists .list {
        width: 100%;
    }
    .col-xs-6.custom {
        width: 100%;
    }
}
/*end media*/
