/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Categories Section
5.  Product Section
6.  Banner Section
7.  Countdown Section
8.  Instagram
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/
/*----------------------------------------*/

html,
body {
    height: 100%;
    font-family: 'Josefin Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

    body::-webkit-scrollbar {
        width: 10px;
    }

    body::-webkit-scrollbar-track {
        background: #dbdbdb;
    }

    body::-webkit-scrollbar-thumb {
        background: #255946;
        border-radius: 7px;
        box-shadow: 5px 5px 10px #5f5f5f;
    }


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #111111;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    color: #666666;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

.w-35 {
    width: 35% !important
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

textarea#w3review {
    border: 1px solid #c8c3c3;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.box-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*---------------------
  Helper CSS
-----------------------*/

.section-title {
    margin-bottom: 15px;
    margin-top: 30px;
}

    .section-title h4 {
        color: #255946;
        margin-bottom: 0px;
        font-weight: 700;
        text-transform: capitalize;
        display: inline-block;
        font-size: 32px;
    }

.product-section-title h4 {
    color: #133f2f;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
    display: inline-block;
    font-size: 16px;
}



.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-blue {
    color: #0d2c92 !important
}

/* product section */
.cut-text {
    font-weight: 400;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cut-text-threeline {
    font-weight: 400;
    line-height: 20px;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cut-text-one {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.cut-text-one-user-side {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 110px
}

.cut-text-one-user-main {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 110px
}

.cut-text-cart {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
    float: left;
}

.product_stage {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 5px;
}

.product_padding {
    padding: 1.4rem;
}

.categories__text {
    min-height: 40px;
    margin-top: 10px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/* buttons */

.primary-btn {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px 10px;
    color: #ffffff;
    background: #ca1515;
}

.site-btn {
    font-size: 14px;
    border: 2px solid #ca1515 !important;
    color: #ffffff;
    background: #ca1515;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
}

/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #ffffff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    /*animation: loader 0.8s linear infinite;*/
    /*-webkit-animation: loader 0.8s linear infinite;*/
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

.spacial-controls {
    position: fixed;
    width: 111px;
    height: 91px;
    top: 0;
    right: 0;
    z-index: 999;
}

    .spacial-controls .search-switch {
        display: block;
        height: 100%;
        padding-top: 30px;
        background: #323232;
        text-align: center;
        cursor: pointer;
    }

.search input {
    border: 1px solid #255946;
    padding: 2px 12px;
    border-radius: 6px;
}

    .search input:focus, .search input:active, .search input:hover {
        border: 1px solid #cc0202 !important;
    }

    .search input::placeholder {
        color: #111111 !important;
    }

.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 99999;
}

.search-model-form {
    padding: 0 15px;
}

    .search-model-form input {
        width: 500px;
        font-size: 40px;
        border: none;
        border-bottom: 2px solid #dddddd;
        background: 0 0;
        color: #999;
    }

.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    line-height: 28px;
    top: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header {
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
    box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
    position: fixed;
    top: 0;
    z-index: 1111111111;
    display: block;
    width: 100%;
}

.header__logo {
    padding: 5px 0;
}

    .header__logo a {
        display: inline-block;
    }

.header__menu {
    padding: 37px 0 37px;
}

.hmenu {
    padding: 25px 0 27px;
}

.search {
    position: relative
}

.hmenu a {
    position: absolute;
    right: 9px;
    top: 5px;
    bottom: 0;
    color: #000;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 40px;
    position: relative;
}

    .header__menu ul li.active a:after {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .header__menu ul li:hover a:after {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .header__menu ul li:hover .dropdown {
        top: 27px;
        opacity: 1;
        visibility: visible;
    }

    .header__menu ul li:last-child {
        margin-right: 0;
    }

    .header__menu ul li .dropdown {
        position: absolute;
        left: 0;
        top: 56px;
        width: 250px;
        background: #111111;
        text-align: left;
        padding: 2px 0;
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all, 0.3s;
        -o-transition: all, 0.3s;
        transition: all, 0.3s;
    }

        .header__menu ul li .dropdown li {
            display: block;
            margin-right: 0;
        }
/*.desktop_menu{
    padding:10px 0;
}*/
.desktop_menu ul li .dropdown {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    padding: 2px 0 0 0;
}

    .desktop_menu ul li .dropdown li a {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        color: #2e2e2e !important;
        border-bottom: 1px solid #eee;
    }

.header__menu ul li .dropdown li a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    padding: 8px 20px;
    text-transform: capitalize;
}

    .header__menu ul li .dropdown li a:after {
        display: none;
    }

.header__menu ul li a {
    font-size: 15px;
    text-transform: uppercase;
    color: #111111;
    font-weight: 500;
    display: block;
    padding: 2px 0;
    position: relative;
}

    .header__menu ul li a i {
        font-weight: 100;
        font-size: 12px;
        line-height: 20px;
    }

    .header__menu ul li a:after {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #00a852;
        content: "";
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

.megamenu h3 {
    font-size: 15px;
    font-weight: 800
}


.header__right {
    text-align: right;
    padding: 30px 0 27px;
}

.header__right__auth {
    display: inline-block;
    margin-right: 15px;
}

    .header__right__auth a {
        font-size: 15px;
        color: #666666;
        position: relative;
        margin-right: 8px;
        transition: .5s
    }


    .header__right__auth label {
        font-size: 15px;
        color: #666666;
        position: relative;
        margin-right: 8px;
        transition: .5s
    }

    .header__right__auth a:last-child {
        margin-right: 0;
    }

        .header__right__auth a:last-child:after {
            display: none;
        }

    .header__right__auth a:after {
        position: absolute;
        right: -8px;
        top: -2px;
        content: "";
        font-size: 13px;
    }

.header__right__widget {
    display: inline-block;
}

    .header__right__widget li {
        list-style: none;
        display: inline-block;
        font-size: 18px;
        color: #111111;
        margin-right: 20px;
        cursor: pointer;
    }

        .header__right__widget li:last-child {
            margin-right: 0;
        }

        .header__right__widget li a {
            font-size: 18px;
            color: #111111;
            position: relative;
        }

            .header__right__widget li a .tip {
                position: absolute;
                right: -12px;
                top: -11px;
                height: 18px;
                width: 18px;
                background: #111111;
                font-size: 10px;
                font-weight: 500;
                color: #ffffff;
                line-height: 18px;
                text-align: center;
                border-radius: 50%;
            }

.offcanvas-menu-wrapper {
    display: none;
}

.canvas__open {
    display: inline-block;
    font-size: 22px;
    color: #222;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #00000069;
    border-radius: 2px;
    cursor: pointer;
    left: 20px;
    top: 25px;
}

.about_content p {
    font-size: 14px;
    padding: 0;
    margin: 8px 0;
    color: #4e4e4e;
    font-weight: 700;
}

.about_content a {
    display: inline-block;
    color: #292929 !important;
}
/*end header*/

form:first-child {
    margin-top: 130px !important;
}
/* first slider */
#main_slider .owl-item img {
    height: 82vh;
    object-fit: cover;
}

@media screen (max-width : 576px) {
    #main_slider .owl-item img {
        height: auto;
    }
}

#main_slider .owl-item.active img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: transform 25000ms ease, -webkit-transform 7000ms ease;
}

#main_slider .owl-controls .owl-page {
    display: inline-block;
}

    #main_slider .owl-controls .owl-page span {
        background: none repeat scroll 0 0 #869791;
        border-radius: 20px;
        display: block;
        height: 12px;
        margin: 5px 7px;
        opacity: 0.5;
        width: 12px;
    }

#main_slider .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
    width: 24px;
}

#main_slider .owl-dots .owl-dot span {
    background: #d6d6d6;
    height: 5px;
    transition: .4s;
}

#main_slider .owl-dots {
    bottom: 20px;
    position: absolute;
    left: 0;
    right: 0;
}

/* end slider */
/*---------------------
  Banner
-----------------------*/
.banner {
    height: 400px;
    position: relative;
}

    .banner:after {
        background-color: rgba(0, 0, 0, 0.37);
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }


