/*------------------------------------------------------------------
Table of content
-------------------
1. Start Header Area
2. slider area start
3. features area css start
4. Sale deals area css start
5. product
6. categories area
7. testimonial
8. blog
9. shop grid view
10. shop list view
11. product details
12. checkout
13. cart
14. wishlist
15. my account
16. compare
17. login register
18. about us
19. contact us
20. banner
21. modal
22. sidebar
23. footer
-------------------------------------------------------------------*/

/*------ Typography Style Start ------
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
body {
    color: #5c5353;
    line-height: 1.7;
    font-size: 16px; 
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
} 
/*@media (max-width: 1025px) {
    body.fix {
        overflow: hidden;
    }
}*/

a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    text-decoration: none;
}
a:hover, a:focus {
    outline: none;
    text-decoration: none !important;
}
p {
    margin-bottom: 8px;
}
p:last-child {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: #5c5353;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 0;
    line-height: 1.5;
}
h1, .h1 {
    font-size: 36px;
}
h2, .h2 {
    font-size: 30px;
}
h3, .h3 {
    font-size: 24px;
}
h4, .h4 {
    font-size: 20px;
}
h5, .h5 {
    font-size: 18px;
}
h6, .h6 {
    font-size: 16px;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}
strong, b {
    font-weight: 700;
}
figure {
    margin: 0;
}
img {
    max-width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/*
.btn {
    border: 2px solid #212529;
    color: #212529;
    box-shadow: 1px 2px 1px 1px;
    font-weight: 700;
    font-size: larger;
} 

*/
.btn {
    background-color: #f5424e;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-color: #f5424e;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
}
.btn-full {
    width: 100%;
}
.btn:hover {
    background-color: #232F3E;
    color: #fff;
}
.btn:active, .btn:focus, button:active, button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
input, textarea {
    resize: none;
}
input:focus, textarea:focus {
    outline: none;
}
body.is-sticky {
    padding-top: 120px;
}
.form-control:focus {
    border-color: #f5424e;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-group {
    margin-bottom: 1rem;
}
ul.forms {
    width: 100%;
    float: left;
}
ul.forms li {
    width: 100%;
    float: left;
    padding: 10px;
}
ul.forms li.half {
    width: 50%;
}
ul.forms li.three-col {
    width: 33.33%;
}
ul.forms li+li {}
ul.forms li .btn-full {
    width: 100%;
}
ul.forms li.form-floating>label {
    top: 10px;
    left: 10px;
    height: auto;
    bottom: 10px;
}
@media (max-width: 767px) {
    ul.forms li.half, ul.forms li.three-col {
        width: 100%;
         /* padding: 5px 0; */
    }
} 
::-moz-selection {
    color: #fff;
    background: #f5424e;
}
::selection {
    color: #fff;
    background: #f5424e;
}
::-webkit-input-placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}
::-moz-placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}
::-ms-input-placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}
::placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}
.text-right {
    text-align: right;
}
/* ----tab problem fix css ----*/

.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
.tab-content .tab-pane.active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    background: none !important;
}
/* ----tab problem fix css ----*/

/*------- modal fix start -------

.modal-dialog {
    max-width: 1000px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .modal-dialog {
        max-width: 800px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog {
        max-width: 700px;
    }
}*/
.modal {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -99;
}
.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    z-index: 99999999;
    -webkit-animation: slideInDown 0.4s forwards;
    animation: slideInDown 0.4s forwards;
}
.modal .modal-header {
    padding: 0 10px;
    border-bottom: none;
} .modal .modal-header .close {
    color: #f5f5f5;
    font-size: 34px;
    opacity: 1;
    display: block;
    position: absolute;
    padding: 0;
    width: 30px;
    height: 30px;
    margin: 0;
    right: 10px;
    top: 10px;
    font-weight: 500;
    z-index: 999;
    line-height: 30px;
    border-radius: 50%;
    background: #f5424e;
}
.modal .modal-body {
    padding: 20px 20px 20px 20px;
}
@media only screen and (max-width: 479.98px) {
    .modal .modal-body {
        padding: 10px;
    }
	
	
	
}

 

/*------- modal fix end -------*/

/* ---- Sick Slider arrow style start ----*/

.slick-slider .slick-slide>div>div {
    vertical-align: middle;
}
.slick-arrow-style button.slick-arrow {
    top: 50%;
    left: 0;
    font-size: 70px;
    color: #777777;
    cursor: pointer;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.slick-arrow-style button.slick-arrow.slick-next {
    left: auto;
    right: 0;
}
.slick-arrow-style button.slick-arrow:hover {
    color: #f5424e;
}
.slick-arrow-style:hover button.slick-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.slick-arrow-style:hover button.slick-arrow.slick-prev {
    left: -60px;
    right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .slick-arrow-style:hover button.slick-arrow.slick-prev {
        left: -20px;
    }
}
.slick-arrow-style:hover button.slick-arrow.slick-next {
    left: auto;
    right: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .slick-arrow-style:hover button.slick-arrow.slick-next {
        right: -20px;
    }
}
.slick-arrow-style_hero button.slick-arrow {
    font-size: 60px;
    left: 0;
    width: inherit;
    height: inherit;
    background-color: transparent;
    z-index: 1;
}
.slick-arrow-style_hero button.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow-style_hero button.slick-arrow:hover {
    color: #f5424e;
    background-color: transparent;
}
.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
    right: 15px;
}
.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
    left: 15px;
}
.slick-append {
    background-color: #fff;
    z-index: 2;
    margin-top: -2px;
}
.slick-append button {
    font-size: 30px;
    line-height: 1;
    position: inherit;
    display: inline-block;
    background-color: transparent;
    color: #555555;
}
.slick-append button:hover {
    color: #f5424e;
}
/*--------- slick slider dot style start -------*/

.slick-dot-style ul.slick-dots {
    bottom: 15px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slick-dot-style ul.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}
.slick-dot-style ul.slick-dots li:last-child {
    margin-right: 0;
}
.slick-dot-style ul.slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: none;
    display: block;
    text-indent: -5000px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #777777;
    background-color: transparent;
}
.slick-dot-style ul.slick-dots li.slick-active button {
    border-color: #f5424e;
    background-color: #f5424e;
}
.slick-row-3 .slick-list {
    margin: 0 -3px;
}
.slick-row-3 .slick-list .slick-slide {
    margin: 0 3px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-3 .slick-list {
        margin: 0 -3px !important;
    }
    .slick-sm-row-3 .slick-list .slick-slide {
        margin: 0 3px !important;
    }
}
.slick-row-4 .slick-list {
    margin: 0 -4px;
}
.slick-row-4 .slick-list .slick-slide {
    margin: 0 4px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-4 .slick-list {
        margin: 0 -4px !important;
    }
    .slick-sm-row-4 .slick-list .slick-slide {
        margin: 0 4px !important;
    }
    .banner_text p {
        font-size: 14px !important;
    }
    .banner_text .head {
        font-size: 25px !important;
    }
    .banner_text {
        top: 25px !important;
        left: 60px !important;
        padding: 10px 10px;
    }
}
.slick-row-5 .slick-list {
    margin: 0 -5px;
}
.slick-row-5 .slick-list .slick-slide {
    margin: 0 5px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-5 .slick-list {
        margin: 0 -5px !important;
    }
    .slick-sm-row-5 .slick-list .slick-slide {
        margin: 0 5px !important;
    }
} 
.slick-row-6 .slick-list {
    margin: 0 -6px;
}
.slick-row-6 .slick-list .slick-slide {
    margin: 0 6px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-6 .slick-list {
        margin: 0 -6px !important;
    }
    .slick-sm-row-6 .slick-list .slick-slide {
        margin: 0 6px !important;
    }
}
.slick-row-7 .slick-list {
    margin: 0 -7px;
}
.slick-row-7 .slick-list .slick-slide {
    margin: 0 7px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-7 .slick-list {
        margin: 0 -7px !important;
    }
    .slick-sm-row-7 .slick-list .slick-slide {
        margin: 0 7px !important;
    }
}
.slick-row-8 .slick-list {
    margin: 0 -8px;
}
.slick-row-8 .slick-list .slick-slide {
    margin: 0 8px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-8 .slick-list {
        margin: 0 -8px !important;
    }
    .slick-sm-row-8 .slick-list .slick-slide {
        margin: 0 8px !important;
    }
}
.slick-row-9 .slick-list {
    margin: 0 -9px;
}
.slick-row-9 .slick-list .slick-slide {
    margin: 0 9px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-9 .slick-list {
        margin: 0 -9px !important;
    }
    .slick-sm-row-9 .slick-list .slick-slide {
        margin: 0 9px !important;
    }
}
.slick-row-10 .slick-list {
    margin: 0 -10px;
}
.slick-row-10 .slick-list .slick-slide {
    margin: 0 5px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-10 .slick-list {
        margin: 0 -10px !important;
    }
    .slick-sm-row-10 .slick-list .slick-slide {
        margin: 0 10px !important;
    }
}
.slick-row-11 .slick-list {
    margin: 0 -11px;
}
.slick-row-11 .slick-list .slick-slide {
    margin: 0 11px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-11 .slick-list {
        margin: 0 -11px !important;
    }
    .slick-sm-row-11 .slick-list .slick-slide {
        margin: 0 11px !important;
    }
}
.slick-row-12 .slick-list {
    margin: 0 -12px;
}
.slick-row-12 .slick-list .slick-slide {
    margin: 0 12px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-12 .slick-list {
        margin: 0 -12px !important;
    }
    .slick-sm-row-12 .slick-list .slick-slide {
        margin: 0 12px !important;
    }
}
.slick-row-13 .slick-list {
    margin: 0 -13px;
}
.slick-row-13 .slick-list .slick-slide {
    margin: 0 13px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-13 .slick-list {
        margin: 0 -13px !important;
    }
    .slick-sm-row-13 .slick-list .slick-slide {
        margin: 0 13px !important;
    }
}
.slick-row-14 .slick-list {
    margin: 0 -14px;
}
.slick-row-14 .slick-list .slick-slide {
    margin: 0 14px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-14 .slick-list {
        margin: 0 -14px !important;
    }
    .slick-sm-row-14 .slick-list .slick-slide {
        margin: 0 14px !important;
    }
}
.slick-row-15 .slick-list {
    margin: 0 -15px;
}
.slick-row-15 .slick-list .slick-slide {
    margin: 0 15px;
}
@media only screen and (max-width: 767.98px) {
    .slick-sm-row-15 .slick-list {
        margin: 0 -15px !important;
    }
    .slick-sm-row-15 .slick-list .slick-slide {
        margin: 0 15px !important;
    }
}
.slick-slider .slick-slide>div {
    margin-bottom: 30px;
}
.slick-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}
/* ----scroll to top css start ----*/

.scroll-top {
    bottom: 50px;
    cursor: pointer;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    background-color: #f5424e;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767.98px) {
    .scroll-top {
        display: none;
    }
    .text_box {
        margin-bottom: 20px;
    }
    .policy-content {
        margin-bottom: 25px;
    }
}
.scroll-top i {
    line-height: 50px;
    color: #fff;
    font-size: 25px;
}
.scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}
.scroll-top:hover {
    background-color: #222222;
}
/* ----scroll to top css end ----*/

.container {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
    max-width: 1600px;
}
@media only screen and (min-width: 1200px) {
    .container {
        /*max-width: 1310px;*/
    }
}
.container-fluid {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}
.container-lg {
    max-width: 1350px;
}
.container-md {
    max-width: 1000px;
}
.container-sm {
    max-width: 750px;
}
.section { 
    padding: 5px 0px 0px 0px;
}
.row {
    --bs-gutter-x: 30px;
}
.custom-container {
    max-width: 1800px;
}
.row-0 {
    margin-left: 0px;
    margin-right: 0px;
}
.row-0>[class*="col"] {
    padding-left: 0px;
    padding-right: 0px;
}
.row-1 {
    margin-left: -0.5px;
    margin-right: -0.5px;
}
.row-1>[class*="col"] {
    padding-left: 0.5px;
    padding-right: 0.5px;
}
.row-2 {
    margin-left: -1px;
    margin-right: -1px;
}
.row-2>[class*="col"] {
    padding-left: 1px;
    padding-right: 1px;
}
.row-3 {
    margin-left: -1.5px;
    margin-right: -1.5px;
}
.row-3>[class*="col"] {
    padding-left: 1.5px;
    padding-right: 1.5px;
}
.row-4 {
    margin-left: -2px;
    margin-right: -2px;
}
.row-4>[class*="col"] {
    padding-left: 2px;
    padding-right: 2px;
}
.row-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.row-5>[class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
}
.row-6 {
    margin-left: -3px;
    margin-right: -3px;
}
.row-6>[class*="col"] {
    padding-left: 3px;
    padding-right: 3px;
}
.row-7 {
    margin-left: -3.5px;
    margin-right: -3.5px;
}
.row-7>[class*="col"] {
    padding-left: 3.5px;
    padding-right: 3.5px;
}
.row-8 {
    margin-left: -4px;
    margin-right: -4px;
}
.row-8>[class*="col"] {
    padding-left: 4px;
    padding-right: 4px;
}
.row-9 {
    margin-left: -4.5px;
    margin-right: -4.5px;
}
.row-9>[class*="col"] {
    padding-left: 4.5px;
    padding-right: 4.5px;
}
.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}
.row-10>[class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
}
.row-11 {
    margin-left: -5.5px;
    margin-right: -5.5px;
}
.row-11>[class*="col"] {
    padding-left: 5.5px;
    padding-right: 5.5px;
}
.row-12 {
    margin-left: -6px;
    margin-right: -6px;
}
.row-12>[class*="col"] {
    padding-left: 6px;
    padding-right: 6px;
}
.row-13 {
    margin-left: -6.5px;
    margin-right: -6.5px;
}
.row-13>[class*="col"] {
    padding-left: 6.5px;
    padding-right: 6.5px;
}
.row-14 {
    margin-left: -7px;
    margin-right: -7px;
}
.row-14>[class*="col"] {
    padding-left: 7px;
    padding-right: 7px;
}
.row-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.row-15>[class*="col"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.row-16 {
    margin-left: -8px;
    margin-right: -8px;
}
.row-16>[class*="col"] {
    padding-left: 8px;
    padding-right: 8px;
}
.row-17 {
    margin-left: -8.5px;
    margin-right: -8.5px;
}
.row-17>[class*="col"] {
    padding-left: 8.5px;
    padding-right: 8.5px;
}
.row-18 {
    margin-left: -9px;
    margin-right: -9px;
}
.row-18>[class*="col"] {
    padding-left: 9px;
    padding-right: 9px;
}
.row-19 {
    margin-left: -9.5px;
    margin-right: -9.5px;
}
.row-19>[class*="col"] {
    padding-left: 9.5px;
    padding-right: 9.5px;
}
.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}
.row-20>[class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
}
.row-21 {
    margin-left: -10.5px;
    margin-right: -10.5px;
}
.row-21>[class*="col"] {
    padding-left: 10.5px;
    padding-right: 10.5px;
}
.row-22 {
    margin-left: -11px;
    margin-right: -11px;
}
.row-22>[class*="col"] {
    padding-left: 11px;
    padding-right: 11px;
}
.row-23 {
    margin-left: -11.5px;
    margin-right: -11.5px;
}
.row-23>[class*="col"] {
    padding-left: 11.5px;
    padding-right: 11.5px;
}
.row-24 {
    margin-left: -12px;
    margin-right: -12px;
}
.row-24>[class*="col"] {
    padding-left: 12px;
    padding-right: 12px;
}
.row-25 {
    margin-left: -12.5px;
    margin-right: -12.5px;
}
.row-25>[class*="col"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
}
.row-26 {
    margin-left: -13px;
    margin-right: -13px;
}
.row-26>[class*="col"] {
    padding-left: 13px;
    padding-right: 13px;
}
.row-27 {
    margin-left: -13.5px;
    margin-right: -13.5px;
}
.row-27>[class*="col"] {
    padding-left: 13.5px;
    padding-right: 13.5px;
}
.row-28 {
    margin-left: -14px;
    margin-right: -14px;
}
.row-28>[class*="col"] {
    padding-left: 14px;
    padding-right: 14px;
}
.row-29 {
    margin-left: -14.5px;
    margin-right: -14.5px;
}
.row-29>[class*="col"] {
    padding-left: 14.5px;
    padding-right: 14.5px;
}
.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}
.row-30>[class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
}
.search_bar {
    display: none;
}
/*------- short classes start -------*/

