/*
Typography
=========================== */
html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -0-transition: none;
    transition: none;

}

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #FFF;
    width: 100%;
    height: 100%
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);

}

.loader:before,
.loader:after {
    content: '';
    border: 1em solid #ff5733;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*automatic-popup-css-strats*/

.pop-slider{

   position: fixed;
    bottom:15px;
    left: 30px;
    width: 350px;
    background: #ccc;
    height: 0;
    z-index: 11;
}
.pop-slider div{
    position: absolute;
    width: 100%;
    bottom: -400px;
    background: #fff;
    border: 1px solid #ccc;
    
}

.recentsales-news{
    display: flex;
    justify-content: space-between;
}
span.recent-sale-img-wrapper{
    max-width: 23%;
    display: block;
    padding: 10px 0;
}
.recent-sale-content{
    width: 72%;
    padding: 10px 0;
}
.some-purchase{
   font-size: 13px;
    color: #1c1c1c;
    
}
.rc-pd-title{
    font-size: 15px;
    margin-bottom: 10px;
    padding-right: 15px;
    box-sizing:border-box;
}
a.recent-sale-buy-btn{
    display: block;
    max-width: 70px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    color: #fff;
    background: #ff000f;
    text-align: center;
    line-height: 30px;
    font-size: 10px;
    font-weight: 600;
    
}


@-webkit-keyframes show-popup {
    0% {
        -webkit-transform: translate(0) scale(0.7);
        transform: translate(0) scale(0.7);
        opacity: 0;
    }

    45% {
        -webkit-transform: translate(0) scale(1.05);
        transform: translate(0) scale(1.05);
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0) scale(0.95);
        transform: translate(0) scale(0.95);
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
    }
}

@keyframes show-popup {
    0% {
        -webkit-transform: translate(0) scale(0.7);
        transform: translate(0) scale(0.7);
        opacity: 0;
    }

    45% {
        -webkit-transform: translate(0) scale(1.05);
        transform: translate(0) scale(1.05);
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0) scale(0.95);
        transform: translate(0) scale(0.95);
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
    }
}

@-webkit-keyframes hide-popup {
    0% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(0.5);
        transform: translate(0) scale(0.5);
        opacity: 0;
    }
}

@keyframes hide-popup {
    0% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(0.5);
        transform: translate(0) scale(0.5);
        opacity: 0;
    }
}

/*automatic-popup-css-ends*/
body {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #6f6f6f;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

input[type="color"] {
    -webkit-appearance: none;
    border: none;

}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}

hr {
    margin-top: 5px;
    margin-bottom: 9px;
    border: 0;
    border-top: 1px solid #333;
}

p,
a,
ul,
li {
    display: block;
    color: #111;
    margin: 0px;
    padding: 0px;
}

a {
    color: #6f6f6f;
    text-decoration: none;
}

.breadcrumb a {
    display: inline-block;
}


a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3f3f3f;
    margin: 0 auto;
    font-weight: bold;
}

h4.inner-pg-section-heading {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    margin-bottom: 10px;
    margin-top: 30px;
}