.banner__text span {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.banner__text h1 {
    font-size: 50px;
    color: #fff;
    font-family: "Cookie", cursive;
    margin-bottom: 15px;
    max-width: 100%;
    overflow: hidden;
}

.banner__text a {
    font-size: 14px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 0 0 3px;
    display: inline-block;
}

    .banner__text a:after {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        background: #ca1515;
        content: "";
    }

.banner__slider {
    text-align: center;
    padding: 150px 0 0;
}

    .banner__slider.owl-carousel .owl-dots {
        position: absolute;
        left: 0;
        top: 360px;
        width: 100%;
        text-align: center;
    }

        .banner__slider.owl-carousel .owl-dots button {
            height: 12px;
            width: 12px;
            background: #a1a1a1;
            border-radius: 50%;
            margin-right: 10px;
        }

            .banner__slider.owl-carousel .owl-dots button.active {
                background: #fff;
            }

            .banner__slider.owl-carousel .owl-dots button:last-child {
                margin-right: 0;
            }

/*---------------------
  Trend
-----------------------*/
.trend__item__pic img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.trend {
    padding-top: 10px;
    padding-bottom: 50px;
    /*    background: #f6f5f2;*/
}

.trend__content .section-title h4 {
    font-size: 20px;
}

    .trend__content .section-title h4:after {
        bottom: -6px;
    }

.trend__item {
    overflow: hidden;
    margin-bottom: 35px;
}

.trend__item__pic {
    float: left;
    margin-right: 15px;
}

.trend__item__text {
    overflow: hidden;
}

    .trend__item__text h6 {
        font-size: 15px;
        color: #255946;
        font-weight: 700 !important;
        line-height: 1;
        margin-bottom: 5px;
    }

    .trend__item__text .rating {
        line-height: 18px;
        margin-bottom: 6px;
    }

        .trend__item__text .rating i {
            font-size: 10px;
            color: #e3c01c;
            margin-right: -4px;
        }

            .trend__item__text .rating i:last-child {
                margin-right: 0;
            }

    .trend__item__text .product__price {
        color: #111111;
        font-weight: 600;
    }

        .trend__item__text .product__price span {
            font-size: 14px;
            color: #b1b0b0;
            text-decoration: line-through;
            margin-left: 4px;
        }

/*---------------------
  Discount
-----------------------*/

.discount__pic img {
    min-width: 100%;
    height: 100%;
}

.discount__text {
    background: #f4f4f4;
    height: 390px;
    padding: 75px 90px 50px;
    text-align: center;
}

    .discount__text a {
        font-size: 14px;
        color: #111111;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding: 0 0 3px;
        display: inline-block;
    }

        .discount__text a:after {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 100%;
            background: #ca1515;
            content: "";
        }

.discount__text__title {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

    .discount__text__title:after {
        position: absolute;
        left: 50%;
        top: -38px;
        height: 183px;
        width: 183px;
        background: #ffffff;
        content: "";
        border-radius: 50%;
        z-index: -1;
        margin-left: -91.5px;
    }

    .discount__text__title span {
        font-size: 12px;
        color: #111111;
        font-weight: 500;
        text-transform: uppercase;
    }

    .discount__text__title h2 {
        font-size: 60px;
        color: #ca1515;
        font-family: "Cookie", cursive;
        line-height: 46px;
        margin-bottom: 10px;
    }

    .discount__text__title h5 {
        color: #ca1515;
        font-weight: 700;
    }

        .discount__text__title h5 span {
            font-size: 14px;
            color: #111111;
            margin-right: 4px;
        }

.discount__countdown {
    text-align: center;
    margin-bottom: 10px;
}

.countdown__item {
    margin-bottom: 15px;
    float: left;
    width: 25%;
}

    .countdown__item:last-child {
        margin-right: 0;
    }

    .countdown__item span {
        font-size: 30px;
        font-weight: 600;
        color: #111111;
        display: inline-block;
    }

    .countdown__item p {
        color: #111111;
        margin-bottom: 0;
        display: inline-block;
        font-weight: 500;
    }

/*---------------------
  Services
-----------------------*/

.services {
    padding-top: 80px;
    padding-bottom: 50px;
}

.services__item {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

    .services__item i {
        font-size: 36px;
        color: #255946;
        height: 60px;
        width: 60px;
        padding: 0px;
        line-height: 60px;
        border: 3px solid #255946;
        border-radius: 50%;
        text-align: center;
    }

    .services__item h6 {
        color: #255946;
        font-weight: 600;
        font-size: 22px;
        margin: 12px 0;
    }

    .services__item p {
        margin-bottom: 0;
        font-size: 12px;
    }

/*---------------------
  Instagram
-----------------------*/

.instagram__item {
    height: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .instagram__item:hover:after {
        opacity: 1;
    }

    .instagram__item:hover .instagram__text {
        opacity: 1;
        visibility: visible;
    }

    .instagram__item:after {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        content: "";
        opacity: 0;
        z-index: -1;
        -webkit-transition: all, 0.3s;
        -o-transition: all, 0.3s;
        transition: all, 0.3s;
    }

.instagram__text {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

    .instagram__text i {
        font-size: 30px;
        color: #0d0d0d;
    }

    .instagram__text a {
        font-size: 16px;
        color: #0d0d0d;
        font-weight: 500;
        display: block;
        margin-top: 10px;
    }

/*---------------------
  Footer
-----------------------*/

.footer {
}

.footer__about {
    margin-bottom: 30px;
}

    .footer__about p {
        margin-bottom: 20px;
        color: #b5c3be;
        font-size: 18px;
    }

.footer__logo {
    margin-bottom: 20px;
}

.footer__payment a {
    margin-right: 6px;
    margin-bottom: 10px;
    display: inline-block;
}

    .footer__payment a:last-child {
        margin-right: 0;
    }

.footer__widget {
    margin-bottom: 30px;
}

    .footer__widget h6 {
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

.footer__newslatter h6 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer__widget ul li {
    list-style: none;
}

    .footer__widget ul li a {
        font-size: 14px;
        color: #666666;
        line-height: 30px;
        font-weight: 600;
        transition: .5s
    }


    .footer__widget ul li a {
        font-size: 14px;
        color: #252525;
        line-height: 30px;
        font-weight: 600;
        transition: .5s;
    }

    .footer__widget ul li a {
        font-size: 16px;
        color: #b5c3be;
        line-height: 30px;
        font-weight: 600;
        transition: .5s;
    }

        .footer__widget ul li a:hover {
            color: #fff;
        }

.footer__newslatter {
    margin-bottom: 30px;
}

    .footer__newslatter form {
        position: relative;
        margin-bottom: 30px;
    }

    .footer__newslatter input {
        height: 52px;
        width: 100%;
        border: 1px solid #e1e1e1;
        border-radius: 50px;
        padding-left: 30px;
        font-size: 14px;
        color: #666666;
    }

        .footer__newslatter input:focus {
            border: 1px solid #e1e1e1 !important;
        }

        .footer__newslatter input::-webkit-input-placeholder {
            color: #666666;
        }

        .footer__newslatter input::-moz-placeholder {
            color: #666666;
        }

        .footer__newslatter input:-ms-input-placeholder {
            color: #666666;
        }

        .footer__newslatter input::-ms-input-placeholder {
            color: #666666;
        }

        .footer__newslatter input::placeholder {
            color: #666666;
        }

    .footer__newslatter button {
        position: absolute;
        right: 4px;
        top: 4px;
    }

.footer__social a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #ffffff;
    font-size: 15px;
    color: #111111;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 6px;
    margin-bottom: 5px;
}

.footer__social i {
    transition: .5s;
}

.footer__social a:hover i {
    transform: rotateY(-360deg) scale(1.7);
}

.footer__social a:hover .fa-facebook {
    color: #3b5999;
}

.footer__social a:hover .fa-twitter {
    color: #55acee;
}

.footer__social a:hover .fa-youtube-play {
    color: #cd201f;
}

.footer__social a:hover .fa-instagram {
    color: #e4405f;
}

.footer__social a:hover .fa-pinterest {
    color: #bd081c;
}



.footer__social a:last-child {
    margin-right: 0;
}

.footer__copyright__text {
    border-top: 1px solid #e1e1e1;
    padding: 18px 0 25px;
    text-align: center;
    margin-top: 35px;
}

    .footer__copyright__text p {
        margin-bottom: 0;
        color: #b5c3be;
    }

    .footer__copyright__text a {
        color: #fff;
    }

    .footer__copyright__text i {
        color: #ca1515;
    }

    .footer__copyright__text a:hover {
        color: #efb443;
    }

.footer__payment img {
    max-width: 100px;
}

.footer__payment p {
    font-weight: 600;
    margin: 0;
    color: #fff;
}
/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
    padding-top: 15px;
}

.breadcrumb__links a {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    margin-right: 18px;
    display: inline-block;
    position: relative;
}

    .breadcrumb__links a:after {
        position: absolute;
        right: -14px;
        top: 0;
        content: "";
        font-family: "FontAwesome";
    }

    .breadcrumb__links a i {
        margin-right: 5px;
    }

.breadcrumb__links span {
    font-size: 15px;
    font-weight: 500;
    color: #888888;
    display: inline-block;
}

/*---------------------
  Categories
-----------------------*/

.categories {
    overflow: hidden;
    /*    margin-top: 10px;*/
}

    .categories .container-fluid {
        padding-right: 5px;
    }

.categories__item {
    height: 314px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 10px;
    margin-right: 10px;
}

    .categories__item.categories__large__item {
        height: 638px;
        padding-left: 70px;
    }

        .categories__item.categories__large__item .categories__text {
            max-width: 480px;
        }

            .categories__item.categories__large__item .categories__text p {
                margin-bottom: 15px;
            }

.categories__text h1 {
    font-family: "Cookie", cursive;
    color: #111111;
    margin-bottom: 5px;
}

.categories__text h4 {
    color: #111111;
    font-weight: 700;
}

.categories__text p {
    margin-bottom: 10px;
}

.categories__text h5 {
    font-size: 14px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 0 0 3px;
    display: inline-block;
}

    .categories__text h5:after {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        background: #255946;
        content: "";
    }

/*---------------------
  Product
-----------------------*/

.product {
    padding-top: 25px;
    padding-bottom: 30px;
}

#top_deals_lider .owl-controls .owl-page span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}

#top_deals_lider .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #efb443;
    width: 24px;
}

#top_deals_lider .owl-dots .owl-dot span {
    background: #d6d6d6;
    height: 5px;
    transition: .4s;
}

#top_deals_lider .owl-dots {
    bottom: -10px;
    position: absolute;
    left: 0;
    right: 0;
}

.filter__controls {
    text-align: right;
    margin-bottom: 50px;
}

    .filter__controls li {
        font-size: 14px;
        list-style: none;
        display: inline-block;
        color: #111111;
        margin-right: 35px;
        position: relative;
        cursor: pointer;
    }

        .filter__controls li.active:after {
            opacity: 1;
        }

        .filter__controls li:after {
            position: absolute;
            left: 0;
            bottom: -4px;
            height: 2px;
            width: 100%;
            background: #ca1515;
            content: "";
            opacity: 0;
        }

        .filter__controls li:last-child {
            margin-right: 0;
        }

.product__item {
    /*margin-bottom: 35px;*/
}

    .product__item:hover .product__hover li {
        opacity: 1;
        top: 0;
    }

    .product__item.sale .product__item__pic .label {
        background: #ca1515;
    }

    .product__item.sale .product__item__text .product__price {
        color: #ca1515;
    }

.product__item__pic {
    height: 360px;
    position: relative;
    overflow: hidden;
}

    .product__item__pic .label {
        font-size: 12px;
        color: #ffffff;
        font-weight: 500;
        display: inline-block;
        padding: 2px 8px;
        text-transform: uppercase;
        position: absolute;
        left: 10px;
        top: 10px;
    }

        .product__item__pic .label.new {
            background: #36a300;
        }

        .product__item__pic .label.stockout {
            background: #111111;
        }

        .product__item__pic .label.stockblue {
            background: #0066bd !important;
        }

        .product__item__pic .label.sale {
            background: #ca1515;
        }

.product__hover {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 50%;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 110px;
    padding-top: 50%;
}

    .product__hover li {
        list-style: none;
        display: inline-block;
        margin-right: 10px;
        position: relative;
        top: 100px;
        opacity: 0;
    }

        .product__hover li:nth-child(1) {
            -webkit-transition: all 0.4s ease 0.1s;
            -o-transition: all 0.4s ease 0.1s;
            transition: all 0.4s ease 0.1s;
        }

        .product__hover li:nth-child(2) {
            -webkit-transition: all 0.4s ease 0.15s;
            -o-transition: all 0.4s ease 0.15s;
            transition: all 0.4s ease 0.15s;
        }

        .product__hover li:nth-child(3) {
            -webkit-transition: all 0.4s ease 0.2s;
            -o-transition: all 0.4s ease 0.2s;
            transition: all 0.4s ease 0.2s;
        }

        .product__hover li:last-child {
            margin-right: 0;
        }

        .product__hover li:hover a {
            background: #ca1515;
        }

            .product__hover li:hover a span {
                color: #ffffff;
                -webkit-transform: rotate(360deg);
                -ms-transform: rotate(360deg);
                transform: rotate(360deg);
            }

        .product__hover li a {
            font-size: 18px;
            color: #111111;
            display: block;
            height: 45px;
            width: 45px;
            background: #ffffff;
            line-height: 48px;
            text-align: center;
            border-radius: 50%;
            -webkit-transition: all, 0.5s;
            -o-transition: all, 0.5s;
            transition: all, 0.5s;
        }

            .product__hover li a span {
                position: relative;
                -webkit-transform: rotate(0);
                -ms-transform: rotate(0);
                transform: rotate(0);
                -webkit-transition: all, 0.3s;
                -o-transition: all, 0.3s;
                transition: all, 0.3s;
                display: inline-block;
            }

.product__item__text {
    text-align: center;
}

    .product__item__text h5 a {
        font-size: 18px;
        color: #111111;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product__item__text .rating {
        line-height: 18px;
        margin-bottom: 5px;
    }

        .product__item__text .rating i {
            font-size: 10px;
            color: #e3c01c;
            margin-right: -4px;
        }

            .product__item__text .rating i:last-child {
                margin-right: 0;
            }

    .product__item__text .product__price {
        /*color: #111111;*/
        font-weight: 600;
    }

        .product__item__text .product__price span {
            font-size: 14px;
            color: #b1b0b0;
            text-decoration: line-through;
            margin-left: 4px;
        }

/*---------------------
  Shop
-----------------------*/

.shop {
    padding-top: 15px;
    padding-bottom: 55px;
}

.sidebar__categories {
    margin-bottom: 50px;
    background: #f6f5f2;
    padding: 20px;
}

    .sidebar__categories .card {
        background: #f6f5f2 !important;
    }

    .sidebar__categories .section-title {
        margin-bottom: 35px;
    }

        .sidebar__categories .section-title h4 {
            font-size: 18px;
        }

.categories__accordion .card {
    border: none;
    border-radius: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f2f2f2 !important;
    margin-bottom: 12px;
}

    .categories__accordion .card:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none !important;
    }

.categories__accordion .card-heading {
    cursor: pointer;
}

    .categories__accordion .card-heading a {
        color: #255946;
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 20px;
    }

.categories__accordion .card-body {
    padding-left: 0;
    padding-top: 6px;
    padding-bottom: 0;
}

    .categories__accordion .card-body li {
        list-style: none;
        position: relative;
        padding-left: 7px;
        margin: 10px 0;
        font-size: 16px;
    }

        .categories__accordion .card-body li:before {
            position: absolute;
            left: 4px;
            top: 8px;
            height: 1px;
            width: 4px;
            background: #666666;
            /*content: "";*/
        }

        .card-body ul a, .categories__accordion .card-body li a {
            font-size: 13px;
            color: #666666;
            line-height: 19px;
            font-weight: 500;
            transition: 0.5s color;
        }

.categories__accordion .card-heading a:after,
.categories__accordion .card-heading > a.active[aria-expanded="false"]:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 30px;
    top: 0px;
}

.categories__accordion .card-heading.active a:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 30px;
    top: -1px;
}

.categories__accordion .card-heading a[aria-expanded="true"]:after,
.categories__accordion .card-heading > a.active:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 30px;
    top: -1px;
}

.sidebar__filter {
    position: relative;
    margin-bottom: 60px;
}

    .sidebar__filter .section-title {
        margin-bottom: 50px;
    }

        .sidebar__filter .section-title h4 {
            font-size: 18px;
        }

    .sidebar__filter a {
        font-size: 14px;
        color: #0d0d0d;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        display: inline-block;
        padding: 5px 16px 5px 24px;
        border: 2px solid #ff0000;
        position: absolute;
        right: 0;
        bottom: -5px;
        border-radius: 2px;
    }

.filter-range-wrap .range-slider .price-input {
    position: relative;
}

    .filter-range-wrap .range-slider .price-input p {
        font-size: 16px;
        color: #0d0d0d;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 0;
    }

    .filter-range-wrap .range-slider .price-input:after {
        position: absolute;
        left: 81px;
        top: 12px;
        height: 1px;
        width: 5px;
        background: #0d0d0d;
        content: "";
    }

    .filter-range-wrap .range-slider .price-input input {
        font-size: 16px;
        color: #0d0d0d;
        max-width: 16%;
        border: none;
    }

        .filter-range-wrap .range-slider .price-input input:nth-child(1) {
            margin-right: 28px;
        }

.filter-range-wrap .price-range {
    border-radius: 0;
    margin-bottom: 28px;
}

    .filter-range-wrap .price-range.ui-widget-content {
        border: none;
        background: rgba(0, 0, 0, 0.1);
        height: 5px;
    }

        .filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
            height: 14px;
            width: 14px;
            border-radius: 50%;
            background: #ca1515;
            border: none;
            outline: none;
            cursor: pointer;
        }

    .filter-range-wrap .price-range .ui-slider-range {
        background: #ca1515;
        border-radius: 0;
    }