.section-padding {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
    .section-padding {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .header-main-area.sticky {}
    .header-top-right.float-end {
        display: none;
    }
    .welcome-message {
        width: 100%;
        text-align: center;
    }
}
.mb-30 {
    margin-bottom: 30px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mtn-20 {
    margin-top: -20px;
}
.mbn-30 {
    margin-bottom: -30px;
}
.mtn-30 {
    margin-top: -30px;
}
.ptb-30 {
    padding: 30px 0;
}
/*------- short classes end -------*/

/*----------- header top area start -----------*/

@media only screen and (min-width: 1600px) {
    .header-wide {
        padding: 0 85px;
    }
}
@media only screen and (min-width: 1200px) {
    .header-wide .container {
        max-width: 100%;
    }
}
.header-top {
    /*padding: 5px 0;*/
}
@media (max-width: 1025px) {
    .header-top {
        display: none;
    }
}
.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-top .menu-top-bar-right {
    justify-content: flex-end;
}
.header-top .nav {
    flex-grow: 1;
    flex-wrap: wrap;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header-top .nav>li {
    line-height: 2.74em;
}
.header-top .nav>li>a {
    display: block;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
}
.header-top .nav>li>a i {
    font-size: 20px;
}
.header-top .nav>li>a:hover {
    background: rgba(255, 255, 255, 0.10);
}
.header-main-area {}
.header-top-settings ul li {
    color: #555555;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    margin-left: 40px;
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}
.header-top-settings ul li:before {
    top: 50%;
    left: 0;
    width: 1px;
    height: 15px;
    content: "";
    position: absolute;
    background-color: #efefef;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-top-settings ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}
.header-top-settings ul li:first-child:before {
    display: none;
}
.header-top-settings ul li .dropdown-list {
    top: 100%; 
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 15px 15px 20px;
    width: 150px;
    z-index: 9;
    text-align: left;
    background-color: #fff;
    pointer-events: none;
    border: 1px solid #efefef;
}
.header-top-settings ul li .dropdown-list li {
    margin-left: 0;
    padding: 0;
}
.header-top-settings ul li .dropdown-list li a {
    color: #555555;
    font-size: 13px;
    display: block;
    padding: 5px 0 3px;
    text-transform: capitalize;
}
.header-top-settings ul li .dropdown-list li a:hover {
    color: #f5424e;
}
.header-top-settings ul li .dropdown-list li a img {
    vertical-align: inherit;
}
.header-top-settings ul li .dropdown-list li:before {
    display: none;
}
.header-top-settings ul li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.welcome-message {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
/*----------- header top area end -----------*/

/*---------- header mini cart start ----------*/

.header-customer-area {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
}
ul.header-customer-area li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}
@media (max-width: 1024px) {
    .welcome-message {
        font-size: 12px;
    }
    .header-top .nav>li>a {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .header-customer-area {
        margin-left: auto;
    }
}
@media (max-width: 990px) {
    .header-customer-area {
        padding-top: 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .header-main-area.sticky {
        display: block !important;
    }
    .header_main {
        padding: 0 0 10px 0;
    }
    .section-title h2::before {
        display: none;
    }
    .section-title h2::after {
        display: none;
    }
    .position-static.main-menu {
        display: block !important;
    }
    .main-menu ul li a {
        padding: 10px 14px !important;
    }
    .main-menu-area {
        padding: 0px 0px !important;
    }
    .header-customer-area .nav {
        flex-wrap: nowrap !important;
    }
    .footer-widget-area .col-md-2 {
        width: 33%;
        margin-bottom: 20px !important;
    }
    .main-menu ul li ul.megamenu {
        padding: 16px 0px !important;
    }
}
@media only screen and (min-width:1024px) and (max-width: 1366px) {
    .header-main-area.sticky {
        display: block !important;
    }
    .main-menu-area {
        padding: 0px 25px !important;
    }
    .header-search-container {
        width: 70% !important;
    }
    .section-title h2::before {
        display: none !important;
    }
    .section-title h2::after {
        display: none !important;
    }
}
ul.header-customer-area li a {
    font-size: 16px;
    padding: 7px 5px 7px 20px;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    color: #fff;
}
ul.header-customer-area li a img {
    width: 26px;
}
ul.header-customer-area li.my-profile-menu a img {
    margin-left: 5px;
}



.logo.site-branding img {
    height: 50px;
    width: fit-content;
    object-fit: unset;
    margin: 5px 40px 5px 40px;
    background: white;
}

@media (max-width: 767px) {
	
	.logo.site-branding img {
      height: 40px;  
   } 

    .header_main {
        padding-bottom: 5px;
    }
    ul.header-customer-area {
        padding-top: 0;
    }
    ul.header-customer-area li {
        padding: 0 2px;
    }
    ul.header-customer-area li a {
        padding: 5px;
    }
    ul.header-customer-area li.my-profile-menu {
        order: 3;
    }
    ul.header-customer-area li.my-profile-menu a span {
        display: none;
    }
    ul.header-customer-area li.my-profile-menu a img {
        margin-left: 0;
    }
    ul.header-customer-area li a img {
        width: 24px;
    }
}
ul.header-customer-area li a .notification {
    top: 5px;
    right: -5px;
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    color: #fff;
    border-radius: 50%;
    background-color: #232F3E;
}
ul.header-customer-area li a:focus {
    box-shadow: 0 0 0 4px #232F3E;
}
ul.header-customer-area li.icon-menu a {
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
}
ul.header-customer-area li.user-hover>a {
    background: #232F3E;
    color: #fff;
    font-size: 30px;
    padding: 2px;
}
ul.header-customer-area li.user-hover>a i {
    font-weight: bold;
}
.del-content p {
    color: #fff;
}
ul.header-customer-area li:first-child {
    margin-left: 0;
}
ul.header-customer-area li.user-hover {
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.header-customer-area li.user-hover .dropdown-list {
    position: absolute;
    top: 100%;
    
    box-shadow: rgb(0 0 0 / 20%) 0px 8px 10px -5px, rgb(0 0 0 / 14%) 0px 16px 24px 2px, rgb(0 0 0 / 10%) 0px 6px 30px 5px;
    max-width: 220px;
    min-width: 220px;
    padding: 20px 0px 10px 10px;
    background-color: #fff;
    z-index: 11;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}
ul.header-customer-area li.user-hover .dropdown-list li {
    display: block;
    margin-left: 0;
}
ul.header-customer-area li.user-hover .dropdown-list li.user-info {
    padding: 20px 15px;
    text-align: center;
    background: #f2f2f6;
    margin-bottom: 10px;
}
ul.header-customer-area li.user-hover .dropdown-list li.user-info .user-img {
    margin: auto;
}
ul.header-customer-area li.user-hover .dropdown-list li.user-info .user-img img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #232F3E;
    color: #fff;
    padding: 5px;
    line-height: 23px;
}
ul.header-customer-area li.user-hover .dropdown-list li.user-info h3 {
    display: block;
    font-size: 16px;
    margin: 0;
    word-wrap: break-word;
}
ul.header-customer-area li.user-hover .dropdown-list li a {
    color: #5c5353;
    font-size: 16px;
    line-height: 1;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
}
ul.header-customer-area li.user-hover .dropdown-list li a:hover {
    color: #f5424e;
}
ul.header-customer-area li.user-hover .dropdown-list li a .icon {
    margin-right: 10px;
    color: #5c5353;
    font-size: 16px;
    font-weight: bold;
}
ul.header-customer-area li.user-hover:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
/*----------- header minicart area end -----------*/

/*------- header search area start -------*/

.header-search-container {
    margin-right: 0px;
    position: relative;
}
.header-search-box {
    position: relative;
}
.header-search-box:hover .header-search-btn {
    color: #f5424e;
}
.header-search-btn {
    font-size: 25px;
    line-height: 1;
    left: 10px;
    top: 50%;
    width: 30px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-search-field {
    border: 1px solid #cacbcc;
    background-color: #ffffff;
    border-radius: 0px;
    padding: 10px 20px 10px 50px;
    width: 100%;
}
.search-trigger {
    font-size: 26px;
    color: #222222;
}
.search-box-open {
    top: -22%;
    right: 35px;
    width: 300px;
    position: absolute;
    z-index: 5;
    display: block !important;
}
.search-box-open .header-search-field {
    height: 44px;
    border: 1px solid #ddd;
}
/*------- header search area end -------*/

/*-------- header social link start --------*/

.header-social-link a {
    color: #777777;
    font-size: 17px;
    display: inline-block;
    line-height: 1;
    margin-right: 20px;
}
.header-social-link a:last-child {
    margin-right: 0;
}
.header-social-link a:hover {
    color: #f5424e;
}
/*-------- header social link end --------*/

/*---------- main menu style start ---------*/

.main-menu.top-menu ul {
    /*justify-content: center;*/
}
.main-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.main-menu ul li {
    position: relative;
}
.main-menu ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 10px;
    font-weight: normal;
    display: block;
    text-transform: capitalize;
}
.main-menu ul li a .dropdown-arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    top: 7px;
}
.main-menu ul li a .dropdown-arrow:before, .main-menu ul li a .dropdown-arrow:after {
    content: "";
    top: 0.5rem;
    position: absolute;
    width: 0.75rem;
    height: 0.1rem;
    background-color: #fff;
    display: inline-block;
    transition: all 0.2s ease;
}
.main-menu ul li a .dropdown-arrow:before {
    left: 0;
    transform: rotate(45deg);
}
.main-menu ul li a .dropdown-arrow:after {
    right: 0;
    transform: rotate( -45deg);
}
.main-menu ul li:hover a .dropdown-arrow:before, .main-menu ul li a.active .dropdown-arrow:before {
    transform: rotate(-45deg);
    background-color: #f5424e;
}
.main-menu ul li:hover a .dropdown-arrow:after, .main-menu ul li a.active .dropdown-arrow:after {
    transform: rotate(45deg);
    background-color: #f5424e;
}
.main-menu ul li a i {
    font-size: 14px;
    padding: 0 3px;
}
.main-menu ul li:first-child a {
    padding-left: 0;
}
.main-menu ul li>a.active {
    color: #f5424e;
    background: #fff;
}
.dropdown-list li a {
    color: #5c5353;
}
.main-menu ul li ul.dropdown {
    display: block;
    position: absolute;
    background-color: #f5424e;
    opacity: 0;
    z-index: 99999;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    border: 1px solid #232F3E;
    min-width: 300px;
}
.main-menu ul li ul.dropdown li {
    margin-right: 0;
    border-right: none;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}
.main-menu ul li ul.dropdown li+li {
    border-top: solid 1px #232F3E;
}
.main-menu ul li ul.dropdown li a {
    color: #fff;
    font-weight: 400;
    padding: 5px 20px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    text-align: left;
}
.main-menu ul li ul.dropdown li a:before {
    width: 10px;
    height: 1px;
    left: 20px;
    top: 50%;
    content: ' ';
    position: absolute;
    background-color: #f5424e;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}
.main-menu ul li ul.dropdown li a i {
    float: right;
    padding-top: 5px;
}
.main-menu ul li ul.dropdown li:hover>a {
    color: #f5424e;
    background-color: #fff;
    padding-left: 35px;
}
.main-menu ul li ul.dropdown li:hover>a:before {
    opacity: 1;
    visibility: visible;
}
.main-menu ul li ul.dropdown li:hover>ul.dropdown {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.main-menu ul li ul.dropdown li ul.dropdown {
    top: 100%;
    left: 100%;
    position: absolute;
    width: 250px;
    opacity: 0;
    visibility: hidden;
}
.main-menu ul li ul.dropdown li:last-child a {
    border-bottom: none;
}
.main-menu ul li ul.megamenu {
    width: 100%;
    padding: 16px 244px;
    left: 0px;
    /*
    -webkit-transform: translate(-50%, 20px);
    -ms-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px); 
*/
    top: 124px;
}
.is-sticky .desktop-menu .megamenu {
    position: absolute;
    top: 184px;
    z-index: 999;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu ul li ul.megamenu {
        max-width: 100%;
    }
    .main-menu ul li a {
        padding: 10px 22px !important;
    }
}
.main-menu ul li ul.megamenu li {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 20%;
}
.main-menu ul li ul.megamenu li.mega-title {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.main-menu ul li ul.megamenu li.mega-title span {
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.main-menu ul li ul.megamenu li.mega-title span:before, .main-menu ul li ul.megamenu li.mega-title span:after {
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    content: ' ';
    position: absolute;
    background-color: #ebebeb;
}
.main-menu ul li ul.megamenu li.mega-title span:after {
    width: 50%;
    background-color: #f5424e;
}
.main-menu ul li ul.megamenu li a {
    font-size: .8125rem;
    line-height: 1.6;
    letter-spacing: .04em;
    display: block;
    text-decoration: none;
    color: #191a1b;
    padding: 0.25rem 0.5rem;
    text-align: left;
}
.main-menu ul {
    margin: 0 !important;
}
.main-menu ul li ul.megamenu li a:before {
    left: 0;
}
.main-menu ul li ul.megamenu li ul li {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}
.main-menu ul li ul.megamenu li:hover>a {
    background-color: #f2f3f5;
}
.main-menu ul li ul.megamenu li.megamenu-banners {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-top: 25px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-right: 20px;
}
.main-menu ul li ul.megamenu li.megamenu-banners img {
    width: 100%;
}
.main-menu ul li ul.megamenu li.megamenu-banners a:before {
    display: none;
}
.main-menu ul li ul.megamenu li.megamenu-banners:last-child {
    padding-right: 0;
}
.main-menu ul li ul.megamenu li.megamenu-banners:hover {
    opacity: 0.6;
}
.main-menu ul li ul.megamenu li.megamenu-banners:hover a {
    padding-left: 0 !important;
}
.main-menu ul li:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.main-menu ul li:hover ul.megamenu {
    opacity: 1;
    visibility: visible;
}
.main-menu ul.header-style-4>li a {
    padding: 25px 15px;
}
.main-menu ul.header-style-4>li:first-child>a {
    padding-left: 0;
}
.main-menu.categories-menu {}
.main-menu.categories-menu ul li a {
    color: #5c5353;
}
.categories-menu {
    border-bottom: solid 2px #f5424e;
}

@media (max-width: 1025px) {
    .main-menu.categories-menu {
        display: none;
    }
}
/*---------- main menu style end ---------*/

/*------ sticky menu style start ------*/

.header-transparent {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
}
.sticky.is-sticky {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 9;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    -webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
    animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}
/*

.sticky.is-sticky .main-menu li a {
    padding: 10px 20px;
}
*/

.sticky.is-sticky .main-menu li:first-child a {
    padding-left: 0;
}
.sticky.is-sticky .main-menu li .dropdown li a {
    padding: 5px 20px;
}
.sticky.is-sticky .main-menu li .dropdown li:hover>a {
    padding-left: 35px;
}
.sticky.is-sticky .main-menu li .megamenu li a {
    padding: 6px 0;
}
.sticky.is-sticky .main-menu li .megamenu li:hover>a {
    padding-left: 0px;
    background-color: #f2f3f5;
}
/*------ sticky menu style end ------*/

/*------- Buttons Style here -------*/

.main-menu.shop-by-menu {
    width: auto;
    padding: 10px 0;
}
.main-menu.shop-by-menu>ul>li>a, .sticky.is-sticky .main-menu.shop-by-menu li:first-child a {
    padding: 0px 0px;
    font-weight: 600;
    border-bottom: solid 2px #f5424e;
    cursor: pointer;
}
.main-menu.shop-by-menu>ul>li:hover>a, .main-menu.shop-by-menu>ul>li>a.active {}
.btn-text, .btn-text:hover {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}
@media (max-width: 1025px) {
    .seacrh-by-category {
        display: none;
    }
}
/*
.btn-text:before {
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #222222;
}
*/

.btn-text:hover {
    color: #f5424e;
}
.btn-text:hover:before {
    background-color: #f5424e;
}
.header-area {
    position: relative;
    z-index: 11;
}
.categories-mega-menus, .brands-mega-menus {
    position: absolute;
    left: 0;
    right: 0;
    top: 90%;
    max-height: calc(100vh - 130px);
    border-top: solid 1px #fff;
    border-bottom: solid 5px #232f3e;
    background: #fff;
    background: -moz-linear-gradient(90deg, #fff 50%, #232f3e 50%);
    background: -webkit-linear-gradient(90deg, #fff 50%, #232f3e 50%);
    background: linear-gradient(90deg, #fff 50%, #232f3e 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#232f3e", GradientType=1);
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.brands-mega-menus {
    background: #fff;
}
.shop-by-category-menu-open .categories-mega-menus, .shop-by-brands-menu-open .brands-mega-menus {
    opacity: 1;
    visibility: visible;
    top: 100%;
    z-index: 1111;
}
.categories-mega-menus .mega-menus {}
.categories-mega-menus .mega-menus .sub-categories-div {
    display: none;
    padding: 30px 5px;
}
.categories-mega-menus .mega-menus .sub-categories-div:first-child {
    display: block;
}
.categories-mega-menus .mega-menus .sub-categories-div h3 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.categories-mega-menus .mega-menus ul {}
.categories-mega-menus .mega-menus.main-categories ul {
    padding: 30px 5px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    overflow-y: auto;
}
.categories-mega-menus .mega-menus ul li {
    max-width: 300px;
    white-space: nowrap;
}
.categories-mega-menus .mega-menus ul li a {
    color: #fff;
    padding: 3px 20px;
    display: block;
}
.categories-mega-menus .mega-menus.main-categories ul li {
    color: #5c5353;
    cursor: pointer;
    padding: 8px 20px;
    margin: 1px;
}
.categories-mega-menus .mega-menus.main-categories ul li:hover, .categories-mega-menus .mega-menus.main-categories ul li.m-active {
    background: #232f3e;
    color: #fff;
}
.categories-mega-menus .mega-menus .sub-categories-div>ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: calc(100vh - 220px);
}
.categories-mega-menus .mega-menus .sub-categories-div ul li.has-child>a {
    font-weight: bold;
    color: #f5424e;
    font-size: 18px;
    position: relative;
    display: inline-block;
}
.categories-mega-menus .mega-menus .sub-categories-div ul li.has-child>a:after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    width: 11px;
    height: 11px;
    background: url(../img/right-white-arrow.png) center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}
.categories-mega-menus .mega-menus .sub-categories-div ul li.has-child>a:hover:after {
    right: -5px;
}
.categories-mega-menus .mega-menus .sub-categories-div ul li.has-child ul {
    padding-left: 15px;
    padding-bottom: 15px;
}
.categories-mega-menus .mega-menus .sub-categories-div ul li.has-child ul li a {
    padding: 3px 20px;
    font-size: 16px;
}
.categories-mega-menus .mega-menus.sub-categories {
    background: #232f3e;
}
.categories-mega-menus .mega-menus.child-categories {
    background: #f5424e;
}
.categories-mega-menus .sub-categories-heading {
    border-bottom: solid 1px #fff;
    margin-bottom: 15px;
}
.categories-mega-menus .sub-categories-heading h3 {
    display: inline-block;
    margin-right: 15px;
}
.categories-mega-menus .sub-categories-heading a {
    color: #fbfbfb;
    font-weight: bold;
    position: relative;
    padding-right: 20px;
}

.categories-mega-menus .sub-categories-heading a:after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    width: 11px;
    height: 11px;
    background: url(../img/right-white-arrow.png) center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}
.categories-mega-menus .sub-categories-heading a:hover:after {
    right: -5px;
}
.brands-mega-menus .mega-menu-inner {
    padding: 30px;
}
.brands-menu-alphabet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -4px 48px;
    text-align: center;
}
.brands-menu-alphabet .alphabet-menu-button {
    border: 1px solid #f5424e;
    border-radius: 5px;
    box-shadow: none;
    color: #f5424e;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    height: 30px;
    line-height: 27px;
    margin: 4px;
    text-align: center;
    text-decoration: none;
    transition: ease .3s;
    transition-property: box-shadow;
    white-space: nowrap;
    width: 30px;
}
.brands-menu-alphabet .alphabet-menu-button:hover {
    background-color: #f5424e;
    box-shadow: 0 3px 5px hsla(261, 28%, 42%, 0.3);
    color: #fff;
    text-decoration: none;
}
.brands-menu-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0 -12px;
    text-align: center;
}
.brands-menu-logos .logo-menu-brand {
    border: 1px solid #efedf3;
    border-radius: 5px;
    display: inline-block;
    height: 92px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: border ease .3s;
    width: 92px;
}
.brands-menu-logos .logo-menu-brand:hover {
    text-align: center;
    border-color: #f5424e;
}
.brands-menu-logos .logo-menu-brand img {
    left: 0;
    max-width: 90px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.view-all-link {
    text-align: center;
    padding-top: 15px;
}
.view-all-link a {
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
}
/*----- mobile menu start -----*/

.mobile-header {
    padding: 10px 0;
}
.mobile-header-top {
    border-bottom: 1px solid #efefef;
}
.mobile-header-top .header-top-settings {
    float: none;
}
.mobile-logo {
    max-width: 100px;
    width: 100%;
}
.mobile-main-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.mobile-main-header .mobile-menu-toggler {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap {
    line-height: 1;
}
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap a {
    font-size: 25px;
    line-height: 1;
    color: #222222;
    position: relative;
}
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap a:hover {
    color: #f5424e;
}
.mobile-main-header .mobile-menu-toggler .mini-cart-wrap .notification {
    font-size: 13px;
    color: #fff;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    right: -4px;
    top: -4px;
    position: absolute;
    background-color: #f5424e;
}
.header_main .mobile-menu-btn {
    flex-basis: 0;
    display: none;
}
@media (max-width: 1025px) {
    .header_main .mobile-menu-btn {
        display: block;
    }
}
.header_main .mobile-menu-btn span {
    width: 25px;
    height: 2px;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}
.header_main .mobile-menu-btn span:nth-child(2), .header_main .mobile-menu-btn span:nth-child(3) {
    margin-top: 5px;
}
.header_main .mobile-menu-btn:hover span {
    background-color: #f5424e;
}
.header_main .mobile-menu-btn:hover span:nth-child(1), .header_main .mobile-menu-btn:hover span:nth-child(3) {
    width: 20px;
}
.mobile-navigation {
    position: relative;
    overflow-x: hidden;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    display: flex;
}
.mobile-menu, .mobile-navigation .sub-categories-div {
    padding-bottom: 30px;
    margin: 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: scroll;
    will-change: transform;
    visibility: hidden;
    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: transform 250ms ease-in-out;
    -ms-transition: transform 250ms ease-in-out;
    -o-transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out
}
.mobile-navigation .mobile-menu-visible {
    visibility: visible;
}
.mobile-navigation .mobile-menu-translateX {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.mobile-navigation .mobile-menu-translateX-left {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.mobile-navigation .mobile-menu-translateX-right {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.mb-customer-profile-link {
    display: block;
}
.mb-customer-profile {
    padding: 10px;
    background: #f5424e;
    border-right: solid 1px #fff;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}
.mb-customer-profile img {
    width: 34px;
    margin-right: 10px;
}
.mobile-menu li, .mobile-navigation .sub-categories-div li {
    padding-bottom: 2px;
}
.mobile-menu li.mb-menu-separator {
    border-bottom: 1px solid #d5dbdb;
    padding: 0;
    margin: 5px 0;
}
.mobile-menu li .heading, .mobile-navigation .sub-categories-div li.sub-categories-div-heading .heading {
    padding-bottom: 5px;
    padding-right: 20px;
    padding-left: 15px;
    padding-top: 13px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #111;
    text-transform: capitalize;
    display: inline-block;
}
.mobile-menu li a, .mobile-navigation .sub-categories-div li a {
    padding: 7px 15px;
    display: block;
    position: relative;
}
.mobile-navigation .sub-categories-div>ul>li.has-child>a {
    font-weight: bold;
}
.mobile-menu li>a:after, .mobile-navigation .sub-categories-div li.has-child a:after {
    content: "";
    border: 1px solid #000E5D;
    border-width: 0 0 2px 2px;
    width: 10px;
    height: 10px;
    line-height: 0;
    font-size: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    pointer-events: none;
}
.mobile-menu li a:hover {}
.mobile-menu li.mobile-menu-brands {
    padding: 0 15px;
}
.mobile-menu li.mobile-menu-brands .brands-menu-alphabet {
    justify-content: start;
    margin-bottom: 0;
}
.mobile-menu li.mobile-menu-brands .brands-menu-alphabet .alphabet-menu-button {
    padding: 0;
}
.mobile-navigation .sub-categories-div li.sub-categories-div-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-navigation .sub-categories-div li.sub-categories-div-heading .heading {
    padding-right: 0;
}
.mobile-navigation .sub-categories-div li.sub-categories-div-heading .cat-btn {
    padding: 0 15px 0 0;
    font-size: 14px;
}
.mobile-navigation .sub-categories-div .back-menu-link {
    border-bottom: 1px solid #d5dbdb;
    font-weight: 600;
    display: block;
    padding: 7px 15px;
}
.mobile-navigation .sub-categories-div .back-menu-link:hover {
    background-color: #eaeded;
    color: #111;
}
.mobile-navigation .sub-categories-div .back-menu-link img {
    width: 25px;
}
.mobile-navigation .sub-categories-div li ul {
    padding-left: 15px;
}
.mobile-navigation .sub-categories-div li ul li a {}
/*----- mobile menu end -----*/

/*------ offcanvas widget area start ------*/

.offcanvas-widget-area {
    margin-top: auto;
    padding-bottom: 30px;
}
@media only screen and (max-width: 479.98px) {
    .offcanvas-widget-area {
        padding-bottom: 0;
    }
}
.off-canvas-contact-widget li {
    color: #555555;
    font-size: 15px;
    margin-bottom: 5px;
}
.off-canvas-contact-widget li i {
    width: 20px;
}
.off-canvas-contact-widget li a {
    color: #555555;
}
.off-canvas-contact-widget li a:hover {
    color: #f5424e;
}
.off-canvas-social-widget a {
    color: #555555;
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
}
.off-canvas-social-widget a:hover {
    color: #f5424e;
}
/*------ offcanvas widget area end ------*/

.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}
.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}
.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    content: '';
    cursor: url("../img/icon/cancel.png"), auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.off-canvas-wrapper .off-canvas-inner-content {
    background-color: #fff;
    width: 320px;
    padding: 0;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    /*background-color: #f5424e;*/
}
.off-canvas-wrapper .btn-close-off-canvas i {
    font-size: 50px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    line-height: 40px;
    font-weight: bold;
}
.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: calc(100% - 54px);
}
.search-box-offcanvas form {
    position: relative;
}
.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}
.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 20px;
    color: #222222;
    position: absolute;
}
.search-box-offcanvas form .search-btn:hover {
    color: #f5424e;
}
/*------- mobile top bar settings start -------*/

.mobile-settings {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #efefef;
}
.mobile-settings li {
    margin-bottom: 5px;
}
.mobile-settings .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle {
    font-size: 14px;
    color: #555555;
    cursor: pointer;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle i {
    font-size: 12px;
    padding-left: 5px;
    vertical-align: middle;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover {
    color: #f5424e;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:after {
    display: none;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-menu {
    padding: 0;
    border-color: #efefef;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-menu.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.mobile-settings .nav .mobile-top-dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: #555555;
    padding: 6px 15px;
}
/*------- mobile top bar settings end -------*/

/*-------- off canvas mini cart start --------*/

.minicart-inner {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}
.minicart-inner .offcanvas-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: url("../img/icon/cancel.png"), auto;
}
.minicart-inner.show {
    opacity: 1;
    visibility: visible;
}
.minicart-inner.show .minicart-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.minicart-inner .minicart-close {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #f5424e;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    top: 0;
    right: 375px;
    position: absolute;
}
.minicart-inner .minicart-close i {
    display: block;
    line-height: 50px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.minicart-inner .minicart-close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.minicart-inner .minicart-inner-content {
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 375px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: translateX(calc(100% + 50px));
    -ms-transform: translateX(calc(100% + 50px));
    transform: translateX(calc(100% + 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 50px 20px;
}
.minicart-content-box {
    overflow: auto;
    height: 100%;
    padding-right: 30px;
    margin-right: -15px;
}
.minicart-item-wrapper {
    border-bottom: 1px solid #efefef;
}
.minicart-item-wrapper ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
}
.minicart-item-wrapper ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.minicart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.minicart-thumb {
    max-width: 85px;
    -webkit-flex-basis: 85px;
    -ms-flex-preferred-size: 85px;
    flex-basis: 85px;
}
.minicart-content {
    padding: 0 10px;
    max-width: calc(100% - 115px);
    -webkit-flex-basis: calc(100% - 115px);
    -ms-flex-preferred-size: calc(100% - 115px);
    flex-basis: calc(100% - 115px);
}
.minicart-content .product-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 10px;
}
.minicart-content .product-name a {
    color: #222222;
}
.minicart-content .product-name a:hover {
    color: #f5424e;
}
.minicart-content .cart-quantity {
    font-size: 12px;
    color: #555555;
    line-height: 1;
}
.minicart-content .cart-quantity strong {
    font-size: 16px;
    font-weight: 400;
    vertical-align: text-bottom;
}
.minicart-content .cart-price {
    color: #f5424e;
    font-size: 14px;
    line-height: 1;
}
.minicart-remove {
    max-width: 30px;
    -webkit-flex-basis: 30px;
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: #222222;
}
.minicart-remove:hover {
    color: #f5424e;
}
.minicart-pricing-box {
    border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
}
.minicart-pricing-box li {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.minicart-pricing-box li span {
    font-size: 14px;
    color: #222222;
    text-transform: capitalize;
}
.minicart-pricing-box li span strong {
    color: #f5424e;
    font-weight: 400;
}
.minicart-pricing-box li.total span {
    font-size: 16px;
}
.minicart-pricing-box li:last-child {
    margin-bottom: 0;
}
.minicart-button a {
    color: #222222;
    font-size: 14px;
    display: block;
    font-weight: 700;
    line-height: 1;
    padding: 17px 0;
    background-color: #f3f3f3;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 10px;
}
.minicart-button a i {
    padding-right: 5px;
}
.minicart-button a:hover {
    color: #fff;
    letter-spacing: 1.1px;
    background-color: #f5424e;
}
.minicart-button a:last-child {
    margin-bottom: 0;
}
/*-------- off canvas mini cart end --------*/

/*------ hero slider area css start ------*/

/*-------------------------
02. Slider area
--------------------------*/

.hero-slider-item {
    height: 530px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .hero-slider-item {
        height: 400px;
    }
    .bg-gray {
        padding: 8px 0px !important;
    }
}
@media only screen and (max-width: 575.98px) {
    .hero-slider-item {
        height: 350px;
    }
}
.hero-style-five .hero-slider-item {
    height: 800px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-style-five .hero-slider-item {
        height: 530px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .hero-style-five .hero-slider-item {
        height: 400px;
    }
}
@media only screen and (max-width: 575.98px) {
    .hero-style-five .hero-slider-item {
        height: 350px;
    }
}
.hero-slider-content {
    position: relative;
}
@media only screen and (max-width: 767.98px) {
    .hero-slider-content {
        padding-right: 150px;
    }
}
@media only screen and (max-width: 575.98px) {
    .hero-slider-content {
        padding-right: 90px;
    }
}
@media only screen and (max-width: 479.98px) {
    .hero-slider-content {
        padding-right: 0;
    }
}
.hero-slider-content .slide-title {
    font-size: 60px;
    font-weight: normal;
    line-height: 1;
}
.hero-slider-content .slide-title span {
    display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-content .slide-title {
        font-size: 50px;
    }
}
@media only screen and (max-width: 767.98px) {
    .hero-slider-content .slide-title {
        font-size: 40px;
        line-height: 1.2;
    }
}
@media only screen and (max-width: 575.98px) {
    .hero-slider-content .slide-title {
        font-size: 35px;
    }
}
@media only screen and (max-width: 479.98px) {
    .hero-slider-content .slide-title {
        font-size: 30px;
    }
}
.hero-slider-content .slide-desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    color: #222222;
    padding-top: 20px;
}
@media only screen and (max-width: 575.98px) {
    .hero-slider-content .slide-desc {
        padding-top: 10px;
    }
}
.btn-hero {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    padding: 14px 30px;
    display: inline-block;
    border-radius: 50px;
    background-color: #f5424e;
    margin-top: 38px;
}
@media only screen and (max-width: 575.98px) {
    .btn-hero {
        margin-top: 25px;
    }
}
.btn-hero:hover {
    color: #fff;
    background-color: #222222;
}
.hero-overlay {
    position: relative;
}
.hero-overlay:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
}
@media only screen and (max-width: 767.98px) {
    .hero-overlay:before {
        display: block;
    }
}
/*------ hero slider area css end ------*/

.slick-active .hero-slider-content.slide-1 h2 {
    -webkit-animation: bounceIn 2s linear alternate;
    animation: bounceIn 2s linear alternate;
}
.slick-active .hero-slider-content.slide-1 h4 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}
.slick-active .hero-slider-content.slide-1 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}
.slick-active .hero-slider-content.slide-2 h2 {
    -webkit-animation: bounceIn 1.5s linear alternate;
    animation: bounceIn 1.5s linear alternate;
}
.slick-active .hero-slider-content.slide-2 h4 {
    -webkit-animation: fadeInLeft 1s linear alternate;
    animation: fadeInLeft 1s linear alternate;
}
.slick-active .hero-slider-content.slide-2 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}
.slick-active .hero-slider-content.slide-3 h2 {
    -webkit-animation: fadeInUp 1000ms linear alternate;
    animation: fadeInUp 1000ms linear alternate;
}
.slick-active .hero-slider-content.slide-3 h4 {
    -webkit-animation: bounceIn 600ms linear alternate;
    animation: bounceIn 600ms linear alternate;
}
.slick-active .hero-slider-content.slide-3 a {
    -webkit-animation: fadeInUp 1400ms linear alternate;
    animation: fadeInUp 1400ms linear alternate;
}
.slider-item {
    position: relative;
    overflow: hidden;
}
.slider-item:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #5c5353;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.4s;
}
@media only screen and (max-width: 767.98px) {
    .slider-item:before {
        opacity: 0.6;
        visibility: visible;
    }
}
.slider-item:hover:before {
    opacity: 0.6;
    visibility: visible;
}
.slider-item:hover .slider-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.slider-item:hover .slider-item-content {
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}
.slider-item .slider-thumb img {
    width: 100%;
}
.slider-item-content {
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    padding: 0 30px;
    z-index: 2;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(-50%) scale(0.8);
    -ms-transform: translateY(-50%) scale(0.8);
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 767.98px) {
    .slider-item-content {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}
.slider-item-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 6px;
    overflow-wrap: break-word;
    text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-item-content h2 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 479.98px) {
    .slider-item-content h2 {
        font-size: 26px;
    }
}
.slider-item-content h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
    .slider-item-content h3 {
        font-size: 22px;
    }
}
.slider-item-content .btn-text {
    margin-top: 15px;
    color: #fff;
}
.slider-item-content .btn-text:before {
    background-color: #fff;
}
.slider-item-content .btn-text:hover {
    color: #f5424e;
}
.slider-item-content .btn-text:hover:before {
    background-color: #f5424e;
}
/*------ service policy start ------*/

/*
.policy-block {
    border-bottom: 1px solid #efefef;
}
*/

.policy-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-bottom: -3px;
}
@media only screen and (max-width: 767.98px) {
    .policy-item {
        margin-bottom: -6px;
    }
}
@media only screen and (max-width: 575.98px) {
    .policy-item {
        display: block;
        text-align: center;
    }
}
.policy-icon {
    font-size: 30px;
    line-height: 1;
    color: #f5424e;
    padding-right: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .policy-icon {
        padding-right: 12px;
    }
}
@media only screen and (max-width: 575.98px) {
    .policy-icon {
        padding-right: 0;
        margin-bottom: 10px;
    }
}
.policy-content p {
    color: #777;
    padding-top: 9px;
}
/*------ service policy end ------*/

/*------ banner statistics style start ------*/

/* 1.0 banner statistics */

.banner-statistics {
    position: relative;
}
.banner-statistics img {
    width: 100%;
    padding: 0 0.75rem;
}
.banner-statistics:hover img {
    opacity: 0.7;
}
.banner-content {
    margin-top: 10px;
}
.banner-content .banner-text2 {
    font-size: 22px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content {
        right: 30px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-content {
        right: 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-content {
        right: 55px;
    }
}
@media only screen and (max-width: 479.98px) {
    .banner-content {
        right: 20px;
    }
}
.banner-content_style2 {
    left: 40px;
    top: auto;
    bottom: 40px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.banner-content_style2 .banner-text3 {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.banner-content_style2 .banner-text3 a {
    color: #222222;
    pointer-events: visible;
}
.banner-content_style2 .banner-text3 a:hover {
    color: #f5424e;
}
.banner-content_style3 {
    left: 40px;
    right: auto;
}
.banner-text1 {
    font-size: 15px;
    line-height: 1.1;
    padding-bottom: 15px;
    color: #777777;
    text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
    .banner-text1 {
        font-size: 14px;
        padding-bottom: 10px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-text1 {
        font-size: 15px;
        padding-bottom: 15px;
    }
}
@media only screen and (max-width: 479.98px) {
    .banner-text1 {
        font-size: 14px;
        padding-bottom: 10px;
    }
}
.banner-text2 {
    padding-bottom: 34px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.banner-text2 span {
    display: block;
}
@media only screen and (max-width: 767.98px), only screen and (max-width: 479.98px) {
    .banner-text2 span {
        display: inline-block;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-text2 {
        font-size: 20px;
        padding-bottom: 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-text2 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-text2 {
        font-size: 25px;
        padding-bottom: 34px;
    }
}
@media only screen and (max-width: 479.98px) {
    .banner-text2 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}
/*------ banner statistics style end ------*/

/*------ section title start ------*/
 
.section-title .title { 
    font-weight: 700;
    color: #5c5353;
}

@media only screen and (max-width: 1025px) {
    .section-title .title {
        font-size: 26px;
    }
    .section-title p {
        font-size: 14px;
    }
}
.section-title .sub-title {
    font-size: 15px;
    padding-top: 6px;
    color: #555555;
}
@-webkit-keyframes shine {
    0% {
        background-position: -500%;
    }
    100% {
        background-position: 100%;
    }
}
@keyframes shine {
    0% {
        background-position: -500%;
    }
    100% {
        background-position: 100%;
    }
}
.section-title-append {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-top: -4px;
    margin-bottom: 18px;
    line-height: 1;
}
.section-title-append:after {
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: #efefef;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    margin-top: -3px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-append:after {
        margin-top: 2px;
    }
}
.section-title-append h4 {
    display: inline-block;
    line-height: 1;
    text-transform: capitalize;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-right: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title-append h4 {
        font-size: 16px;
    }
}
/*------ section title end ------*/

/*------- common style css start -------*/

/*-------- Custom Checkbox Style start --------*/

.custom-checkbox label {
    text-transform: none;
    letter-spacing: normal;
    padding: 10px 0;
    margin: 0;
    display: block;
}
.custom-checkbox input[type=checkbox], .custom-checkbox input[type=radio] {
    opacity: 0;
    width: 0;
    height: 0;
    border: 0;
    position: absolute;
}
.custom-checkbox label span {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: block;
    line-height: normal;
}
.custom-checkbox label span small {
    font-size: .775em;
}
.custom-checkbox label span:before {
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    content: "";
    height: 24px;
    width: 24px;
    border: 2px solid #6a6a6a;
    border-radius: 2px;
    background: #fff;
}
.custom-checkbox label input:checked+span:before {
    background-color: #f5424e;
    border-color: #f5424e;
}
.custom-checkbox label span:after {
    position: absolute;
    left: 6px;
    top: calc(50% - 7px);
    display: inline-block;
    height: 9px;
    width: 14px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
}
.custom-checkbox label input:checked+span {
    color: #f5424e;
}
.custom-checkbox label input:checked+span:after {
    border-color: #fff;
    content: "";
}
/*------- Custom Radio Button Style end -------*/

.bg-gray, .grey-bg {
    background-color: aliceblue;
    height: 100% !important;
}
.blue-grediant-bg {
    background-image: linear-gradient( 135deg, #122fa5 0%, #232F3E 100%);
}
.blue-bg {
    background-color: #232F3E;
}
.white-bg {
    background: #fff;
}
.light-blue-bg {
    background-color: #232F3E;
}
.light-grey-bg {
    background:  antiquewhite;
}
.text-white {
    color: #fff;
}
.text-blue {
    color: #232F3E;
}
/*------ twitter feed start ------*/

.twitter-feed-content {
    padding: 32px 0;
    border-bottom: 1px solid #efefef;
}
.twitter-feed-content p {
    color: #888;
}
.twitter-feed-content p a {
    color: #f5424e;
}
.twitter-feed-content p a:hover {
    text-decoration: underline;
}
/*------ twitter feed end ------*/

/*----- product tab menu start -----*/

.header-main-area.sticky {
    background: #ffffff;
}
.position-static.active {
    background: no-repeat;
}
.product-tab-menu {
    margin-top: -6px;
    margin-bottom: 35px;
}
.product-tab-menu ul li {
    margin-right: 35px;
}
@media only screen and (max-width: 479.98px) {
    .product-tab-menu ul li {
        margin-right: 15px;
    }
}
.product-tab-menu ul li:last-child {
    margin-right: 0;
}
.product-tab-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #777777;
}
.product-tab-menu ul li a:hover, .product-tab-menu ul li a.active {
    color: #222222;
}
.tab-content .tab-pane.show.active .product-item {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
/*----- product tab menu start -----*/

/*----- brand logo style start -----*/

.brand-logo-carousel {
    padding: 30px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.brand-item img {
    margin: auto;
}
/*----- brand logo style end -----*/

/*----- Sale deals item start -----*/

.Sale-deals-item {
    border-radius: 0px;
}
.Sale-deals-item .product-caption {
    text-align: center;
    padding-bottom: 25px;
}
@media only screen and (max-width: 767.98px) {
    .Sale-deals-item .product-caption {
        padding: 20px 10px;
    }
}
.Sale-deals-item .manufacturer-name {
    padding-bottom: 5px;
}
.Sale-deals-item .product-name {
    font-size: 20px;
    padding-bottom: 30px;
}
.Sale-deals-item .price-box {
    font-size: 15px;
    padding-top: 8px;
}
.progress {
    height: 15px;
    border-radius: 50px;
}
.progress-quantity {
    position: relative;
    margin-top: 52px;
}
.progress-bar {
    background-color: #f5424e !important;
    width: 60%;
}
.progress-bar:nth-child(2) {
    width: 70%;
}
.progress-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: calc(-100% - 8px);
    left: 0;
    width: 100%;
    line-height: 1;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-sold, .product-available {
    font-size: 14px;
    color: #777777;
}
.product-sold span, .product-available span {
    color: #f5424e;
    font-weight: 700;
}
.Sale-deals-item {
    margin: 5px 0;
}
.product-countdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px 0;
}
.product-countdown .single-countdown {
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #eaeaea;
}
.product-countdown .single-countdown__time {
    font-size: 16px;
    display: inline-block;
    color: #222222;
}
.product-countdown .single-countdown__text {
    font-size: 11px;
    display: block;
    color: #222222;
    line-height: 1;
    margin-top: 5px;
    text-transform: uppercase;
}
.product-countdown .single-countdown:last-child {
    margin-right: 0;
}
.product-countdown--style-two {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.product-details-des .product-countdown {
    margin: 20px 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
/*----- Sale deals item start -----*/

/*------ Instagram Feed Area Start ------*/

.instagram-item {
    position: relative;
    z-index: 1;
}
.instagram-item:before {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 100%;
    width: 100%;
}
.instagram-item .instagram-hvr-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.instagram-item .instagram-hvr-content span {
    color: #fff;
    margin-right: 20px;
}
.instagram-item .instagram-hvr-content span:last-child {
    margin-right: 0;
}
.instagram-item .instagram-hvr-content span i.fa {
    margin-right: 5px;
}
.instagram-item:hover:before {
    opacity: 1;
    visibility: visible;
}
.instagram-item:hover .instagram-hvr-content {
    opacity: 1;
    visibility: visible;
}
/*------ Instagram Feed Area End ------*/

.policy-list:not(:last-child) {
    margin-bottom: 40px;
}
@media only screen and (max-width: 767.98px) {
    .policy-list:not(: last-child) {
        margin-bottom: 25px;
    }
}
.policy-list a {
    color: #f5424e;
}
.policy-title {
    margin-bottom: 10px;
}
/*------- common style css end -------*/

/*------- product item start -------*/

.product-item {
    overflow: hidden;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 1px 0px 5px 0px gray;
} 
.product-item .add-to-wishlist {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #fff;
    z-index: 2;
    font-weight: 900;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 15%) 0px 3px 4px -1px, rgb(0 0 0 / 10%) 0px 5px 10px 0px, rgb(0 0 0 / 10%) 0px 1px 12px 0px;
}
.product-item .add-to-wishlist .icon:before {
    font-weight: bold !important;
}
@media (max-width: 767px) {
    .product-item .add-to-wishlist {
        width: 25px;
        height: 25px;
        font-size: 18px;
        line-height: 26px;
    }
}
.product-item .color-categories {
    padding: 13px 0 6px;
}
.product-item:hover .product-thumb .sec-img, .product-list-item:hover .product-thumb .sec-img {
    opacity: 1;
    visibility: visible;
}
.product-item:hover .product-thumb .pri-img, .product-list-item:hover .product-thumb .pri-img {
    opacity: 0;
    visibility: hidden;
}
.product-item:hover .button-group a, .product-list-item:hover .button-group a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.product-item:hover .cart-hover, .product-list-item:hover .cart-hover {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}
.product-thumb {
    position: relative;
}
.product-thumb img {
    width: 100%;
    min-height: 200px;
    height: 200px;
    object-fit: contain;
    box-shadow: 5px 5px 5px 0px;
    border-radius: 10px;
}
.product-thumb .sec-img {
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.product-caption {
    height: 80px;
}
.product-caption .product-name {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f5424e;
    height: 40px;
    overflow: hidden;
    margin-top: 10px;
}
.category-name a {
    color: #232f3e;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
}

.product-caption .product-name a {
    color: #4f4343;
    font-weight: 600;
    font-size: 17px;
}
 
.product-caption .product-name a:hover {
    color: #f5424e;
}
.manufacturer-name {
    padding-bottom: 5px;
    line-height: 1;
}
.manufacturer-name a {
    font-size: 14px;
    line-height: 1;
    color: #636569;
    text-transform: capitalize;
}
.manufacturer-name a:hover {
    color: #f5424e;
}
.color-categories {
    line-height: 1;
}
.color-categories li {
    display: inline-block;
    padding: 1px;
    border-radius: 50%;
    border: 1px solid #efefef;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.color-categories li:hover {
    border-color: #f5424e;
}
.color-categories li a {
    height: 12px;
    width: 12px;
    display: block;
    border-radius: 50%;
}
.cart-btn {
    padding-top: 0px;
} 

.cart-btn .btn-cart {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #393735;
    font-weight: 800;
    box-shadow: 2px 2px 2px 0px #777272;
    border: solid 2px;
}


.cart-btn .btn-cart:hover {
    background: #f5424e;
    color: #fff;
    border-color: #f5424e;
}
.c-lightblue {
    background-color: #b0c4de;
}
.c-darktan {
    background-color: #aa9e78;
}
.c-grey {
    background-color: #808080;
}
.c-brown {
    background-color: #964B00;
}
.button-group {
    right: 15px;
    top: 100px;
    position: absolute;
}
.button-group a {
    width: 38px;
    height: 38px;
    display: block;
    font-size: 18px;
    line-height: 42px;
    color: #222222;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}
.button-group a span {
    display: block;
}
.button-group a:hover {
    color: #f5424e;
}
.cart-hover {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.product-label {
    background: #f5424e;
    border-radius: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    right: 15px;
    line-height: 1;
    min-width: 48px;
    padding: 7px 12px;
    position: absolute;
    text-align: center;
    text-transform: capitalize;
    z-index: 3;
}
.product-label span {
    display: block;
    margin-top: -1px;
}
.product-label.discount {
    background-color: #222222;
}
.product-label:nth-child(1) {
    top: 20px;
}
.product-label:nth-child(2) {
    top: 48px;
}
.ratings {
    color: #f9bd22;
    font-size: 14px;
}
.ratings span {
    margin-right: 3px;
}
.price-box {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-end;
}
.sale-regular {
    color: #f5424e;
}
.price-old {
    color: #585858;
    font-size: 14px;
    font-weight: 300;
    display: block;
}
@media (max-width: 500px) {
    .row.all-products {
        margin: 0 -5px;
    }
    .row.all-products>.product-col {
        padding: 5px;
    }
    .product-thumb img {
        height: 150px;
        min-height: 150px;
		object-fit:contain;
    }
    .product-item {
        padding: 10px;
    }
    .price-box {
        font-size: 16px;
    }
    .cart-btn .btn-cart {
        font-size: 14px;
        padding: 5px;
    }
}
@media (max-width: 1025px) {
    .page-heading {
        padding: 20px 0
    }
    .page-heading h1 {
        font-size: 20px;
    }
}
/*------- product item end -------*/

/*-------- product list item start --------*/

.product-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 767.98px) {
    .product-list-item {
        display: block !important;
    }
}
.product-list-item .product-thumb {
    max-width: 30%;
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    height: 100%;
}
@media only screen and (max-width: 767.98px) {
    .product-list-item .product-thumb {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}
.product-content-list {
    padding-left: 20px;
    max-width: calc(100% - 30%);
    -webkit-flex-basis: calc(100% - 30%);
    -ms-flex-preferred-size: calc(100% - 30%);
    flex-basis: calc(100% - 30%);
}
@media only screen and (max-width: 767.98px) {
    .product-content-list {
        padding-left: 0;
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 30px;
    }
}
.product-content-list .manufacturer-name {
    padding-bottom: 10px;
}
.product-content-list .ratings {
    padding-bottom: 10px;
}
.product-content-list .product-name {
    padding: 10px 0 12px;
}
.product-content-list .product-name a {
    color: #222222;
    font-weight: 400;
}
.product-content-list .product-name a:hover {
    color: #f5424e;
}
.product-content-list p {
    padding-top: 15px;
    margin-top: 22px;
    border-top: 1px solid #efefef;
}
/*-------- product list item end --------*/

/*------ group list item start ------*/

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .group-product-banner {
        margin-bottom: 80px;
    }
}
 

.group-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.group-item-thumb {
    max-width: 80px;
    -webkit-flex-basis: 80px;
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
}
.group-item-desc {
    position: relative;
    padding-left: 10px;
    max-width: calc(100% - 80px);
    -webkit-flex-basis: calc(100% - 80px);
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
}
.group-item-desc .group-product-name {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 18px;
}
.group-item-desc .group-product-name a {
    color: #222222;
}
.group-item-desc .group-product-name a:hover {
    color: #f5424e;
    text-decoration: underline;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories-group-wrapper {
        margin-bottom: 78px;
    }
}
@media only screen and (max-width: 767.98px) {
    .categories-group-wrapper {
        margin-bottom: 60px;
    }
}
.row [class*="col-"]:last-child .categories-group-wrapper {
    margin-bottom: 0;
}
.group-list-item-wrapper .slick-slider .slick-slide>div {
    margin-bottom: 20px;
}
.group-list-item-wrapper .slick-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}
/*------ group list item end ------*/

/*----- testimonial area end -----*/

.testimonial-col {
    padding: 0 10px;
}
/*----- breadcrumb style css start -----*/

.breadcrumb-area {
    background-color: #f5f5f5;
}
.breadcrumb-wrap {
    padding: 24px 0;
    text-align: center;
}
.breadcrumb-wrap .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
    color: #f5424e;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
    color: #7e7e7e;
    content: "/";
    font-size: 12px;
    margin: 0 5px;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: #f5424e;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
/*----- breadcrumb style css end -----*/

/*----- shop Sidebar start -----*/

.sidebar-wrapper .sidebar-single:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar-wrapper {
        margin-top: 80px;
    }
}
@media only screen and (max-width: 767.98px) {
    .sidebar-wrapper {
        margin-top: 62px;
    }
}
.sidebar-single {
    margin-bottom: 35px;
}
.sidebar-single .sidebar-title {
    position: relative;
    line-height: 1;
    margin-top: -3px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.sidebar-single .sidebar-title:before {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    content: " ";
    position: absolute;
    background-color: #efefef;
}
/*------ pricing filter slider start ------*/

.price-range-wrap {
    padding-top: 8px;
}
.price-range-wrap .price-range {
    border-radius: 0;
    margin-right: 13px;
    margin-bottom: 20px;
}
.price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #eeeeee;
    height: 6px;
    border-radius: 20px;
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
    background-color: #f5424e;
    border-radius: 0;
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    border: none;
    background-color: #fff;
    height: 12px;
    width: 12px;
    outline: none;
    cursor: ew-resize;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before {
    top: 50%;
    left: 50%;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background-color: #f5424e;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.price-range-wrap .range-slider {
    color: #222222;
    margin-top: 30px;
}
.price-range-wrap .range-slider .price-input label {
    color: #222222;
    margin-bottom: 0;
}
.price-range-wrap .range-slider .price-input input {
    color: #555555;
    border: none;
    outline: none;
    max-width: 80px;
    pointer-events: none;
}
.price-range-wrap .range-slider button.filter-btn {
    border: none;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 3px;
    background-color: #ebebeb;
}
.price-range-wrap .range-slider button.filter-btn:hover {
    color: #fff;
    background-color: #f5424e;
}
/*------ pricing filter slider end ------*/

.categories-list li {
    color: #555555;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.categories-list li:last-child {
    margin-bottom: 0;
}
.categories-list li:hover {
    color: #f5424e;
}
/*------ shop categories area start ------*/

.shop-categories {
    margin-top: -4px;
}
.shop-categories li a {
    color: #555555;
    display: block;
    line-height: 1;
    padding: 10px 0;
    text-transform: capitalize;
}
.shop-categories li:first-child a {
    padding-top: 0;
}
.shop-categories li:last-child a {
    padding-bottom: 0;
}
.shop-categories li:hover a {
    color: #f5424e;
}
/*------ shop categories area end ------*/

/*----- shop Sidebar end -----*/

/*------ pagination area style start ------*/

.paginatoin-area {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #efefef;
}
.paginatoin-area .pagination-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.paginatoin-area .pagination-box li {
    margin-right: 5px;
    display: inline-block;
}
.paginatoin-area .pagination-box li:last-child {
    margin-right: 0;
}
.paginatoin-area .pagination-box li a {
    color: #222222;
    height: 36px;
    width: 36px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
}
.paginatoin-area .pagination-box li a i {
    font-size: 30px;
    line-height: 36px;
}
.paginatoin-area .pagination-box li a:hover {
    color: #fff;
    border-color: #f5424e;
    background-color: #f5424e;
}
.paginatoin-area .pagination-box li.active a {
    color: #fff;
    background-color: #f5424e;
}
/*------ pagination area style end ------*/

/*------- blog item start -------*/

.blog-post-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
}
.blog-thumb {
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
}
.blog-content {
    padding-top: 15px;
}
.blog-title {
    line-height: 1.3;
    text-transform: capitalize;
}
.blog-title a {
    color: #222222;
    display: block;
}
.blog-title a:hover {
    color: #f5424e;
}
.blog-meta {
    padding-bottom: 15px;
}
.blog-meta p {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #777;
}
.blog-meta p a {
    color: #f5424e;
}
/*------- blog item end -------*/

/*------ blog list item start ------*/

.blog-list-inner .blog-post-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item {
        display: block;
    }
}
.blog-list-inner .blog-post-item .blog-thumb {
    width: 40%;
}
@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-thumb {
        width: 100%;
    }
}
.blog-list-inner .blog-post-item .blog-content {
    padding-top: 0;
    padding-left: 20px;
    width: calc(100% - 40%);
}
@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-content {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
}
.blog-list-inner .blog-post-item .blog-content .blog-title {
    margin-top: -5px;
}
.blog-list-inner .blog-post-item .blog-content .blog-meta {
    padding-top: 15px;
}
.blog-list-inner .blog-post-item .blog-content .blog-read-more {
    color: #222222;
    display: inline-block;
    margin-top: 10px;
}
.blog-list-inner .blog-post-item .blog-content .blog-read-more:hover {
    color: #f5424e;
    text-decoration: underline;
}
/*------ blog list item end ------*/

/*----- blog sidebar start -------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-sidebar-wrapper {
        margin-bottom: -5px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-sidebar-wrapper {
        margin-top: 77px;
        margin-bottom: -5px;
    }
}
@media only screen and (max-width: 767.98px) {
    .blog-sidebar-wrapper {
        margin-top: 60px;
        margin-bottom: -5px;
    }
}
.blog-sidebar-wrapper .blog-sidebar:last-child {
    margin-bottom: 0;
}
.blog-sidebar {
    margin-bottom: 30px;
}
.blog-sidebar .title {
    line-height: 1;
    margin-top: -2px;
    margin-bottom: 40px;
    position: relative;
    text-transform: capitalize;
}
.blog-sidebar .title:before {
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: #efefef;
    content: "";
    position: absolute;
}
.blog-sidebar .search-field {
    width: calc(100% - 50px);
    border: 1px solid #ccc;
    padding: 0 10px;
    color: #555555;
    font-size: 14px;
    height: 50px;
    float: left;
    text-transform: capitalize;
}
.blog-sidebar .search-btn {
    width: 50px;
    height: 50px;
    margin-left: -4px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-sidebar .search-btn i {
    font-size: 20px;
    line-height: 50px;
    color: #222222;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-sidebar .search-btn:hover {
    background-color: #f5424e;
    border-color: #f5424e;
}
.blog-sidebar .search-btn:hover i {
    color: #fff;
}
.blog-sidebar .blog-archive {
    margin-top: -10px;
}
.blog-sidebar .blog-archive li a {
    color: #555555;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    padding: 13px 0;
    display: inline-block;
}
.blog-sidebar .blog-archive li a:hover {
    color: #f5424e;
}
.blog-sidebar .blog-archive li:last-child a {
    padding-bottom: 0;
}
.blog-sidebar .blog-archive li:first-child a {
    padding-top: 0;
}
.blog-sidebar .blog-tags li {
    display: inline-block;
    margin-bottom: 5px;
}
.blog-sidebar .blog-tags li a {
    color: #222222;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 6px 15px 4px;
    display: inline-block;
    text-transform: capitalize;
}
.blog-sidebar .blog-tags li a:hover {
    color: #fff;
    background-color: #f5424e;
    border-color: #f5424e;
}
.blog-category {
    margin-top: -10px;
}
.recent-post .recent-post-item:last-child {
    margin-bottom: 0;
}
.recent-post-item {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.recent-post-item .product-thumb {
    max-width: 70px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 70px;
    -ms-flex: 1 0 70px;
    flex: 1 0 70px;
}
.recent-post-item .recent-post-description {
    padding-left: 10px;
}
.recent-post-item .recent-post-description h6 {
    font-size: 14px;
    padding-bottom: 5px;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .recent-post-item .recent-post-description h6 {
        font-size: 13px;
        padding-bottom: 5px;
    }
}
.recent-post-item .recent-post-description h6 a {
    color: #222222;
}
.recent-post-item .recent-post-description h6 a:hover {
    color: #f5424e;
}
.recent-post-item .recent-post-description p {
    text-transform: capitalize;
}
/*----- blog sidebar end -------*/

.entry-summary {
    padding-top: 25px;
}
blockquote {
    border-left: 5px solid #f5424e;
    margin: 25px 32px 25px 30px;
    background-color: #f8f8f8;
    padding: 15px;
}
.blog-details-post .blog-content .blog-title {
    padding-top: 10px;
}
@media only screen and (max-width: 767.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 20px;
    }
}
@media only screen and (max-width: 479.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 18px;
    }
}
.blog-details-post .blog-content .blog-meta {
    padding-top: 15px;
    padding-bottom: 0;
}
.blog-details-post:hover .blog-thumb img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
/*------- blog main content wrapper start --------*/

.blog-post-item .tag-line {
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.blog-post-item .tag-line h6 {
    font-size: 14px;
    display: inline-block;
    padding-right: 5px;
}
.blog-post-item .tag-line a {
    font-size: 13px;
    color: #222222;
}
.blog-post-item .tag-line a:hover {
    color: #f5424e;
}
.blog-share-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .blog-share-link {
        padding-top: 15px;
    }
}
.blog-share-link h6 {
    font-size: 14px;
    padding-right: 15px;
}
.blog-share-link .blog-social-icon a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
}
.blog-share-link .blog-social-icon a.facebook {
    background-color: #3B5999;
}
.blog-share-link .blog-social-icon a.twitter {
    background-color: #1DA1F2;
}
.blog-share-link .blog-social-icon a.pinterest {
    background-color: #CB2028;
}
.blog-share-link .blog-social-icon a.google {
    background-color: #fe6d4c;
}
.blog-share-link .blog-social-icon a:hover.facebook {
    background-color: #2d4474;
}
.blog-share-link .blog-social-icon a:hover.twitter {
    background-color: #0c85d0;
}
.blog-share-link .blog-social-icon a:hover.pinterest {
    background-color: #9f191f;
}
.blog-share-link .blog-social-icon a:hover.google {
    background-color: #fe4419;
}
@media only screen and (max-width: 479.98px) {
    .blog-share-link .blog-social-icon a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
        margin-right: 0;
    }
}
/*--- blog main content wrapper end ---*/

/*--- blog comment section start ---*/

.comment-section {
    margin-top: -3px;
}
.comment-section h5 {
    line-height: 1;
    padding-bottom: 15px;
}
.comment-section ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
}
.comment-section ul li:last-child {
    margin-bottom: 5px;
}
@media only screen and (max-width: 479.98px) {
    .comment-section ul li {
        display: block;
    }
}
.comment-section ul li .author-avatar {
    -webkit-flex-basis: 66px;
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    max-height: 62px;
    margin-right: 10px;
}
@media only screen and (max-width: 479.98px) {
    .comment-section ul li .author-avatar {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 66px;
        height: 62px;
    }
}
.comment-section ul li.comment-children {
    margin-left: 40px;
}
@media only screen and (max-width: 479.98px) {
    .comment-section ul li.comment-children {
        margin-left: 20px;
    }
}
.comment-section ul li .comment-body {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}
.comment-section ul li .comment-body h5 {
    font-size: 14px;
    padding-bottom: 5px;
}
.comment-section ul li .comment-body .comment-post-date {
    color: #555555;
    padding-bottom: 10px;
}
.comment-section ul li .comment-body .reply-btn {
    float: right;
}
.comment-section ul li .comment-body .reply-btn a {
    color: #222222;
    font-size: 12px;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    text-transform: capitalize;
    border: 1px solid #efefef;
}
.comment-section ul li .comment-body .reply-btn a:hover {
    color: #fff !important;
    border-color: #f5424e;
    background-color: #f5424e;
}
/*--- blog comment section end ---*/

/*------ blog comment box start -----*/

.blog-comment-wrapper {
    margin-top: -10px;
}
.blog-comment-wrapper h3 {
    color: #222222;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}
.blog-comment-wrapper p {
    margin-bottom: 10px;
    padding-top: 10px;
}
.blog-comment-wrapper .comment-post-box label {
    color: #222222;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}
.blog-comment-wrapper .comment-post-box .coment-field {
    background: #f8f8f8;
    border: none;
    color: #555555;
    padding: 8px 10px;
    width: 100%;
}
@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-field {
        margin-bottom: 20px;
    }
}
.blog-comment-wrapper .comment-post-box textarea {
    height: 130px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: #f8f8f8;
    border: none;
}
.blog-comment-wrapper .comment-post-box .coment-btn {
    margin-top: 30px;
}
@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-btn {
        margin-top: 10px;
    }
}
/*------- blog comment box end --------*/

/*------- about us area start -------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-thumb {
        text-align: center;
    }
}
@media only screen and (max-width: 767.98px) {
    .about-thumb {
        text-align: center;
    }
    .about-thumb img {
        width: 100%;
    }
}
.about-title {
    font-size: 48px;
    color: #d1d1d1;
    display: block;
    line-height: 1.1;
    margin-bottom: 38px;
}
@media only screen and (max-width: 767.98px) {
    .about-title {
        font-size: 26px;
        color: #222222;
        margin-bottom: 25px;
    }
    .section-title h2::before {
        display: none;
    }
    .section-title h2::after {
        display: none;
    }
}
.about-sub-title {
    line-height: 1.5;
    padding-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
    .about-sub-title {
        font-size: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .about-content {
        text-align: center;
        padding: 52px 30px 0;
        margin-bottom: -6px;
    }
}
@media only screen and (max-width: 479.98px) {
    .about-content {
        padding: 52px 0 0 0;
    }
}
.about-content p {
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 12px;
}
.about-content p:last-child {
    padding-bottom: 0;
}
/*------- about us area end -------*/

/*-------- choosing area start --------*/

.choosing-area {
    margin-bottom: -4px;
}
@media only screen and (max-width: 767.98px) {
    .single-choose-item {
        padding: 0 20px;
    }
}
.single-choose-item i {
    color: #969ca7;
    font-size: 44px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.single-choose-item h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0 10px;
    text-transform: capitalize;
}
.single-choose-item:hover i {
    color: #f5424e;
}
/*-------- choosing area end --------*/

/*------- team area start -------*/

.team-member {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.team-member .team-thumb {
    position: relative;
    text-align: center;
    overflow: hidden;
}
.team-member .team-thumb img {
    width: 100%;
}
.team-member .team-thumb .team-social {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    background-color: #fff;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}
.team-member .team-thumb .team-social a {
    color: #222222;
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-right: 5px;
}
.team-member .team-thumb .team-social a:hover {
    color: #fff;
    background-color: #f5424e;
    border-color: #f5424e;
}
.team-member .team-content .team-member-name {
    padding-top: 15px;
}
.team-member .team-content p {
    font-size: 14px;
    line-height: 1;
    padding-top: 5px;
    color: #f5424e;
}
.team-member:hover .team-social {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.team-member:hover .team-thumb img {
    opacity: 0.5;
}
/*------- team area end -------*/

/*------ shop page style start ------*/

.shop-top-bar {
    margin-bottom: 30px;
}
.top-bar-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 767.98px) {
    .top-bar-left {
        padding-top: 15px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.top-bar-left .product-view-mode {
    margin-right: 60px;
}
@media only screen and (max-width: 479.98px) {
    .top-bar-left .product-view-mode {
        margin-right: 0;
    }
}
.top-bar-left .product-view-mode a {
    color: #b6b6b6;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}
.top-bar-left .product-view-mode a i {
    font-size: 20px;
    margin-top: 6px;
}
.top-bar-left .product-view-mode a:hover {
    color: #f5424e;
}
.top-bar-left .product-view-mode a.active {
    color: #f5424e;
}
.top-bar-left .product-amount p {
    color: #777;
    font-size: 14px;
    text-transform: capitalize;
}
.top-bar-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media only screen and (max-width: 767.98px) {
    .top-bar-right {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.top-bar-right .product-short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.top-bar-right .product-short p {
    margin-right: 10px;
}
.nice-select {
    width: 100%;
    float: none;
}
#select2 .nice-select {
    border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .nice-select {
        width: 170px;
    }
}
@media only screen and (max-width: 479.98px) {
    .nice-select {
        width: 190px;
    }
}
.nice-select.open {
    border-color: #f5424e;
}
.nice-select .list {
    right: 0;
    left: auto;
    width: 100%;
}
.nice-select .option {
    font-size: 16px;
    line-height: 34px;
    min-height: 34px;
    text-transform: capitalize;
}
.nice-select:after {
    height: 6px;
    width: 6px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
}
/*----- shop main wrapper end -----*/

/*----- product change view start -----*/

.shop-product-wrap.list-view .product-item {
    display: none;
}
.shop-product-wrap.grid-view .product-item {
    display: block;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    padding: 0;
}
.shop-product-wrap.grid-view .product-list-item {
    display: none !important;
}
.shop-product-wrap.list-view .product-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.shop-product-wrap.row.list-view .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.shop-product-wrap [class*="col-"] {
    margin-bottom: 30px;
}
/*----- product change view end -----*/

/*------ shop page style start ------*/

/*----- product details slider start ----*/

.pro-large-img {
    position: relative;
    cursor: pointer;
}
.pro-large-img img {
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.pro-nav-thumb {
    cursor: pointer;
}
.pro-nav {
    margin-top: 20px;
}
/*----- product details slider end ----*/

/*----- product details content start ----*/

.option-title {
    line-height: 1;
    font-weight: 400;
    margin-right: 10px;
    text-transform: capitalize;
}
.product-details-des .product-name {
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #5c5353;
}
@media only screen and (max-width: 575.98px) {
    .product-details-des .product-name {
        font-size: 17px;
    }
}
.product-details-des .pro-review {
    padding-left: 10px;
}
.product-details-des .pro-review span {
    font-size: 14px;
    line-height: 1;
    color: #555555;
}
.product-details-des .price-box {
    padding-top: 10px;
    padding-bottom: 10px;
}
.product-details-des .customer-rev {
    padding-top: 10px;
}
.product-details-des .customer-rev a {
    color: #222222;
    font-size: 13px;
    text-transform: capitalize;
}
.product-details-des .customer-rev a:hover {
    color: #f5424e;
}
.product-details-des .offer-text {
    font-weight: 400;
}
.product-details-des .quantity-cart-box {
    margin-bottom: 20px;
}
.product-details-des .quantity {
    margin-right: 15px;
}
.product-details-des .quantity .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    border-radius: 40px;
    float: left;
}
.product-details-des .quantity .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    color: #555555;
}
.product-details-des .quantity .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}
.product-details-des .pro-desc {
    margin-bottom: 20px;
}
.product-details-des .availability {
    margin-bottom: 15px;
}
.product-details-des .availability i {
    color: #f5424e
}
.product-details-des .availability span {
    color: #555555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding-left: 3px;
    text-transform: uppercase;
}
.product-details-des .useful-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.product-details-des .useful-links a {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    margin-right: 20px;
    text-transform: capitalize;
}
.product-details-des .useful-links a:hover {
    color: #f5424e;
}
.product-details-des .useful-links a i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: middle;
}
.product-details-des .like-icon {
    padding-top: 20px;
    border-top: 1px solid #efefef;
}
.product-details-des .like-icon a {
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    line-height: 22px;
    padding: 0 8px;
    margin-right: 6px;
    border-radius: 3px;
    text-transform: capitalize;
}
@media only screen and (max-width: 479.98px) {
    .product-details-des .like-icon a {
        margin-right: 0;
    }
}
.product-details-des .like-icon a i {
    padding-right: 5px;
}
.product-details-des .like-icon a.facebook {
    background-color: #3B5999;
}
.product-details-des .like-icon a.twitter {
    background-color: #1DA1F2;
}
.product-details-des .like-icon a.pinterest {
    background-color: #CB2028;
}
.product-details-des .like-icon a.google {
    background-color: #fe6d4c;
}
.product-details-des .like-icon a:hover.facebook {
    background-color: #2d4474;
}
.product-details-des .like-icon a:hover.twitter {
    background-color: #0c85d0;
}
.product-details-des .like-icon a:hover.pinterest {
    background-color: #9f191f;
}
.product-details-des .like-icon a:hover.google {
    background-color: #fe4419;
}
.product-details-des .share-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-details-des .share-icon a {
    color: #555555;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    padding: 0 8px;
    margin-right: 5px;
}
@media only screen and (max-width: 479.98px) {
    .product-details-des .share-icon a {
        padding: 0 5px;
    }
}
.product-details-des .share-icon a:hover {
    color: #f5424e;
}
.product-details-des .color-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
.product-details-des .pro-size {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
.product-details-des .pro-size .nice-select {
    width: 100px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
}
.product-details-des .group-product-table {
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
}
.product-details-des .group-product-table.table-bordered {
    border: none;
}
.product-details-des .group-product-table td {
    width: 33.33%;
    padding: 8px;
    vertical-align: middle;
}
.product-details-des .group-product-table td a {
    color: #555555;
    text-transform: capitalize;
}
.product-details-des .group-product-table td a:hover {
    color: #f5424e;
}
.product-details-des .group-product-table td .pro-qty {
    width: 90px;
    height: 35px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}
.product-details-des .group-product-table td .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 31px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #555555;
}
.product-details-des .group-product-table td .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 33px;
    line-height: 33px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}
/*------ countdown style end ------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des {
        margin-top: 76px;
    }
}
@media only screen and (max-width: 767.98px) {
    .product-details-des {
        margin-top: 58px;
    }
}
.product-details-des.quick-details {
    margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des.quick-details {
        margin-top: 0;
    }
}
@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details {
        margin-top: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des.quick-details .product-name {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details .product-name {
        font-size: 18px;
    }
}
.product-details-des.box-layout {
    padding-top: 47px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .product-details-des.box-layout {
        margin-top: 0;
    }
}
.product-details-des.box-layout p {
    max-width: 80%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .product-details-des.box-layout p {
        max-width: 100%;
        padding: 0 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .product-details-des.sidebar-sticky {
        margin-top: 0;
    }
}
.product-details-des.quick-des p {
    padding-top: 0;
}
/*----- product details content end ----*/

/*----- reviews area start -----*/

.product-review-info .nav.review-tab li a {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    padding: 8px 10px;
    border: 1px solid #f5424e;
    border-bottom: none;
    background-color: #f5424e;
} 
.product-review-info .nav.review-tab li a:hover, .product-review-info .nav.review-tab li a.active {
    color: #555555;
    background-color: #fff;
    border-color: #ddd;
}
@media only screen and (max-width: 479.98px) {
    .product-review-info .nav.review-tab li a {
        font-size: 14px;
    }
}
.product-review-info .tab-content.reviews-tab {
    border: 1px solid #efefef;
    padding: 15px 20px 20px;
}
.product-review-info .tab-content.reviews-tab .table {
    margin-bottom: 0;
}
.product-review-info .tab-content.reviews-tab .table tr {
    text-transform: capitalize;
}
.product-review-info .tab-content .review-description {
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-review-info .tab-content .review-description {
        padding: 15px 0;
    }
}
@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description {
        display: block;
    }
}
.product-review-info .tab-content .review-description .tab-thumb {
    -webkit-flex-basis: 300px;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
}
@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-thumb {
        -webkit-flex-basis: 220px;
        -ms-flex-preferred-size: 220px;
        flex-basis: 220px;
    }
}
.product-review-info .tab-content .review-description .tab-des {
    padding-left: 40px;
    -webkit-flex-basis: calc(100% - 300px);
    -ms-flex-preferred-size: calc(100% - 300px);
    flex-basis: calc(100% - 300px);
}
@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-des {
        padding-left: 14px;
        -webkit-flex-basis: calc(100% - 220px);
        -ms-flex-preferred-size: calc(100% - 220px);
        flex-basis: calc(100% - 220px);
    }
}
.product-review-info .tab-content .review-description .tab-des h3 {
    color: #f5424e;
    font-size: 20px;
    font-weight: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.product-review-info .tab-content .review-description .tab-des ul li {
    font-size: 13px;
    list-style: inherit;
}
.review-form h5 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    text-transform: capitalize;
}
@media only screen and (max-width: 575.98px) {
    .review-form h5 {
        font-size: 16px;
    }
}
.total-reviews {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 50px;
}
@media only screen and (max-width: 479.98px) {
    .total-reviews {
        display: block;
    }
}
.total-reviews .rev-avatar {
    -webkit-flex-basis: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    max-height: 60px;
}
@media only screen and (max-width: 479.98px) {
    .total-reviews .rev-avatar {
        margin-bottom: 20px;
    }
}
.total-reviews .review-box {
    margin-left: 10px;
    border: 1px solid #efefef;
    padding: 10px;
    -webkit-flex-basis: calc(100% - 70px);
    -ms-flex-preferred-size: calc(100% - 70px);
    flex-basis: calc(100% - 70px);
}
@media only screen and (max-width: 479.98px) {
    .total-reviews .review-box {
        margin-left: 0;
    }
}
.total-reviews .review-box .post-author {
    padding-bottom: 10px;
}
.total-reviews .review-box .post-author p {
    font-size: 12px;
    font-style: italic;
    text-transform: capitalize;
}
.total-reviews .review-box .post-author p span {
    font-size: 13px;
}
.total-reviews .review-box p {
    font-size: 14px;
    font-style: italic;
}
/*----- reviews area end -----*/

/* Checkout Login Coupon Accordion Start */

.checkout-page-wrapper {
    margin-bottom: -8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .checkout-page-wrapper {
        margin-bottom: 0;
    }
}
.checkoutaccordion {
    margin-bottom: 46px;
}
.checkoutaccordion h6 {
    background-color: #f7f7f7;
    border-top: 3px solid #f5424e;
    font-size: 14px;
    padding: 15px 20px;
    position: relative;
    text-transform: capitalize;
}
.checkoutaccordion h6 span {
    color: #f5424e;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-left: 10px;
}
@media only screen and (max-width: 479.98px) {
    .checkoutaccordion h6 span {
        display: block;
        padding-top: 5px;
        margin-left: 0;
    }
}
.checkoutaccordion h6 span:hover {
    color: #222222;
}
@media only screen and (max-width: 479.98px) {
    .checkoutaccordion h6 {
        font-size: 14px;
    }
}
.checkoutaccordion .card {
    border: none;
    padding: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 30px;
}
.checkoutaccordion .card:last-child {
    margin-bottom: 0;
}
.checkoutaccordion .card .card-body {
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 20px;
}
.checkoutaccordion .card .card-body .cart-update-option {
    border: none;
    padding: 0;
}
.checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
    padding: 12px 10px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    margin-right: 15px;
}
@media only screen and (max-width: 479.98px) {
    .checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
        margin-bottom: 15px;
    }
}
.checkout-box-wrap .custom-control {
    padding-left: 0;
    margin-left: 1.5rem;
}
.checkout-billing-details-wrap .billing-form-wrap {
    margin-top: -20px;
}
.checkout-title {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
    .checkout-title {
        margin-bottom: 26px;
    }
}
.forget-pwd {
    color: #f5424e;
    font-size: 12px;
    margin-top: -6px;
}
.single-form-row {
    margin-top: 15px;
    display: none;
}
.single-form-row p {
    margin: 0;
    font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .order-summary-details {
        margin-top: 70px;
    }
}
@media only screen and (max-width: 767.98px) {
    .order-summary-details {
        margin-top: 52px;
    }
}
.order-summary-table {
    background-color: #f7f7f7;
    margin-top: 34px;
}
.order-summary-table .table, .order-summary-table table {
    color: #222222;
    margin-bottom: 0;
    font-size: 15px;
    white-space: nowrap;
}
.order-summary-table .table tr td, .order-summary-table .table tr th, .order-summary-table table tr td, .order-summary-table table tr th {
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 10px;
    border-width: 1px;
}
.order-summary-table .table tr td a, .order-summary-table .table tr th a, .order-summary-table table tr td a, .order-summary-table table tr th a {
    color: #222222;
    font-weight: 400;
}
.order-summary-table .table tr td strong, .order-summary-table .table tr th strong, .order-summary-table table tr td strong, .order-summary-table table tr th strong {
    font-weight: 400;
}
.order-summary-table .shipping-type {
    text-align: left;
}
.order-summary-table .shipping-type li {
    margin-bottom: 5px;
}
.order-summary-table .shipping-type li:last-child {
    margin-bottom: 0;
}
.order-payment-method {
    background-color: #f7f7f7;
    padding: 40px 20px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .order-payment-method {
        padding: 32px 20px 36px;
    }
}
.single-payment-method {
    margin-bottom: 20px;
}
.single-payment-method:last-child {
    margin-bottom: 0;
}
.single-payment-method:first-child .payment-method-details {
    display: block;
}
.single-payment-method label, .single-payment-method .custom-control-label {
    font-weight: 700;
}
.single-payment-method .paypal-card {
    max-width: 150px;
    height: 50px;
    margin-top: 10px;
    display: block;
}
.single-payment-method .payment-method-details {
    background-color: #f1f1f1;
    color: #222222;
    font-weight: 400;
    font-size: 13px;
    padding: 10px;
    position: relative;
    margin-top: 20px;
    display: none;
}
.single-payment-method .payment-method-details:after {
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f1f1f1;
    bottom: 100%;
}
.single-payment-method .payment-method-details * {
    margin: 0;
}
.summary-footer-area .btn-brand {
    margin-top: 40px;
}
/*------- input box style css start -------*/

.single-input-item {
    margin-top: 20px;
}
.single-input-item label {
    color: #222222;
    text-transform: capitalize;
    font-size: 14px;
}
.single-input-item label.required:after {
    content: '*';
    color: red;
    font-size: 14px;
    margin-left: 3px;
    margin-top: 5px;
}
.single-input-item input, .single-input-item textarea {
    color: #555555;
    border: 1px solid #ccc;
    padding: 12px 10px;
    width: 100%;
    font-size: 14px;
    background: #f7f7f7;
}
.single-input-item input:active, .single-input-item input:focus, .single-input-item textarea:active, .single-input-item textarea:focus {
    border-color: #f5424e;
    background-color: #fff;
}
.single-input-item .nice-select {
    width: 100%;
    border-radius: 0;
    height: 48px;
    border-color: #ccc;
    background-color: #f7f7f7;
}
.single-input-item .nice-select .current {
    color: #555555;
}
.single-input-item .nice-select .list {
    max-height: 200px;
    overflow: auto;
    width: 100%;
}
/*------- input box style css end -------*/

/*--------- Cart Page Wrapper Start ---------*/

.cart-table .table {
    margin: 0;
    white-space: nowrap;
}
.cart-table .table thead {
    background-color: #f5424e;
}
.cart-table .table thead tr th {
    border-color: #f5424e;
    border-bottom: 0 solid transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    text-transform: capitalize;
}
.cart-table .table tbody tr td {
    border-color: #ccc;
    text-align: center;
    padding: 10px 20px;
    vertical-align: middle;
    font-weight: 500;
    color: #222222;
}
.cart-table .table tbody tr td a {
    color: #222222;
    font-weight: 400;
    text-transform: capitalize;
}
.cart-table .table tbody tr td a:hover {
    color: #f5424e;
}
.cart-table .table tbody tr td a.btn {
    color: #fff;
}
.cart-table .table tbody tr td a.btn:hover {
    color: #fff;
}
.cart-table .table tbody tr td a.check-btn {
    color: #fff;
}
.cart-table .table tr .pro-thumbnail, .cart-table .table tr .pro-price, .cart-table .table tr .pro-quantity, .cart-table .table tr .pro-subtotal, .cart-table .table tr .pro-remove {
    width: 140px;
}
.cart-table .table tr .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}
.cart-table .table tr .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 38px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: #555555;
}
.cart-table .table tr .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}
.cart-update-option {
    border: 1px solid #ccc;
    margin-top: 15px;
    padding: 15px 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .cart-update-option {
        margin-top: 0;
        border-top: 0 solid transparent;
    }
}
.cart-update-option .apply-coupon-wrapper {
    width: 55%;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-update-option .apply-coupon-wrapper {
        width: auto;
    }
}
.cart-update-option .apply-coupon-wrapper form {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}
.cart-update-option .apply-coupon-wrapper form input {
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    margin-right: 15px;
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.cart-update-option .apply-coupon-wrapper form input:focus, .cart-update-option .apply-coupon-wrapper form input:active {
    border-color: #f5424e;
}
@media only screen and (max-width: 767.98px) {
    .cart-update-option .apply-coupon-wrapper button {
        display: block;
        width: 100%;
        margin-top: 15px;
        border-radius: 0;
    }
}
@media only screen and (max-width: 767.98px) {
    .cart-update-option .cart-update {
        margin-top: 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .cart-update-option .cart-update .btn {
        width: 100%;
    }
}
.cart-calculator-wrapper {
    margin-top: 30px;
    background-color: #f8f8f8;
}
.cart-calculator-wrapper h6 {
    padding: 20px 15px 18px;
    margin-bottom: 0;
}
.cart-calculator-wrapper .cart-calculate-items {
    font-weight: 500;
}
.cart-calculator-wrapper .cart-calculate-items .table {
    margin-bottom: 0;
}
.cart-calculator-wrapper .cart-calculate-items .table tr td {
    color: #222222;
    padding: 15px 20px;
}
.cart-calculator-wrapper .cart-calculate-items .table tr td:nth-child(2) {
    color: #222222;
    text-align: right;
}
.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount {
    color: #f5424e;
    font-weight: 700;
}
.cart-calculator-wrapper a {
    border-radius: 0;
    text-align: center;
}
/*--------- Cart Page Wrapper end ---------*/

/*------ Start Compare Page Wrapper -----*/

.compare-table .table tbody tr td {
    text-align: center;
    padding: 20px 20px;
    vertical-align: middle;
    border-color: #ccc;
}
.compare-table .table tbody tr td.first-column {
    min-width: 175px;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    margin: 0;
}
@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.first-column {
        min-width: 115px;
    }
}
.compare-table .table tbody tr td.product-image-title {
    min-width: 310px;
    vertical-align: bottom;
}
@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.product-image-title {
        min-width: 220px;
    }
}
.compare-table .table tbody tr td.product-image-title .image {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    display: block;
}
.compare-table .table tbody tr td.product-image-title .category {
    float: left;
    clear: both;
    color: #f5424e;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.compare-table .table tbody tr td.product-image-title .title {
    float: left;
    clear: both;
    font-size: 16px;
    color: #222222;
    font-weight: 500;
    text-transform: capitalize;
}
.compare-table .table tbody tr td.product-image-title .title:hover {
    color: #f5424e;
}
.compare-table .table tbody tr td.pro-desc p {
    text-align: left;
    margin: 0;
}
.compare-table .table tbody tr td.pro-price, .compare-table .table tbody tr td.pro-color, .compare-table .table tbody tr td.pro-stock {
    font-size: 14px;
    font-weight: 400;
}
.compare-table .table tbody tr td.pro-remove button {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.compare-table .table tbody tr td.pro-remove button:hover {
    color: #e74c3c;
}
.compare-table .table tbody tr td.pro-remove button i {
    font-size: 20px;
}
.compare-table .table tbody tr td.pro-ratting i {
    color: #f5424e;
}
/*------ end Compare Page Wrapper -----*/

/*-------- Start My Account Page Wrapper --------*/

.myaccount-tab-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.myaccount-tab-menu a {
    border: 1px solid #efefef;
    border-bottom: none;
    color: #222222;
    font-weight: 400;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
    text-transform: capitalize;
}
.myaccount-tab-menu a:last-child {
    border-bottom: 1px solid #efefef;
}
.myaccount-tab-menu a:hover, .myaccount-tab-menu a.active {
    background-color: #f5424e;
    border-color: #f5424e;
    color: #fff;
}
.myaccount-tab-menu a i.fa {
    font-size: 14px;
    text-align: center;
    width: 25px;
}
@media only screen and (max-width: 767.98px) {
    #myaccountContent {
        margin-top: 30px;
    }
}
.myaccount-content {
    border: 1px solid #eeeeee;
    padding: 30px;
}
@media only screen and (max-width: 575.98px) {
    .myaccount-content {
        padding: 20px 15px;
    }
}
.myaccount-content form {
    margin-top: -20px;
}
.myaccount-content h5 {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.myaccount-content .welcome a {
    color: #222222;
}
.myaccount-content .welcome a:hover {
    color: #f5424e;
}
.myaccount-content .welcome strong {
    font-weight: 500;
    color: #f5424e;
}
.myaccount-content fieldset {
    margin-top: 20px;
}
.myaccount-content fieldset legend {
    color: #222222;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 400;
    border-bottom: 1px dashed #ccc;
}
.myaccount-table {
    white-space: nowrap;
    font-size: 14px;
}
.myaccount-table table th, .myaccount-table .table th {
    color: #222222;
    padding: 10px;
    font-weight: 400;
    background-color: #f8f8f8;
    border-color: #ccc;
    border-bottom: 0;
}
.myaccount-table table td, .myaccount-table .table td {
    padding: 10px;
    vertical-align: middle;
    border-color: #ccc;
}
.saved-message {
    background-color: #f4f5f7;
    border-top: 3px solid #f5424e;
    border-radius: 5px 5px 0 0;
    font-weight: 400;
    font-size: 15px;
    color: #555555;
    padding: 20px;
}
/*-------- Start My Account Page Wrapper --------*/

/*------ Start Login & Register Page ------*/

.login-reg-form-wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 23px 30px 30px;
}
@media only screen and (max-width: 575.98px) {
    .login-reg-form-wrap {
        padding: 23px 15px 30px;
    }
}
.login-reg-form-wrap form .create-account {
    margin-top: 25px;
}
.login-reg-form-wrap .login-reg-form-meta a {
    color: #f5424e;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sign-up-form {
        margin-top: 80px;
    }
}
@media only screen and (max-width: 767.98px) {
    .sign-up-form {
        margin-top: 62px;
    }
}
/*------ end Login & Register Page ------*/

/*----- Google map area start -----*/

#google-map {
    height: 500px;
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #google-map {
        height: 400px;
    }
}
@media only screen and (max-width: 767.98px) {
    #google-map {
        height: 350px;
    }
}
/*----- Google map area end -----*/