p.inner-pg-content {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    line-height: 18px;
    color: #000;
    margin-bottom: 5px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30x !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.no-gutters {
    padding: 0;
}

.no-gutters-left {
    padding-left: 0;
}

.no-gutters-right {
    padding-right: 0;
}

img.responsive-img {
    width: 100%;
}

input,
select,
textarea {
    outline: 0;

}

/*header*/
/*top-header*/
.top-header {
    width: 100%;
    background: #311310;
    padding: 5px 15px;
}

.top-header-wrapper {
    margin: 0;
}

.top-header-content .bootstrap-select.btn-group:not(.input-group-btn) {
    margin: 0;
}

.top-header-content .bootstrap-select > .btn {
    width: 100%;
    padding-right: 25px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.top-header-content a {
    color: #FFF;
}

/*top-header*/
/*navigation*/
.float-panel {
    width: 100%;
    background: white;
    z-index: 99999999999999;
    transform: translateZ(360);
}


.fixed {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: slide-down 0.7s;
    opacity: 1;
    margin-bottom: 100px;
}

.fixed .fa-gg {
    transform: rotate(360deg);
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
button.header-srch-btn {
    width: 100%;
    /* vertical-align: baseline; */
    display: block;
    /* margin-top: -19px; */
    top: -11px;
    position: relative;
    /* margin-right: -39px; */
    right: 15px;
    border: none;
    border-radius: 3px;
}
.navbar-brand {
    float: left;
    height: auto;
    padding: 6px;
    font-size: 18px;
    line-height: 20px;
}

.col__menu {
    padding: 0px;
}

.col-menu span {
    display: inline-block;
    margin-right: 6px;
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
    text-align: left;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu {
    padding: 0;
}

.product-container {
    width: 100%;
    padding: 20px 0;
}

.section-heading-wrapper {
    position: relative;
    width: 100%;
}

/*navigation*/
/*header*/
.carousel-indicators {
    position: absolute;
    bottom: 50% !important;
    right: 0;
    z-index: 15;
    width: 50px;
    padding-left: 0;
    margin-left: 0;
    text-align: center;
    list-style: none;
    left: inherit;
}

.carousel-indicators li {
    display: block;
    padding: 5px;
    margin: 5px 0;
}

.banner {
    width: 100%;
    min-height: 100px;
    max-height: 550px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.banner .col-md-6 {
    min-height: 550px;
    max-height: 550px;
}

.banner-content {
    width: 100%;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-text {
    color: #FFF;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-heading {
    /*text-align: center;*/
    background: #FFF;
    /*font-size: 40px;*/
    color: #639;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
}

a.banner-btn {
    width: 187px;
    height: 58px;
    border-radius: 4px;
    background: #ba0d0f;
    color: #FFF;
    line-height: 58px;
    margin-left: 0px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.banner-inner-1-img {
    max-width: 448px;
    width: 100%;
    position: absolute;
    left: -22%;
    bottom: 0
}

.banner-inner-2-img {
    max-width: 376px;
    width: 100%;
    position: absolute;
    right: 5%;
    bottom: 0
}

.banner-inner-3-img {
    max-width: 78px;
    width: 100%;
    position: absolute;
    left: 15%;
    bottom: 5px;

}

.banner-inner-3-img img,
.banner-inner-1-img img,
.banner-inner-2-img img {
    width: 100%;
}

.product-wrapper {
    display: block;
    height: auto;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    border: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    text-align: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    max-height: 300px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.product-wrapper .image-wrapper img {
    max-height: inherit;
}

.image-wrapper a {
    max-height: 265px;
    text-align: center;
    vertical-align: middle;
    display: block;
    line-height: 200px;
    overflow: hidden;
}

.image-wrapper a img {
    display: inline-table;
    vertical-align: middle;
}

.product-title {
    max-height: 50px;
    min-height: 45px;
    display: grid;
    place-items: center;
    margin-top: 10px;

}

.product-title h4 a {
    font-family: 'Fira Sans', sans-serif;
    display: block;
    color: #111;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.product-pice {
    text-align: center;
    font-family: 'Fira Sans', sans-serif;
    display: block;
    color: #111;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.quick-view {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.6);
    transform: scale(0);
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.quick-view span {
    max-width: 200px;
    display: block;
    margin: auto;
    background: #FFF;
    color: #111;
    height: 30px;
    padding: 0 15px;
    border-radius: 3px;
}

.quick-view span a {
    height: auto;
    line-height: 30px;
}

.product-wrapper:hover .quick-view {
    transform: scale(1);
}

.discounted-price {
    position: absolute;
    right: -25%;
    top: -21%;
    width: 150px;
    height: 150px;
    background: #f03030;
    transform: rotate(45deg);
}

.discounted-price span {
    display: block;
    position: absolute;
    color: #FFF;
    font-weight: 600;
    font-size: 14px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.parallax-banner {
    width: 100%;
    min-height: 500px;
    background: url(../images/parralax-banner-1.jpg) no-repeat;
    background-position: center 10px;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0;
    place-items: center;
    display: grid;

}

p.paralax-1-text {
    font-size: 50px;
    color: #fff;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.parallax-banner-2 {
    width: 100%;
    padding: 100px 0;
    background: url(../images/parralax-banner-2.jpg) no-repeat;
    background-position: center 10px;
    background-size: cover;
    background-attachment: fixed;
}

.parallax-banner-2 h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 25px;
    text-transform: uppercase;
    font-family: 'Fira Sans', sans-serif;
    text-shadow: 0px 0px 5px rgb(0, 0, 0);
}
.view-n-more{
    width:100%;
    max-width:200px;
    height:50px;
    border-radius:3px;
    display:block;
    margin: 20px auto 60px;
    line-height:50px;
    text-align:center;
    background: #212121;
    color:#FFF;
    border:1px solid #212121;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
    
}
.view-n-more:hover{
    background:#FFF;
    color:#212121;
}
.footer {
    padding: 20px 0;
    background: #eee;
}

.footer-widget-title {
    width: 100%;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Fira Sans', sans-serif;
}

ul.footer-links li a {
    font-family: 'Fira Sans', sans-serif;
    color: #333;
    font-size: 15px;
    font-weight: 400;

}

ul.footer-links li.email a {
    font-size: 18px;
    color: #000;
    font-weight: 300;
}

.payment li {
    width: 40px;
    display: inline-block;
    margin-right: 2px;
    margin-top: 5px;

}

.social-links li {
    display: inline-block;
}

.social-links li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 5px;
    background: #000;
    color: #FFF;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.newsletter {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #FFF;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: left;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    margin: 5px 0;
}

.subscribe {
    width: 100%;
    height: 40px;
    background: #000;
    color: #FFF;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    border: none;
    border-radius: 3px;
}

.subscribe:hover {
    background: #555;
}

.subscribe span {
    margin-left: 5px;
}

.copy {
    width: 100%;
    background: #333;
    padding: 5px 0;
    color: #FFF;
    font-size: 14px;
    text-align: center;
}

.copy a {
    color: #e91832;
    display: inline-block;
}

/*Product-details*/
.pd-heading-size-text{
    margin-top: 10px;
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
}

.product-details-container {
    padding: 25px 0;
}

ul.modal-pd-rating {
    margin: 15px 0;
}

ul.modal-pd-rating li {
    display: inline-block;
}

ul.modal-pd-rating li a {
    display: block;
    color: #ffab05;
    font-size: 16px;
    font-family: 'Fira Sans', sans-serif;
}

ul.modal-pd-rating li.review a {
    color: #333;
    font-size: 14px;
}

.modal-pd-price {
    font-size: 30px;
    width: 100%;
    font-family: 'Fira Sans', sans-serif;

}

.instock {
    float: right;
    color: #000;
    font-weight: 300;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    vertical-align: middle;
}

.instock span {
    color: #048e31;
    font-size: 18px;
    margin-right: 5px;
}

.modal-pd-price span {
    display: inline-block;
    color: #7b7b7b;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 0px;
}

.modal-pd-price p {
    display: inline-block;
    font-family: 'roboto';
    font-size: 13px;
    text-align: right;
    float: right;
    margin-top: 5px;
    margin-right: 5px;
}

.modal-pd-price p small {
    font-size: 13px;
}

.size .bootstrap-select.btn-group .dropdown-menu li > a:hover {
    background: #000;
    color: #FFF;
}

.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 1;
}

.size .bootstrap-select.btn-group .dropdown-menu {
    z-index: 1;
}

#qty {
    margin: 20px 0;
}

#qty p {
    display: inline;
    margin-right: 18px;
    font-weight: 600;
}

#qty span {
    display: inline-block;
    width: 40px;
}

.input-number {
    width: 100%;
    height: 40px;
    text-align: center;
    color: #111;
    font-weight: 700;
    border-color: #000;

}

.modal-buy-now-btn {
    width: 150px;
    height: 50px;
    line-height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    border-radius: 50px;
    margin-left: 0;
    margin-right: 15px;
    cursor: pointer;
    border: 1px solid #333;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;

}

.modal-buy-now-btn:hover {
    background: #FFF;
    color: #333;
}

.scial-share {
    width: 100%;
    text-align: center;
}

.scial-share li {
    display: inline-block;
}

.scial-share li a {
    display: block;
    margin: 10px;
    font-size: 24px;
}

.scial-share li.fb-share a {
    color: #3b5998;
}

.scial-share li.tw-share a {
    color: #55acee;
}

.scial-share li.linkedin-share a {
    color: #0077b5;
}

.scial-share li.pentarest-share a {
    color: #bd081c;
}

.scial-share li.insta-share a {
    color: #3f729b;
}

.product-featured-list li {
    margin: 15px 0;
    font-size: 15px;
    color: #000;
    position: relative;
    padding-left: 30px;
}

.product-featured-list li:after {
    content: "\f18e";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #111;
}

.product-decription {
    width: 100%;
    padding: 20px 95px;
}

.product-decription ul {
    border: none;
}

.product-decription ul li {
    margin-bottom: 0;
}

.product-decription .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #FFF;
    cursor: default;
    background-color: #333;
    border: none;
    border-bottom-color: transparent;
}

.product-decription .nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px;
}

.product-desc-wrapper {
    padding: 20px;
}

.product-desc-wrapper h4 {
    margin-bottom: 15px;
}

.product-desc-wrapper p {
    line-height: 20px;
    color: #000;
    font-size: 14px;
}

.review-form {
    background: #000;
}

.review-content {
    font-size: 22px;
    font-family: 'Fira Sans', sans-serif;
    line-height: 24px;
    color: #333;
    font-weight: 300;
}

.review-content small {
    display: block;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    line-height: 14px;
    color: #333;
    font-weight: 700;
    margin-top: 5px;
}

.secure-text {
    font-size: 18px;
    color: #000;
    font-family: 'Fira Sans', sans-serif;
    text-align: center;

}

.secure-text span {
    display: inline-block;
    margin-right: 5px;
    font-size: 30px;
    vertical-align: middle
}

#review_form {
    margin-top: 25px;
}

input.review_form_control {
    width: 100%;
    margin-bottom: 15px;
    height: 45px;
    border: 1px solid #555;
    color: #555;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
}

textarea.review_form_control {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    min-height: 60px;
    max-height: 60px;
    border: 1px solid #555;
    color: #555;
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
    border-radius: 4px;
}

input.review_form_control:focus,
textarea.review_form_control:focus {
    border: 1.5px solid #000;

}

.review-sub-btn {
    width: 300px;
    background: #000;
    color: #FFF;
    border: 1px solid #000;
    height: 45px;
    border-radius: 4px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.review-sub-btn:hover {
    background: #FFF;
    color: #000;
}

input.review_form_control::placeholder,
textarea.review_form_control::placeholder {
    color: #555;
}

.rate {
    display: inline-block;
    border: 0;
}
/* Hide radio */
.rate > input {
    display: none;
}
/* Order correctly by floating highest to the right */
.rate > label {
    float: right;
}
/* The star of the show */
.rate > label:before {
    display: inline-block;
    font-size: 24px;
    padding: .3rem .2rem;
    margin: 0;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005 "; /* full star */
}
/* Zero stars rating */
.rate > label:last-child:before {
    content: "\f006 "; /* empty star outline */
}
/* Half star trick */
.rate .half:before {
    content: "\f089 "; /* half star no outline */
    position: absolute;
    padding-right: 0;
}
/* Click + hover color */
input:checked ~ label, /* color current and previous stars on checked */
label:hover, label:hover ~ label { color: #FBC02D;  } /* color previous stars on hover */

/* Hover highlights */
input:checked + label:hover, input:checked ~ label:hover, /* highlight current and previous stars */
input:checked ~ label:hover ~ label, /* highlight previous selected stars for new rating */
label:hover ~ input:checked ~ label /* highlight previous selected stars */ { color: #A6E72D;  } 


/*cart-page*/

.shopping-text {
    width: 100%;
    text-align: left;
    font-size: 24px;
    color: #FFF;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    text-transform: uppercase;

}

.shopping-text span {
    display: inline-block;
    margin-right: 15px;
    vertical-align: baseline;
    font-size: 30px;
}

.back-shopping-text {
    width: 100%;
}

.back-shopping-text a {
    display: block;
    text-align: right;
    font-size: 18px;
    color: #FFF;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;

}

.back-shopping-text a span {
    display: inline-block;
    margin-right: 5px;
    vertical-align: baseline;
    font-size: 24px;
}

.back-shopping-text a:hover {
    margin-right: 5px;
}

.cart-details-container {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
}

.cart-pd-title {
    text-align: center;
    padding: 10px 0 10px 15px;
    width: 100%;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    text-transform: uppercase;
}

.cart-img-wrapper {
    height: 300px;
    text-align: center;
}

.cart-img-wrapper img {
    height: 100%;
}

.cart-pd-desc {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    line-height: 18px;
    text-align: left;
    margin-bottom: 5px;
}

.cart-pd-price {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Fira Sans', sans-serif;
    color: #000;
    text-align: left;
    width: 100%;
}

.cart-pd-desc-wrapper {
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center left;
    min-height: 82px;
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: 15px;
}

.cart-remove {
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    min-height: 82px;
    box-sizing: border-box;
    margin-top: 15px;
}

.remove-btn {
    display: block;
    font-size: 42px;
    color: #e91832;
}

.text-center {
    text-align: center !important;

}

.cart-qty {
    width: 100%;
    overflow: hidden;
    display: table;
    place-items: center;
    min-height: 82px;
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: 15px;
}

.cart-total-container {
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    min-height: 82px;
    box-sizing: border-box;
    margin-top: 15px;
}

.cart-qty span {

    width: 35px;
    display: table-cell;
    vertical-align: middle;
}

.cart-qty span button {
    width: 100%;
    border-radius: none;
    border: 1px solid #000;
}

.cart-qty span input {
    width: 100%;
    /* border: 1px solid #000; */
    /* border-right: 0px solid #000; */
    /* border-left: 0px solid #000; */
    text-align: center;
    /* height: auto;*/
}

.cart-quantity {
    place-items: center;
    min-height: 80px;
    display: flex;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-around;
    padding: 0 15px;
}

.cart-quantity input {
    width: 50%;
    text-align: center;
    border: 1px solid #000;
    color: #000;
    height: 50px;
}

.cart-quantity button {
    width: 40%;
    border-radius: 0;
    height: 50px;
}

input.cart-pd-color-control {
    padding: 0;
    background: none;
    border: 1px solid #ccc;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
}

.cust-panel {
    padding: 0 7px;
    margin-bottom: 0;
    border-radius: 4px 4px 0 0;
}

.cust-panel .table > tbody > tr > td,
.cust-panel .table > tbody > tr > th,
.cust-panel .table > tfoot > tr > td,
.cust-panel .table > tfoot > tr > th,
.cust-panel .table > thead > tr > td,
.cust-panel .table > thead > tr > th {
    padding: 15px;
}

a.checkout-btn {
    display: block;
    height: 60px;
    background: #555;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    line-height: 60px;
    border-radius: 0 0 4px 4px;
}

.price-text {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.price-text-tot {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.sub-tot-text {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.shipping-price {
    font-size: 20px;
    font-weight: 700;
    color: #8BB418;
}

.tot-text {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

input.apply-cupon-control {
    width: 100%;
    height: 44px;
    padding: 10px;
    color: #000;
    border: 1px solid #ccc;
    border-right: none;
}

button.cupon-btn {
    width: 100%;
    height: 44px;
    border-radius: 0;
    border: 1px solid #e91832;
    background: #e91832;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px;

    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

button.cupon-btn:hover {
    border: 1px solid #e91832;
    background: #FFF;
    color: #e91832;
    ;

}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: 0;
}

.checkout-form .row {
    margin-bottom: 30px;
}

button.checkout-btn {
    width: 100%;
    border: none;
    background: #333;
    color: #FFF;
    height: 34px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.rating-text {
    font-size: 13px;
    display: inline-block;
    margin-right: 10px;
}

.review-rating {
    display: inline;
    margin-right: 10px;
}

.review-rating li {
    display: inline-block;
    color: #ffab05;
}

.review-content-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/*cart-page*/

/*inner-page*/
.inner-page-wrapper {
    margin-bottom: 20px;
}

.inner-page-banner {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    height: 300px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}

.inner-page-title-container {
    width: 100%;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    transform: translateY(-50%);
}

.inner-page-title-container h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.inner-page-title-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.inner-page-wrapper {
    width: 100%;
    margin-bottom: 50px;
}


/*inner-page*/
/*responsive starts*/

@media(max-width:992px) {
    #popup__content {
        display: none;
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -37%;
        top: -26%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .discounted-price {
        position: absolute;
        right: -22%;
        top: -20%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .product-wrapper .image-wrapper img {
        width: 100%;
    }

    .section-heading {
        font-size: 34px;
    }

    /*pd-details-page*/
    
    img#xzoom-magnific {
        width: 100% !important;
    }

    .modal-buy-now-btn {
        width: 71px;
        height: 30px;
        line-height: 27px;
        color: #fff;
        margin-left: 0;
        font-size: 10px;
        margin-top: 29px;
        margin-right: 3px;
    }

    .modal-buy-now-btn.ml-50 {
        margin-left: 10px !important;
    }

    #qty span {
        display: inline-block;
        width: 25px;
    }

    .btn-number {
        width: 24px;
        padding: 0;
    }

    .input-number {
        height: 28px;
        border: 1px solid #333;
    }

    .product-decription {
        width: 100%;
        padding: 20px 0;
    }


    /*pd-details-page*/
    /*cart-pg*/
    .cart-img-wrapper {
        height: auto;
        text-align: center;
    }

    .cart-img-wrapper img {
        height: auto;
        width: 100%;
        margin-top: 15px;
    }

    .cart-pd-desc-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .cart-pd-price {
        font-size: 14px;
    }

    .remove-btn {
        display: block;
        font-size: 22px;
        color: #e91832;
        width: 100%;
        padding: 0;
        background: none;
        border: none;
    }

    .cart-quantity input {
        width: 33%;
        height: 28px;
    }

    .cart-quantity button {
        width: 45%;
        border-radius: 0;
        height: 30px;
        padding: 0;
    }

    .cust-panel .table > tbody > tr > td {
        padding: 2px;
    }

    .price-text {
        font-size: 13px;
    }

    .sub-tot-text {
        font-size: 18px;
        font-weight: 400;
        text-align: right;
        margin-right: 6px;
    }

    .price-text-tot {
        font-size: 14px;
    }

    .tot-text {
        font-size: 18px;
        font-weight: 400;
        color: #000;
    }

    a.checkout-btn {
        height: 40px;
        font-size: 11px;
        line-height: 40px;
        border-radius: 0 0 4px 4px;
    }

    /*cart-pg*/

}

@media(max-width:767px) {

    .col-sm-6 .image-wrapper {
        max-height: inherit;
    }

    .col-sm-6 .image-wrapper a {
        max-height: initial;
    }

    .col-sm-4 .image-wrapper {
        max-height: inherit;
    }

    .col-sm-4 .image-wrapper a {
        max-height: initial;
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -11%;
        top: -10%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -11%;
        top: -10%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .discounted-price {
        position: absolute;
        right: -22%;
        top: -20%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .product-wrapper .image-wrapper img {
        width: 100%;
    }

    .section-heading {
        font-size: 34px;
    }

    .product-details-container select.form-control {
        margin-bottom: 15px;
    }

    .parallax-banner {
        width: 100%;
        min-height: 350px;
        background: url(../images/parralax-banner-1.jpg) no-repeat;
        background-position: center 10px;
        background-size: cover;
        background-attachment: fixed;
        padding: 0;
        place-items: center;
        display: grid;
    }

    /*cart-page*/
    .cart-pd-title {
        display: none;
    }

    .cart-img-wrapper {
        height: auto;
        text-align: center;
        width: 50%;
        margin: auto;
    }

    .cart-pd-desc-wrapper {
        min-height: auto;
    }

    .cart-pd-desc {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid #000;
        padding: 16px 0;
        font-size: 16px;
    }
.col-xs-10 .cart-pd-desc {
    font-size: 14px;
    line-height: 15px;
    text-align: left;
    width: 100%;
    border-bottom: none;
    font-size: 14px;
    padding:0;
}
.col-xs-2 .cart-total-container{
    border:none;
}
.col-xs-2 .cart-total-container:before{
    display:none;
}
.col-xs-2 .cart-pd-title,
.col-xs-6 .cart-pd-title{
    display:block;
}
.col-xs-2 .cart-pd-price{
    font-size:18px;
}

    .cart-pd-price {
        font-size: 30px;
        text-align: center;
    }

    .cart-quantity {
        display: block;
        margin: auto;
        max-width: 135px;
    }

    .cart-quantity {
        display: block;
        margin: auto;
        max-width: 135px;
    }

    .remove-btn span.fa-trash:after {
        content: 'Remove Item' !important;
        margin-left: 15px;

    }

    .cart-remove {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .cart-quantity button,
    .cart-quantity input {
        width: 50px;
        height: 50px;
    }
    button.btn.btn-success {
    margin-top: -3px;
}

    .cart-total-container {
    position: relative;
    margin-top: 15px;
    margin-bottom: 0px;
    padding: 35px 20px 6px 20px;
    border-top: 1px solid;

    }

    .cart-total-container:before {
        content: 'total';
        position: absolute;
        left: 50%;
        top: 5px;
        text-transform: uppercase;
        font-size: 18px;
        color: #000;
        font-weight: 900;
        transform: translate(-50%);
    }
.cust-panel {
    margin-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
    .tot-text{
        text-align: right;
    }
    button.check-revome-btn {
    border: none;
    background: none;
    padding: 0;
}
.checkout-form .row{
    margin-bottom:0;
}
.checkout-form .input-group{
    margin-bottom:20px;
}
button.checkout-btn{
    margin-bottom:15px;
}
.pop-slider{
    display:none;
}

.social-links li, .payment li{
    margin-bottom:25px;
}
    /*cart-page*/

}

@media(max-width:693px) {
    .col-sm-6 .discounted-price {
        position: absolute;
        right: -12%;
        top: -11%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -12%;
        top: -11%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .discounted-price {
        position: absolute;
        right: -25%;
        top: -22%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}

@media(max-width:649px) {

    .discounted-price {
        position: absolute;
        right: -26%;
        top: -22%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}

@media(max-width:629px) {

    .discounted-price {
        position: absolute;
        right: -29%;
        top: -23%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -14%;
        top: -12%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -14%;
        top: -12%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}

@media(max-width:599px) {

    .image-wrapper {
        max-height: inherit;
    }

    .image-wrapper a {
        max-height: initial;
    }

    .image-wrapper a img {
        height: auto;
    }

    .col-sm-4 .image-wrapper {
        max-height: inherit;
    }

    .col-sm-4 .image-wrapper a {
        max-height: initial;
    }

    .col-sm-4 .image-wrapper a img {
        height: auto;
    }

    .col-sm-6 .image-wrapper a img {
        height: auto;
    }
}

@media(max-width:575px) {

    .discounted-price {
        position: absolute;
        right: -15%;
        top: -13%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -15%;
        top: -13%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -15%;
        top: -13%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    p.paralax--1-text {
        font-size: 30px;
        padding: 0 15px;
    }

    .parallax-banner-2 h2 {
        font-size: 30px;
        padding: 0 15px;
    }
}


@media(max-width:539px) {

    .discounted-price {
        position: absolute;
        right: -17%;
        top: -15%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -17%;
        top: -15%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -17%;
        top: -15%;
        ;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}

@media(max-width:469px) {

    .discounted-price {
        position: absolute;
        right: -19%;
        top: -17%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -19%;
        top: -17%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -19%;
        top: -17%;
        ;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .top-header-wrapper {
        margin: 0;
        display: flex;
        justify-content: space-between;
    }

    .product-decription .nav-tabs > li > a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .product-featured-list li {
        font-size: 12px;
        padding-left: 23px;
        line-height: 15px;
    }

    .product-desc-wrapper h4 {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .product-desc-wrapper {
        padding: 9px;
        font-size: 12px;
        line-height: 18px;
    }

    .product-desc-wrapper p {
        line-height: 20px;
        color: #000;
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }
}

@media(max-width:428px) {}

@media(max-width:419px) {

    .discounted-price {
        position: absolute;
        right: -21%;
        top: -18%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -21%;
        top: -18%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -21%;
        top: -18%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .section-heading {
        font-size: 24px;
    }

    p.paralax--1-text {
        font-size: 24px;
        padding: 0 15px;
    }

    .parallax-banner-2 h2 {
        font-size: 24px;
        padding: 0 15px;
    }
}

@media(max-width:419px) {

    .discounted-price {
        position: absolute;
        right: -21%;
        top: -17%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -24%;
        top: -20%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -24%;
        top: -20%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}

@media(max-width:358px) {

    /*pd-details-page*/

    .modal-buy-now-btn {
        width: 45%;
        height: 35px;
        line-height: 32px;
        color: #fff;
        margin-left: 0;
        font-size: 10px;
        margin-top: 29px;
        margin-right: 3px;
    }

    .modal-buy-now-btn.ml-50 {
        margin-left: 10px !important;
    }

    #qty span {
        display: inline-block;
        width: 35px;
    }

    .btn-number {
        height: 30px;
        width: 100%;
        padding: 0;
    }

    .input-number {
        width: 100%;
        height: 34px;
        border: 1px solid #333;
    }

    .product-decription {
        width: 100%;
        padding: 20px 0;
    }

    /*pd-details-page*/

}

@media(max-width:356px) {

    .product-decription .nav-tabs > li > a {
        padding: 5px 5px;
        font-size: 11px;
    }

    .product-featured-list li {
        font-size: 12px;
        padding-left: 23px;
        line-height: 15px;
    }

}

@media(max-width:330px) {

    .discounted-price {
        position: absolute;
        right: -28%;
        top: -22%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-6 .discounted-price {
        position: absolute;
        right: -28%;
        top: -22%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }

    .col-sm-4 .discounted-price {
        position: absolute;
        right: -28%;
        top: -22%;
        width: 150px;
        height: 150px;
        background: #f03030;
        transform: rotate(45deg);
    }
}
@media(min-width:769px) {
    .cart-img-wrapper {
        max-width: 100px;
        padding: 5px;
        background: #eee;
        height: auto;
        margin-top: 10px;
    }

    .cart-img-wrapper img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .cart-pd-title {
        padding: 10px 0;
        width: 100%;
        border-top: 1px solid #555;
        border-bottom: 1px solid #555;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Fira Sans', sans-serif;
        color: #000;
        text-transform: uppercase;
        text-align: left;
    }


}

.nav-link{
position: relative;
padding-bottom: 10px !important;
}

.nav-link::after{
 content: '';  
 opacity: 0;
 transition: all 0.2s;
 height: 5px;
 width: 100%;
 background-color: greenyellow;
 position: absolute;
 bottom: 0;
 left: 0;
}

.nav-link:hover::after{
opacity: 1;
}















.nav-link:hover::after{
 content: '';   
 height: 5px;
 width: 100%;
 background-color: #311310;
 position: absolute;
 bottom: 0;
 left: 0;
}