.sidebar__sizes,
.sidebar__color {
    margin-bottom: 40px;
}

    .sidebar__sizes .section-title,
    .sidebar__color .section-title {
        margin-bottom: 35px;
    }

        .sidebar__sizes .section-title h4,
        .sidebar__color .section-title h4 {
            font-size: 18px;
        }

    .sidebar__sizes .size__list label,
    .sidebar__color .size__list label {
        display: block;
        padding-left: 20px;
        font-size: 14px;
        text-transform: uppercase;
        color: #444444;
        position: relative;
        cursor: pointer;
    }

        .sidebar__sizes .size__list label input,
        .sidebar__color .size__list label input {
            position: absolute;
            visibility: hidden;
        }

            .sidebar__sizes .size__list label input:checked ~ .checkmark,
            .sidebar__color .size__list label input:checked ~ .checkmark {
                border-color: #ca1515;
            }

                .sidebar__sizes .size__list label input:checked ~ .checkmark:after,
                .sidebar__color .size__list label input:checked ~ .checkmark:after {
                    border-color: #ca1515;
                    opacity: 1;
                }

        .sidebar__sizes .size__list label .checkmark,
        .sidebar__color .size__list label .checkmark {
            position: absolute;
            left: 0;
            top: 4px;
            height: 10px;
            width: 10px;
            border: 1px solid #444444;
            border-radius: 2px;
        }

            .sidebar__sizes .size__list label .checkmark:after,
            .sidebar__color .size__list label .checkmark:after {
                position: absolute;
                left: 0px;
                top: -2px;
                width: 11px;
                height: 5px;
                border: solid #ffffff;
                border-width: 1.5px 1.5px 0px 0px;
                -webkit-transform: rotate(127deg);
                -ms-transform: rotate(127deg);
                transform: rotate(127deg);
                opacity: 0;
                content: "";
            }

    .sidebar__color .color__list label {
        text-transform: capitalize;
    }

.pagination__option a {
    display: inline-block;
    height: 40px;
    width: 40px;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 6px;
}

    .pagination__option a:last-child {
        margin-right: 0;
    }

    .pagination__option a i {
        font-weight: 600;
    }

    .pagination__option a:hover {
        background: #0d0d0d;
        border-color: #0d0d0d;
        color: #ffffff;
    }

/*---------------------
  Product Details
-----------------------*/
.fotorama {
    overflow: hidden;
    position: sticky;
    top: 200px;
}

.product-details {
    padding-top: 30px;
    padding-bottom: 50px;
}

.product__details__pic {
    overflow: hidden;
}

.product__details__pic__left {
    width: 22%;
    max-height: 574px;
    float: left;
    overflow-y: auto;
}

    .product__details__pic__left .pt {
        display: block;
        margin-bottom: 20px;
        cursor: pointer;
        position: relative;
    }

        .product__details__pic__left .pt::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: #000;
            opacity: 0;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

        .product__details__pic__left .pt.active::after {
            opacity: 0.3;
        }

        .product__details__pic__left .pt:last-child {
            margin-bottom: 0;
        }

        .product__details__pic__left .pt img {
            min-width: 100%;
        }

.product__details__slider__content {
    width: calc(78% - 20px);
    float: left;
    margin-left: 20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 22px;
    color: #111111;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    line-height: 44px;
    text-align: center;
    margin-top: -20px;
}

    .product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
        left: auto;
        right: 10px;
    }

.product__details__text h3 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 22px;
}

    .product__details__text h3 span {
        display: block;
        color: #255946;
        line-height: 1;
        text-transform: none;
        margin: 0 0 0px;
        font-size: 28px;
        font-weight: 700;
    }

.product__details__text .rating {
    margin-bottom: 16px;
}

    .product__details__text .rating i {
        font-size: 12px;
        color: #e3c01c;
        margin-right: -4px;
    }

    .product__details__text .rating span {
        font-size: 12px;
        color: #666666;
        margin-left: 5px;
    }

.product__details__text p {
    color: #949494;
    display: inline-block;
    line-height: 1.4;
    font-size: 16px;
    display: block;
}

.prd_detail_off {
    font-size: 11px;
}

    .prd_detail_off span {
        font-size: 11px !important;
    }

.rating_product {
    background: #388e3c;
    line-height: normal;
    display: inline-block;
    color: #fff;
    padding: 2px 4px 2px 6px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 12px;
    vertical-align: middle;
}

.product__details__price .current_price {
    font-size: 30px;
    font-weight: 600;
    color: #efb443 !important;
    margin-right: 3px
}

.prd_detail_del {
    color: #b1b0b0
}

.color-black {
    color: #000 !important
}

.color-white {
    color: #fff !important
}

.prd_detail_del i {
    font-size: 14px;
}

.product__details__price span {
    font-size: 18px;
    color: #b1b0b0;
    /*text-decoration: line-through;*/
    font-weight: 700;
    /*margin-left: 10px;*/
    display: inline-block;
}