/*------ contact form area start -------*/

.contact-area {
    margin-top: -4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767.98px) {
    .contact-area {
        margin-bottom: -5px;
    }
}
.contact-message h2 {
    color: #222222;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 28px;
    text-transform: capitalize;
}
@media only screen and (max-width: 575.98px) {
    .contact-message h2 {
        font-size: 18px;
        padding-bottom: 15px;
    }
}
.contact-message form input, .contact-message form textarea {
    width: 100%;
    border: none;
    padding: 10px 10px;
    border-bottom: 3px solid transparent;
    background-color: #f7f7f7;
    margin-bottom: 30px;
}
.contact-message form textarea {
    height: 150px;
}
/*------ contact form area start -------*/

/*------ contact info area start -------*/

.contact-info {
    height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info {
        margin-top: 77px;
    }
}
@media only screen and (max-width: 767.98px) {
    .contact-info {
        margin-top: 60px;
    }
}
.contact-info p {
    padding-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info p {
        padding-bottom: 10px;
    }
}
.contact-info ul li {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 479.98px) {
    .contact-info ul li {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}
.contact-info ul li:last-child {
    border-bottom: none;
}
.contact-info ul li i {
    font-size: 18px;
    padding-right: 10px;
}
.contact-info .working-time h6 {
    padding-bottom: 5px;
}
.contact-info .working-time p {
    padding-bottom: 0;
}
.contact-info .working-time p span {
    color: #222222;
    padding-right: 10px;
}
.contact-title {
    line-height: 1;
    padding-bottom: 22px;
}
@media only screen and (max-width: 575.98px) {
    .contact-title {
        font-size: 18px;
        padding-bottom: 8px;
    }
}
/*------ contact info area end -------*/
 

 

/* footer start */
footer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.footer_overlay {
    background: #231f40e0;
}

.tf__footer_content .footer_logo {
    width: 200px;
}

.tf__footer_content span {
    display: block;
    margin: 30px 0px;
    color: white;
}
.tf__footer_content .social_link li a {
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background: #f5424e;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 0;
    padding: 0;
    position: initial;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__footer_content .social_link li a:hover {
    background: var(--colorWhite);
    color: var(--colorPrimary);
}
.tf__footer_content .info {
    color: #ffffff !important;
    margin-top: 20px;
    display: block;
    border-bottom: 1px solid #f5424e85;
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-left: 35px;
    position: relative;
}
.tf__footer_content .info:last-child {
    margin-bottom: 0;
}

.tf__footer_content a {
    color: #ffffff;
}

.tf__footer_content .info i {
    font-size: 20px;
    color: #f5424e;
    position: absolute;
    left: 0;
    top: 3px;
}

.tf__footer_content h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize; 
    border-bottom: 1px solid #f5424e;
    display: inline-block;
    padding-bottom: 0px;
    margin-top: 1em;
}

.tf__footer_content ul li a {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 16px;
    margin-top: 15px;
    display: block;
    position: relative;
    padding-left: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__footer_content ul li a::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #f5424e;
    top: 10px;
    left: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__footer_content ul li a:hover {
    color: var(--colorPrimary);
}

.tf__footer_social_link ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    background: #eeeeee5e;
    border-radius: 50%;
    margin: 0px 10px 0px 0px;
    padding: 0 !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__footer_bottom_text p {
    color: var(--colorWhite);
    text-align: center;
}

.tf__footer_bottom_text p b {
    text-transform: capitalize;
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-weight: 600;
}

.tf__footer_bottom {
    padding: 20px 0px;
    background: #f5424e;
    color: white;
}
.tf__scroll_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    color: var(--colorWhite);
    text-transform: capitalize;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--colorPrimary);
    border: 1px solid var(--colorWhite);
    border-radius: 50%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    animation: scroll_amini linear 2s infinite alternate;
    -webkit-animation: scroll_amini linear 2s infinite alternate;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__scroll_btn:hover {
    background: var(--colorBlack);
}

a.footer_logo img {
    height: 60px;
    margin: 20px 0px 0px 0px;
    object-fit: contain;
}
@keyframes scroll_amini {
    from {
        bottom: 30px;
    }

    to {
        bottom: 50px;
    }
}

 

/* footer end */ 
 
/*-----------------Added By Naresh----*/

.header-top-right a {
    color: #fff;
}
.header-top-right li {
    padding: 5px 0px;
}
.copyright-text p {
    color: #f5424e;
} 
.logo.site-branding {
    flex: 0 0 19%;
    max-width: 19%;
    margin-bottom: 0;
    padding-right: 15px;
    padding-left: 15px;
}
.header_main .navbar-search {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    position: relative;
}
.navbar-search .search-input-label {
    background-color: #fff;
    padding: 10px;
    color: #000;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}
.navbar-search .search-input-label .search-icon {
    width: 25px;
    margin-right: 2px;
}
.navbar-search .search-input-label .search-text {}
.navbar-search .search-popup {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #d6d6d6;
    box-shadow: 0.5rem 0.5rem 1.5rem 0 rgb(0 0 0 / 15%);
    position: absolute;
    z-index: 9999;
    top: -200vh;
    left: -200vw;
    background: #fff;
    color: #444;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
}
.navbar-search .search-popup.active {
    left: 0;
    top: 0;
}
@media (max-width: 767px) {
    .navbar-search .search-input-label {
        padding: 5px 10px;
        border-radius: 5px;
    }
    .navbar-search .search-popup.active {
        left: 15px;
        top: 5px;
        width: auto;
        right: 15px;
        border-radius: 5px;
    }
}
.navbar-search .search-popup .input-group {
    align-items: center;
}
.navbar-search .search-popup .input-group .product-search-field {
    height: auto;
    padding-left: 15px;
}
.navbar-search .search-popup .input-group .search-close {
    margin: 0 10px;
}
.navbar-search .search-popup .input-group .search-btn {
    margin-right: 15px;
    border: none;
    background: no-repeat;
}
.navbar-search .search-popup .input-group img {
    width: 24px;
}
.navbar-search .search-popup .search-quick-links {
    padding: 0 15px 15px 15px;
    max-height: calc(100vh - 205px);
    overflow-y: auto;
}
.navbar-search .search-popup .search-quick-links h6 {
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-size: 14px;
}
.navbar-search .search-popup .search-quick-links ul {
    margin-bottom: 15px;
}
.navbar-search .search-popup .search-quick-links ul li {}
.navbar-search .search-popup .search-quick-links ul li a {
    display: flex;
    font-size: 14px;
    padding: 5px 0;
}
.navbar-search .search-popup .search-quick-links ul li a:hover {
    color: #f5424e;
    background: #f7f7f7;
}
.navbar-search .search-popup .search-quick-links ul li a .search-img-thumb {
    width: 100%;
    max-width: 60px;
    text-align: center;
    display: block;
    background: #f7f7f7;
    padding: 2px;
    border-radius: 5px;
    overflow: hidden;
}
.navbar-search .search-popup .search-quick-links ul li a .search-img-thumb img {
    height: 50px;
    margin: auto;
}
.navbar-search .search-popup .search-quick-links ul li a .search-pro-name {
    font-weight: bold;
    padding-left: 10px;
}
@media (max-width: 1025px) {
    .logo.site-branding {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .header_main .navbar-search {
        margin-top: 15px;
    }
}
@media (max-width: 990px) {
    .header_main .navbar-search {
        order: 4;
        flex: auto;
        margin: 0;
        padding-top: 5px;
        border-top: solid 1px rgba(255, 255, 255, 0.5);
    }
}
@media (max-width: 767px) {
    .logo.site-branding {
        flex: 0 0 30%;
        max-width: 40%;
    }
    .logo.site-branding img {
        height: 30px;
        width: -webkit-fill-available;
        object-fit: contain;
        margin: 0px 0px 0px 0px;
    }

}
.header_main {
    /*padding: 10px 0 10px 0;*/
    background: #f5424e;
    position: relative;
}
.sale_banner {
    padding: 20px 0px;
    text-align: center;
    background: #ff00007a;
}
.sale_banner span {
    color: #fff;
    font-size: 17px;
}
.policy-data {
    text-align: center;
}
.policy-content h6 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.shop {
    color: #5c5353;
    text-decoration: underline;
    ;
    font-size: 16px;
}
.latest {
    padding: 50px 0px;
}
.text_box {
    text-align: center;
    padding: 0px 10px;
}
.latest .title {
    text-align: center;
    margin-bottom: 20px;
}
.text_box p {
    text-align: center;
    margin-top: 15px;
    color: #5a5858;
}
.text_box h3 {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.text_box a {
    text-align: center;
    margin-top: 15px;
}
/* slideshow taÅŸÄ±yÄ±cÄ± */

.slideshow-container {
    position: relative;
    margin: auto;
    margin-bottom: -21px;
}
/* varsayÄ±lan olarak gÃ¶rselleri gizliyoruz */

.mySlides {
    display: none;
}
/* sonraki ve Ã¶nceki butonlarÄ± */

.prev, .next {
    display: none;
}
/* sonraki butonunun pozisyonu */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
/* Ã¼zerine gelince hafif bir efekt verelim */

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* gÃ¶rsel baÅŸlÄ±ÄŸÄ± */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
/* gÃ¶rsel numaralarÄ± */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
/* nokta navigasyonu */

.dot {
    cursor: pointer;
    height: 0.5rem;
    width: 0.5rem;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-bottom: 35px;
}
/*.active,
.dot:hover {
    background-color: #f5424e;
}*/

.desktop-menu {
    text-align: center;
    /*justify-content: center;*/
    align-items: center;
    display: flex;
    vertical-align: middle;
}
/*
.row {
    --bs-gutter-x: 0;
}
*/

.widget-logo {
    width: 50%;
}
.user-hover:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.user-hover {
    list-style: none;
    position: relative;
}
.user-hover .dropdown-list {
    /* display: none; */
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    padding: 20px;
    background-color: #fff;
    z-index: 11;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #efefef;
}
 
.product-banner-statistics { 
    padding: 10px 0px 10px 0px;
}


.column {
    /* display: flex; */
    width: 25%;
} 
.dropdown h4 {
    text-align: left;
    margin: 8px 20px;
}
.position-static {
    position: static !important;
}
.fa.fa-angle-down {
    display: none;
}
.product-badge i {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: #f5424e;
}
.featured {
    padding: 0px 27px 50px 27px;
}
.banner-text3 {
    text-align: center;
    text-transform: uppercase;
}
.std-content {
    justify-content: center;
    flex-direction: column;
    display: flex;
    padding: 70px 30px;
    background: #f5424e;
}
.std-content p {
    color: #d4cdcd;
}
.std-content h3 {
    margin-bottom: 10px;
}
.banner-statistics-area {
    padding-bottom: 50px;
}
.category {
    padding: 40px 0px;
    /*
    background-image: url(https://urtest.site/MedikalHome/assets/img/gray-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
*/
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0 -12 px;
    text-align: center;
}
.category-list .top-category {
    border: 1px solid #efedf3;
    border-radius: 5px;
    display: inline-block;
    margin: 6px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: border ease .3s;
    width: 200px;
    transition: all .3s ease;
    box-shadow: 0 2px 2px 0 hsl(0deg 0% 71% / 50%);
    padding: 5px;
}
.category-list .top-category:hover {
    background: #f7f7f7;
}
.category-list .top-category .cat-img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
    margin: auto;
    background: #f5424e;
    color: #fff;
}
.category-list .top-category img {
    width: auto;
    object-fit: cover;
    height: 150px;
    transition: all .3s ease;
}
.category-list .top-category .cat-img.view-link {
    line-height: 150px;
}
.category-list .top-category .category-name {
    text-transform: capitalize;
    font-size: 16px;
    padding: 10px;
    margin: 0;
}
@media (max-width: 1050px) {
    .category-list .top-category {
        width: 150px;
    }
    .category-list .top-category .cat-img {
        width: 120px;
        height: 120px;
    }
    .category-list .top-category img {
        height: 120px;
    }
    .category-list .top-category .cat-img.view-link {
        line-height: 120px;
    }
}
@media (max-width: 990px) {
    .category-list .top-category {
        width: 110px;
    }
    .category-list .top-category .cat-img {
        width: 80px;
        height: 80px;
    }
    .category-list .top-category img {
        height: 80px;
    }
    .category-list .top-category .cat-img.view-link {
        line-height: 80px;
    }
    .category-list .top-category .category-name {
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    
    .category {
    padding: 10px 0px;
}

.category .card-title {
    font-size: 15px;
    font-weight: 600;
}

.category-list .top-category img {
    width: auto;
    object-fit: contain;
    height: 60px !important;
    transition: all .3s ease;
}

    .category-list .top-category {
        width: 90px;
    }
    .category-list .top-category .category-name {
        font-size: 13px;
    }
    
    
}

.cat-content {
    text-align: center;
    margin: 10px 0px;
    padding: 10px 0 0 0;
    min-height: 195px;
    border-radius: 50px;
    background: #f3f3f5;
    border: solid 4px #f5424e;
    display: block;
}
.cat-content {
    padding-top: 100%;
    position: relative;
}
.cat-content:hover {
    background: #fff;
    border: solid 4px #1332a6;
}
.cat-content img {
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    margin: 0 auto;
    max-width: 300px;
    min-height: 300px;
    object-fit: cover;
}
.cat-content img {
    position: absolute;
    left: 10px;
    top: 20px;
    width: calc(100% - 20px);
    max-width: inherit;
    min-height: inherit;
    height: calc(100% - 82px);
}
.cat-content h5 {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 10px;
    padding: 10px;
    color: #ffffff;
    background: #f5424e;
    border-radius: 0 0 50px 50px;
}
.cat-content:hover h5 {
    background: #1332a6;
}
.delievry {
    background: #232F3E;
    padding: 10px 0px 20px 0px;
}
 
.del-content {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin-left: 25px;
	margin-top: 10px;
}

.del-content i {
    font-size: 30px;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 50px;
    padding: 25px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.del-content h5 {
    margin: 0;
}
.del-content h5 a {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 2px;
}
/*
.section-title h2::before {
    content: "";
    position: absolute;
    background: #f5424eb0;
    left: 0;
    right: 0;
    margin-top: 18px;
    width: 570px;
    height: 1px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    background: #f5424eb0;
    right: 0;
    margin-top: 18px;
    width: 570px;
    height: 1px;
}
*/

i.fa.fa-send.red-color {
    font-size: 30px;
}
i.fa.fa-mobile {
    font-size: 16px;
    margin-right: 5px;
    color: #f5424e;
}
.widget-body a {
    color: #ffffff;
}
.is-sticky .desktop-menu .megamenu {
    position: absolute;
    top: 80px;
    z-index: 999;
}
.widget-body.social-link i {
    color: #5c5353;
}
}
@media only screen and (max-width: 1024px) {
    .main-menu ul li a {
        padding: 10px 10px 10px 10px !important;
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .std-content {
        padding: 15px 30px !important;
        text-align: justify !important;
    }
    .std-img {
        width: 100% !important;
    }
    .special .banner-content {
        top: 50px !important;
    }
    .special .banner-text1 {
        font-size: 15px !important;
    }
	
	
#home_category_section .slick-track{ 
	height:70px;
}



}
/*
@media only screen and (max-width: 990px) {
    .position-static.main-menu {
        display: none;
    }
}
*/

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .main-menu ul li a {
        padding: 10px 22px !important;
        font-size: 14px;
    }
}
.sale_bar {
    padding: 30px 0px;
    text-align: center;
    background: #d2972ca8;
    display: none;
}
.bar_content h4 {
    text-align: center;
    font-size: 18px;
}
.sale-message p {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    text-align: right;
}
.mega-title ul {
    margin: 0 !important;
    padding: 0px 5px !important;
}
.mega-title h3 {
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    color: #191a1b;
}
.header-search-btn .pe-7s-search {
    color: #656566;
}
.header-search-field:focus {
    border: 1px solid #555;
}
.call {
    letter-spacing: 1px;
}
.call i {
    margin-right: 12px;
    font-size: 18px;
    color: #5c5353;
    padding: 4px 7px;
    background: white;
    border-radius: 50px;
    width: 25px;
    height: 25px;
}
.gmail {
    letter-spacing: 1px;
}
.currency {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.gmail i {
    margin-right: 12px;
    font-size: 15px;
    color: #5c5353;
    padding: 4px 4px;
    background: white;
    border-radius: 50px;
}
.footer_bottom {
    background: #f5424e;
    padding: 10px 0px;
}
.footer_bottom .f-payment-cards {
    display: flex;
}
.footer_bottom .f-payment-cards li {
    padding: 0 0 0 12px;
}
.footer_bottom .f-payment-cards li:first-child {
    padding-left: 0;
}
.footer_bottom .f-payment-cards li img {
    width: 26px;
    border-radius: 3px;
}
.user-hover span {
    margin: 0px 10px;
}
.banner_text {
    position: absolute;
    top: 30%;
    width: 70%;
    left: 210px;
    padding: 10px 0px;
    margin: 0 auto;
    background: #5c535380;
    opacity: 0.8;
}
.banner_text .head {
    font-size: 70px;
    color: #fff;
}
.banner_text p {
    color: #fff;
    font-size: 18px;
}
.banner_btn {
    background: white;
    padding: 10px 35px;
    font-size: 20px;
}
/*.slick-prev {
    display: none !important;
}
.slick-next {
    display: none !important;
}*/

.brands-statistics {
    margin: 5px 60px;
}
.special img {
    border: 1px solid #d8caca;
    padding: 0px;
}
.special .banner-content {
    position: absolute;
    left: 20px;
    top: 60px;
}
.special .banner-text1 {
    font-size: 16px;
    line-height: 1.1;
    padding-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}
.ribbon {
    position: absolute;
}
.ribbon {
    position: absolute;
    left: 0;
    background-color: #62ab00;
    color: #fff;
    font-size: 0.857em;
    line-height: 1.833em;
    border-radius: 4px;
    padding: 0 0.667em;
    z-index: 1;
}
/* top left*/

.ribbon-top-left {
    top: 5px;
    left: 5px;
}
.ribbon-top-right {
    top: 5px;
    right: 5px;
}
.ribbon.ribbon-top-right span {
    border-radius: 0 10px 0 10px
}
@media (max-width: 767px) {
    .ribbon {
        font-size: 12px;
    }
}
.special_sale {
    background-image: url(https://urtest.site/MedikalHome/assets/img/back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.sp_btn {
    background: #5c5353;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    width: 10%;
    letter-spacing: 2px;
    padding: 8px;
    border-radius: 50px;
}
.sp_btn:hover {
    color: #5c5353 !important;
    background: #ffffff;
}
.special_sale h2 {
    color: #5c5353;
    padding: 30px 0px 0px 0px;
    font-size: 40px;
    letter-spacing: 3px;
}
.special_sale p {
    color: #5c5353;
    letter-spacing: 2px;
}
.header-search-container {
    flex-direction: column;
    justify-content: center;
    color: #5c5353;
    font-size: 23px;
    margin: 10px 0px;
}
#searchBar {
    width: 200px;
    height: 30px;
}
/*
.product_tabs {
    padding: 50px 1px;
    background-image: url(https://urtest.site/MedikalHome/assets/img/bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
*/

.product_tabs {
    padding: 10px 1px;
}
.product_tabs #customersCats {
    margin: 10px 0px;
}
.product_tabs .nav-link {
    color: #585757;
    font-size: 20px;
}
.product_tabs .active, .dot:hover {
    background: #e6e6e6;
    color: #5c5353 !important
}
.offer_img img {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 3px 4px 3px 2px;
    border-radius: 10px; 
}
.offer-text-dt {
    position: absolute;
    top: 45px;
}
.offers {
    background: #b5dbff;
}
.offer-text-dt {
    position: absolute;
    top: 15px;
    background: rgb(219 213 210 / 73%);
    padding: 15px 15px 11px;
    width: 220px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    /* margin-left: 45px; */
}
.offer-text-dt p {
    color: #f5424e;
    font-size: 15px;
}
.top-text-1 {
    font-size: 16px;
    font-weight: 500;
    color:  #000000; 
    margin-bottom: 5px;
    line-height: 24px;
    text-align: left;
}
.offer-top-text-banner span {
    font-weight: 500;
    font-size: 14px;
    color: #8f91ac;
    text-align: left;
    line-height: 24px;
}
.Offer-shop-btn.hover-btn {
    position: absolute;
    top: 170px; 
    display: inline-block; 
    padding: 10px 30px;
    background: #f5424e;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}
.Offer-shop-btn.hover-btn:hover {
    color: #fff !important;
}

 
.brands-img {
    margin: 0px 5px 0px 5px;
    background: #eb9b9b1c;
    border-radius: 10px;
    padding: 0px;
    border: 2px solid #f5424e;
    text-align: -webkit-match-parent;
}


.brands-img img {
    height: 100px;
    max-height: 100px;
    margin: 20px 0px 15px 50px;
     
} 

.brands-imgs {
    margin: 0px 5px 0px 5px; 
}

.brands-imgs img {
    border-radius: 100px;
    height: 200px;
    object-fit: cover;
}

.brands-statistics center {
    font-size: 20px;
    font-weight: 500;
}

.banner-slide-item {
    display: inline-grid;
    width: 200px;
    margin: 0px 0px 15px 5px;
}


@media (max-width: 767px) {
	
	
   .brands-statistics center {
    font-size: 15px;
    font-weight: 500;
}
	.brands-img {
		margin: 5px 5px 5px 5px;
		background: aliceblue;
		border-radius: 10px;
		text-align: center;
		padding: 0px;
		border: 2px solid #f44336;
		height: 110px;
		font-size: 15px;
		font-weight: 500;
		width: 110px;
		max-width: 110px;
	}
	
	.brands-imgs {
    margin: 0px 0px 0px 0px;
    /* background: aliceblue; */
    /* border-radius: 10px; */
    /* text-align: center; */
    /* padding: 0px; */
    /* border: 2px solid #f44336; */
    /* height: 80px; */
    /* font-size: 10px; */
    /* font-weight: 500; */
    /* width: 80px; */
    /* max-width: 80px; */
}
		.banner-slide-item {
			display: inline-grid;
			width: fit-content;
		}
	  
	.brands-imgs img {
		height: 60px;
		max-height: 60px;
		width: -webkit-fill-available;
		object-fit: contain;
	}

	.slick-prev:before, .slick-next:before {
		font-family: 'slick';
		font-size: 20px;
		line-height: 1;
		opacity: .75;
		color: #f5424e;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
 
	
	
}

.brands {
    background: #f7f7f7 !important;
}
.pro {
    padding: 50px 0px;
}
.social-widget i {
    background: #fff;
    border-radius: 50%;
    color: #5c5353;
    width: 25px;
    justify-content: center;
    height: 25px;
    align-items: center;
    display: flex;
    float: left;
    margin-right: 5px;
    font-size: 14px;
}
.social-widget i:hover {
    background: #5c5353;
    color: #ffffff;
}
.library {
    padding: 50px 0px;
    background-image: url(https://urtest.site/MedikalHome/assets/img/wh-bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.date {
    background: #f5424e;
    position: absolute;
    margin-top: 10px;
    padding: 0px 0px;
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    height: 50px;
    justify-content: center;
    width: 50px;
    align-items: center;
    display: flex;
}
.library .content {
    padding: 15px 15px;
    background: #fff;
}
.content h3 {
    color: #5c5353;
}
.content .btn {
    background: #f5424e;
    height: 40px;
    width: 85px;
    padding: 12px 0px;
    color: #fff;
}
.client-say {
    background: #e1e5f4;
    padding: 50px 0px;
}
.test_content img {
    border-radius: 50%;
    width: 80px;
    text-align: center;
    border: 1px solid;
    margin: 0 auto;
}
.test_content {
    margin: 0 auto;
    background: #fff;
    padding: 50px;
}
.test_content h4 {
    color: #f5424e;
    margin: 10px 0px;
    font-weight: 500;
}
.dsignation {
    color: #f5424e;
}
i.fa.fa-quote-left {
    color: #f5424e;
    position: absolute;
    margin-left: -270px;
    font-size: 40px;
}
.fa.fa-quote-right {
    color: #f5424e;
    position: absolute;
    margin-left: 240px;
    font-size: 40px;
    bottom: 15px;
}
/*--------product-page-----------*/

.top_filter {
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    margin-bottom: 10px;
    margin-left: 337px;
    border-bottom: 1px solid #f5424e38;
}
.page-link:focus {
    box-shadow: none;
}
/*.col-lg-4,
.col-md-6 {
    padding-right: 0
}
*/

button.btn.btn-hide {
    height: inherit;
    background-color: #ff935d;
    color: #fff;
    font-size: 0.82rem;
    padding-left: 40px;
    padding-right: 40px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px
}
.btn:focus {
    box-shadow: none
}
.box-label .btn {
    background-color: #fff;
    padding: 0;
    font-size: 0.8rem
}
.btn-red {
    background-color: #e00000ce
}
.btn-orange {
    background-color: #ffa500
}
.btn-pink {
    background-color: #e0009dce
}
.btn-green {
    background-color: #00811c
}
.btn-blue {
    background-color: #026bc2
}
.btn-brown {
    background-color: #994a00
}
.navbar {
    display: inline-flex
}
.pagination .page-item .page-link {
    color: #333;
    border: none;
    width: 40px;
    text-align: center
}
.pagination .page-item.active .page-link {
    background-color: #fff;
    border: 1px solid #333
}
select {
    outline: none;
    padding: 6px 12px;
    margin: 0px 4px;
    color: #999;
    font-size: 0.85rem;
    width: 140px
}
#select2 {
    border: 1px solid #efefef;
    color: #555555;
    padding: 0 10px;
    border-radius: 5px;
}
#pro {
    border: none;
    color: #333;
    font-weight: 700;
    padding-left: 0px;
    width: initial
}
/*#filterbar {
    width: 30%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    float: left
}
#filterbar input[type="radio"] {
    visibility: hidden
}
#filterbar input[type='radio']:checked {
    background-color: #16c79a;
    border: none
}
#filterbar .btn.btn-success {
    background-color: #ddd;
    color: #333;
    border: none;
    width: 115px
}
#filterbar .btn.btn-success:hover {
    background-color: #aff1e1;
    color: #444
}
#filterbar .btn-success:not(:disabled):not(.disabled).active, #filterbar .btn-success:not(:disabled):not(.disabled):active {
    background-color: #16c79a;
    color: #fff
}*/

label {
    cursor: pointer
}
.tick {
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 0
}
.tick input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}
.check {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px
}
.tick:hover input~.check {
    background-color: #f3f3f3
}
.tick input:checked~.check {
    background-color: #ffffff
}
.check:after {
    content: "";
    position: absolute;
    display: none
}
.tick input:checked~.check:after {
    display: block;
    transform: rotate(45deg) scale(1)
}
.tick .check:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid rgb(13 46 160);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(2)
}
.box {
    padding: 10px
}
.box-label {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 800;
    justify-content: space-between;
    margin-bottom: 10px;
}
#inner-box, #inner-box2, #inner-box3 {
    height: 150px;
    overflow-y: scroll
}
#inner-box2, #inner-box3 {
    height: 132px
}
#inner-box::-webkit-scrollbar, #inner-box2::-webkit-scrollbar, #inner-box3::-webkit-scrollbar {
    width: 6px
}
#inner-box::-webkit-scrollbar-track, #inner-box2::-webkit-scrollbar-track, #inner-box3::-webkit-scrollbar-track {
    background-color: ##f5424e;
    border-radius: 2px
}
#inner-box::-webkit-scrollbar-thumb, #inner-box2::-webkit-scrollbar-thumb, #inner-box3::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 2px
}
#price {
    height: 45px
}
#size input[type="checkbox"] {
    visibility: hidden
}
#size input[type='checkbox']:checked {
    background-color: #16c79a;
    border: none
}
#size .btn.btn-success {
    background-color: #ddd;
    color: #333;
    border: none;
    width: 40px;
    font-size: 0.8rem;
    border-radius: 0
}
#size .btn.btn-success:hover {
    background-color: #aff1e1;
    color: #444
}
#size .btn-success:not(:disabled):not(.disabled).active, #size .btn-success:not(:disabled):not(.disabled):active {
    background-color: #16c79a;
    color: #fff
}
#size label {
    margin: 10px;
    margin-left: 0px
}
#avail-size input[type="checkbox"] {
    visibility: hidden
}
#avail-size input[type='checkbox']:checked {
    background-color: #16c79a;
    border: none
}
.slider>.track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #ddd
}
.slider>.range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #222222;
}
.slider>.thumb {
    position: absolute;
    top: 2px;
    z-index: 3;
    width: 20px;
    height: 20px;
    background-color: #f5424e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(63, 204, 75, 0.705);
    transition: box-shadow .3s ease-in-out
}
.slider>.thumb::after {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 28%;
    top: 30%;
    border-radius: 50%;
    content: '';
    background-color: #fff
}
.slider>.thumb.left {
    left: 25%;
    transform: translate(-15px, -10px)
}
.slider>.thumb.right {
    right: 25%;
    transform: translate(15px, -10px)
}
.slider>.thumb.hover {
    box-shadow: 0 0 0 10px rgba(125, 230, 134, 0.507)
}
.slider>.thumb.active {
    box-shadow: 0 0 0 10px rgba(63, 204, 75, 0.623)
}
input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 10px;
    width: 100%;
    opacity: 0
}
input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 0 none;
    background-color: red;
    -webkit-appearance: none
}
.del {
    text-decoration: line-through;
    color: red
}
@media(min-width:1199.6px) {}
@media(max-width:1199.5px) {
    .card {
        height: 350px
    }
    .price {
        font-size: 0.9rem
    }
    .product-name {
        font-size: 0.8rem
    }
}
@media(max-width: 991.5px) {
    .navbar-nav {
        min-width: 290px;
        position: absolute;
        left: -168px;
        bottom: -146px;
        padding: 20px 10px;
        display: block;
        background-image: none;
        z-index: 2;
        background-color: #1d1c1cb2
    }
    #filterbar {
        width: 36%
    }
    #sort {
        background-color: inherit;
        color: #fff;
        margin: 0;
        margin-bottom: 20px;
        width: 100%
    }
    #sort option, #pro option {
        color: #5c5353
    }
    #pro, #select2, .result {
        background-color: inherit;
        color: #fff
    }
    .card {
        height: 345px
    }
    .price {
        font-size: 0.85rem
    }
}
@media(max-width: 767.5px) {
    #filterbar {
        width: 50%
    }
    .all_products {
        margin: 0 0px;
        width: 50%;
    }
}
@media(max-width: 525.5px) {
    #filterbar {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 5px
    }
    #content.my-5 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}