.quantity {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

    .quantity > span {
        font-size: 14px;
        color: #111111;
        font-weight: 600;
        float: left;
        margin-top: 14px;
        margin-right: 15px;
    }

.pro-qty {
    height: 50px;
    width: 150px;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    padding: 0 20px;
    overflow: hidden;
    display: inline-block;
}

    .pro-qty .qtybtn {
        font-size: 14px;
        color: #666666;
        cursor: pointer;
        float: left;
        width: 12px;
        line-height: 46px;
    }

        .pro-qty .qtybtn:hover {
            color: #ca1515 !important;
        }

    .pro-qty input {
        font-size: 14px;
        color: #666666;
        font-weight: 500;
        border: none;
        float: left;
        width: 45px;
        text-align: center;
        height: 48px;
    }

.product__details__button {
    overflow: hidden;
    margin-bottom: 0px;
}


    .product__details__button .cart-btn-yellow {
        display: inline-block;
        font-size: 16px;
        color: #ffffff;
        background: #255946;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 5px;
        float: left;
        margin-right: 10px;
        margin-bottom: 10px;
        transition: .5s;
    }

        .product__details__button .cart-btn-yellow:hover {
            background: #efb443;
        }

    .product__details__button .cart-btn {
        display: inline-block;
        font-size: 16px;
        color: #ffffff;
        background: #efb443;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 5px;
        float: left;
        margin-right: 10px;
        margin-bottom: 10px;
        transition: .5s;
    }

        .product__details__button .cart-btn:hover {
            background: #255946;
        }

    .product__details__button ul {
        float: left;
    }

        .product__details__button ul li {
            list-style: none;
            display: inline-block;
            margin-right: 5px;
        }

            .product__details__button ul li:last-child {
                margin-right: 0;
            }

            .product__details__button ul li a {
                display: inline-block;
                height: 50px;
                width: 50px;
                border: 1px solid #ebebeb;
                border-radius: 50%;
                line-height: 50px;
                text-align: center;
                padding-top: 1px;
            }

                .product__details__button ul li a span {
                    font-size: 18px;
                    color: #666666;
                }

.product__details__widget {
    border-top: 1px solid #ebebeb;
    padding-top: 35px;
}

    .product__details__widget ul li {
        list-style: none;
        margin-bottom: 10px;
    }

        .product__details__widget ul li:last-child {
            margin-bottom: 0;
        }

        .product__details__widget ul li span {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: #111111;
            width: 150px;
            float: left;
        }

        .product__details__widget ul li .stock__checkbox {
            overflow: hidden;
        }

            .product__details__widget ul li .stock__checkbox label {
                display: block;
                padding-left: 20px;
                font-size: 14px;
                color: #666666;
                position: relative;
                cursor: pointer;
            }

                .product__details__widget ul li .stock__checkbox label input {
                    position: absolute;
                    visibility: hidden;
                }

                    .product__details__widget ul li .stock__checkbox label input:checked ~ .checkmark {
                        border-color: #ca1515;
                    }

                        .product__details__widget ul li .stock__checkbox label input:checked ~ .checkmark:after {
                            border-color: #ca1515;
                            opacity: 1;
                        }

                .product__details__widget ul li .stock__checkbox label .checkmark {
                    position: absolute;
                    left: 0;
                    top: 5px;
                    height: 10px;
                    width: 10px;
                    border: 1px solid #444444;
                    border-radius: 2px;
                }

                    .product__details__widget ul li .stock__checkbox label .checkmark:after {
                        position: absolute;
                        left: 0px;
                        top: -2px;
                        width: 11px;
                        height: 5px;
                        border: solid #ffffff;
                        border-width: 1.5px 1.5px 0px 0px;
                        -webkit-transform: rotate(127deg);
                        -ms-transform: rotate(127deg);
                        transform: rotate(127deg);
                        opacity: 0;
                        content: "";
                    }

        .product__details__widget ul li .color__checkbox label {
            display: inline-block;
            cursor: pointer;
            position: relative;
            margin-right: 20px;
        }

            .product__details__widget ul li .color__checkbox label.active input ~ .checkmark:after {
                border-color: #ffffff;
                opacity: 1;
            }

            .product__details__widget ul li .color__checkbox label:last-child {
                margin-right: 0;
            }

            .product__details__widget ul li .color__checkbox label input {
                position: absolute;
                visibility: hidden;
            }

                .product__details__widget ul li .color__checkbox label input:checked ~ .checkmark:after {
                    border-color: #ffffff;
                    opacity: 1;
                }

            .product__details__widget ul li .color__checkbox label .checkmark {
                position: absolute;
                left: 0;
                top: -10px;
                height: 20px;
                width: 20px;
                background: #e31e2f;
                border-radius: 50%;
                content: "";
            }

                .product__details__widget ul li .color__checkbox label .checkmark.black-bg {
                    background: #111111;
                }

                .product__details__widget ul li .color__checkbox label .checkmark.grey-bg {
                    background: #e4aa8b;
                }

                .product__details__widget ul li .color__checkbox label .checkmark:after {
                    position: absolute;
                    left: 3px;
                    top: 5px;
                    width: 13px;
                    height: 6px;
                    border: solid #ffffff;
                    border-width: 1.5px 1.5px 0px 0px;
                    -webkit-transform: rotate(127deg);
                    -ms-transform: rotate(127deg);
                    transform: rotate(127deg);
                    opacity: 0;
                    content: "";
                }

        .product__details__widget ul li .size__btn label {
            font-size: 14px;
            color: #666666;
            text-transform: uppercase;
            cursor: pointer;
            margin-right: 10px;
            display: inline-block;
            margin-bottom: 0;
        }

            .product__details__widget ul li .size__btn label:last-child {
                margin-right: 0;
            }

            .product__details__widget ul li .size__btn label.active {
                color: #ca1515;
            }

            .product__details__widget ul li .size__btn label input {
                position: absolute;
                visibility: hidden;
            }

        .product__details__widget ul li p {
            margin-bottom: 0;
            color: #666666;
        }

.product__details__tab {
    /*padding-top: 80px;*/
    margin-bottom: 65px;
}

.nav {
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}


.nav-item {
    margin-right: 46px;
}

    .nav-item:last-child {
        margin-right: 0;
    }

    .nav-item .nav-link {
        font-size: 18px;
        color: #666666;
        font-weight: 600;
        border: 1px solid #bebebe;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding: 10px 15px;
        border-radius: 5px;
    }

        .nav-item .nav-link.active {
            color: #fff;
            background: #efb443;
            font-weight: 900
        }

.tab-content .tab-pane h6 {
    margin-top: 10px;
    font-size: 22px;
    color: #255946;
    font-weight: 800;
    margin-bottom: 10px;
}

.tab-content .tab-pane p:last-child {
    margin-bottom: 0;
}

.related__title h5 {
    font-size: 20px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.shop-cart {
    padding-top: 40px;
    padding-bottom: 40px;
}

.shop__cart__table {
    margin-bottom: 30px;
    user-select: none;
}

    .shop__cart__table table {
        width: 100%;
    }

    .shop__cart__table thead {
        border-bottom: 1px solid #f2f2f2;
    }

        .shop__cart__table thead th {
            font-size: 15px;
            color: #111111;
            font-weight: 600;
            text-transform: uppercase;
            padding-bottom: 20px;
            border-top: 1px solid;
            padding: 10px 0;
            border-bottom: 1px solid;
        }

.icon_close {
    height: 45px;
    width: 45px;
    background: #f2f2f2;
    border-radius: 50%;
    font-size: 18px;
    color: #111111;
    line-height: 44px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

.shop__cart__table tbody tr {
    border-bottom: 1px solid #d2d2d2;
}

    .shop__cart__table tbody tr td {
        padding: 5px 0;
        vertical-align: middle;
    }

    .shop__cart__table tbody tr .cart__product__item {
        overflow: hidden;
        width: 585px;
    }

        .shop__cart__table tbody tr .cart__product__item img {
            max-height: 60px;
            max-width: 100px;
            min-height: 60px;
            margin-right: 20px;
        }

        .shop__cart__table tbody tr .cart__product__item span {
            color: #111111;
            font-weight: 600;
            max-height: 35px;
            overflow: hidden;
        }

        .shop__cart__table tbody tr .cart__product__item .cart__product__item__title {
            overflow: hidden;
            padding-top: 23px;
        }

.product-price span {
    color: #111111;
    font-weight: 600;
    max-height: 35px;
    overflow: hidden;
}

.color-red {
    color: #ca1515 !important;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title .rating i {
    font-size: 10px;
    color: #e3c01c;
    margin-right: -4px;
}

.shop__cart__table tbody tr .cart__quantity {
    width: 190px;
}

    .shop__cart__table tbody tr .cart__quantity .pro-qty {
        border: none;
        padding: 0;
        width: 110px;
        border-radius: 0;
    }

        .shop__cart__table tbody tr .cart__quantity .pro-qty input {
            color: #444444;
        }

        .shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn {
            font-size: 20px;
            color: #444444;
            font-weight: 800;
        }

.shop__cart__table tbody tr .cart__total {
    font-size: 16px;
    color: #ca1515;
    font-weight: 600;
    width: 150px;
}

.shop__cart__table tbody tr .cart__close {
    text-align: right;
}

    .shop__cart__table tbody tr .cart__close span {
        height: 45px;
        width: 45px;
        background: #f2f2f2;
        border-radius: 50%;
        font-size: 18px;
        color: #111111;
        line-height: 44px;
        text-align: center;
        display: inline-block;
        font-weight: 600;
        cursor: pointer;
    }

.cart__btn {
    margin-bottom: 50px;
}

    .cart__btn.update__btn {
        text-align: right;
    }

    .cart__btn a {
        font-size: 14px;
        color: #111111;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        padding: 14px 30px 12px;
        background: #f5f5f5;
    }

        .cart__btn a span {
            color: #ca1515;
            font-size: 14px;
            margin-right: 5px;
        }

.discount__content h6 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 30px;
}

.discount__content form {
    position: relative;
    width: 370px;
    display: inline-block;
}

    .discount__content form input {
        height: 52px;
        width: 100%;
        border: 1px solid #444444;
        border-radius: 50px;
        padding-left: 30px;
        padding-right: 115px;
        font-size: 14px;
        color: #444444;
    }

        .discount__content form input::-webkit-input-placeholder {
            color: #444444;
        }

        .discount__content form input::-moz-placeholder {
            color: #444444;
        }

        .discount__content form input:-ms-input-placeholder {
            color: #444444;
        }

        .discount__content form input::-ms-input-placeholder {
            color: #444444;
        }

        .discount__content form input::placeholder {
            color: #444444;
        }

    .discount__content form button {
        position: absolute;
        right: 4px;
        top: 4px;
    }

.cart__total__procced {
    background: #f5f5f5;
    padding: 40px;
}

    .cart__total__procced h6 {
        color: #111111;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .cart__total__procced ul {
        margin-bottom: 25px;
    }

        .cart__total__procced ul li {
            list-style: none;
            font-size: 16px;
            color: #111111;
            font-weight: 600;
            overflow: hidden;
            line-height: 40px;
        }

            .cart__total__procced ul li span {
                color: #ca1515;
                float: right
            }

    .cart__total__procced .primary-btn {
        display: block;
        border-radius: 50px;
        text-align: center;
        padding: 12px 0 10px;
    }

.product__info__main .product-share {
    margin-top: 15px;
}

.product-share > ul li {
    color: #353535;
    display: inline-block;
    font-weight: 600;
    margin-right: 14px;
    text-align: center;
}

    .product-share > ul li a {
        border: 1px solid #3f3f3f;
        color: #135184;
        display: inline-block;
        height: 80px;
        text-align: center;
        width: 70px;
        line-height: 32px;
    }

.color-btn li a {
    max-height: 80px !important;
    max-width: 70px !important;
    border: 2px solid !important;
    min-height: 80px !important;
    min-width: 70px !important;
    border-radius: unset !important;
}

.sample-img {
    overflow: hidden;
    max-height: 100% !important;
    max-width: 100% !important;
    min-width: 100%;
    min-height: 100%;
}

.customer_review {
    border: 1px solid #eee;
    padding: 10px;
}

.cus_title {
    font-weight: 700;
    font-size: 17px;
}

    .cus_title span {
        width: auto;
        color: #fff;
        background: #388e3c;
        padding: 6px;
        border-radius: 5px;
        font-size: 13px;
    }

.cus_review_txt {
    text-align: left;
    line-height: 16px;
    margin-top: 8px;
    color: #797979;
}


/*---------------------
  Checkout
-----------------------*/

.checkout {
    padding-top: 40px;
    padding-bottom: 40px;
}

.coupon__link {
    font-size: 14px;
    color: #444444;
    padding: 14px 0;
    background: #f5f5f5;
    border-top: 2px solid #ca1515;
    text-align: center;
    margin-bottom: 50px;
}

    .coupon__link a {
        font-size: 14px;
        color: #444444;
    }

    .coupon__link span {
        font-size: 14px;
        color: #ca1515;
    }

.checkout__form h5 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.checkout__form .checkout__form__input p {
    color: #444444;
    font-weight: 500;
    margin-bottom: 10px;
}

    .checkout__form .checkout__form__input p span {
        color: #ca1515;
    }

/*.checkout__form .checkout__form__input input {
    height: 50px;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    margin-bottom: 25px;
    font-size: 14px;
    padding-left: 20px;
    color: #666666;
}*/

.checkout__form .checkout__form__input input::-webkit-input-placeholder {
    color: #666666;
}

.checkout__form .checkout__form__input input::-moz-placeholder {
    color: #666666;
}

.checkout__form .checkout__form__input input:-ms-input-placeholder {
    color: #666666;
}

.checkout__form .checkout__form__input input::-ms-input-placeholder {
    color: #666666;
}

.checkout__form .checkout__form__input input::placeholder {
    color: #666666;
}

.checkout__form .checkout__form__checkbox {
    margin-bottom: 20px;
}

    .checkout__form .checkout__form__checkbox label {
        display: block;
        padding-left: 24px;
        font-size: 14px;
        color: #444444;
        font-weight: 500;
        position: relative;
        cursor: pointer;
        margin-bottom: 16px;
    }

        .checkout__form .checkout__form__checkbox label input {
            position: absolute;
            visibility: hidden;
        }
            /*.checkout__form .checkout__form__input input:focus{
            border:1px solid #797979!important
        }*/

            .checkout__form .checkout__form__checkbox label input:checked ~ .checkmark {
                border-color: #ca1515;
            }

                .checkout__form .checkout__form__checkbox label input:checked ~ .checkmark:after {
                    border-color: #ca1515;
                    opacity: 1;
                }

        .checkout__form .checkout__form__checkbox label .checkmark {
            position: absolute;
            left: 0;
            top: 4px;
            height: 10px;
            width: 10px;
            border: 1px solid #444444;
            border-radius: 2px;
        }

            .checkout__form .checkout__form__checkbox label .checkmark:after {
                position: absolute;
                left: 0px;
                top: -2px;
                width: 11px;
                height: 5px;
                border: solid #ffffff;
                border-width: 1.5px 1.5px 0px 0px;
                -webkit-transform: rotate(127deg);
                -ms-transform: rotate(127deg);
                transform: rotate(127deg);
                opacity: 0;
                content: "";
            }

    .checkout__form .checkout__form__checkbox p {
        margin-bottom: 0;
    }

.checkout__order {
    background: #f5f5f5;
    padding: 30px;
}

    .checkout__order h5 {
        border-bottom: 1px solid #d7d7d7;
        margin-bottom: 18px;
    }

    .checkout__order .site-btn {
        width: 100%;
    }

.checkout__order__product {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 22px;
}

    .checkout__order__product ul li {
        list-style: none;
        font-size: 14px;
        color: #444444;
        font-weight: 500;
        overflow: hidden;
        margin-bottom: 14px;
        line-height: 24px;
    }

        .checkout__order__product ul li:last-child {
            margin-bottom: 0;
        }

        .checkout__order__product ul li span {
            font-size: 14px;
            color: #111111;
            font-weight: 600;
            float: right;
        }

        .checkout__order__product ul li .top__text {
            font-size: 16px;
            color: #111111;
            font-weight: 600;
            float: left;
        }

        .checkout__order__product ul li .top__text__right {
            font-size: 16px;
            color: #111111;
            font-weight: 600;
            float: right;
        }

.checkout__order__total {
    padding-top: 12px;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

    .checkout__order__total ul li {
        list-style: none;
        font-size: 16px;
        color: #111111;
        font-weight: 600;
        overflow: hidden;
        line-height: 20px;
        margin: 10px 0
    }

        /*.checkout__order__total .shipping__method li {
        font-size: 12px!important;
    
    }
    .checkout__order__total .shipping__method li span{
        float:none!important;
    }*/

        .checkout__order__total ul li p {
            list-style: none;
            font-size: 16px;
            color: #111111;
            font-weight: 600;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

.c-rdo label {
    margin-left: 5px;
}

.shipping__method input {
    width: 80%;
    text-align: right;
    height: 26px;
    border: 1px solid #adadad;
    border-radius: 6px;
    padding: 0 6px 0 0;
}

.checkout__order__total ul li span {
    color: #ca1515;
    float: right;
}

.checkout__order__widget {
    padding-bottom: 10px;
}

    .checkout__order__widget label {
        display: block;
        padding-left: 25px;
        font-size: 14px;
        font-weight: 500;
        color: #111111;
        position: relative;
        cursor: pointer;
        margin-bottom: 14px;
    }

        .checkout__order__widget label input {
            position: absolute;
            visibility: hidden;
        }

            .checkout__order__widget label input:checked ~ .checkmark {
                border-color: #ca1515;
            }

                .checkout__order__widget label input:checked ~ .checkmark:after {
                    border-color: #ca1515;
                    opacity: 1;
                }

        .checkout__order__widget label .checkmark {
            position: absolute;
            left: 0;
            top: 4px;
            height: 10px;
            width: 10px;
            border: 1px solid #444444;
            border-radius: 2px;
        }

            .checkout__order__widget label .checkmark:after {
                position: absolute;
                left: 0px;
                top: -2px;
                width: 11px;
                height: 5px;
                border: solid #ffffff;
                border-width: 1.5px 1.5px 0px 0px;
                -webkit-transform: rotate(127deg);
                -ms-transform: rotate(127deg);
                transform: rotate(127deg);
                opacity: 0;
                content: "";
            }

.discount__content_checkout h6 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 30px;
}

.discount__content_checkout form {
    position: relative;
    width: 370px;
    display: inline-block;
}

    .discount__content_checkout form input {
        height: 32px;
        width: 100%;
        border: 1px solid #444444;
        border-radius: 50px;
        padding-left: 30px;
        padding-right: 115px;
        font-size: 14px;
        color: #444444;
    }

    .discount__content_checkout form button {
        position: absolute;
        right: 4px;
        top: 4px;
    }

.checkout_site-btn {
    font-size: 14px;
    color: #ffffff;
    background: #ca1515;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 2px 30px;
    border-radius: 50px;
}

.table-content table .title-top th {
    background: #f6f6f6 none repeat scroll 0 0;
    border: 1px solid #877f7f;
    color: #333;
}

.table-content table th {
    border-top: medium none;
    font-weight: bold;
    padding: 20px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.table-content table td {
    border: 1px solid #d1d1d1
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
}



/*---------------------
    Blog
-----------------------*/

.blog {
    padding-top: 70px;
    padding-bottom: 80px;
}

.blog__item {
    margin-bottom: 35px;
}

.blog__item__pic {
    height: 240px;
}

    .blog__item__pic.large__item {
        height: 540px;
    }

.blog__item__text {
    padding: 25px 20px 0 0;
    margin-right: 30px;
    background: #ffffff;
    margin-top: -54px;
}

    .blog__item__text h6 {
        margin-bottom: 6px;
    }

        .blog__item__text h6 a {
            color: #111111;
            font-weight: 600;
            line-height: 21px;
        }

    .blog__item__text ul li {
        font-size: 12px;
        color: #888888;
        display: inline-block;
        list-style: none;
        margin-right: 25px;
        position: relative;
    }

        .blog__item__text ul li span {
            color: #111111;
        }

        .blog__item__text ul li:after {
            position: absolute;
            right: -17px;
            top: 0px;
            content: "|";
        }

        .blog__item__text ul li:last-child {
            margin-right: 0;
        }

            .blog__item__text ul li:last-child:after {
                display: none;
            }

.primary-btn.load-btn {
    color: #111111;
    background: #f2f2f2;
    padding: 12px 85px 10px;
    border-radius: 50px;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
    padding-left: 40px;
}

.blog__sidebar__item {
    margin-bottom: 50px;
}

    .blog__sidebar__item:last-child {
        margin-bottom: 0;
    }

    .blog__sidebar__item .section-title {
        margin-bottom: 40px;
    }

        .blog__sidebar__item .section-title h4 {
            font-size: 16px;
        }

            .blog__sidebar__item .section-title h4:after {
                bottom: -7px;
            }

    .blog__sidebar__item ul li {
        list-style: none;
        line-height: 30px;
    }

        .blog__sidebar__item ul li a {
            font-size: 14px;
            color: #111111;
            -webkit-transition: all, 0.3s;
            -o-transition: all, 0.3s;
            transition: all, 0.3s;
        }

            .blog__sidebar__item ul li a:hover {
                color: #ca1515;
            }

                .blog__sidebar__item ul li a:hover span {
                    color: #111111;
                }

            .blog__sidebar__item ul li a span {
                float: right;
                color: #888888;
            }

.blog__feature__item {
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

    .blog__feature__item:last-child {
        margin-bottom: 0;
    }

.blog__feature__item__pic {
    float: left;
    margin-right: 25px;
}

.blog__feature__item__text {
    overflow: hidden;
}

    .blog__feature__item__text h6 {
        font-size: 14px;
        color: #111111;
        font-weight: 600;
        line-height: 21px;
        margin-bottom: 5px;
    }

    .blog__feature__item__text span {
        font-size: 12px;
        color: #888888;
        display: block;
    }

.blog__sidebar__tags a {
    display: inline-block;
    font-size: 13px;
    color: #666666;
    border: 1px solid #f2f2f2;
    padding: 8px 14px 7px;
    margin-right: 6px;
    margin-bottom: 10px;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

    .blog__sidebar__tags a:hover {
        color: #111111;
    }

    .blog__sidebar__tags a:last-child {
        margin-right: 0;
    }

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog__details__item {
    background: #ffffff;
    margin-bottom: 24px;
}

.blog__details__item__title {
    background: #ffffff;
    padding-top: 30px;
    padding-right: 30px;
    margin-top: -100px;
    position: relative;
    margin-right: 50px;
}

    .blog__details__item__title .tip {
        font-size: 12px;
        color: #ffffff;
        background: #ca1515;
        text-transform: uppercase;
        font-weight: 500;
        display: inline-block;
        padding: 2px 11px 1px;
        border-radius: 5px;
    }

    .blog__details__item__title h4 {
        color: #111111;
        font-weight: 600;
        line-height: 39px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .blog__details__item__title ul li {
        font-size: 12px;
        color: #888888;
        display: inline-block;
        list-style: none;
        margin-right: 25px;
        position: relative;
    }

        .blog__details__item__title ul li span {
            color: #111111;
        }

        .blog__details__item__title ul li:after {
            position: absolute;
            right: -17px;
            top: 0px;
            content: "|";
        }

        .blog__details__item__title ul li:last-child {
            margin-right: 0;
        }

            .blog__details__item__title ul li:last-child:after {
                display: none;
            }

.blog__details__desc {
    margin-bottom: 40px;
}

    .blog__details__desc p {
        font-size: 15px;
        color: #444444;
        line-height: 27px;
    }

        .blog__details__desc p:last-child {
            margin-bottom: 0;
        }

.blog__details__quote {
    border-top: 2px solid #ca1515;
    position: relative;
    padding-top: 22px;
    margin-bottom: 20px;
}

    .blog__details__quote .icon {
        height: 30px;
        width: 30px;
        font-size: 18px;
        color: #ca1515;
        background: #ffffff;
        position: absolute;
        left: 0;
        top: -11px;
    }

    .blog__details__quote p {
        font-size: 16px;
        color: #111111;
        font-weight: 600;
        font-style: italic;
        line-height: 30px;
        margin-bottom: 0;
    }

.blog__details__tags {
    margin-bottom: 50px;
}

    .blog__details__tags a {
        display: inline-block;
        font-size: 13px;
        color: #666666;
        border: 1px solid #f2f2f2;
        padding: 8px 14px 7px;
        margin-right: 6px;
        margin-bottom: 10px;
        -webkit-transition: all, 0.3s;
        -o-transition: all, 0.3s;
        transition: all, 0.3s;
    }

        .blog__details__tags a:hover {
            color: #111111;
        }

        .blog__details__tags a:last-child {
            margin-right: 0;
        }

.blog__details__btns {
    background: #f5f5f5;
    padding: 14px 30px;
    margin-bottom: 55px;
}

.blog__details__btn__item.blog__details__btn__item--next {
    text-align: right;
}

    .blog__details__btn__item.blog__details__btn__item--next h6 a i {
        margin-right: 0;
        margin-left: 5px;
    }

.blog__details__btn__item h6 a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111111;
}

    .blog__details__btn__item h6 a i {
        font-size: 15px;
        font-weight: 600;
        position: relative;
        top: -2px;
        margin-right: 5px;
    }

.blog__details__comment {
    position: relative;
}

    .blog__details__comment h5 {
        color: #111111;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 35px;
    }

    .blog__details__comment .leave-btn {
        font-size: 14px;
        font-weight: 700;
        color: #111111;
        text-transform: uppercase;
        position: absolute;
        right: 0;
        top: 0;
    }

        .blog__details__comment .leave-btn:after {
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 1px;
            width: 100%;
            background: #ca1515;
            content: "";
        }

.blog__comment__item {
    margin-bottom: 35px;
}

    .blog__comment__item:last-child {
        margin-bottom: 0;
    }

    .blog__comment__item.blog__comment__item--reply {
        padding-left: 115px;
    }

.blog__comment__item__pic {
    float: left;
    margin-right: 25px;
}

    .blog__comment__item__pic img {
        border-radius: 50%;
    }

.blog__comment__item__text {
    overflow: hidden;
}

    .blog__comment__item__text h6 {
        color: #111111;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .blog__comment__item__text p {
        font-size: 15px;
        color: #444444;
        line-height: 26px;
    }

    .blog__comment__item__text ul li {
        list-style: none;
        font-size: 12px;
        color: #888888;
        display: inline-block;
        margin-right: 25px;
    }

        .blog__comment__item__text ul li:last-child {
            margin-right: 0;
        }

        .blog__comment__item__text ul li i {
            font-size: 14px;
            color: #ca1515;
            margin-right: 5px;
        }

/*---------------------
  Contact
-----------------------*/

.contact {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.contact__address {
    margin-bottom: 45px;
}

    .contact__address h5 {
        color: #111111;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .contact__address ul li {
        list-style: none;
        position: relative;
        margin-bottom: 20px;
    }

        .contact__address ul li:last-child {
            margin-bottom: 0;
        }

        .contact__address ul li h6 {
            color: #255946;
            font-weight: 900;
            margin: 10px 0 0 0;
            font-size: 24px;
        }

        .contact__address ul li i {
            font-size: 16px;
            color: #fff;
            margin-right: 5px;
            background: #49a760;
            width: 65px;
            line-height: 65px;
            height: 65px;
            text-align: center;
            font-size: 29px;
            border-radius: 50%;
        }

        .contact__address ul li p {
            margin-bottom: 0;
            font-size: 15px;
            color: #444444;
        }

        .contact__address ul li span {
            font-size: 15px;
            color: #444444;
            display: inline-block;
            margin-right: 25px;
            position: relative;
        }

            /*   .contact__address ul li span:after {
                position: absolute;
                right: -15px;
                top: 11px;
                content: "|";
                line-height: 0;
            }*/

            .contact__address ul li span:last-child {
                margin-right: 0;
            }

                .contact__address ul li span:last-child:after {
                    display: none;
                }

.contact__form h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact__form form input {
    height: 50px;
    width: 100%;
    padding-left: 20px;
    font-size: 14px;
    color: #444444;
    border: 1px solid #acabab;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .contact__form form input::-webkit-input-placeholder {
        color: #444444;
    }

    .contact__form form input::-moz-placeholder {
        color: #444444;
    }

    .contact__form form input:-ms-input-placeholder {
        color: #444444;
    }

    .contact__form form input::-ms-input-placeholder {
        color: #444444;
    }

    .contact__form form input::placeholder {
        color: #444444;
    }

.contact__form form textarea {
    height: 130px;
    width: 100%;
    padding-left: 20px;
    padding-top: 12px;
    font-size: 14px;
    color: #444444;
    border: 1px solid #acabab;
    border-radius: 10px;
    margin-bottom: 14px;
    resize: none;
}

    .contact__form form textarea::-webkit-input-placeholder {
        color: #444444;
    }

    .contact__form form textarea::-moz-placeholder {
        color: #444444;
    }

    .contact__form form textarea:-ms-input-placeholder {
        color: #444444;
    }

    .contact__form form textarea::-ms-input-placeholder {
        color: #444444;
    }

    .contact__form form textarea::placeholder {
        color: #444444;
    }

.contact__map {
    height: 500px;
}

    .contact__map iframe {
        width: 100%;
    }

.offer-post {
    background: #cad5e6;
    box-shadow: 0 -7px 7px 6px #cad5e6;
    margin-top: 50px;
    padding: 1.4rem;
}

    .offer-post h3 {
        color: #000;
        font-weight: 700;
        text-align: center;
    }

.search input::placeholder {
    font-weight: 600;
}

.order_list span {
    font-size: 13px;
    font-weight: 600;
}

.order_list p {
    font-size: 13px;
    font-weight: 600;
}

.btn-red {
    font-size: 16px;
    color: #ffffff;
    background: #efb443;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid #efb443;
    transition: .3s;
    border-radius: 5px;
}

.btn-green {
    position: relative;
    display: inline-block;
    padding: 11px 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: #6ac610;
    color: #ffffff !important;
    border: 2px solid #6ac610 !important;
    border-radius: 3px;
    transition: .5s
}

    .btn-green:hover {
        background: #ffffff;
        color: #000 !important;
        border-color: #6ac610;
    }

.btn-login-red {
    font-size: 14px;
}

.btn-login-red {
    font-size: 14px;
}

.btn-login-red {
    font-size: 14px;
    color: #ffffff;
    background: #ca1515;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 19px;
    border: 2px solid #ca1515;
    transition: .3s;
    border-radius: 15px;
    box-shadow: 0px 2px 3px 0px #000;
}

    .btn-login-red:hover {
        color: #ca1515;
        background: #fff;
        border: 2px solid #ca1515;
    }

.btn-red:hover {
    color: #255946;
    background: #fff;
    border: 2px solid #255946;
}

.btn-radious {
    border-radius: 20px
}

.custome-btn-padding {
    padding: .3rem .5rem !important
}
/*order list*/
.detail-img {
    max-width: 50px;
    margin-left: 20px;
    min-height: 50px;
}

.od_head {
    font-weight: 700;
    color: #5f5a5a;
}
/*end order list*/

li.custom-checkbox input {
    height: 12px;
    width: 16px;
}

.price-filter {
    border: 1px solid #b6b6b6;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 20px;
    padding: 5px;
}

    .price-filter:focus {
        border: 1px solid #df9c9c !important;
    }

    .price-filter::placeholder {
        color: #212121
    }


/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1600px) and (max-width: 1900px) {
    .header {
        padding: 0 85px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header__menu ul li {
        margin-right: 20px;
    }

    /* .header {
        padding: 0 30px;
    }*/
}


/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header__menu ul li {
        margin-right: 20px;
    }

    .header__right__auth {
        margin-right: 5px;
    }

    .sidebar__filter a {
        padding: 5px 15px 5px 15px;
    }

    .nav::before {
        width: 140px;
    }

    .nav::after {
        width: 140px;
    }
}

@media only screen and (max-width: 991px) {
    form:first-child {
        margin-top: 80px !important;
    }

    .header__menu {
        padding: 8px 0 10px;
    }

    .hmenu {
        padding: 8px 0 10px;
    }

    .header__right {
        padding: 14px 0;
    }

    .header__logo {
        padding: 10px 0;
    }

    .canvas__open {
        height: 30px;
        width: 30px;
        line-height: 30px;
        top: 13px;
    }
}
/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .filter__controls li {
        margin-right: 15px;
    }

    .discount__pic img {
        height: auto;
    }

    .discount__text {
        height: auto;
    }

    .sidebar__filter a {
        position: relative;
        bottom: 0;
    }

    .new-mrg {
        margin: 40px 0 !important
    }

    .filter-range-wrap .range-slider .price-input input {
        max-width: 27%;
    }

    .filter-range-wrap .range-slider .price-input {
        margin-bottom: 20px;
    }

    .product__details__pic {
        margin-bottom: 50px;
    }

    .nav::before {
        width: 125px;
    }

    .nav::after {
        width: 125px;
    }

    .discount__content {
        margin-bottom: 40px;
    }

    .checkout__order {
        margin-top: 20px;
    }

    .blog__sidebar {
        padding-left: 0;
    }

    .header__logo {
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {

    .contact__map {
        height: 400px;
    }

    .instagram {
        /*margin-top: 40px;*/
    }

    .product__details__text h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product__details__text .rating {
        margin-bottom: 5px;
    }

    .offcanvas-menu-overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        z-index: 98;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        visibility: hidden;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        left: -270px;
        width: 270px;
        height: 100%;
        background: #ffffff;
        padding: 90px 20px 30px 30px;
        display: block;
        z-index: 99;
        overflow-y: auto;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        opacity: 0;
    }

        .offcanvas-menu-wrapper.active {
            opacity: 1;
            left: 0;
        }

    .offcanvas__close {
        position: absolute;
        width: 40px;
        height: 40px;
        right: 30px;
        top: 25px;
        border: 1px solid #ddd;
        border-radius: 50%;
        font-size: 26px;
        text-align: center;
        z-index: 999;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        cursor: pointer;
    }

    .offcanvas__menu {
        display: none;
    }

    .slicknav_btn {
        display: none;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

    .slicknav_nav {
        display: block !important;
    }

    .offcanvas__logo {
        margin-bottom: 25px;
    }

    .offcanvas__widget {
        text-align: center;
        margin-bottom: 20px;
    }

        .offcanvas__widget li {
            list-style: none;
            display: inline-block;
            font-size: 18px;
            color: #111111;
            margin-right: 20px;
            cursor: pointer;
        }

            .offcanvas__widget li:last-child {
                margin-right: 0;
            }

            .offcanvas__widget li a {
                font-size: 18px;
                color: #111111;
                position: relative;
            }

                .offcanvas__widget li a .tip {
                    position: absolute;
                    right: -12px;
                    top: -11px;
                    height: 18px;
                    width: 18px;
                    background: #111111;
                    font-size: 10px;
                    font-weight: 500;
                    color: #ffffff;
                    line-height: 18px;
                    text-align: center;
                    border-radius: 50%;
                }

    .offcanvas__auth a {
        font-size: 15px;
        color: #111111;
        position: relative;
        margin-right: 8px;
        font-weight: 500;
    }

        .offcanvas__auth a:last-child {
            margin-right: 0;
        }

            .offcanvas__auth a:last-child:after {
                display: none;
            }

        .offcanvas__auth a:after {
            position: absolute;
            right: -8px;
            top: -2px;
            content: "/";
            font-size: 13px;
        }

    .header__menu {
        display: none;
    }
    /* .header__right {
    display: none;
  } */
    .filter__controls {
        text-align: left;
        margin-bottom: 40px;
    }

        .filter__controls li {
            margin-right: 20px;
        }

    .discount__pic img {
        height: auto;
    }

    .discount__text {
        padding: 75px 40px 50px;
        height: auto;
    }

    .product__details__pic__left {
        height: auto;
    }

    .product__details__pic {
        margin-bottom: 30px;
    }

    .quantity {
        float: none;
        margin-right: 0;
    }

    .nav::before {
        display: none;
    }

    .nav::after {
        display: none;
    }

    .shop__cart__table {
        overflow-x: auto;
    }

        .shop__cart__table tbody tr .cart__product__item img {
            float: none;
            margin-right: 0;
        }

    .cart__btn {
        text-align: center;
        margin-bottom: 25px;
    }

        .cart__btn.update__btn {
            text-align: center;
        }

    .discount__content h6 {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .discount__content {
        margin-bottom: 35px;
    }

    .blog__sidebar {
        padding-left: 0;
        padding-top: 40px;
    }

    .contact__content {
        margin-bottom: 40px;
    }

    .d-col-none {
        display: none !important;
    }

    .filter-option {
        display: block !important;
    }

    .product__hover li a {
        font-size: 18px;
        height: 35px;
        width: 35px;
        line-height: 40px;
    }

    .shopping-box .shop-content {
        padding: 8px 5px;
    }

    .product__item__text h5 a {
        font-size: 14px;
    }
}

.mobile_filter {
    display: none !important;
}

.floating-wpp-button {
    width: 62px !important;
    height: 62px !important;
}
/* medium Device 768 */
@media only screen and (max-width: 768px) {
    .product_padding {
        padding: 0.9rem;
    }

    .mobile_filter {
        display: block !important;
    }

    form:first-child {
        margin-top: 80px !important;
    }

    .floating-wpp-button {
        width: 42px !important;
        height: 42px !important;
    }

    .shop__cart__table thead th {
        font-size: 12px;
    }

    .title h2 {
        font-size: 20px !important
    }

    .pay-bg {
        background-position: bottom !important
    }

    .new-mrg {
        margin: 30px 0 !important
    }

    .header__right__auth a {
        margin: 0;
    }
}

.new-mrg {
    margin: 70px 0 60px 0
}

/* medium Device 576 */
@media only screen and (max-width: 576px) {
    .shop__cart__table tbody tr .cart__product__item {
        width: 300px;
    }

    form:first-child {
        margin-top: 55px !important;
    }

    .discount__content {
        width: 100% !important;
    }

    .banner__text h1 {
        font-size: 30px;
    }

    .shop__cart__table tbody tr .cart__product__item .cart__product__item__title h6 {
        font-size: 14px;
    }

    .shop__cart__table thead th {
        font-size: 10px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3px;
        /*margin-top: 0 !important;*/
    }

        .section-title h4 {
            text-align: center;
            font-size: 20px;
            color: #ca1515;
            margin-bottom: 5px;
            font-weight: 800;
        }

            .section-title h4:after {
                content: none;
            }

    .product_padding {
        padding: 0.5rem;
    }

    .categories__text a {
        font-size: 12px;
        max-width: 100%;
        overflow: hidden;
    }

    .offer-post {
        margin-top: 30px;
        padding: 1rem;
    }

        .offer-post h3 {
            font-size: 20px;
        }

    .login100-form-title {
        padding-bottom: 34px !important
    }

    .shop__cart__table tbody tr .cart__product__item span {
        font-size: 14px;
    }

    .banner__slider.owl-carousel .owl-dots {
        top: 310px
    }

    .banner {
        height: 400px;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
    .categories__item.categories__large__item {
        padding-left: 30px;
    }

    .product__item__text .rating-abso {
        left: 41% !important;
    }

    .banner__text h1 {
        font-size: 35px;
    }

    .filter__controls li {
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .discount__text {
        padding: 75px 0px 50px;
    }

    .footer__newslatter form {
        text-align: center;
    }

        .footer__newslatter form input {
            margin-bottom: 10px;
        }

        .footer__newslatter form button {
            position: relative;
            right: 0;
            top: 0;
        }

    .product__details__button .cart-btn {
        float: none;
        margin-right: 0;
    }

    .product__details__button ul {
        float: right;
    }

    .nav-item {
        margin-right: 20px;
    }

    .blog__details__item__title {
        margin-right: 30px;
    }

    .blog__comment__item.blog__comment__item--reply {
        padding-left: 0;
    }

    .blog__comment__item__text ul li {
        margin-right: 5px;
    }

    .primary-btn.load-btn {
        padding: 12px 50px 10px;
    }

    .blog__comment__item__pic {
        float: none;
        margin-bottom: 20px;
    }

    .discount__content form {
        width: 100%;
    }

    .search-model-form input {
        width: 100%;
        font-size: 24px;
    }

    .categories__text a {
        font-size: 10px;
        max-width: 100%;
        overflow: hidden;
    }
}

@media only screen and (max-width: 479px) {
    .categories__text a {
        font-size: 9px;
    }
}

@media only screen and (max-width: 400px) {
    .logo-img {
        /*    max-height: 40px !important;
        max-width: 100px !important;*/
    }

    .canvas__open {
        height: 25px;
        width: 25px;
        line-height: 25px;
        top: 13px;
    }

    .canvas__open {
        font-size: 17px;
    }

    .header__right__auth {
        margin-right: 1px;
    }
}

@media only screen and (max-width: 335px) {
    .logo-img {
        max-width: 86px !important;
    }

    .header__right__auth {
        margin-right: 2px;
    }

    .header__right__widget li a .tip {
        height: 14px;
        width: 14px;
        font-size: 7px !important;
        line-height: 14px;
    }

    .header__right__widget li a {
        font-size: 13px !important;
    }
}

.sale {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    text-align: center;
    position: relative;
    margin-top: 10px;
}

    .sale img {
        max-height: 100%;
        max-width: 100%;
        height: auto;
        width: auto;
        position: absolute;
        top: 50%;
        transition: 0.3s all ease;
        left: 50%;
        margin: auto;
        transform: translate(-50%, -50%);
    }

.shopping-box {
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 48px 0 #dfdfdf;
    overflow: hidden;
    transition: .5s;
    user-select: none;
}

    .shopping-box .shop-content {
        padding: 15px 10px;
        position: relative;
    }

.shop-content .buy-now {
    padding: 10px 15px;
    color: #352961;
    border: 1px solid #352961;
    border-radius: 5px;
    font-weight: 600;
}

.shopping-box .price-product {
    color: #faa832;
    margin: 15px 0;
    transition: 0.3s all;
}

.wow strong {
    font-size: 15px;
    text-decoration: line-through;
    color: #a6a2a2;
}

.shopping-box:hover {
    border: 1px solid #efb443
}

    .shopping-box:hover img {
        transform: translate(-50%, -50%) scale(1.1);
    }

.image {
    overflow: hidden;
}

.shopping-box:hover .price-product {
    color: #352961;
}

.shopping-box:hover .buy-now {
    color: #352961;
    background: #faa832;
    border-color: #352961;
}

.label {
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    padding: 0px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    position: absolute;
    left: 5px;
    top: 0px;
}

    .label p {
        font-size: 10px;
        color: #ffffff;
        font-weight: 500;
        text-transform: uppercase;
    }

    .label.stockout {
        background: #111111;
        z-index: 11;
    }

    .label.new {
        background: #49a760;
        z-index: 11;
    }

.r-filter button {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
}

.filter-option {
    display: none;
    background-color: #eee;
    padding: 10px 0;
    margin: 10px 0;
}
/* filter modal */
.filter-header {
    background-color: #fff;
}

.filter-modal {
    background-color: #fff;
    transform: translateY(100%);
    transition: 0.3s;
    padding: 0 !important
}

.filter-content {
    border: none;
}

    .filter-content .categories__accordion .card {
        border-color: #d3d0d0 !important;
    }

.show {
    transform: translateY(0%) !important;
    transition: 0.2s;
}

.filter-header button {
    background: #fff;
    border: none;
    color: #ca1515;
    font-weight: 700;
    font-size: 18px;
    line-height: 11px;
}

.modal-open .modal {
    overflow-y: scroll !important;
    background: #0000004d;
}
/* end filter modal */
/* cart modal */
.modal {
    transform: translateY(100%);
    transition: 0.2s;
    z-index: 11111111111;
}

.modal-left-border {
    border-left: 1px solid #eee;
    border-radius: unset;
}
/* end cart modal */
.categories__accordion .card-body li a:hover {
    color: rgb(219, 0, 0);
}
/* footer */



.footer__copyright__text span {
    font-weight: 600;
    transition: 0.5s;
}

.footer__copyright__text:hover {
    cursor: pointer;
}

    .footer__copyright__text:hover span {
        color: rgb(219, 0, 0);
    }

.header__menu {
    display: none;
}

.wallet_balance span {
    color: #255946
}


/* .header__right {
  display: none;
} */
/* footer */
.offcanvas-menu-overlay.active {
    visibility: visible;
}

.offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
}

.offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #e0e0e0;
    padding: 45px 10px 30px 15px;
    display: block;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
    z-index: 1111111111111;
    top: 0;
}

    .offcanvas-menu-wrapper.active {
        opacity: 1;
        left: 0;
    }

.offcanvas__close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 30px;
    top: 25px;
    border: 1px solid #acacac;
    border-radius: 50%;
    font-size: 26px;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
}

.offcanvas__menu {
    display: none;
}

.offcanvas__widget {
    text-align: center;
    margin-bottom: 20px;
}

    .offcanvas__widget li {
        list-style: none;
        display: inline-block;
        font-size: 18px;
        color: #111111;
        margin-right: 20px;
        cursor: pointer;
    }

        .offcanvas__widget li:last-child {
            margin-right: 0;
        }

.offcanvas__logo {
    margin-bottom: 25px;
}

.slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.slicknav_btn {
    display: none;
}

.slicknav_nav {
    display: block !important;
}

.offcanvas__auth {
    margin-bottom: 10px;
}

    .offcanvas__auth a {
        font-size: 15px;
        color: #111111;
        position: relative;
        margin-right: 8px;
        font-weight: 800;
    }

        .offcanvas__auth a:last-child {
            margin-right: 0;
        }

            .offcanvas__auth a:last-child:after {
                display: none;
            }

        .offcanvas__auth a:after {
            position: absolute;
            right: -8px;
            top: -2px;
            content: "";
            font-size: 13px;
        }

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
}

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

.offcanvas__widget li a .tip {
    position: absolute;
    right: -12px;
    top: -11px;
    height: 18px;
    width: 18px;
    background: #111111;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}
/*sidemenu bug fixed*/
.offcanvas__widget li a {
    font-size: 18px;
    color: #111111;
    position: relative;
}

.slicknav_nav ul {
    margin: 0;
}

.dropdown li a {
    font-weight: 200;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
}

.slicknav_row p {
    padding: 0px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
}

.clickSlide1 a {
    padding: 3px 0 !important;
}

    .clickSlide1 a .sub_menu {
        font-size: 13px;
        color: #000;
        padding: 0px 3px;
    }

.dropdown-active i {
    transform: rotate( -180deg );
}

i.fa.fa-caret-down {
    transition: .5s transform;
}

.clickSlide2 .third_category {
    font-size: 12px !important;
    padding: 0 14px;
    color: #444444 !important
}

.clickSlide3 a {
    padding: 0 20px !important;
    margin-bottom: 10px;
    font-size: 13px;
}

.slicknav_nav .slicknav_arrow {
    display: none;
}

/*sidemenu bug fixed*/

ul.dropdown {
    margin: 5px 0 5px 0;
}

.back-none {
    background-color: transparent !important;
}

.contact__address ul li p a {
    font-weight: 600;
    color: #606060;
}

.logo-img {
    /*max-height: 50px;*/
    max-width: 200px;
    /*margin-left: 20px;*/
}

@media screen and (max-width:576px) {
    .logo-img {
        max-width: 110px;
    }
}

select.option {
    padding: 14px;
    border-radius: 17px;
    background-color: #ca1f15;
    border: none;
    color: #fffefe;
    width: 41%;
}

.checked {
    color: orange;
}

.text-box {
    margin-top: 1rem;
}

.Rating {
    font-size: 32px;
}

.text-box h2 {
    font-size: 24px;
    text-align: inherit;
}

.button {
    padding: 15px;
    text-align: center;
    width: 100%;
}

a.button {
    background-color: #ca1f15;
    border-radius: 24px;
    color: white;
}

select.option-btn {
    border-radius: 7px;
    padding: 3px 12px;
    background-color: #fff;
    color: #ca1515;
    border: 1px solid #ca1515;
}
/* login */

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

    textarea:focus, input:focus {
        border-color: #212121 !important;
    }

        input:focus::-webkit-input-placeholder {
            color: transparent;
        }

        input:focus:-moz-placeholder {
            color: transparent;
        }

        input:focus::-moz-placeholder {
            color: transparent;
        }

        input:focus:-ms-input-placeholder {
            color: transparent;
        }

        textarea:focus::-webkit-input-placeholder {
            color: transparent;
        }

        textarea:focus:-moz-placeholder {
            color: transparent;
        }

        textarea:focus::-moz-placeholder {
            color: transparent;
        }

        textarea:focus:-ms-input-placeholder {
            color: transparent;
        }

input::-webkit-input-placeholder {
    color: #999999;
}

input:-moz-placeholder {
    color: #999999;
}

input::-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder {
    color: #999999;
}

textarea::-webkit-input-placeholder {
    color: #999999;
}

textarea:-moz-placeholder {
    color: #999999;
}

textarea::-moz-placeholder {
    color: #999999;
}

textarea:-ms-input-placeholder {
    color: #999999;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.5;
    color: #999999;
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    text-align: center;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #9053c7;
    background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
    background: linear-gradient(-135deg, #c850c0, #4158d0);
}

.wrap-login100 {
    /*width: 960px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 177px 130px 33px 95px;*/
}

.p-t-136 a {
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    transition: .3s
}

    .p-t-136 a:hover {
        color: #ca1515;
    }
/*------------------------------------------------------------------
[  ]*/
.login100-pic {
    width: 316px;
    margin: auto;
}

    .login100-pic img {
        max-width: 100%;
    }


/*------------------------------------------------------------------
[  ]*/
.login100-form {
    width: 290px;
}

.login100-form-title {
    font-family: 'Montserrat';
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding: 20px 0 25px 0;
    font-weight: 600
}


/*---------------------------------------------*/
.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 20px;
}

.input100 {
    font-family: serif;
    font-size: 15px;
    line-height: 1.5;
    color: #3a3737;
    display: block;
    width: 100%;
    background: #fff;
    height: auto;
    font-weight: 600;
    border-radius: 0px;
    border: none;
    padding: 8px 22px 8px 30px;
    border-bottom: 1px solid;
}

    .input100:focus {
        border-bottom: 1px solid;
    }

    .input100::placeholder {
        color: #9e9e9e
    }

/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(255, 98, 125, 0.8);
}

.input100:focus + .focus-input100 {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

.symbol-input100 {
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 6px;
    pointer-events: none;
    color: #000;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
    color: #ff0404;
    padding-left: 28px;
}

.ma_title {
    font-weight: 500;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: auto;
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* flex-wrap: wrap; */
    justify-content: center;
    padding-top: 20px;
}

.login100-form-btn {
    font-size: 15px;
    line-height: -2.5;
    color: #fff;
    text-transform: uppercase;
    /* width: 100%; */
    height: 35px;
    margin: auto;
    border-radius: 25px;
    background: #716f6f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .login100-form-btn:hover {
        background: #333333;
    }



/*------------------------------------------------------------------
[ Responsive ]*/



@media (max-width: 992px) {
    .wrap-login100 {
        /*padding: 177px 90px 33px 85px;*/
    }

    .login100-pic {
        width: 35%;
    }

    .login100-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wrap-login100 {
        /*padding: 100px 80px 33px 80px;*/
    }

    .login100-pic {
        display: none;
    }

    .login100-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .wrap-login100 {
        /*padding: 100px 15px 33px 15px;*/
    }

    .offcanvas-menu-wrapper {
        width: 260px !important;
    }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: white;
    border: 1px solid #c80000;
    border-radius: 13px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
    pointer-events: none;
    font-family: Poppins-Medium;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 13px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

.img-login {
    margin-top: 3rem;
    /* max-width: 100%; */
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

.user_auth .modal-content {
    /* height: 400px; */
    padding: 0 32px 32px 32px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

button.btn.btn-primary {
    background-color: white;
    color: ba;
    color: #828282;
    border: none;
    border: none;
}

.text-center.p-t-12 {
    font-family: 'Cookie';
}
/* END login */


/* 404 page */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

#notfound {
    position: relative;
    height: 80vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #notfound .notfound-bg {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        overflow: hidden;
    }

        #notfound .notfound-bg > div {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #eee;
        }

            #notfound .notfound-bg > div:nth-child(1) {
                left: 20%;
            }

            #notfound .notfound-bg > div:nth-child(2) {
                left: 40%;
            }

            #notfound .notfound-bg > div:nth-child(3) {
                left: 60%;
            }

            #notfound .notfound-bg > div:nth-child(4) {
                left: 80%;
            }

            #notfound .notfound-bg > div:after {
                content: '';
                position: absolute;
                top: 0px;
                left: -0.5px;
                -webkit-transform: translateY(-160px);
                -ms-transform: translateY(-160px);
                transform: translateY(-160px);
                height: 160px;
                width: 2px;
                background-color: #e32f2f;
            }

@-webkit-keyframes drop {
    90% {
        height: 20px;
    }

    100% {
        height: 160px;
        -webkit-transform: translateY(calc(100vh + 160px));
        transform: translateY(calc(100vh + 160px));
    }
}

@keyframes drop {
    90% {
        height: 20px;
    }

    100% {
        height: 160px;
        -webkit-transform: translateY(calc(100vh + 160px));
        transform: translateY(calc(100vh + 160px));
    }
}

#notfound .notfound-bg > div:nth-child(1):after {
    -webkit-animation: drop 3s infinite linear;
    animation: drop 3s infinite linear;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#notfound .notfound-bg > div:nth-child(2):after {
    -webkit-animation: drop 2s infinite linear;
    animation: drop 2s infinite linear;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

#notfound .notfound-bg > div:nth-child(3):after {
    -webkit-animation: drop 3s infinite linear;
    animation: drop 3s infinite linear;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

#notfound .notfound-bg > div:nth-child(4):after {
    -webkit-animation: drop 2s infinite linear;
    animation: drop 2s infinite linear;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.notfound {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

    .notfound .notfound-404 {
        height: 210px;
        line-height: 210px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 188px;
            font-weight: 700;
            margin: 0px;
            text-shadow: 4px 4px 0px #e32f2f;
        }

    .notfound h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 42px;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1.6px;
    }

    .notfound p {
        font-family: 'Lato', sans-serif;
        color: #000;
        font-weight: 400;
        margin-top: 20px;
        margin-bottom: 25px;
        font-size: 15px;
    }

    .notfound strong {
        font-family: 'Lato', sans-serif;
        color: #e32f2f;
        font-weight: 700;
        text-decoration: none;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }


.notfound-social {
    margin-top: 35px;
}


.notfound h4 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 5px;
}

.notfound-social > a:hover {
    background-color: #e32f2f;
    -webkit-box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #e32f2f;
    box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #e32f2f;
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        height: 122px;
        line-height: 122px;
    }

        .notfound .notfound-404 h1 {
            font-size: 122px;
        }

    .notfound h2 {
        font-size: 26px;
    }
}

/* END 4040 page */
/* My Account */
.wrap-login100 {
    /*width: 960px;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 77px 130px 70px 95px;*/
    /*box-shadow: 0px 0px 12px rgb(0 0 0 / 53%);*/
    /*border-radius: 20px;
    max-width: none !important;*/
}

.container-lg {
    max-width: 970px;
    /*margin-top: 52px;*/
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 45px;
    /* margin-top: 50px; */
    background-image: url('../img/bg.jpg');
    background-size: cover;
}
/* /my account */
/* My Addresses */
.wrap-login10 {
    width: 960px;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 77px 130px 33px 95px;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 53%);
    border-radius: 20px;
    margin-top: 5rem;
    margin-left: 5rem;
}

.address_box {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.50);
    height: 100%;
    padding: 20px;
    border-radius: 6px;
    transition: 0.2s;
}

a.add_address {
    display: block;
    text-align: center;
}

.address_box i.fa.fa-plus-square {
    font-size: xx-large;
    color: #292221;
}

.font-20 {
    font-size: 18px;
    color: #49a760;
}

.font-14 {
    font-size: 14px;
    color: #49a760;
    opacity: .5;
}

/*END  MY Addresses */
.checkout__title span {
    font-weight: 600;
    color: #656060;
}


/* Rating Star Widgets Style */
.rating-stars ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    -moz-user-select: none;
    -webkit-user-select: none;
}

    .rating-stars ul > li.star {
        display: inline-block;
    }

        /* Idle State of the stars */
        .rating-stars ul > li.star > i.fa {
            font-size: 2.5em; /* Change the size of the stars */
            color: #ccc; /* Color on idle state */
        }

        /* Hover state of the stars */
        .rating-stars ul > li.star.hover > i.fa {
            color: #FFCC36;
        }

        /* Selected state of the stars */
        .rating-stars ul > li.star.selected > i.fa {
            color: #FF912C;
        }

.ui-widget.ui-widget-content {
    z-index: 1111111111111 !important
}




.brand_name {
    font-size: 10px !important;
    color: #444444 !important;
    font-weight: 600 !important;
}