@media(max-width: 500.5px) {
    .pagination {
        display: none
    }
}
/***--------single-produt-page---------*/

.single_product .card {
    height: 100%;
}
.brand_name a {
    color: #97989c;
}
.single_product .thumbnail_images ul {
    list-style: none;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 10px
}
.single_product .thumbnail_images ul li {
    margin: 5px;
    padding: 10px;
    border: 2px solid #eee;
    cursor: pointer;
    transition: all 0.5s
}
.single_product .thumbnail_images ul li:hover {
    border: 1px solid #f5424e;
}
.single_product .main_image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
    width: 100%;
    overflow: hidden
}
.single_product .right-side h3 {
    position: relative;
    color: #5c5353;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    padding-bottom: 5px;
}
.nice-select .current {
    font-size: 16px;
    color: #333;
}
.single_product .short_description i {
    font-size: 11px;
    margin-right: 15px;
    color: #5c5353;
}
.short_description li {
    color: #686767;
    font-size: 13px;
}
.single_price h4 {
    color: #2f2f30;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 21px;
}
.single_product .product_quantity {
    width: 75px;
    height: 40px;
    border: solid 1px #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    align-items: center;
    display: flex;
    padding: 4px;
    margin-right: 0;
    margin-bottom: 0;
}
.single_product .description {
    margin: 25px 0;
}
.card {
    border: none;
}
#quantity_input {
    border: none;
    width: 65px;
}
..single_product .right-side p {
    font-size: 14px !important;
}
.single_product .heart {
    height: 29px;
    width: 29px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}
.single_product .heart i {
    color: #f5424e;
    border: 1px solid;
    padding: 5px;
    font-size: 20px;
}
.single_product .content p {
    font-size: 12px
}
.single_product .colors ul li:nth-child(5) {
    background-color: #5c5353
}
.single_product .right-side {
    position: relative;
    padding: 10px 0px !important
}
.product_info {
    color: #4d4d4d;
    display: inline-block
}
.single_product .discount {
    margin: 20px 0px;
    border-radius: 5px;
    border: groove;
    width: 230px;
    padding: 10px 8px;
    background: #b9e6ba;
}
.price del {
    margin-right: 8px;
    font-size: 20px;
    letter-spacing: 2px;
}
.discount .off {
    color: #5c5353;
    font-size: 14px;
}
.price pr {
    font-size: 28px;
    color: #f5424e;
    letter-spacing: 2px;
    font-weight: 600;
}
.product-detail-right .product-detail-col .product-attributes>div {
    position: relative;
}
.product-detail-right .product-detail-col .product-attributes .amr-product-avai {
    text-align: right;
    font-size: 14px;
    margin: 0;
    position: absolute;
    bottom: -20px;
    right: 0;
}
.desctiption-tab h2 {
    margin-bottom: 10px;
    font-size: 19px;
}
.desctiption-tab p {
    margin-bottom: 10px;
}
.tag_img {
    float: left;
    margin-right: 10px;
}
.right-side .btn-cart {
    background: #f5424e;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
}
.right-side .btn-cart:hover {
    background: #5c5353;
}
.right-side .btn-buy-now {
    background: #5c5353;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
}
.right-side .btn-buy-now:hover {
    background: #f5424e;
}
.related_product {
    padding: 50px 0px;
}
.about-vendor li {
    list-style: none;
    background: #f2f2f2;
    padding: 10px;
    color: #333333;
    font-size: 15px;
    font-weight: bold;
}
.admin_detail {
    color: #26368d;
}
/*****cart*****/