.pro_name {
    font-size: 13px;
}

.use_name {
    font-size: 15px;
    color: #000;
    position: relative;
    float: left;
    font-weight: 800;
}

.use_name1 {
    font-size: 12px;
    color: #000000;
    position: relative;
    font-weight: 700;
}

.r-filter a {
    border: 1px solid #000;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.tab-content > .active {
    border-radius: 10px;
    padding: 10px;
    border-top: none;
}

.discount__content {
    width: 370px;
    display: inline-block;
}

    .discount__content .promocode {
        height: 52px;
        width: 100%;
        border: 1px solid #444444;
        border-radius: 50px;
        padding-left: 30px;
        padding-right: 115px;
        font-size: 14px;
        color: #444444;
    }
/*.apply{
        position: absolute;
    right: 4px;
    top: 4px;
}*/
.site-btn:hover {
    color: #ca1515;
    background: #fff;
    border: 2px solid #ca1515;
}

.title h2 {
    color: #111;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.pay-bg {
    background-image: url('../img/payment.jpg');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top;
}

.wn__order__box {
    background: #f4f4f4 none repeat scroll 0 0;
}

    .wn__order__box h3.onder__title {
        border-bottom: 1px solid #e1e1e1;
        font-size: 24px;
        margin: 0;
        padding: 15px 0;
        text-align: center;
        text-transform: uppercase;
        width: 100%;
        color: #2e2e2e;
    }