.cart_card {
    border-radius: 5px;
}
.cart .title {
    padding-bottom: 10px;
}
.main_title h4 {
    color: #5c5353;
    font-size: 22px;
    font-weight: 600;
}
.shop_table.shop_table_responsive {
    margin-top: 15px;
    width: 100%;
}
@media(max-width:767px) {
    .card {
        margin: 3vh auto
    }
}
.cart {
    background-color: #fff;
    padding: 10px;
}
.iteams h4 {
    text-align: right;
    font-size: 18px;
    color: #5c5353;
}
.cart .product-thumbnail img {
    width: 130px;
    height: 130px;
    border: 1px solid #f2f2f2;
}
.shop_table td {
    padding: 10px 10px;
}
@media(max-width:767px) {
    .cart {
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem
    }
}
.summary {
    border: 1px solid #f2f2f2;
    padding: 4vh;
    color: rgb(65, 65, 65)
}


@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    
    .shop_table td {
        text-align: center;
    }
    .check_btn {
        text-align: center;
        margin-top: 40px;
    }
    .checkout-button {
        float: none !important;
    }
    .back_btn {
        text-align: center !important;
    }
    .def-number-input.number-input.safari_only {
        display: block !important;
    }
     
}


@media(max-width:767px) {
    .summary {
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem
    }
		 
}
.minus, .plus {
    border: 1px solid #f5424e;
    height: auto; 
    font-weight: bold;
    background: #f5424e; 
    color: white;
}  
 
.quantity {
    border: 0px solid;
    background: #ffffff;
    text-align: center;
}
.main_qiantity {
    text-align: center;
    padding: 5px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f5424e;
    margin: 0px 0px 5px 0px;
}
.cart_totals h2 {
    color: #5c5353;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    /* border-bottom: 1px solid #f5424e;*/
    padding-bottom: 5px;
}
.summary .col-2 {
    padding: 0
}
.summary .col-10 {
    padding: 0
}
.title b {
    font-size: 1.5rem
}
.main {
    margin: 0;
    padding: 2vh 0;
    width: 100%
}
.col-2, .col {
    padding: 0 1vh
}
.def-number-input.number-input.safari_only {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-quantity input {
    margin: 0px 10px;
    width: 100px;
    text-align: center;
    font-size: 14px;
    color: #f5424e;
    font-weight: bold;
}
.cart-item-product-detail a {
    font-size: 15px;
    font-weight: bold;
    color: #6b6868;
    line-height: 1;
}
.ps-product__soldby span {
    color: #737373;
}
.product-subtotal {
    text-align: center;
}
.wc-proceed-to-cart {}
.checkout-button {
    float: right;
    background: #f2f2f2;
    margin: 0 auto;
    text-align: center;
    border: none;
    letter-spacing: 2px;
    border: 1px solid #5c5353;
    border-radius: 50px;
    padding: 12px;
    color: #5c5353 !important;
}
h5 {
    margin-top: 4vh
}
hr {
    margin-top: 1.25rem
}
select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247)
}
/*input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247)
}

input:focus::-webkit-input-placeholder {
    color: transparent
}
*/

/*.btn {
    background-color: #5c5353;
    border-color: #5c5353;
    color: white;
    width: 100%;
    font-size: 0.7rem;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0
}

.btn:focus {
    box-shadow: none;
    outline: none;
    box-shadow: none;
    color: white;
    -webkit-box-shadow: none;
    -webkit-user-select: none;
    transition: none
}*/

/*.btn:hover {
    color: white
}*/

a {
    color: #5c5353
}
a:hover {
    color: #5c5353;
    text-decoration: none
}
/*   Cart Popup Design */