.total__amount {
    border-top: 1px solid #e1e1e1;
    padding: 0 80px;
}

    .total__amount li {
        color: #333444;
        font-size: 18px;
        font-weight: 700;
        padding-bottom: 15px;
        padding-top: 15px;
        text-transform: uppercase;
        list-style: none;
    }

        .total__amount li span {
            float: right;
        }

.razorpay-payment-button {
    background: #135184;
    color: #fff;
    border-radius: 0;
    padding: 10px 20px;
    margin: auto;
    border: none;
}

#ctl01 {
    text-align: center;
    margin-top: 20px;
}

.login_main_page {
    background-image: url('../img/login_bg.jpg');
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 83vh
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000026;
    /*filter:blur(100px);*/
}

.customer_details {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    position: relative;
}

    .customer_details:after, .customer_details:before {
        -webkit-box-shadow: 0 0 15px 0 rgb(72 73 121 / 15%);
        -moz-box-shadow: 0 0 15px 0 rgba(72,73,121,.15);
        -o-box-shadow: 0 0 15px 0 rgba(72,73,121,.15);
        box-shadow: 0 5px 15px 0 rgb(72 73 121 / 15%);
        border-radius: 0 0 5px 5px;
    }

    .customer_details::after {
        content: "";
        background: #ffffffbf;
        width: 92%;
        height: 30px;
        position: absolute;
        left: 4%;
        bottom: -20px;
    }

    .customer_details::before {
        content: "";
        background: #ffffffd4;
        width: 96%;
        height: 30px;
        position: absolute;
        left: 2%;
        bottom: -10px;
    }

.error__content h2 {
    font-weight: 600;
}

.error__content h5 {
    font-weight: 500;
    margin: 5px 0;
}

.error__content p {
    color: #444444;
    font-weight: 900
}

.total_rating {
    background: #255946 !important;
    color: #fff !important;
    font-weight: 800;
    width: 37px;
    height: 29px;
    font-size: 18px;
}

.product__item__text .rating-abso {
    position: absolute;
    /* top: 0; */
    bottom: 85%;
    left: 44%;
}

.product__item__text h5 {
    font-size: 18px;
    font-weight: 800;
    color: #255946;
}

.modal-bg {
    background-image: url(../img/login_bg.jpg);
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
}

button.close.text-right.close_modal {
    font-size: 40px;
    color: #000;
}


/*custime alert*/
.custom-alert {
    position: fixed;
    bottom: 0px;
    left: 2%;
    display: block;
    width: 96%;
    z-index: 11111111111;
}

.custom-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.custom-alert- {
}

.Custome_alert {
    /*position: relative;*/
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.right_who {
    background: #0000008f;
    color: #fff;
    min-height: 500px
}

    .right_who h2 {
        color: #fff;
        font-weight: 600
    }

    .right_who h5 {
        <<<<<<< .mine color:#d5d5d5;
        margin: 20px 0;
        position: relative;
        ||||||| .r9 color:#d5d5d5;
        margin: 15px 0 ======= color: #d5d5d5;
        margin: 15px 0 >>>>>>> .r13
    }

<<<<<<< .mine
.right_who h5:after {
    content: "";
    height: 3px;
    background: #6ac610;
    width: 70px;
    left: 0;
    position: absolute;
    bottom: -6px;
}

.right_who h5 span {
    color: #fff
}

|| || || | .r9
.right_who h5 span {
    color: #fff
}

=======

.right_who h5 span {
    color: #fff
}

> > > > > > > .r13
.right_who p {
    color: #D5D5D5
}

/*motto section*/
.motto {
    /*    margin: 90px 0*/
}

.motto_title {
    text-align: center;
}

    .motto_title h1 {
        color: #255946
    }

    .motto_title h3 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .motto_title p {
        font-size: 17px;
    }

.motto_box {
    text-align: center;
    margin: 5px;
    background: #f4f9fd;
    box-shadow: 0 0 14px 0px #898989;
    border-radius: 5px;
    transition: 1s background;
}

    .motto_box:hover {
        background: linear-gradient(40deg, #000000, #cecece)
    }

        .motto_box:hover p, .motto_box:hover h4, .motto_box:hover i {
            color: #fff
        }

    .motto_box i {
        font-size: 35px;
        margin: 20px 0 8px 0;
    }
/*end motto section*/

/*main header contact about page*/
.contact_pg {
    background: url(/img/contact.jpg);
}

.about_pg {
    background: url(/img/about.jpg);
}

.main_header {
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.97);
    position: relative;
}

    .main_header::before {
        content: "";
        background: rgb(0 0 0 / 65%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: .4s;
    }

.head_content {
    z-index: 3;
}

.main_header h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2.4rem
}

.head_hr {
    width: 200px;
    height: 2px;
    background: #fff;
    animation: trans 2s linear;
}

@keyframes trans {
    from {
        transform: translateX(-90px);
    }

    to {
        transform: translateX(0px);
    }
}

.contact__form input::placeholder {
    color: #000
}

.contact__form textarea::placeholder {
    color: #000
}
/*about page*/
.a_section_title h2 {
    color: #255946
}

    .a_section_title h2 span {
        font-weight: 800;
        color: #111111
    }

.a_section_title h5 {
    color: #25292f;
    font-size: 18px;
}

    .a_section_title h5 span {
        color: #255946
    }

.sub_title h4 {
    font-weight: 700
}

.list_path li {
    float: left;
    list-style: none;
    margin-right: 25px;
}

.floatnone li {
    float: none !important;
}

.list_path li i {
    color: #255946;
}

.list_path li p {
    color: #000;
    font-weight: 600;
    font-size: 17px
}

.a_section_title p span {
    color: #255946;
    font-weight: 600
}

.a_section_title p {
    font-size: 15px;
}
/*team in about*/


/*r&d page*/
.rd-right h4 {
    font-weight: 700;
}
/*custom alert*/
.custom-alert {
    position: fixed;
    bottom: 0px;
    left: 2%;
    display: block;
    width: 96%;
    z-index: 11111111111;
}

.custom-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.custom-alert- {
}

.Custome_alert {
    /*position: relative;*/
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.custom-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/*end alert*/


.main_product {
    padding: 0 0 70px 0;
    position: relative;
    background: #f7f7f7;
    overflow: hidden;
}

.pea {
    position: absolute;
    right: 20px;
    max-width: 210px;
    bottom: 0px;
    animation: bowl 27s linear infinite;
}

@keyframes bowl {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-moz-keyframes bowl {
}

@-webkit-keyframes bowl {
}

.p_content h3 {
    color: #12723f;
    font-weight: 800
}

@media screen and (max-width:576px) {
    .p_content h3 {
        font-size: 18px;
    }
}

.p_content p {
    color: #768b2f
}

.product_d_list {
    list-style: none;
}

    .product_d_list li {
        margin: 10px 0;
        color: #000
    }

        .product_d_list li i {
            color: #12723f
        }

.motto_box h4 {
    font-weight: 900;
    font-size: 15px;
}

.footer__policy a {
    font-weight: 700;
    color: #fff;
    margin: 3px 20px;
    letter-spacing: 2px;
}

.fancybox-container {
    z-index: 9999999999999993 !important;
}


.tab-content {
    box-shadow: 1px 0px 9px rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 10px;
}





/*=============-------change top menu--------===============*/

.top_menu {
    background: #2e5592;
    height: 30px;
    line-height: 16px;
}

    .top_menu .float-left {
        padding: 7px 0;
    }

.float-left {
    float: left !important;
}

.top_menu .float-left p {
    display: inline-block;
    line-height: 15px;
    color: #ffffff;
    font-size: 13px;
    font-family: "Roboto",sans-serif;
    /*font-weight: 600;*/
    margin: 0px;
    text-transform: uppercase;
    border-right: 1px solid #ffffff;
    padding: 0px 19px;
    /*text-shadow: 0px 0px 5px #000000;*/
}

    .top_menu .float-left p:last-child {
        border-right: 0px;
    }



.float-right {
    float: right !important;
}

.top_menu .right_side {
    margin-bottom: 0px;
    padding: 7px 0;
}

    .top_menu .right_side li {
        display: inline-block;
    }

        .top_menu .right_side li a {
            font-size: 13px;
            color: #ffffff;
            display: inline-block;
            border-right: 1px solid #ffffff;
            transition: all 300ms linear 0s;
            text-transform: uppercase;
            padding: 0px 19px;
            /*font-weight: 900;*/
            /*text-shadow: 0px -2px 2px rgb(0 0 0 / 47%);*/
        }

        .top_menu .right_side li:last-child a {
            padding-right: 15px;
            border-right: 0px;
        }

.product__details__price .breadcrumb {
    background-color: #ffffff;
}


.product__details__price li.breadcrumb-item {
    font-size: 20px;
    font-weight: 600;
}

.product__details__tab .nav-item {
    margin-right: 15px;
    padding: 0.75rem 0rem;
}

.product__details__tab .nav {
    margin-bottom: 10px !important;
}

/*.desktop_menu{
    padding:10px 0;
}*/

.video_modal {
    border: 6px solid #fff;
    box-shadow: 0 0 9px #000;
}

    .video_modal iframe {
        width: 100%;
        height: 70vh;
    }

.quality {
    padding: 70px 0 !important;
}

button#video_close {
    position: absolute;
    background: #fff;
    padding: 0;
    opacity: 0.55;
    right: 0;
    top: 0;
    font-size: 50px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 0 0 0 20px;
}

.section_title {
    font-family: 'Amatic SC', sans-serif
}

h3.section_title {
    font-size: 65px;
    color: #49a760;
    display: inline-block;
    text-shadow: -2px -2px 1px #ffffff;
}

.about_home .about_img {
    filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 32%));
}

.title-icon {
    margin: -33px 0 10px 10px;
}

.quality .service-one__box-content {
    padding: 10px !important;
    box-shadow: 1px 3px 7px rgb(0 0 0 / 43%);
}

.service-one__box-content h3 {
    font-size: large !important;
}

.service-one__box {
    margin-bottom: 60px;
}

a.prd_list_btn {
    transition: 0.3s;
}

    a.prd_list_btn:hover .service-one__box-content {
        background: #2e5592;
    }

        a.prd_list_btn:hover .service-one__box-content h3 {
            color: #fff !important;
        }

.quality .service-one__box img {
    height: 250px;
    object-fit: cover;
}

.about_content p {
    text-align: justify;
    font-size: large;
}

.about_right_content h3 {
    font-size: xx-large;
}

img.farmer_svg {
    position: absolute;
    right: 0;
    bottom: -74px;
    width: 50%;
    opacity: 0.3;
}

section#product_list_home {
    overflow: hidden;
    position: relative;
}

p.text-white.font-20 {
    font-size: 20px;
    margin-top: 10px;
}

.high_quality .about1__button-block a {
    background: #efb443;
    color: #333 !important;
}

.growth {
    margin: 0;
}

.service-one__box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 9px rgb(0 0 0 / 38%);
}

.service-one__box {
    transition: 0.3s;
}

.wrapper {
    width: 100%;
    margin: 30px auto;
    position: relative;
}

.counter {
    background-color: #ffffff;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.counter {
    padding: 10px;
    text-align: center;
    box-shadow: 0px 1px 9px rgb(0 0 0 / 32%);
    border-radius: 40px 30px 80px 30px;
    border-left: 3px solid #49a760;
    min-height: 192px;
    margin-bottom: 15px;
}

.number_section {
    padding: 50px 0;
    /*background: #fff7df;*/
}

.counter span {
    font-size: xxx-large;
}

.counter h2, .counter span {
    font-weight: 900;
    color: #797979;
    font-size: 26px;
    margin-bottom: 7px;
    display: inline-block;
}

.counter p {
    margin-top: -10px;
    font-size: 18px;
    font-weight: 900;
    padding: 0 20px;
    border-top: 2px dashed #2e3192;
    padding-top: 8px;
    margin: 0 10px;
}

img.num_icon {
    width: 30%;
    display: block;
    text-align: center;
    margin: auto;
}

.counter h2, .counter span {
    font-size: 21px;
}

.counter {
    border-radius: 20px 10px 10px 30px;
    min-height: 175px;
}

.number_section {
    padding: 10px 0;
}

.canvas__open.d-lg-none {
    border: 0;
    font-size: 20px;
}

.service-two__card-content {
    padding: 10px !important;
}

.motto_card {
    box-shadow: 0 0 9px rgb(0 0 0 / 42%);
}

.service-two__card-icon img {
    filter: invert(1);
    width: 60%;
}

.motto_image img {
    height: 200px;
    object-fit: cover;
}

div#main_slider img {
    height: 540px;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .top_menu .float-left p {
        line-height: 31px;
        font-size: 10px;
        border-right: 1px solid #ffffff;
        padding: 0px 10px;
    }

    .top_menu .float-left {
        padding: 0px 0;
    }

    .top_menu .col-lg-5 {
        display: none;
    }

    .canvas__open.d-lg-none {
        position: fixed;
        top: 50px;
        right: 40px;
    }

    .canvas__open {
        left: auto;
    }

    .filter-option {
        margin-top: 115px;
    }

    .shop {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .slicknav_menu:last-child {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    div#main_slider img {
        height: 230px !important;
    }

    .motto_card .motto_image img {
        height: 120px;
    }

    img.num_icon {
        width: 43%;
    }

    .counter p {
        padding: 6px 0 0 0;
    }

    img.farmer_svg {
        bottom: -20px;
        width: 80%;
        right: -20px;
    }

    .about1__button-block {
        margin-bottom: 30px;
    }

    .quality .service-one__box-content .title {
        font-size: 14px !important;
    }

    .quality .service-one__box-content {
        padding: 5px !important;
    }

    .quality .service-one__box img {
        height: 150px !important;
        object-fit: cover;
    }

    .canvas__open.d-lg-none {
        top: 40px;
    }

    .filter-option {
        margin-top: 90px;
    }

    .video_modal iframe {
        width: 100%;
        height: 50vh;
    }

    .filter-option.d-none {
        display: none !important;
    }
}

li.mobile_cat a {
    background: #fff;
    margin: 6px 0;
    padding: 5px 8px !important;
    border-radius: 30px;
    border-left: 2px solid #42a73c;
    box-shadow: 0 0 2px rgb(0 0 0 / 44%);
    color: #505050;
}

a.slicknav_item.slicknav_row {
    padding: 0;
    margin: 0 !important;
}

    a.slicknav_item.slicknav_row p {
        padding: 0;
    }

.offcanvas-menu-wrapper {
    background: #fff6f4;
}

li.mobile_cat {
    padding: 0 10px;
}

@media only screen and (max-width: 420px) {

    .top_menu .float-left p {
        padding: 0px 6px;
    }

    .canvas__open.d-lg-none {
        top: 43px;
    }
}


/*=============-------change top menu--------===============*/
.quality {
    background: #e6e6e6 !important;
    margin-bottom: 50px !important;
}

.btn-success {
    background-color: #2e5592;
    border-color: #254577;
}

    .btn-success:hover {
        background-color: #203c69;
        border-color: #254577;
    }

.motto_card .service-two__card-content .service-two__card-icon {
    background-color: #2e5592 !important;
}

.high_quality:after {
    background: rgb(46 85 146 / 80%) !important;
}

.chairman_msg {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .chairman_msg > img {
        max-width: 260px;
        border-radius: 10px;
        border: 10px solid #fff;
        box-shadow: 0 0 9px rgb(0 0 0 / 16%);
    }

.chairman-section {
    background: #eee;
    margin-top: -30px;
}

    .chairman-section .about_right_content p {
        font-size: 15px !important;
        line-height: 24px !important;
        color: #000 !important;
        text-align: justify !important;
    }

.center_item{
    justify-content:center;
    display:flex;
    flex-direction:column;
    height:100%;
}

@media screen and (max-width : 768px) {
    .chairman-section {
        margin-top: 50px;
    }

    .chairman_msg {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