.site-mini-cart {
    min-width: auto;
    max-width: 400px;
    width: 100%;
    right: -400px;
    top: 0;
    position: fixed;
    z-index: 1111;
    bottom: 0;
    border-radius: 0;
    border: none;
    border-left: solid 5px #f5424e;
    transition: all .3s ease;
    background: #fff;
}
@media (max-width: 767px) {
    .site-mini-cart {
        border-left: none;
    }
}
body.show-mini-cart .site-mini-cart {
    right: 0;
}
.site-mini-cart .site-mini-cart-header {
    padding: 11px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #f5424e;
}
.site-mini-cart .mini-cart-bottom {
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-product-name a {
    color: #f5424e;
    font-weight: bold
}
.showlogin {
    color: #fff;
    font-size: 15px;
    margin-left: 10px;
}
.mini-cart-total strong {
    font-size: 15px;
    letter-spacing: 1px;
}
.site-mini-cart .mini-cart-total {
    border-bottom: 1px solid #dadada;
    border-top: 1px solid #dadada;
    padding: 1em 0;
    margin: 0;
    text-align: center;
}
.site-mini-cart .mini-cart-buttons a {
    width: 100%;
    margin: 5px;
    text-align: center;
    background: #f5424e;
    padding: 11px;
    color: #fff;
    font-size: 16px;
}
.site-mini-cart .mini-cart-buttons a.checkout {
    background: #ff6600;
}
.site-mini-cart a.close-mini-cart {
    position: absolute;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    right: 0;
    top: 6px;
    cursor: pointer;
    z-index: 11111;
}
.site-mini-cart a.close-mini-cart:hover {
    background: #f5424e;
}
.site-mini-cart a.close-mini-cart i {
    color: #fff;
}
.site-mini-cart .mini-cart-content {}
.site-mini-cart .mini-cart-content .list-cart {
    margin: 0;
    padding: 10px;
    list-style: none;
    overflow-y: auto;
    height: calc(100vh - 185px);
    max-height: inherit;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item {
    padding: 15px 10px;
    position: relative;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item+.amr-mc-item {
    border-top: solid 1px #dadada;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail {
    display: flex;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-thumb {
    max-width: 60px;
    width: 100%;
    margin-right: 15px;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-thumb img {
    max-height: 100px;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-product-name {
    font-weight: 500;
    font-size: 14px;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-product-name .amr-mc-product-meta {
    font-weight: normal;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-product-name .amr-mc-product-meta .amr-mc-price {
    margin-right: 5px;
    font-weight: bold;
    font-size: 15px;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-detail .amr-mc-product-name .amr-mc-product-meta .amr-mc-quantity {}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-item-remove {
    position: absolute;
    right: 10px;
    bottom: 40px;
    border: solid 1px;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 12px;
    line-height: 25px;
    color: #f5424e;
    cursor: pointer;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-item-remove:hover {
    background: #f5424e;
    color: #fff;
}
.site-mini-cart .mini-cart-content .list-cart .amr-mc-item .amr-mc-item-remove i {
    font-size: 17px;
    font-weight: 400;
}
.amr-product-color ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.amr-product-color ul li {
    margin-right: 5px;
    margin-bottom: 5px;
    float: left;
    padding: 1px;
    border: solid 1px #dddddd;
}
.amr-product-color ul li .color-col {
    height: 25px;
    width: 25px;
    cursor: pointer;
    position: relative;
}
.amr-product-color ul li.active .color-col:before {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -9px;
    margin-left: -9px;
    text-shadow: 0 0 1px #5c5353;
    font-size: 18px;
}
.cart th {
    font-size: 16px;
    text-align: left;
    color: #464646;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
}
/****checkout-----***/

#order_form {
    padding: 0px 0px;
}
#coupen_code {
    width: 100%;
    padding: 10px;
}
.cart_totals {
    background: #f2f2f2;
    padding: 15px;
}
.order_review_heading {
    color: #5c5353;
    font-weight: 700;
    font-size: 24px;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.cart_item {
    border-bottom: 1px dashed #afaeae;
}
.site-mini-cart .mini-cart-buttons {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 10px 10px;
}
.checkout__order {
    background: #5c5353;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    border: none;
    letter-spacing: 2px;
    border-radius: 50px;
    width: 141px;
    height: 48px;
}
.checkout__title {
    color: #353232;
    margin-bottom: 10px;
    font-size: 25px;
    margin-top: 20px;
}
.back-shop {
    background: #f5424e;
    margin: 0 auto;
    text-align: center;
    border: none;
    letter-spacing: 2px;
    border-radius: 50px;
    padding: 12px;
    color: #fff !important;
}
.back-shop .text-muted {
    color: #ffffff !important;
}
.checkout__label {
    font-size: 15px;
    font-weight: 600;
    color: #f5424e;
    letter-spacing: 2px;
}
.order-place {
    text-align: center;
    margin: 0 auto;
}
.btn-order {
    background: #f2f2f2;
    margin: 0 auto;
    text-align: center;
    border: none;
    letter-spacing: 2px;
    border: 1px solid #5c5353;
    border-radius: 50px;
    padding: 12px;
    color: #5c5353 !important;
}
.btn-order:hover {
    background: #f5424e;
    color: #fff;
}
@media (max-width: 767px) {
    .back-to-shop {
        text-align: center;
    }
    .back-to-shop .btn {
        border-radius: 5px;
        padding: 5px 10px;
        font-size: 12px;
    }
}
/*success_order*/

.shopping-success {
    padding: 50px 0;
}
.go_to_order_btn {
    background: #f5424e;
    letter-spacing: 2px;
    border: 1px solid #f5424e;
    border-radius: 5px;
    color: white;
    padding: 6px 15px 10px 15px; 
    margin: 10px 0px 15px 0px;
    text-align: center !important; 
}
.success__content p {
    color: #728188;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}
.success__content span {
    color: #f5424e; 
}
.alert-success {
    color: #000000;
    background-color: #2df59b6b;
    border: 2px solid #008e4d;
}

.ps-product__soldby strong {
    font-weight: 700;
    color: #f5424e;
}
.close {
    position: absolute;
    right: 0;
    border-radius: 23px;
    color: white;
    background: #f5424e;
    border: 1px solid #f5424e;
    margin: -5px 5px 0px 0px;
}
.order-guest h2 {
    color: #5c5353;
}
.alert.alert-info {
    color: #fff;
    text-align: center;
    background: #f5424e;
    font-size: 18px;
    padding: 5px;
    border-radius: 0;
}
.notfound .btn {
    padding: 10px 30px;
    border: 1px solid #5c5353;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
}
/*Responsuve */

@media only screen and (max-width: 767.98px) {
    .offer-text-dt {
        padding: 15px 15px 11px !important;
        width: 150px !important;
    }
	 
	.Offer-shop-btn.hover-btn {
		bottom: auto;
		top: 60px;
		display: inline-block;
		padding: 5px 13px;
		background: #f5424e;
		text-align: center;
		color: #fff;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 500;
	}

}
.navbar-search .input-group {}
.navbar-search input[type="text"] {
    background-color: #fff;
    box-shadow: none;
    padding: 10px;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    line-height: 1em;
}
.navbar-search .search-categories {
    background: #f2f2f6;
    border: none;
    padding: .5rem .75rem;
    color: #5c5353;
}
.navbar-search .nice-select {
    background: none;
    border: none;
    height: auto;
    line-height: normal;
    padding-top: 10px;
}
.navbar-search .nice-select:after {
    height: 8px;
    width: 8px;
    border-bottom: 2px solid #0a0490;
    border-right: 2px solid #0a0690;
    position: relative;
    DISPLAY: inline-block;
    margin-left: 16px;
    top: -2px;
}
.navbar-search .nice-select .current {
    font-size: 16px;
    color: #0a038f;
}
.navbar-search .input-group .btn {
    color: #FFFFFF;
    padding: 13px 25px;
    background-color: #232F3E;
    font-size: 24px;
    border-radius: 0 5px 5px 0;
}
.hero-slider-area {
    padding-top: 10px;
}
.slick-arrow {
    z-index: 1;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.section-btn {
    margin-top: 20px;
}
 
.login-box {
    border-radius: 10px;
    padding: 80px;
    background: #faebd740;
    box-shadow: 1px 1px 1px 2px;
    margin: 24px 0px 25px 0px;
    max-height: -webkit-fill-available;
}
.login-box h2 {
    font-weight: 500;
}
.login-box p {
    margin: 10px 0px 10px 14px;
}
@media only screen and (max-width: 1025px) {
    .login-box {
        padding: 40px;
    }
    .login-box p {
        margin: 35px 0;
    }
}
@media only screen and (max-width: 900px) {
    .login-box {
        padding: 15px;
        margin-bottom: 20px;
        height: auto;
    }
    .login-box p {
        margin: 25px 0;
    }
}
.form-control, .select-dropdown {
    padding: 16px 0 16px 16px;
    height: 3.125rem;
    border-radius: 4px;
    border: 2px solid #f5424e;
    background: #fff;
    color: #000;
    margin: 0;
}
.select-dropdown {
    font-size: 16px;
    padding: 10px;
    width: auto;
    min-width: 100px;
}
.fb-btn {
    background: #fff;
    color: #2a77f2;
    border: solid 2px #2a77f2;
}
ul.forms li .abcRioButtonBlue {
    width: 100% !important;
    border-radius: 10px;
}
ul.forms li #appleid-signin {
    height: 50px;
    width: 100%;
}
ul.forms li #appleid-signin>div {
    max-width: 100% !important;
}
.register-points {}
.register-points li {
    display: flex;
}
.register-points li+li {
    margin-top: 17px;
}
.register-points li img {
    width: 40px;
    flex: 0 0 8%;
}
.register-points li span {
    padding-left: 15px;
}
ul.forms li .abcRioButtonBlue .abcRioButtonIcon {
    border-radius: 10px 0 0 10px !important;
}

.register-box {
    border-radius: 10px;
    padding: 2em 1em 0em 2em;
    background: #faebd740;
    box-shadow: 1px 1px 1px 2px;
    margin: 24px 0px 25px 0px;
    height: 1020px !important;
} 
.register-box h2 {
    font-weight: 500;
    margin-bottom: 20px;
}
.products-list-page {
    padding-top: 15px;
}
.filter-section {
    padding-bottom: 20px;
}
.filter-bar {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.filter-bar li {
    position: relative;
}
.filter-bar li+li {
    margin-left: 10px;
}
.filter-bar li .btn {
    background: #fff;
    border: solid 2px #8c8c8c;
    color: #6a6a6a;
}
.filter-bar li:hover a.btn, .filter-bar li.open a.btn {
    border: solid 2px #f5424e;
}
.filter-bar li.open a.btn {
    border: solid 2px #f5424e;
    color: #f5424e;
}
.filter-bar li a .dropdown-arrow {
    width: 11px;
    height: 12px;
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    top: 7px;
}
.filter-bar li a .dropdown-arrow:before, .filter-bar li a .dropdown-arrow:after {
    content: "";
    top: 0;
    position: absolute;
    width: 7px;
    height: 2px;
    background-color: #8c8c8c;
    display: inline-block;
    transition: all 0.2s ease;
}
.filter-bar li a .dropdown-arrow:before {
    left: 0;
    transform: rotate(45deg);
}
.filter-bar li a .dropdown-arrow:after {
    right: 0;
    transform: rotate( -45deg);
}
.filter-bar li.open a .dropdown-arrow:before {
    transform: rotate(-45deg);
    background-color: #f5424e;
}
.filter-bar li.open a .dropdown-arrow:after {
    transform: rotate(45deg);
    background-color: #f5424e;
}
.filter-bar li .filter-list {
    background: #fff;
    border: 2px solid #d6d6d6;
    border-radius: 4px;
    box-shadow: 12px 13px 22px 0 rgb(0 0 0 / 20%);
    display: none;
    max-height: 500px;
    max-width: 320px;
    min-width: 288px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: .5rem 1rem;
    position: absolute;
    z-index: 10;
    right: 0;
    left: 0%;
}
.filter-bar li.open .filter-list {
    display: block;
}
.selected-filter {
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow: overlay;
}
.selected-filter li { 
    margin-right: 10px;
}
.selected-filter li span {
    background: #595959;
    border-color: transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    padding: .625rem 16px;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
}
.selected-filter li span:after {
    content: "+";
    display: inline-block;
    font-size: 18px;
    line-height: 14px;
    margin: 0 0 0 10px;
    transform: rotate( 45deg) translateY(2px);
}
@media (max-width: 1025px) {
    .filter-bar li .btn {
        font-size: 13px;
        padding: 5px 10px;
        border-radius: 5px;
    }
}
.pagination-col {
    padding-top: 50px;
}
.pagination-col .pagination {
    justify-content: center;
}
.pagination-col .pagination .page-item {
    padding: 0 5px;
}
.pagination-col .pagination .page-item .page-link {
    background: none;
    border-radius: 50px;
}
.pagination-col .pagination .page-item:first-child .page-link, .pagination-col .pagination .page-item:last-child .page-link {
    background: #fff;
    border: solid 2px #eaeaea;
    color: #6d6d6d;
    min-width: 43px;
    text-align: center;
}
.pagination-col .pagination .page-item:first-child .page-link:hover, .pagination-col .pagination .page-item:last-child .page-link:hover {
    border-color: #f5424e;
    color: #f5424e;
}
.pagination-col .pagination .page-item.disabled {
    opacity: 0.5;
}
.cart-box {
    border-radius: 6px;
    box-shadow: 1px 1px 4px 2px #988f8f;
    background: #fff;
    padding-top: 25px;
    margin-bottom: 1rem;
    position: relative;
}
.cart-box .remove {
    position: absolute;
    right: 10px;
    top: 5px;
    background: #f5424e;
    color: white;
    padding: 5px 10px 5px 10px;
    border-radius: 25px;
} 
.cart-box .remove .icon:before {
    font-weight: bold !important;
}
.cart-box-row {
    display: flex;
}
.cart-box-row>div {
    padding: 0 25px;
}
.cart-product-details>div {
    clear: both;
}
.cart-product-details>div+div {
    margin-top: 15px;
}
.cart-product-thumbnail {
    width: 100%;
    max-width: 150px;
    text-align: center;
}
.cart-product-thumbnail a {
    display: block;
    background: #f7f7f7;
    padding: 2px;
    border-radius: 5px;
    overflow: hidden;
}
.cart-product-thumbnail img {
    height: 100px;
    margin: auto;
    box-shadow: 1px 1px 1px 2px #607D8B;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid;
}
.cart-product-details {
    width: 100%;
}
.cart-product-name {
    margin-bottom: 15px;
}
.cart-inner-details {}
.cart-inner-details>div {
    flex-grow: 1;
    flex-basis: 0;
}
.cart-product-price {
    font-weight: bold;
    font-size: 18px;
}
.cart-product-quantity .select-dropdown {
    height: 35px;
    padding: 5px;
}
.cart-product-subtotal {
    text-align: right;
    border-top: solid 1px #ededf2;
    padding: 10px 25px;
    font-size: 18px;
    margin-top: 25px;
}
.cart-inner-details p {
    margin: 0;
}
@media only screen and (max-width: 500px) {
    .cart-box .remove {
        right: 7px;
        top: 0;
        font-size: 14px;
    }
    .cart-box-row>div {
        padding: 0 10px;
    }
    .cart-product-details>div+div {
        margin-top: 5px;
    }
    .cart-product-thumbnail {
        max-width: 80px;
    }
    .cart-product-thumbnail img {
        height: 80px;
    }
   .cart-product-name {
    margin-bottom: 5px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
}
    .cart-product-price {
        font-size: 14px;
    }
    .cart-product-subtotal {
        padding: 5px 15px;
        font-size: 14px;
        margin-top: 15px;
    }
    .cart-product-quantity .select-dropdown {
        font-size: 12px;
    }
    .cart-inner-details {
        font-size: 13px;
    }
}
.order-summary-col .cart-box {
    padding: 25px;
}
.order-summary-col .section-title {
    border-bottom: solid 2px #000;
    padding-bottom: 5px;
}
.order-summary-col .cart-box .order-summary {
    margin-bottom: 15px;
}
.order-summary-col .cart-box .order-summary-row {
    padding: 5px 0;
}
.checkout-button-col .btn {
    width: 100%;
}
.payment-gaetway img {
    height: 50px;
    padding: 0px;
    object-fit: scale-down;
    width: 100px;
}
.payment-gaetway .card {
    height: auto;
}
.checkout-box {
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 hsl(0deg 0% 71% / 50%);
    background: #fff;
    padding: 25px;
    margin-bottom: 1rem;
    position: relative;
}
@media (max-width: 767px) {
    .checkout-box {
        padding: 15px;
    }
    .checkout-box .section-title .title {
        font-size: 18px;
    }
}
.coupon-section {
    margin-bottom: 30px;
}
.brands-alphabet-tab {
    margin-top: 40px;
}
.brands-alphabet-letter {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efedf3;
    color: #f5424e;
    font-size: 24px;
    font-weight: bold;
    padding-top: 140px;
    margin-top: -140px;
}

a.brands-alphabet-link {
    font-weight: 600;
}

@media screen and (min-width: 1200px) {
    .brands-alphabet-list {
        column-count: 4;
    }
}
.brands-alphabet-list {
    column-gap: 40px;
    padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
    .brands-alphabet-list-item {
        margin-bottom: 16px;
    }
}
.brands-alphabet-list-item {}
.padding-0 {
    padding: 0;
}
.product-detail-section {
    margin: 0;
    /*    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 2px 0;*/
}
.product-detail-colm {
    padding: 0;
}
.product-detail-left {
    /*flex: 1;*/
    margin: 2px 2px 0;
    overflow: hidden;
    position: relative;
    border-radius: 4px 0 0 4px;
}
.product-detail-right {
    /*    flex: 1;
    max-width: 460px;*/
    border-radius: 0 4px 4px 0;
    background: #fff;
    position: relative;
    margin: 2px 2px 0;
}
@media (max-width: 990px) {
    .product-detail-left, .product-detail-right {
        flex: 0 0 auto;
        width: 100%;
    }
    .product-detail-right {
        margin-bottom: 30px;
    }
    .product-detail-colm.product-detail-mb-btm {
        order: 2;
    }
}
.product-detail-right .product-detail-col {
    padding: 30px;
}
.product-detail-right .product-detail-col+.product-detail-col {
    border-top: solid 1px #f2f2f6;
}
.product-detail-right .product-detail-col>div+div {
    border-top: solid 1px #dce0f1;
    padding-top: 10px;
    padding-bottom: 10px;
}
.product-detail-right .product-detail-col .product-name {
    margin-top: 0;
    border: none;
    padding-top: 0;
}
.product-detail-right .product-detail-col .product-sku {
    font-size: 14px;
    border: none;
    padding: 0;
}
.product-detail-right .product-detail-col .product-reviews-overview {
    border: none;
}
.product-detail-right .product-detail-col .product-reviews-overview a {
    font-size: 14px;
    color: #1639c7;
    line-height: normal;
}
.product-detail-right .product-detail-col .product-reviews-overview .star-reviews {
    margin-right: 5px;
}
.product-detail-right .product-detail-col .reviews-btn a.btn {
    border-color: #232F3E;
    background-color: #232F3E;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 14px;
}
.product-detail-right .product-detail-col .product-attributes>div+div {
    margin-top: 0px;
} 
.product-detail-right .product-detail-col .product-size label, .product-detail-right .product-detail-col .product-color label, .product-detail-right .product-detail-col .product-quantity label {
    width: 70px;
    font-weight: bold;
    font-size: 14px;
}
.product-detail-page .detail-box {
    position: relative;
}
.product-detail-page .detail-box+.detail-box {
    margin-top: 30px;
}
.product-detail-page .p-detail-secID {
    position: absolute;
    top: -140px;
}
.product-detail-page .detail-box .detail-box-inner {
    background: #fff;
    box-shadow: rgb(0 0 0 / 15%) 0px 1px 1px -1px, rgb(0 0 0 / 10%) 0px 1px 2px 0px, rgb(0 0 0 / 10%) 0px 1px 4px 0px;
    padding: 25px;
    font-size: 16px;
    line-height: 26px;
}
.product-images-section {
    position: relative;
}
.product-slider-thumb-col {
    width: 75px;
    float: left;
}
.product-image-slider-col {
    margin-left: 100px;
}
.product-slider-thumb .slick-slide {
    padding: 5px 0;
    border: 0;
    opacity: .2;
    transition: all ease-in-out .3s;
}
.product-slider-thumb .slick-slide.slick-active {
    opacity: .5;
}
.product-slider-thumb .slick-active.slick-current {
    opacity: 1;
}
.product-slider-thumb .slick-slide .thumb-image {
    background: #fff;
    border: solid 1px rgba(17, 46, 161, 0.3);
    border-radius: 5px;
    cursor: pointer;
    height: 75px;
    width: 75px;
    overflow: hidden;
    padding: 1px;
    transition: border-color ease .3s;
}
.product-slider-thumb .slick-slide.slick-current .thumb-image {
    border-color: #f5424e;
}
.product-image-slider .slick-track {
    display: flex;
    align-items: center;
}
.product-image-slider .slick-prev:before, .product-image-slider .slick-next:before {
    color: black;
}
.product-image-slider .slick-slide img {
    margin: auto;
    max-height: calc(100vh - 200px);
    min-height: 510px;
}
.product-image-slider, .product-slider-thumb {
    display: none;
}
.product-image-slider .slide-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: solid 1px #f7f6f9;
    box-shadow: 0 3px 5px hsla(261, 28%, 42%, 0.3);
    background: #fff;
    z-index: 1;
}
.product-image-slider .slide-arrow:hover {
    border-color: #f5424e;
}
.product-image-slider .slide-arrow img {
    width: 30px;
}
.product-image-slider .next-arrow {
    right: 0;
}
.product-image-slider .prev-arrow {
    left: 0;
}
.product-detail-right .product-detail-col .product-attributes .product-quantity {
    margin-bottom: 8px;
}
@media (max-width: 990px) {
    .product-images-section {}
    .product-slider-thumb-col, .product-image-slider-col {
        width: 100%;
    }
    .product-image-slider-col {
        margin-left: 0;
        margin-bottom: 75px;
    }
    .product-slider-thumb-col {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 0;
        width: auto;
    }
    .product-image-slider .slick-slide img {
        min-height: auto;
        max-height: calc(100vh - 500px);
    }
    .product-detail-page .detail-box .detail-box-inner {
        padding: 10px;
    }
    .product-image-slider .slide-arrow {
        width: 30px;
        height: 30px;
    }
    .product-image-slider .prev-arrow {
        left: -5px;
    }
    .product-image-slider .next-arrow {
        right: -5px;
    }
    .product-image-slider .slide-arrow img {
        width: 20px;
    }
    .product-detail-right .product-detail-col {
        padding: 10px;
    }
}
@media only screen and (min-width: 500px) and (max-width: 990px) {
    .product-detail-right .product-detail-col .product-attributes {
        display: flex;
    }
    .product-detail-right .product-detail-col .product-attributes>div {
        position: relative;
    }
    .product-detail-right .product-detail-col .product-attributes .product-quantity {
        min-width: 180px;
    }
    .product-detail-right .product-detail-col .product-attributes .amr-product-avai {
        bottom: inherit;
        top: 5px;
    }
    .product-detail-right .product-detail-col .product-attributes>div+div {
        padding-left: 20px;
        margin-top: 0;
    }
    .product-detail-col .product-quantity .select-dropdown, .product-detail-col .product-size .select-dropdown {
        font-size: 14px;
    }
    .amr-product-color ul li .color-col {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 767px) {
    .product-name-col .product-detail-right {
        margin: 0 0 15px 0;
        box-shadow: rgb(0 0 0 / 15%) 0px 1px 1px -1px, rgb(0 0 0 / 10%) 0px 1px 2px 0px, rgb(0 0 0 / 10%) 0px 1px 4px 0px;
        border-radius: 0;
    }
    .product-name-col .product-detail-col {
        padding: 10px 15px;
    }
    .product-name-col .product-detail-col .brand_name {
        font-size: 13px;
    }
    .product-name-col .product-detail-col .product-name {
        padding-bottom: 0;
    }
    .product-name-col .product-detail-col .product-reviews-overview {
        padding: 0;
    }
    .product-name-col .product-detail-col .reviews-btn {
        display: none !important;
    }
    .product-image-slider .slick-slide img {
        max-height: 250px;
    }
}
.product-detail-section .detail-box.description h3 {
    margin-bottom: 15px;
    font-weight: bold;
}
.product-detail-page .section-title .title {
    font-size: 24px;
    font-weight: 500;
}
.product-detail-page .detail-box.description .section-title {
    border-bottom: solid 1px #dce0f1;
    padding-bottom: 10px;
}
div.sticky-div {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
@media (max-width: 990px) {
    .breadcrumb-section {
        display: none;
    }
}
.breadcrumb {
    font-size: 14px;
}
.detail-box.description {}
.detail-box.description .nav-tabs {
    background: #fff;
}
.detail-box.description .nav-tabs .nav-link {
    text-transform: uppercase;
    color: #8e8ba9;
    border-radius: 0;
}
.detail-box.description .nav-tabs .nav-link.active {
    color: #5c5353;
    font-weight: 500;
}
@media (max-width: 767px) {
    .detail-box.description .nav-tabs {
        flex-wrap: nowrap;
    }
    .detail-box.description .nav-tabs .nav-link {
        padding: 10px;
        white-space: nowrap;
    }
}
@media (max-width: 500px) {
    .detail-box.description .nav-tabs .nav-link {
        font-size: 13px;
        padding: 5px;
    }
}
.product-details {}
.product-detail-col h1 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 4px;
}
@media (max-width: 1025px) {
    .product-detail-col h1 {
        font-size: 18px;
    }
}
@media (max-width: 990px) {
    .product-detail-col h1 {
        font-size: 16px;
    }
}
.product-detail-col .brand_name {
    margin-top: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.product-detail-col span.add-to-wishlist {
    cursor: pointer;
}
.product-detail-col span.add-to-wishlist:hover {
    color: #ff0000;
}
.product-detail-col span.add-to-wishlist .icon:before {
    font-size: 24px;
    font-weight: bold;
}
.amr-number-input {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.product-ful-description-section {}
.product-ful-description-section .description {
    margin-bottom: 20px;
}
.product-ful-description-section .description .title {
    padding-bottom: 10px;
    border-bottom: solid 1px #000;
}
.star-reviews {
    width: 100px;
    position: relative;
    line-height: 0;
    background: #e3e3e3;
    overflow: hidden;
}
.star-reviews img {
    position: relative;
    z-index: 2;
    width: 100%;
}
.star-reviews .rating-present {
    width: auto;
    background: #ffa500;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
@media (max-width: 990px) {
    .star-reviews {
        width: 70px;
    }
}
.reviews-section .section-title .star-reviews {
    width: 150px;
    margin-left: 15px;
}
.reviews-section .sticky-div {
    top: 145px;
}
.write-review-col {
    padding-top: 15px;
}
.related-products .product-item {
    margin-bottom: 0;
}
.reviews-ratting-section .reviews-row {
    padding: 5px 0;
}
.reviews-ratting-section .side {
    white-space: nowrap;
    min-width: 40px;
}
.reviews-ratting-section .middle {
    width: 100%;
    background-color: #f7f7f7;
    margin: 0 15px;
}
.reviews-ratting-section .side.right {
    text-align: right;
}
.reviews-bar {
    height: 26px;
    background: #ffa500;
}
.product-price .price {
    line-height: normal;
}
.product-price .price.mrp-price {
    color: #a6a6a6;
}
.product-price .price+.price {
    margin-left: 35px;
}

.product-price .price span {
    display: block;
    font-size: 10px;
}
.product-price .price span.price-value {
    font-size: 20px;
    font-weight: bold;
}
.product-price .price.mrp-price.price span.price-value {
    text-decoration: line-through;
}
.product-detail-col .product-discount {
    color: #FF5722;
}
.product-detail-col .product-quantity .select-dropdown, .product-detail-col .product-size .select-dropdown {
    width: 100%;
    height: 40px;
    padding: 5px;
}
.product-detail-col .buttons .btn {
    width: 100%;
}
.reviews-list .review-col {
    border: none;
    box-shadow: 5px 6px 6px 2px #e9ecef;
    border-radius: 4px;
}
.reviews-list .review-col+.review-col {
    margin-top: 25px
}

.product-reviews-overview {
    padding: 5px 0px 5px 5px;
}
.shipping {
    padding: 0px 0px 10px 10px;
    color: #515c52;
}
.reviews-list .reviewer-img {
    margin-right: 10px;
    width: 50px;
    background: #bfbfbf;
}
.reviews-list .reviewer-header {
    line-height: normal;
}
.write-review-form ul.forms li {
    padding: 0;
}
.write-review-form ul.forms li.form-floating {
    padding: 10px 0;
}
.write-review-form ul.forms li.form-floating>textarea.form-control {
    height: 150px;
}
.questions-answers-section {
    padding-top: 0;
}
.questions-answers {}
.questions-answers li {
    padding-top: 15px;
    display: none;
}
.questions-answers li+li {
    margin-top: 15px;
    border-top: solid 1px #e8e8e8;
}
.questions-answers li .question-col {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.questions-answers li .question-col span {
    color: #f5424e;
}
.loadMore {
    margin-top: 30px;
}
.loadMore a {
    color: #f5424e;
    font-weight: bold;
}
.down-arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    top: 7px;
}
.down-arrow:before, .down-arrow:after {
    content: "";
    top: 0.5rem;
    position: absolute;
    width: 0.75rem;
    height: 0.1rem;
    background-color: #f5424e;
    display: inline-block;
    transition: all 0.2s ease;
}
.down-arrow:before {
    left: 0;
    transform: rotate(45deg);
}
.down-arrow:after {
    right: 0;
    transform: rotate( -45deg);
}
.section-title .select-address {
    margin-left: 20px;
}
.section-title .select-address select {
    width: auto;
    margin: 0;
}
.address-items {}
.address-items .slick-prev:before, .address-items .slick-next:before {
    color: #03A9F4;
}
.address-items .slick-prev {
    left: 0;
}
.address-items .slick-next {
    right: 0;
}
 .address-items label.address-col {
    padding: 0px 0px 0px 10px;
    margin: 0px 10px 5px 10px;
    cursor: pointer;
    background: aliceblue;
    border: 3px solid  #cccccc;
    border-radius: .25rem;
    min-width: -webkit-fill-available;
}
.address-items label.address-col.active {
    background: aliceblue;
    border-color:  #f5424e; 
    color:  #f5424e; 
}
.address-items label.address-col.active .address-name {
    color: #f5424e;
}
.address-items label.address-col address {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .address-items label.address-col {
        font-size: 14px;
    }
    .section-title .select-address {
        margin-left: 10px;
    }
    .section-title .select-address select {
        font-size: 14px;
        padding: 5px 34px 5px 10px;
    }
}
.checkout-side-bar .checkout-box {
    margin-bottom: 0;
}
.checkout-side-bar .checkout-box+.checkout-box {
    margin-top: 5px;
}
.checkout-side-bar .checkout-box.items-detail {
    border-radius: 6px 6px 0 0;
}
.checkout-side-bar .checkout-box.apply-coupon, .checkout-side-bar .checkout-box.order-total-detail, .checkout-side-bar .checkout-box.term-condition-box {
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.checkout-side-bar .checkout-box.checkout-payment-detail {
    border-radius: 0 0 6px 6px;
}
.checkout-item {
    padding: 5px 0;
    line-height: 1.3;
}
.checkout-item+.checkout-item {
    border-top: solid 1px #dce0f1;
}
 
.checkout-item .checkout-item-thumb img {
    height: 50px;
    margin: auto;
    width: 110px;
    max-height: 50px;
    max-width: 50px;
    border: 2px solid #e9e5e5;
} 
.checkout-item .product-name {
    width: 100%;
    padding: 0 10px;
}
.checkout-item .product-total {
    width: auto;
}
.checkout-item .product-name .product-info, .checkout-item .product-total .product-tax-detail {
    white-space: normal;
    font-size: 12px;
    color: #f5424e;
    font-weight: 500;
    padding: 5px 0px 5px 0px;
}
.checkout-item .product-name .product-info>span+span {
    border-left: solid 1px #000;
    padding-left: 5px;
    margin-left: 3px;
}
.checkout-item>div {
    padding: 5px 0;
}
.checkout-item .apply-coupon {
    color: #f5424e;
}
.checkout-item .apply-coupon .apply-coupon-col {
    margin-bottom: 10px;
}
.checkout-item .apply-coupon a {
    color: #f5424e;
    border-radius: 5px;
    border: solid 1px;
    padding: 2px 5px;
}
.checkout-item .apply-coupon .checkout-coupon-form {
    padding: 5px;
    background: #f7f7f7;
    color: #5c5353;
}
.checkout-item .apply-coupon .checkout-coupon-form>div {
    padding: 5px 0;
}
.checkout-item .apply-coupon .checkout-coupon-form>div+div {
    border-top: solid 1px #dce0f1;
}
.checkout-item .apply-coupon .checkout-coupon-form .coupon-name .coupon-info {
    font-size: 13px;
}
.checkout-item .apply-coupon .coupon-apply .btn {
    padding: 2px 5px;
    font-size: 14px;
    border-radius: 5px;
    color: #fff;
}
.coupon_code {
    text-transform: uppercase;
}
.customer-sidebar {}
.customer-sidebar .user-info {
    text-align: center;
    padding: 15px;
}
.customer-sidebar .user-info .user-img {}
.customer-sidebar .user-info .user-img img {
    max-height: 100px;
    width: auto;
}
.customer-sidebar .user-info .user-name {
    font-size: 18px;
    font-weight: 500;
}
.customer-sidebar .customer-menu {
    border: solid 2px #f7f7f7;
}
.customer-sidebar .customer-menu ul {}
.customer-sidebar .customer-menu ul li {
    border-top: solid 2px #f7f7f7;
}
.customer-sidebar .customer-menu ul li a {
    display: block;
    padding: 10px;
}
.customer-sidebar .customer-menu ul li:hover a, .customer-sidebar .customer-menu ul li.active a {
    color: #f5424e;
}
.customer-sidebar .customer-menu ul li a .icon {
    margin-right: 10px;
    color: #f5424e;
    font-size: 16px;
    font-weight: bold;
}
.customer-sidebar .customer-menu ul li:hover a .icon {
    margin-right: 20px;
}
.table td {
    vertical-align: middle;
}
.table td a {
    color: #232F3E;
}
 
 .btn-view {
    background: #f5424e;
    color: white;
    padding: 2px 5px 2px 5px;
}

.btn-danger {
    background: #d70707;
    color: white !important;
    padding: 5px;
}
.red {
    color: red !important;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
}
.loader-show #loader-wrapper {
    visibility: visible;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000000c2;
    z-index: 1000;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
.loader-hide #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loader-hide #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loader-hide #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loader-hide #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}
.login-btn {
    box-sizing: border-box;
    position: relative;
    padding: 0.6180469716em 1.41575em;
    border: none;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF !important;
    padding-left: 50px;
    margin-bottom: 15px;
    cursor: pointer;
}
.login-btn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}
.section-title.text-right {
    float: right;
    font-weight: 400;
    font-size: 15px;
    margin: -70px 0px 0px 0px;
    cursor: pointer;
    padding: 5px;
    background: #f5424e;
    border-radius: 5px;
}
a.right-link {
    color: white;
}
.categories h2.card-title {
    color: #5c6777;
    font-size: large;
}
.categories img {
    width: 100px;
}
.categories .card, .blog .card {
    height: 100%!important;
}
.not-found {
    width: 250px;
}
.blog h4.card-title {
    color: #596169;
}
.blogs img {
    width: 100%;
}
/* faq css start*/

.faq-title h2 {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #0d2ea0;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
    padding: 0 190px;
    margin-bottom: 10px;
}
.faq {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}
.faq .card {
    border: none;
    background: none;
    border-bottom: 1px dashed #CEE1F8;
}
.faq .card .card-header {
    padding: 0px;
    border: none;
    background: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.faq .card .card-header:hover {
    background: #0d2ea021;
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
    width: 100%;
    text-align: left;
    padding: 0px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    color: #3B566E;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
}
.faq .card .card-header .faq-title .badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 14px;
    float: left;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #f5424e;
    color: #fff;
    font-size: 12px;
    margin-right: 20px;
}
.faq .card .card-body {
    padding: 30px;
    padding-left: 35px;
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    border-top: 1px solid #F3F8FF;
}
.faq .card .card-body p {
    margin-bottom: 14px;
}
@media (max-width: 991px) {
    .faq {
        margin-bottom: 30px;
    }
    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px;
    }
}
.faq .card {
    height: auto !important;
}
/* faq css end*/

/* Whatsapp Css Start*/

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}
@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}
.whatsapp {
    position: fixed;
    right: 10px;
    bottom: 110px;
    z-index: 11;
    width: 60px;
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}
.whatsapp a {
    display: block
}
.whatsapp a span {
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 12px;
    text-shadow: 0 0 5px #000;
    color: #fff
}
.whatsapp img {
    border: solid 2px #fff;
    border-radius: 10px
}
/* Whatsapp css end*/

/* checkout page  css start*/

.card.active {
    background: #dff0d8;
}
.card.active .card-header {
    background: #607D8B;
    border: 2px solid;
    color: white;
}

 .card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: white;
    border: 2px solid #607D8B;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #607D8B;
}

/* cart page  css start*/

.cart-section .extra {
    display: inline-block;
    border-radius: 4px;
    width: 80px;
    padding: 5px;
    border: 1px solid;
    background: white;
}
.cart-section .productquantity {
    background: black;
    color: white;
}
.cart-section .select li {
    display: none;
    cursor: pointer;
    padding: 5px 10px;
    border-top: 1px solid black;
    min-width: 150px;
}
.cart-section .select li:first-child {
    display: block;
    border-top: 0px;
}
.cart-section .select {
    border: 1px solid black;
    display: inline-block;
    padding: 0;
    border-radius: 4px;
    position: relative;
}
.cart-section .select li:hover {
    background-color: #ddd;
}
.cart-section .select li:first-child:hover {
    background-color: transparent;
}
.cart-section .select.open li {
    display: block;
}
.cart-section .select span:before {
    position: absolute;
    top: 5px;
    right: 15px;
    content: "\2193";
}
.cart-section .select.open span:before {
    content: "\2191";
}
/* cart page css end*/

/* Blog Page Design start */

.blog-top {}
.first-post {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.first-post>div {
    flex-grow: 1;
    flex-basis: 0;
}
.first-post .post-img {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.first-post .post-img img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 360px;
    width: 100%;
    object-fit: cover;
}
.first-post:hover .post-img img {
    transform: scale(1.02);
}
.first-post .post-content {
    padding-left: 50px;
}
.post-content .post-title {
    font-size: 32px;
    margin: 4px 0 6px;
    font-weight: 600;
}
.post-content .post-short-description {
    font-size: 20px;
}
.first-post:hover .post-title {
    text-decoration: underline;
}
@media (max-width: 990px) {
    .first-post {
        display: block;
    }
    .first-post .post-img {
        margin-bottom: 15px;
    }
    .first-post .post-content {
        padding-left: 0;
    }
    .post-content .post-title {
        font-size: 24px;
    }
    .post-content .post-short-description {
        font-size: 16px;
    }
}
.blog-row .blog-post {
    margin-bottom: 30px;
    display: block;
}
.blog-row .blog-post .post-img {
    overflow: hidden;
}
.blog-row .blog-post .post-img img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.blog-row .blog-post:hover .post-img img {
    transform: scale(1.02);
}
.blog-row .blog-post .post-title {
    background: #fff;
    margin-left: 10%;
    margin-top: -29px;
    padding: 13px 20px 8px;
    position: relative;
    font-size: 18px;
}
.blogs-menu-alphabet h2 {
    font-size: 16px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: 500;
    max-width: 200px;
}
.blogs-menu-alphabet div.sticky-div {
    top: 125px;
}
.blogs-menu-alphabet ul li {}
.blogs-menu-alphabet ul li a {
    font-weight: 500;
    padding: 3px 0;
    display: inline-block;
}
.blogs-menu-alphabet ul li:hover a {
    color: #f5424e;
    text-decoration: underline;
}
@media (max-width: 990px) {
    .blog-row .blog-post .post-title {
        font-size: 16px;
    }
    .blogs-menu-alphabet {
        display: none;
    }
}
.category-post {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.category-post .post-img {
    flex: 0 0 200px;
}
.category-post .post-content {
    padding-left: 20px;
}
.category-post .post-content .post-title {
    font-size: 20px;
}
.category-post:hover .post-title {
    text-decoration: underline;
}
.category-post .post-content .post-short-description {
    font-size: 18px;
}

  
button.btn.payment_btn {
    width: 100% !important;
}
a.btn.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
    color: white;
}

#view_product_details .modal-body {
    padding: 0px 30px 0px 15px !important;
}

.tf__cart_popup_text .name {
    font-size: 16px;
    color: #5d5955;
    font-weight: 500;
    padding: 5px;
    text-transform: capitalize;
}
 .tf__cart_popup_text .price {
    padding: 0px 0px 0px 5px;
    font-weight: 600;
    color: #48433e;
}
 
.tf__cart_popup_text .price {
    padding: 5px 0px 9px 7px;
    font-weight: 500;
    color: #f5424e;
    font-size: 18px;
}
 
.tf__cart_popup_text del {
    font-size: 15px !important;
    
}
.tf__cart_popup_text h4 {
    color: #f5424e;
    font-weight: 600;
}

.tf__cart_popup_text .form-control {
    padding: 0px 0 0px 15px;
    height: 3rem;
    border-radius: 1px;
    border: 3px solid #615f5d;
    background: #fff;
    color: #5b5652;
    margin: 0px;
    font-weight: 900;
}
.tf__cart_popup_text  .details_size, .tf__cart_popup_text  .details_extra_item {
    padding: 0px 0px 0px 15px;
    border: 2px solid #c9b7b7;
    margin: 0px 0px 10px 0px;
    box-shadow: 0px 0px 3px 0px;
}

  .tf__cart_popup_text h5 { 
     padding: 0px 0px 5px 0px;
     color: #515c52;
     font-weight: 600;
     font-size: 20px;
     font-family: monospace;
  }

.total-price h4 {
    font-size: 18px;
    font-weight: 700;
    padding: 0px 0px 10px 0px
}

body .total-price {
    display: flex !important;
    align-content: stretch !important;
    flex-wrap: wrap !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: stretch !important;
    padding: 15px 0px 15px 0px !important;
}
body .add-cart-btn {
    background-color: #209124 !important;
    color: #ffffff !important;
    border-color: #09970f !important;
    padding: 8px 8px 8px 8px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    box-shadow: 0px 0px 0px 0px #ffffff !important;
    margin: 0px !important;
    border-radius: 0px !important;
    cursor: pointer !important;
}

#view_product_details .modal-content {
    border: 3px solid #f5424e;
} 

.form-check-input:checked {
    background-color: #f5424e;
    border-color: #f5424e;
}

.form-check-input[type=checkbox] {
    border-radius: 0px;
}
.section-title {
    text-align: center; 
    margin: 1em 0em 1em 0em;
     
} 
section.section--registration {
    padding: 3em;
} 

.notfound {
    margin: 20px 0px 40px 0px;
    text-align: center !important;
    background: antiquewhite;
    padding: 2em;
}
 
body .add-buy-btn {
    background-color: #f5424e !important;
    color: #ffffff !important;
    border-color: #f5424e !important;
    padding: 8px 8px 8px 8px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    box-shadow: 0px 0px 0px 0px #ffffff !important;
    margin: 5px 0px 0px 0px !important;
    border-radius: 0px !important;
    cursor: pointer !important;
}

body .note-sms {
    margin: 10px 10px 0px 15px;
    font-weight: 500;
    color: #607D8B;
    font-size: 15px;
    display: inline-block;
}