/*
 *  Owl Carousel - Core
 */
@import '../css/fancybox.min.css';
@import '../css/slick.min.css';
@import '../css/all.min.css';
@import '../css/noUi.min.css';
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap");

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
  *  Owl Carousel - Animate Plugin
  */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
  * 	Owl Carousel - Auto Height Plugin
  */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
  * 	Owl Carousel - Lazy Load Plugin
  */
.owl-carousel .owl-item {
    /**
       This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
       calculation of the height of the owl-item that breaks page layouts
    */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
  * 	Owl Carousel - Video Plugin
  */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

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

.container {
    max-width: 1200px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.col1 {
    grid-column: span 1;
}

.row1 {
    grid-row: span 1;
}

.col2 {
    grid-column: span 2;
}

.row2 {
    grid-row: span 2;
}

.col3 {
    grid-column: span 3;
}

.row3 {
    grid-row: span 3;
}

.col4 {
    grid-column: span 4;
}

.row4 {
    grid-row: span 4;
}

.col5 {
    grid-column: span 5;
}

.row5 {
    grid-row: span 5;
}

.col6 {
    grid-column: span 6;
}

.row6 {
    grid-row: span 6;
}

.col7 {
    grid-column: span 7;
}

.row7 {
    grid-row: span 7;
}

.col8 {
    grid-column: span 8;
}

.row8 {
    grid-row: span 8;
}

.col9 {
    grid-column: span 9;
}

.row9 {
    grid-row: span 9;
}

.col10 {
    grid-column: span 10;
}

.row10 {
    grid-row: span 10;
}

.col11 {
    grid-column: span 11;
}

.row11 {
    grid-row: span 11;
}

.col12 {
    grid-column: span 12;
}

.row12 {
    grid-row: span 12;
}

.site-header .etn-header-bottom {
    padding: 10px 0 15px 0;
    position: relative;
}

.site-header .etn-header-bottom .container {
    max-width: 1325px;
}

.site-header .etn-header-bottom .header-logo {
    transform: translateX(30%);
    top: 0;
}

.site-header .etn-header-bottom .header-logo a img {
    width: 110px;
}

.site-header .header-search {
    position: relative;
    max-width: 190px;
}

.site-header .header-search input {
    display: block;
    width: 100%;
    padding: 10px 30px 10px 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #777777;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ab2138;
    letter-spacing: 0.5px;
}

.site-header .header-search input:focus {
    outline: none;
}

.site-header .header-search .submit {
    position: absolute;
    top: 10px;
    left: auto;
    right: 0;
    color: #111;
    font-size: 16px;
    background: none;
    outline: 0;
    border: none;
    padding: 0;
}

.site-header .header-search .submit i {
    font-size: 18px;
    line-height: 12px;
    color: #111;
}

.site-header .header-right .login {
    margin-left: 20px;
    color: #ab2138;
}

.site-header .header-right .etn-side-toggle {
    position: relative;
    margin-left: 20px;
}

.site-header .header-right .etn-side-toggle .etn-header-count {
    position: absolute;
    top: -18px;
    right: -10px;
    color: #fff;
    background: #ab2138;
    width: 25px;
    height: 25px;
    font-size: 12px;
    line-height: 25px;
    border-radius: 100%;
    text-align: center;
}

.site-header .etn-header-bottons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.site-header .etn-header-user .etn-header-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
    background-color: transparent;
    padding: 0;
    margin-top: 5px;
}

.site-header .etn-header-btn-menubar {
    display: none;
}

.site-header .etn-header-btn i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #444444;
    font-size: 25px;
    line-height: 1;
}

.site-header .etn-header-bottons .etn-header-btn {
    width: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    color: #444444;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .etn-header-bottons .etn-header-btn:not(:first-child) {
    margin-left: 25px;
}

.site-header .etn-header-bottons .etn-header-btn .etn-header-count {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    position: absolute;
    z-index: 2;
    top: auto;
    right: -2px;
    height: 20px;
    min-width: 20px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    background: #ab2138;
    bottom: -7px;
    padding: 0 4px;
}

.site-header .etn-header-btn {
    color: #ab2138;
    font-weight: 500;
    font-size: 16px;
}

.site-header .etn-header-btn:hover i {
    color: #fff;
    background: #ab2138;
}

.site-header .etn-header-btn i {
    color: #ab2138;
    font-size: 16px;
    border: 1px solid rgba(15, 11, 11, 0.1607843137);
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    text-align: center;
    margin-right: 12px;
}

.navigation {
    left: 0;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    margin-top: 12px;
    background: #ab2138;
}

.navigation .menuWrap {
    height: 100%;
}

.navigation .menuWrap>ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.navigation .menuWrap>ul>li {
    padding: 15px 12px 11px 12px;
}

.navigation .menuWrap>ul>li.megamenu-trigger span {
    display: none;
}

@media (min-width: 1141px) {
    .navigation .menuWrap>ul>li:hover .megamenu {
        top: 100%;
        opacity: 1;
        visibility: visible;
        transition: 0.3s ease;
    }
}

.navigation .menuWrap>ul>li.megamenu-trigger a,
.navigation .menuWrap>ul>li.dropdown {
    position: relative;
    padding-right: 35px;
}

.navigation .menuWrap>ul>li.megamenu-trigger a>span,
.navigation .menuWrap>ul>li.dropdown>span {
    position: absolute;
    right: 15px;
    top: 20px;
    color: #fff;
    font-size: 12px;
    display: block !important;
}

.navigation .menuWrap>ul>li.megamenu-trigger a span {
    position: absolute;
    right: 10px;
    top: 5px;
}

.navigation .menuWrap>ul>li>ul {
    position: absolute;
    left: 0;
    top: 140%;
    background: #641721;
    list-style-type: none;
    padding: 0;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
}

.navigation .menuWrap>ul>li>ul>li {
    padding: 10px 12px 11px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2117647059);
}

.navigation .menuWrap>ul>li>ul>li>a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.navigation .menuWrap>ul>li>ul>li:hover>a {
    color: #fff;
    opacity: 0.65;
}

.navigation .menuWrap>ul>li:first-child>a {
    padding-left: 0;
}

.navigation .menuWrap>ul>li>a {
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.navigation .menuWrap>ul>li:hover {
    background: #641721;
}

.navigation .menuWrap>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.navigation .menuWrap>ul>li:hover>a {
    color: #fff;
}

.megamenu {
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    top: 180%;
    padding: 25px 0 5px 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3490196078);
}

.megamenu .grid .megamenu-col {
    grid-column: span 3;
    margin-bottom: 25px;
}

.megamenu .grid .megamenu-col>span {
    display: none;
}

.megamenu .grid .megamenu-col .category-title {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ab2138;
    line-height: 100%;
    font-size: 18px;
}

.megamenu .grid .megamenu-col .category-title a {
    color: inherit;
}

.megamenu .grid .megamenu-col ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.megamenu .grid .megamenu-col ul li {
    padding: 5px 0;
    line-height: 1;
}

.megamenu .grid .megamenu-col ul li a {
    font-size: 16px;
    color: #000;
    font-size: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    font-weight: 500;
    padding-right: 0;
}

.megamenu .grid .megamenu-col ul li a:before {
    width: 0%;
    transition: 0.3s linear;
    height: 1px;
    background: #ab2138;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}

.megamenu .grid .megamenu-col ul li a:hover {
    transition: 0.3s linear;
    color: #ab2138;
}

.megamenu .grid .megamenu-col ul li a:hover:before {
    transition: 0.3s linear;
    width: 100%;
}

.black-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 5;
    width: 100vw;
    height: 100vh;
    transition: 0.4s linear;
    background: rgba(0, 0, 0, 0.55);
    overflow-y: auto;
    cursor: pointer;
}

.site-footer {
    background: rgba(0, 0, 0, 0.0509803922);
    padding: 30px 0 0 0;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 110px;
    margin: auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links .footer-heading {
    font-size: 18px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.footer-links ul li a {
    color: #111;
    display: inline-block;
    padding: 4px 0;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #ab2138;
}

.footer-links .social-media {
    margin-top: 13px;
}

.footer-links .social-media a {
    color: #111;
    display: inline-block;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 18px;
    margin-right: 20px;
}

.footer-links .social-media a:hover {
    color: #ab2138;
}

.footer-links.footer-contact .footer-heading {
    margin-bottom: 15px;
}

.footer-links.footer-contact ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
}

.footer-links.footer-contact ul li a {
    font-size: 15px;
    color: #fff;
    opacity: 1;
}

.footer-links.footer-contact i {
    width: 22px;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.footer-links.footer-contact span {
    width: calc(100% - 3px);
    display: inline-block;
    font-weight: 500;
}

.last-footer {
    background: #ab2138;
    margin-top: 30px;
    padding: 12px 0;
    font-size: 14px;
    color: #fff;
}

.last-footer img {
    width: 160px;
}

.last-footer p {
    margin: 0;
}

.footer-link-wrap {
    grid-column: span 4;
}

.footer-link-wrap:first-child+.footer-link-wrap {
    order: 3;
}

.footer-logo-wrap {
    grid-column: span 4;
    order: 2;
}

.btn-primary {
    background-color: #641721;
    color: #fff;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    border: none;
}

.slider-nav .owl-carousel {
    margin: 0 -10px;
}

.slider-nav .item {
    padding: 0 12px;
}

.product-container {
    height: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border: 1px solid rgba(15, 14, 14, 0.2);
    border-radius: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
}

.product-container img {
    transition: 0.3s linear;
}

.product-container:hover .product-image a img {
    transform: scale(1.2);
    transition: 0.3s linear;
}

.product-container:hover .product-image-container .product-detail-container h3 a {
    color: #ab2138;
}

.product-container .rrb_home_offer {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background-color: #641721;
    color: #fff;
    z-index: 1;
    border-radius: 8px;
    font-size: 10px;
}

.product-container .product-image-container {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.product-container .product-image-container .product-image {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-container .product-image-container .product-image a {
    width: 140px;
    margin-top: 25px;
}

.product-container .product-image-container .product-detail-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 28px;
    width: 100%;
    text-align: center;
}

.product-container .product-image-container .product-detail-container h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
    display: block;
    color: rgba(5, 5, 7, 0.5803921569);
}

.product-container .product-image-container .product-detail-container h3 a {
    color: rgba(0, 0, 0, 0.8705882353);
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart {
    text-align: center;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_home_item_price p {
    margin: 0;
    line-height: 1;
    color: #1f1f1f;
    font-weight: 500;
    font-size: 16px;
    opacity: 1;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_home_item_price p del {
    color: #000;
    opacity: 0.65;
    font-size: 15px;
    font-weight: 600;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_cart {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    text-align: center;
    cursor: pointer;
    border: 0.5px solid #641721;
    border-radius: 8px;
    padding: 11px 12px;
    color: #641721;
    transition: 0.3s linear;
    font-size: 14px;
    background: none;
    font-weight: 500;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_cart i {
    margin-left: 7px;
    display: inline-block;
    font-size: 16px;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_cart:hover {
    color: #fff;
    background: #641721;
    transition: 0.3s linear;
}

.product-container .product-image-container .product-detail-container .rrb_home_item_price_cart .rrb_home_item_cart {
    margin-top: 15px;
}

.cart__sidebar {
    height: 100%;
    position: relative;
    position: fixed;
    right: -150%;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    top: 0;
    width: 390px;
    box-shadow: -4px 1px 1px rgba(0, 0, 0, 0.1019607843);
    background: #fff;
    z-index: 3;
}

.cart__sidebar .mini-cart__title {
    font-size: 20px;
    padding: 16px 16px 16px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0705882353);
    margin: 0;
    color: #111;
    font-weight: 600;
}

.cart__sidebar .mini-cart__title span {
    color: #ab2138;
}

.cart__sidebar .mini-cart__title i {
    position: absolute;
    right: 20px;
    font-size: 18px;
    top: 20px;
    cursor: pointer;
    opacity: 0.65;
}

.cart__sidebar .mini-cart__title i:hover {
    color: red;
    opacity: 1;
}

.cart__sidebar .cart__sidebar--main {
    overflow: auto;
    height: calc(100vh - 265px);
}

.cart__sidebar .cart__sidebar--footer {
    border-top: 1px solid #ddd;
    padding: 30px 30px;
    position: absolute;
    bottom: 0;
    background: #641721;
    color: #fff;
    width: 100%;
    font-size: 22px;
    padding-bottom: 4px;
}

.cart__sidebar .cart__sidebar--footer .totals-item {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-weight: 500;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart__sidebar .cart__sidebar--footer .totals-item .totals-item__label {
    flex-grow: 1;
    color: #FFF;
    padding-bottom: 10px;
    font-size: 22px;
}

.cart__sidebar .cart__sidebar--footer .totals-item .total-item__value {
    font-weight: 700;
    white-space: nowrap;
}

.cart__sidebar .cart__sidebar--footer .totals-item .totals-item__description {
    font-size: 15px;
    opacity: 0.65;
    padding: 8px 0 5px 0;
    font-weight: 300;
}

.cart__sidebar .cart__sidebar--footer .totals-item .btn {
    text-align: center;
    background: rgba(0, 0, 0, 0.1098039216);
    border-radius: 8px;
    padding: 14px 15px;
    color: #fff;
    transition: 0.3s linear;
    font-size: 15px;
    font-weight: 600;
    width: 160px;
}

.cart__sidebar .cart__sidebar--footer .totals-item .btn i {
    margin-left: 12px;
    display: inline-block;
}

.cart__sidebar .cart__sidebar--footer .totals-item .btn:hover {
    background: #641721;
}

.cart__sidebar .cart__sidebar--footer .totals-item .btn+.btn {
    background: #641721;
}

.cart__sidebar .cart__sidebar--footer .totals-item .btn+.btn:hover {
    background: #641721;
}

.cart-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid rgba(24, 17, 17, 0.1098039216);
    padding: 15px 20px 20px 20px;
    transition: 0.3s linear;
}

.cart-items:hover {
    background: rgba(9, 5, 5, 0.0509803922);
    transition: 0.3s linear;
}

.cart-items a {
    -webkit-box-flex: 1;
    display: block;
    -ms-flex: 1 0 20%;
    flex: 1 0 20%;
}

.cart-items .cart-items-content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 70%;
    flex: 1 0 70%;
    padding-left: 25px;
    overflow: hidden;
}

.cart-items .cart-items-content .cart-items--title {
    width: 100%;
    padding-right: 30px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8705882353);
}

.cart-items .cart-items-content .cart-item--price {
    margin: 5px 0 17px 0;
    line-height: 1;
    color: #641721;
    font-weight: 600;
    font-size: 15px;
    opacity: 1;
    display: block;
}

.cart-items .cart-items-content .cart-item--price span {
    font-weight: 600;
    color: #ab2138;
}

.cart-items .cart-items-content .qty-plus-minus {
    border: 1px solid rgba(18, 1, 1, 0.1803921569);
    display: inline-block;
    height: 35px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 7px 0;
    margin-top: 7px;
}

.cart-items .cart-items-content .qty-plus-minus .ec_qtybtn {
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 36px;
    cursor: pointer;
    font-size: 20px;
    color: #777;
}

.cart-items .cart-items-content .qty-plus-minus .ec_qtybtn:hover {
    background: #F1F1F1;
}

.cart-items .cart-items-content .qty-plus-minus .ec_qtybtn.dec {
    border-right: 1px solid rgba(18, 1, 1, 0.1803921569);
}

.cart-items .cart-items-content .qty-plus-minus .ec_qtybtn.inc {
    border-left: 1px solid rgba(18, 1, 1, 0.1803921569);
}

.cart-items .cart-items-content .qty-plus-minus input.qty-input {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #777;
    float: left;
    font-size: 14px;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 32px;
    outline: none;
    font-weight: 400;
    line-height: 35px;
}

.cart-items .remove {
    line-height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 9px;
    color: red;
    font-size: 16px;
    background: #fff;
    background: rgba(255, 0, 0, 0.3098039216);
    height: 23px;
    width: 23px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
    border-radius: 100%;
}

.cart-items .remove:hover {
    color: #fff;
    transition: 0.3s linear;
    background: red;
}

.black-layer {
    cursor: pointer;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 3;
    display: none;
    -webkit-transition: opacity 0.25s linear;
    -moz-transition: opacity 0.25s linear;
    -ms-transition: opacity 0.25s linear;
    -o-transition: opacity 0.25s linear;
}

.show__side--menu .cart__sidebar {
    right: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.show__side--menu .black-layer {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
}

.btn {
    text-align: center;
    border-radius: 8px;
    padding: 12px 25px;
    color: #fff;
    transition: 0.3s linear;
    background: #ab2138;
    font-size: 15px;
    font-weight: 600;
}

.btn:hover {
    color: #fff;
    background: #641721;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
}

.pagination-wrap nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: inherit;
}

.pagination-wrap nav ul li:hover a,
.pagination-wrap nav ul li.active a {
    background: #ab2138;
    color: #fff;
}

.section__login {
    margin-bottom: 40px;
}

.form-column {
    background: rgba(52, 116, 212, 0.0392156863);
    border: 2px solid rgba(0, 0, 0, 0.031372549);
    padding: 30px;
    height: 100%;
    border-radius: 4px;
}

.form-column .form-title {
    position: relative;
    z-index: 1;
    font-size: 28px;
    line-height: 1.44;
    color: #ab2138;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.form-column p {
    font-size: 14.6px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.71);
}

.form-column .form-column-body {
    text-align: left;
    margin-top: 30px;
}

.form-column .form-column-body form .form-group {
    margin-bottom: 15px;
}

.form-column .form-column-body form .form-group:last-child {
    margin-bottom: 0;
}

.form-column .form-column-body form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-column .form-column-body form input {
    height: 45px;
    font-size: 15px;
    padding-left: 20px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1098039216);
}

.form-column .form-column-body form .col-grow label {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.form-column .form-column-body form .col-grow label input {
    margin-right: 9px;
}

.form-column .form-column-body form .btn {
    width: 100%;
}

.form-column .form-column-body form .forgot-password a {
    color: #000;
    font-weight: 500;
    font-size: 13px;
}

.btn-green {
    background: #641721;
}

.btn-red {
    background: red;
}

.alternate-bg {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.0392156863) url(../img/bg-pattern-black.png);
}

ul.pagination {
    margin: 5px 0 25px 0;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: right;
    position: relative;
}

ul.pagination li {
    margin: 0 0 7px 0;
    display: inline-block;
}

ul.pagination li:hover>a,
ul.pagination li:hover span,
ul.pagination li.active>a,
ul.pagination li.active span {
    color: #fff;
    background: #ab2138;
    cursor: pointer;
    border-color: #ab2138;
}

ul.pagination li.disabled span,
ul.pagination li.disabled>a {
    cursor: default;
    color: #999;
    pointer-events: none;
    border-radius: 5px;
    width: auto;
}

ul.pagination li a,
ul.pagination li span {
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.6705882353);
    padding: 0 12px;
    line-height: 45px;
    margin: 0 8px;
    height: 45px;
    font-weight: 500;
    border-right: none;
    font-size: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2117647059);
    border-radius: 5px;
}

.banner__slider {
    overflow: hidden;
}

.banner__slider .owl-carousel .owl-nav {
    position: absolute;
    top: auto;
    bottom: 50%;
    width: 100%;
    z-index: 4;
    width: 100%;
    display: flex;
    padding: 0 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.18, 0.91);
    opacity: 0;
    visibility: hidden;
}

.banner__slider .owl-carousel button {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.18, 0.91);
}

.banner__slider .owl-carousel button .prev-slide,
.banner__slider .owl-carousel button .next-slide {
    width: 34px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 24px;
    display: inline-block;
}

.banner__slider .owl-carousel button .prev-slide {
    background-image: url(../img/prev-arrow.svg);
}

.banner__slider .owl-carousel button .next-slide {
    position: absolute;
    right: 0;
    background-image: url(../img/next-arrow.svg);
}

.banner__slider:hover .owl-nav {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.18, 0.91);
    opacity: 1;
    visibility: visible;
}

.icon-boxes-container {
    background: rgba(85, 85, 85, 0.0588235294);
    padding: 25px 0;
}

.icon-boxes-container .icon-box-side {
    display: flex;
    align-items: center;
}

.icon-boxes-container .icon-box-side .icon-box-icon {
    color: #ab2138;
    font-size: 30px;
    display: inline-block;
    line-height: 0;
    margin: 0 20px 0 0;
}

.icon-boxes-container .icon-box-side .icon-box-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin: 0;
}

.icon-boxes-container .icon-box-side p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: #777;
    margin: 3px 0 0 0;
}

.section-sm {
    margin-top: 40px;
}

.rrb_catgory_title_slug {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rrb_catgory_title_slug h3 {
    margin: 0;
    color: #ab2138;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    font-size: 25px;
}

.rrb_catgory_title_slug a {
    color: #3474d4;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.rrb_catgory_title_slug a img {
    width: 15px;
    display: inline-block;
    vertical-align: sub;
    margin-left: 7px;
}

.slider-nav .owl-nav {
    position: absolute;
    right: 15px;
    top: -15%;
}

.slider-nav .owl-nav button {
    background: none !important;
    height: 35px;
    margin-left: 12px;
    width: 35px;
    border-radius: 100%;
    border: 1px solid #111 !important;
    font-size: 12px !important;
}

.slider-nav .owl-nav button:hover {
    background: #ab2138 !important;
    border-color: #ab2138 !important;
    color: #fff;
}

.slider-nav .owl-nav button.owl-next {
    right: -6px;
    left: inherit;
}

.section-sm.advertisement__section {
    margin-bottom: 40px;
}

.section-sm.advertisement__section img {
    border-radius: 5px;
}

.product_sections .owl-stage {
    display: flex;
}

.product_sections .owl-stage .owl-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product_sections .owl-stage .owl-item .item {
    height: 100%;
}

.ec-breadcrumb-list {
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.ec-breadcrumb-list li {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
}

.ec-breadcrumb-list li:not(:last-child)::after {
    content: "";
    display: inline-block;
    margin: 0 12px;
    width: 4px;
    height: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuMTM3MzI0IDYuODYyOTFDMC4zMTk3OTggNy4wNDU3IDAuNjEzOTkxIDcuMDQ1NyAwLjc5NjQ2NSA2Ljg2MjkxTDMuODkxMDcgMy43NjI5OUM0LjAzNjMxIDMuNjE3NTEgNC4wMzYzMSAzLjM4MjQ5IDMuODkxMDcgMy4yMzcwMUwwLjc5NjQ2NSAwLjEzNzA5QzAuNjEzOTkxIC0wLjA0NTY5NjYgMC4zMTk3OTkgLTAuMDQ1Njk2NiAwLjEzNzMyNCAwLjEzNzA5Qy0wLjA0NTE0OTMgMC4zMTk4NzcgLTAuMDQ1MTQ5MyAwLjYxNDU3NSAwLjEzNzMyNCAwLjc5NzM2MkwyLjgzMzQ3IDMuNTAxODdMMC4xMzM2MDEgNi4yMDYzN0MtMC4wNDUxNDkzIDYuMzg1NDIgLTAuMDQ1MTQ5OCA2LjY4Mzg1IDAuMTM3MzI0IDYuODYyOTFaIiBmaWxsPSIjOTA5MDkxIi8+Cjwvc3ZnPgo=);
}

.ec-breadcrumb-list li a {
    color: inherit;
}

.ec-breadcrumb-list li:hover>a {
    color: #ab2138;
}

.ec-breadcrumb-list li.active>a {
    color: #ab2138;
    font-weight: 600;
}

.single-product-scroll:hover .single-nav-thumb .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.single-nav-thumb {
    width: 100%;
    overflow: hidden;
}

.single-nav-thumb .slick-slide {
    padding: 11px 11px 0 11px;
    display: block !important;
    height: 120px;
}

.single-nav-thumb .slick-slide img {
    object-fit: cover;
    height: 100%;
}

.single-nav-thumb .slick-slide.slick-current.slick-active img {
    border: 1px solid #ab2138;
}

.single-nav-thumb .slick-slide img {
    border: 1px solid #eeeeee;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.single-nav-thumb .slick-arrow {
    top: 42%;
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuMTM3MzI0IDYuODYyOTFDMC4zMTk3OTggNy4wNDU3IDAuNjEzOTkxIDcuMDQ1NyAwLjc5NjQ2NSA2Ljg2MjkxTDMuODkxMDcgMy43NjI5OUM0LjAzNjMxIDMuNjE3NTEgNC4wMzYzMSAzLjM4MjQ5IDMuODkxMDcgMy4yMzcwMUwwLjc5NjQ2NSAwLjEzNzA5QzAuNjEzOTkxIC0wLjA0NTY5NjYgMC4zMTk3OTkgLTAuMDQ1Njk2NiAwLjEzNzMyNCAwLjEzNzA5Qy0wLjA0NTE0OTMgMC4zMTk4NzcgLTAuMDQ1MTQ5MyAwLjYxNDU3NSAwLjEzNzMyNCAwLjc5NzM2MkwyLjgzMzQ3IDMuNTAxODdMMC4xMzM2MDEgNi4yMDYzN0MtMC4wNDUxNDkzIDYuMzg1NDIgLTAuMDQ1MTQ5OCA2LjY4Mzg1IDAuMTM3MzI0IDYuODYyOTFaIiBmaWxsPSIjOTA5MDkxIi8+Cjwvc3ZnPgo=);
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear;
}

.single-nav-thumb .slick-arrow.slick-prev {
    left: 8px;
    right: auto;
    transform: rotate(180deg);
}

.single-nav-thumb .slick-arrow.slick-next {
    right: 8px;
    left: auto;
}

.product-details-content-area {
    padding-left: 20px;
    position: sticky;
    top: 100px;
}

.product-details-content-area h3 {
    font-size: 28px;
    text-transform: capitalize;
    margin: 0 0 4px 0;
    text-decoration: none;
    display: block;
    font-weight: 600;
    line-height: 1.2;
}

.product-details-content-area .review-star {
    margin: 0;
    padding: 0;
}

.product-details-content-area .review-star li {
    display: inline-block;
    font-size: 12px;
}

.product-details-content-area .review-star li i {
    color: rgb(179, 147, 1);
}

.product-details-content-area .customer-review {
    color: #24262b;
    font-size: 12px;
}

.product-details-text .price {
    font-size: 25px;
    color: #641721;
    font-weight: 600;
    margin: 12px 0;
}

.product-details-text .price del {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    opacity: 0.65;
}

.product-details-text p {
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.709);
    margin: 0;
}

.product-details-variable {
    margin: 30px 0 20px 0;
    padding: 30px 0 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.17);
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.product-details-variable .title {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
}

.product-details-variable .product-stock {
    font-size: 15px;
    font-weight: 600;
}

.product-details-variable .product-stock i {
    color: #81ca33;
    opacity: 1;
    margin-right: 4px;
}

.variable-single-item {
    margin-bottom: 20px;
}

.variable-single-item span {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #24262b;
}

.variable-single-item .product-variable-quantity {
    margin-right: 20px;
}

.variable-single-item .product-variable-quantity input {
    width: 90px;
    border: 1px solid rgba(6, 8, 10, 0.2196078431);
    background: rgba(0, 0, 0, 0.0784313725);
    height: 50px;
    padding: 0 12px;
    border-radius: 5px;
    margin-top: 4px;
}

.product-add-to-cart-btn a,
.product-add-to-cart-btn button {
    display: inline-block;
    font-size: 16px;
    background: #ab2138;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: 600;
    padding: 0 20px 0 25px;
}

.product-add-to-cart-btn a i,
.product-add-to-cart-btn button i {
    margin-left: 12px;
    font-size: 13px;
    display: inline-block;
}

.product-details-catagory,
.product-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-details-catagory span,
.product-details-social span {
    margin-right: 15px;
    font-weight: 600 !important;
    text-transform: capitalize;
    font-size: 14px;
}

.product-details-catagory ul,
.product-details-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.product-details-catagory ul li,
.product-details-social ul li {
    position: relative;
    margin-right: 10px;
}

.product-details-catagory ul li a,
.product-details-social ul li a {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.product-details-catagory ul li a:hover,
.product-details-social ul li a:hover {
    color: #ab2138;
}

.ec-single-pro-tab {
    margin-top: 40px;
    line-height: 0;
}

.ec-single-pro-tab .tabs-content {
    padding: 25px;
    border: 2px solid #ab2138;
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
}

.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc {
    line-height: 1.7;
    font-weight: 400;
    font-size: 15px;
}

.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc ul,
.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc ol {
    padding: 0 0 0 20px;
    margin: 0;
}

.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc ul li,
.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc ol li {
    line-height: 1.7;
}

.ec-single-pro-tab .tabs-content .ec-single-pro-tab-desc .ec-single-pro-tab-moreinfo li span {
    margin: 0 25px 0 0;
    min-width: 150px;
    font-size: 15px;
    color: #000000;
    display: inline-block;
    font-weight: 600;
    color: #777;
}

.ec-single-pro-tab .tabs-content .tab-content {
    opacity: 1;
}

.ec-single-pro-tab ul#tabs-nav {
    list-style: none;
    margin: 0;
    background-color: rgba(17, 17, 17, 0.1215686275);
    overflow: auto;
    display: inline-block;
    border-radius: 5px 5px 0 0;
    padding: 0;
}

.ec-single-pro-tab ul#tabs-nav li {
    float: left;
    font-weight: 600;
    margin-right: 2px;
    padding: 25px 15px;
    cursor: pointer;
    font-size: 15px;
    color: #000;
}

.ec-single-pro-tab ul#tabs-nav li a {
    text-decoration: none;
    color: #111;
}

.ec-single-pro-tab ul#tabs-nav li:hover,
.ec-single-pro-tab ul#tabs-nav li.active {
    background-color: #ab2138;
}

.ec-single-pro-tab ul#tabs-nav li:hover a,
.ec-single-pro-tab ul#tabs-nav li.active a {
    color: #fff;
}

.ec-t-review-wrapper .ec-t-review-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ec-t-review-wrapper .ec-t-review-item:not(:last-child) {
    border-bottom: 1px solid rgba(204, 204, 204, 0.3607843137);
    padding-bottom: 25px;
    margin: 0 0 25px;
}

.ec-t-review-wrapper .ec-t-review-item .ec-t-review-avtar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    margin: 0 25px 0 0;
}

.ec-t-review-wrapper .ec-t-review-item .ec-t-review-avtar img {
    max-width: 100%;
    border-radius: 5px;
}

.ec-t-review-wrapper .ec-t-review-item .ec-t-review-name {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    display: block;
    color: #111;
}

.ec-t-review-wrapper .ec-t-review-item p {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}

.ec-ratting-content {
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1098039216);
    margin-top: 30px;
}

.ec-ratting-content h3 {
    font-weight: 600;
    color: #ab2138;
    letter-spacing: -0.2px;
}

.ec-ratting-content .ec-ratting-star {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.ec-ratting-content .ec-ratting-star span {
    margin: 0 10px 0 0;
    font-size: 13px;
    color: rgba(14, 1, 1, 0.8392156863);
    font-weight: 600;
}

.ec-ratting-content .ec-ratting-star .ec-t-review-rating i {
    color: #eb5e28;
    opacity: 0.7;
    margin-right: 2px;
    line-height: 20px;
    font-size: 16px;
}

.ec-ratting-content .ec-ratting-input {
    margin-bottom: 10px;
}

.ec-ratting-content .ec-ratting-input input {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    border: 1px solid rgba(17, 16, 16, 0.13);
    color: #444444;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.07);
    transition: 0.3s linear;
    border-radius: 5px;
}

.ec-ratting-content textarea {
    background: rgba(0, 0, 0, 0.07);
    transition: 0.3s linear;
    border-radius: 5px;
    border: 1px solid rgba(17, 16, 16, 0.13);
    color: #444444;
    height: 150px;
    padding: 20px;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.ec-ratting-content input:focus,
.ec-ratting-content textarea:focus {
    background: #fff;
    transition: 0.3s linear;
    border: 1px solid #ab2138;
}

.section-related {
    border-top: 1px solid rgba(14, 14, 16, 0.1098039216);
    padding: 40px 0;
}

.custom-audio {
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    padding: 25px;
    border-radius: 8px;
    margin-top: 15px;
}

.custom-audio .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.custom-audio audio {
    width: 100%;
}

.share-post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.share-post h4 {
    font-size: 13px;
    margin: 0 13px 0 0;
}

.ec-page-content-filter {
    margin-bottom: 40px;
}

.ec-page-content-filter .product-container {
    box-shadow: 0 8px 14px rgba(17, 17, 17, 0.1098039216);
}

.ec-sidebar-heading h1 {
    text-decoration: none;
    color: #641721;
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 15px;
}

.text-left {
    text-align: left;
}

.ec-sidebar-wrap h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    display: block;
    color: #641721;
}

.ec-sidebar-wrap .ec-sidebar-block:not(:last-child) {
    padding: 20px;
    padding-bottom: 0;
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.ec-sidebar-wrap .ec-sidebar-block button {
    width: 100%;
}

.ec-sidebar-wrap .ec-sb-block-content {
    padding: 0 0 15px 0;
    margin: 0 0 0 0;
    list-style-type: none;
}

.ec-sidebar-wrap .ec-sb-block-content li:not(:last-child) {
    margin-bottom: 10px;
}

.ec-sidebar-wrap .ec-sb-block-content li label {
    font-weight: 500;
    font-size: 16px;
    vertical-align: middle;
    cursor: pointer;
}

.ec-sidebar-wrap .ec-sb-block-content li input[type=checkbox] {
    margin-right: 5px;
    width: 21px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
}

.ec-sidebar-wrap .ec-sb-block-content li input[type=checkbox]:checked {
    background-color: #ab2138;
    border-color: #ab2138;
}

.ec-shop-rightside {
    padding-left: 15px;
}

.ec-shop-rightside .ec-pro-list-top {
    margin-bottom: 25px;
    align-items: flex-end;
    font-size: 14px;
    background: #f7f7f7;
    padding: 9px 15px 9px 15px;
    border: none;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.ec-shop-rightside .ec-pro-list-top .result-count {
    font-size: 16px;
}

.ec-shop-rightside .ec-pro-list-top .ec-sort-select {
    display: inline-flex;
    align-items: center;
}

.ec-shop-rightside .ec-pro-list-top .ec-sort-select .sort-by {
    font-size: 14px;
    color: #777777;
    padding-right: 13px;
}

.ec-shop-rightside .ec-pro-list-top .ec-sort-select select {
    display: block;
    width: 100%;
    height: 37px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
    color: #212529;
    background: #fff;
    padding: 0px 20px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ec-shop-rightside.text-right {
    text-align: right;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
}

.common-top-banner {
    background-color: rgba(52, 116, 212, 0.07);
    padding: 30Px 0 30Px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1098039216);
}

.common-top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.common-top-banner .page-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.139;
    margin-bottom: 0;
    color: #ab2138;
}

.common-top-banner .page-heading span {
    color: #ab2138;
}

.common-top-banner .ec-breadcrumb-list {
    margin: 0 0 0 0;
}

.cartTable {
    display: table;
    margin-bottom: 20px;
    width: 100%;
}

.cartTable .cart__header th {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: #ab2138;
    padding-bottom: 20px;
    text-align: center;
}

.cartTable .cart__header th:first-child {
    text-align: left;
}

.cartTable .cart__header th:last-child {
    text-align: right;
}

.cartTable .cart-list {
    border-top: 3px solid #f6f6f6;
}

.cartTable .cart-list .cart-item:not(:last-child) {
    border-bottom: 2px solid rgba(16, 15, 15, 0.1098039216);
}

.cartTable .cart-list .cart-item:nth-child(2n) {
    background: #fbfbfb;
}

.cartTable .cart-list .cart-item .cart-item-block {
    padding: 20px;
}

.cartTable .cart-list .cart-item .cart-item-block.cart-item-title {
    padding: 0px 20px 0px 20px;
}

.cartTable .cart-list .cart-item .cart-item-figure {
    width: 120px;
}

.cartTable .cart-list .cart-item .cart-item-figure img {
    border-radius: 6px;
    height: 100px;
    max-width: 100px;
    min-width: 100px;
    -o-object-fit: cover;
    padding: 10px;
    object-fit: cover;
    border: 0.5px solid rgba(17, 17, 17, 0.1098039216);
}

.cartTable .cart-list .cart-item-name {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    margin: 0;
}

.cartTable .cart-list .cart-item-name a {
    font-weight: 600;
    color: #000;
}

.cartTable .cart-list .cart-item-name a:hover {
    color: #ab2138;
}

.cartTable .cart-list .cart-item-value {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.cartTable .cart-item-info {
    text-align: center;
}

.cartTable .cart-item-info:last-child {
    text-align: right;
}

.cartTable .cart-item-info .cart-remove {
    background: #fff;
    color: #e22f07;
    border: 1px solid #e22f07;
    height: 35px;
    width: 35px;
    font-size: 12px;
    border-radius: 100%;
    line-height: 32px;
}

.cartTable .cart-item-info .cart-remove:hover {
    background: #e22f07;
    color: #fff;
}

.checkout-row {
    text-align: right;
}

.checkout-row .checkout-section {
    max-width: 450px;
    margin: 25px 0 25px auto;
}

.checkout-row .checkout-section h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
    color: #ab2138;
    margin-bottom: 20px;
}

.checkout-row .checkout-section .cart-totals {
    width: 100%;
    padding: 20px 0;
    list-style-type: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.0705882353);
    padding-bottom: 0;
}

.checkout-row .checkout-section .cart-totals li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.0705882353);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
}

.checkout-row .checkout-section .cart-totals li:first-child {
    padding-top: 0;
    border-top: none;
}

.checkout-row .checkout-section .cart-totals li:last-child strong,
.checkout-row .checkout-section .cart-totals li:last-child span {
    font-weight: 600;
}

.checkout-row .checkout-section .cart-totals li:nth-child(even) {
    background: rgba(241, 241, 241, 0.4705882353);
}

.checkout-row .checkout-section .cart-totals li strong {
    font-size: 16px;
    font-weight: 500;
}

.checkout-row .checkout-section .cart-totals li span {
    font-weight: 600;
}

.checkout-row .checkout-section .btn {
    margin-top: 15px;
    width: 100%;
}

.section-sm.section__cart--detail {
    margin-bottom: 40px;
}

.layout-cart {
    top: 100px;
    position: sticky;
}

.layout-cart .btn {
    width: 100%;
}

.optimizedCheckout {
    background-color: #fff;
    border: #ddd 1px solid;
    border-radius: 5px;
    border-bottom: none;
}

.optimizedCheckout:not(:last-child) {
    margin-bottom: 25px;
}

.optimizedCheckout .cart-header {
    padding: 15px 25px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.optimizedCheckout .cart-header h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: #ab2138;
}

.optimizedCheckout .optimizedCheckout-cart-item .cart-items {
    padding: 15px 15px 12px 15px;
}

.optimizedCheckout .optimizedCheckout-cart-item .cart-items img {
    margin: 0;
    padding-right: 20px;
    width: 80px;
}

.optimizedCheckout .optimizedCheckout-cart-item .cart-items .cart-items-content {
    padding-left: 0;
    font-weight: 600;
    font-size: 15px;
}

.optimizedCheckout .payment_methods-wrap {
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 12px 15px 15px 5px;
    border-radius: 0 0 5px 5px;
    list-style: none;
}

.optimizedCheckout .payment_methods-wrap li {
    padding: 8px 8px 0px 15px;
    font-size: 15px;
}

.optimizedCheckout .payment_methods-wrap li input[type=radio] {
    margin-right: 8px;
}

.optimizedCheckout .cart-totals {
    background: #ab2138;
    color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 5px 18px;
    border-radius: 0 0 5px 5px;
}

.optimizedCheckout .cart-totals li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
}

.optimizedCheckout .cart-totals li strong {
    font-weight: 500;
}

.optimizedCheckout .cart-totals li span {
    font-weight: 600;
    font-size: 16px;
}

.row-checkout-wrap {
    background: rgba(52, 116, 212, 0.0392156863);
    border: 2px solid rgba(0, 0, 0, 0.031372549);
    padding: 30px;
    padding-bottom: 25px;
    margin-right: 15px;
    border-radius: 4px;
}

.row-checkout-wrap:not(:last-child) {
    margin-bottom: 25px;
}

.row-checkout-wrap .checkout-title {
    font-size: 25px;
    font-weight: 700;
    color: #ab2138;
    margin-bottom: 24px;
}

.row-checkout-wrap label {
    margin-bottom: 12px;
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    letter-spacing: -0.2px;
}

.row-checkout-wrap input,
.row-checkout-wrap select {
    height: 48px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1098039216);
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    -webkit-appearance: auto;
    border-radius: 4px;
}

.row-checkout-wrap .form-group {
    margin-bottom: 15px;
}

.wc-account-wrap {
    margin-bottom: 40px;
}

.wc-account-wrap-inner {
    background: #fff;
    border: 2px solid rgba(102, 102, 102, 0.1);
    border-radius: 3px;
    display: flex;
}

.wc-account-wrap-inner .wc-account-nav {
    text-align: center;
    width: 300px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 300px;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 30%;
    background: #fff;
    border-right: 2px solid rgba(102, 102, 102, 0.1);
}

.wc-account-wrap-inner .wc-account-nav .my-account-profile {
    position: relative;
    padding: 25px 0 25px 0;
    text-align: center;
}

.wc-account-wrap-inner .wc-account-nav .my-account-profile .avatar {
    position: relative;
    border-radius: 50%;
    width: 80px;
    margin: 0 auto;
}

.wc-account-wrap-inner .wc-account-nav .my-account-profile .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin: 10px 0 0;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation {
    padding: 0 0 0 0;
    text-align: left;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul {
    margin: 0;
    padding: 0;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li {
    list-style: none;
    margin: 0;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(7, 6, 6, 0.7215686275);
    padding: 13px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li a i {
    margin-right: 8px;
    opacity: 0.4;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li:last-child a {
    border-bottom: none;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li:hover>a,
.wc-account-wrap-inner .wc-account-nav .account-navigation ul li.active>a {
    background: rgba(241, 241, 241, 0.5882352941);
    color: #ab2138;
    font-weight: 600;
}

.wc-account-wrap-inner .wc-account-nav .account-navigation ul li:hover>a i,
.wc-account-wrap-inner .wc-account-nav .account-navigation ul li.active>a i {
    opacity: 1;
}

.wc-account-wrap-inner .wc-account-nav .btn-red {
    width: calc(100% - 50px);
    margin: 20px 25px 25px 25px;
}

.wc-account-wrap-inner .wc-account-nav .btn-red i {
    margin-right: 8px;
}

.wc-account-wrap-inner .wc-account-container {
    padding: 25px 30px;
    flex: 2;
}

.wc-account-wrap-inner .wc-account-container .message--info {
    font-size: 15px;
    margin-bottom: 30px;
}

.wc-account-wrap-inner .wc-account-container .message--info a {
    font-weight: 600;
    display: inline-block;
    margin: 0 5px;
}

.wc-account-wrap-inner .wc-account-container .cartTable {
    margin-bottom: 0;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart__header th {
    font-weight: 600;
    font-size: 14px;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart__header th:last-child {
    text-align: center;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-block {
    padding: 10px 0;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-block span {
    text-transform: capitalize;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-block span.status {
    font-size: 12px;
    font-weight: 600;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-block .btn-small {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-list .cart-item-name a,
.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-value {
    font-weight: 500;
    font-size: 15px;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-name__label {
    opacity: 0.85;
}

.wc-account-wrap-inner .wc-account-container .cartTable .cart-item-info:last-child {
    text-align: center;
}

.wc-account-wrap-inner .status {
    color: #fff;
    font-weight: 600;
    padding: 7px 14px;
    font-size: 10px;
    border-radius: 17px;
}

.wc-account-wrap-inner .status.status-hold {
    background: rgba(0, 0, 0, 0.3019607843);
}

.wc-account-wrap-inner .status.status-complete {
    background: #641721;
}

.wc-account-wrap-inner .status.status-pending {
    background: #EFA13C;
}

.wc-account-wrap-inner .content-title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    color: #ab2138;
}

.wc-account-wrap-inner .content-title .status {
    margin-left: 12px;
}

.wc-account-wrap-inner .block-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784);
    padding-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.11px;
    opacity: 0.95;
    margin-bottom: 15px;
}

.wc-account-wrap-inner .block-content {
    display: flex;
    justify-content: space-between;
}

.wc-account-wrap-inner .block-content .box-information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.wc-account-wrap-inner .block-content .box-information a.edit {
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    font-weight: 600;
}

.wc-account-wrap-inner .block-content .box-content {
    color: #686B6F;
    margin-right: 30px;
    line-height: 1.8;
    font-size: 15px;
}

.wc-account-wrap-inner .block-content .box-content a {
    color: #686B6F;
}

.wc-account-wrap-inner .block-content .box-content span {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.8392156863);
}

.wc-account-wrap-inner .block-content .box-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.wc-account-wrap-inner .block.block-dashboard-info:not(:last-child) {
    margin-bottom: 25px;
}

.wc-account-wrap-inner .block.block-dashboard-info input[type=checkbox] {
    height: auto;
}

.wc-account-wrap-inner .form-column {
    background: none;
    padding: 0;
    border: none;
    margin: 0;
}

.wc-account-wrap-inner .form-column .form-column-body {
    margin-top: 0;
}

.wc-account-wrap-inner .form-column .form-column-body .btn {
    width: auto !important;
}

.wc-account-wrap-inner .order-details {
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 0 0 0;
    margin-top: -15px;
    margin-bottom: 30px;
}

.wc-account-wrap-inner .order-details table thead tr th,
.wc-account-wrap-inner .order-details table tfoot tr th {
    padding: 0px 20px 10px 20px;
    font-size: 15px;
    font-weight: 500;
}

.wc-account-wrap-inner .order-details table thead tr td,
.wc-account-wrap-inner .order-details table tfoot tr td {
    font-weight: 600;
}

.wc-account-wrap-inner .order-details table tr td {
    padding: 10px 20px;
    font-size: 15px;
}

.wc-account-wrap-inner .order-details tfoot {
    background: #3474d4;
    color: #fff;
}

.wc-account-wrap-inner .order-details tfoot tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.231372549);
}

.wc-account-wrap-inner .order-details tfoot tr th {
    font-weight: 600;
}

.wc-account-wrap-inner .address address {
    color: #686B6F;
    margin-right: 30px;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 1270px) {
    .navigation .menuWrap>ul>li {
        padding: 15px 10px 11px 10px;
    }

    .navigation .menuWrap>ul>li>a {
        font-size: 14px;
    }
}

@media (max-width: 1140px) {
    .slider-nav .owl-nav {
        position: absolute;
        right: 15px;
        top: -15%;
    }

    .site-header {
        position: relative;
    }

    .site-header .header-right .login {
        margin-left: 0;
    }

    .site-header .container {
        padding: 0;
    }

    .site-header .etn-header-btn {
        font-size: 0;
    }

    .site-header .etn-header-btn-menubar {
        display: block;
    }

    .site-header .etn-header-btn-menubar i {
        margin-right: 0;
    }

    .site-header .etn-header-bottom {
        padding: 10px 20px 100px 20px;
        position: relative;
    }

    .site-header .etn-header-bottom .header-logo {
        transform: translateX(35%);
        top: 0;
    }

    .site-header .etn-header-btn-email {
        display: none;
    }

    .site-header .header-search {
        position: absolute;
        max-width: inherit;
        width: 100%;
        top: 120%;
        left: 0;
    }

    .site-header .header-search input {
        min-height: 43px;
        height: 43px;
        padding: 10px 55px 10px 15px;
        font-size: 14px;
        display: block;
        width: 100%;
        min-height: 45px;
        height: 45px;
        padding: 10px 55px 10px 15px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #777;
        border-radius: 0;
        border: 1px solid #ab2138;
        border-radius: 5px;
        letter-spacing: 0.5px;
    }

    .site-header .header-search .submit {
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 45px;
        height: 100%;
        background: #ab2138;
        color: #fff;
        font-size: 16px;
        border-radius: 0 5px 5px 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0;
        border: none;
        padding: 0;
    }

    .site-header .header-search .submit i {
        color: #fff;
    }

    .banner__slider {
        margin-top: 0;
    }

    .navigation {
        overflow-y: auto;
        left: -100%;
        width: 100%;
        top: 0;
        z-index: 2;
        position: fixed;
        margin: 0;
        max-width: 300px;
        z-index: 100;
        height: 100vh;
        background: #ab2138;
        transition: 0.4s linear;
    }

    .navigation .container {
        padding: 0;
    }

    .navigation .menuWrap>ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
    }

    .navigation .menuWrap>ul>li {
        padding: 0 !important;
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
    }

    .navigation .menuWrap>ul>li.megamenu-trigger>span {
        display: block;
    }

    .navigation .menuWrap>ul>li.megamenu-trigger a span {
        position: absolute;
        right: 10px;
        top: 15px !important;
        display: none !important;
    }

    .navigation .menuWrap>ul>li.dropdown-active:hover>ul,
    .navigation .menuWrap>ul>li.dropdown-active:hover>div {
        position: static;
        top: 0;
    }

    .navigation .menuWrap>ul>li.dropdown-active>ul {
        position: static;
        display: block;
    }

    .navigation .menuWrap>ul>li.dropdown-active>div {
        display: block !important;
        position: static;
        opacity: 1;
        visibility: visible;
        top: 0;
    }

    .navigation .menuWrap>ul>li>span {
        position: absolute;
        right: 0 !important;
        top: 0 !important;
        color: #fff;
        font-size: 12px;
        cursor: pointer;
        display: block !important;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
    }

    .navigation .menuWrap>ul>li>ul {
        background: #641721;
        list-style-type: none;
        padding: 0;
        transition: 0.3s ease-in;
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        display: none;
    }

    .navigation .menuWrap>ul>li>ul>li {
        padding: 10px 12px 11px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2117647059);
    }

    .navigation .menuWrap>ul>li>ul>li>a {
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0;
        text-transform: capitalize;
        color: #fff;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 0;
    }

    .navigation .menuWrap>ul>li>ul>li:hover>a {
        color: #fff;
        opacity: 0.65;
    }

    .navigation .menuWrap>ul>li>a {
        height: 100%;
        padding: 10px 15px !important;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0;
        text-transform: capitalize;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        flex-wrap: wrap;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .navigation .menuWrap>ul>li>a span {
        display: none !important;
    }

    .navigation .menuWrap>ul>li:hover {
        background: #641721;
    }

    .navigation .menuWrap>ul>li:hover>ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .navigation .menuWrap>ul>li:hover>a {
        color: #fff;
    }

    .navigation .menuWrap>ul>li .megamenu {
        opacity: 1;
        padding: 20px 0 0 0;
        visibility: visible;
        display: none;
        position: relative;
        box-shadow: none;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid {
        display: block;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col {
        margin: 0;
        padding: 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col h3 {
        padding: 10px;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col span {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        color: #ab2138;
        cursor: pointer;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col:first-child {
        padding-top: 0;
        border-top: none;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col:first-child h3 {
        padding-top: 0;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col:first-child span {
        top: -15px;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col h3 {
        margin-bottom: 0;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col .category-title a {
        padding-right: 0px;
        font-size: 16px;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col ul {
        display: none;
        background: rgba(0, 0, 0, 0.0784313725);
        padding-top: 10px;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col ul li {
        padding: 0;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col ul li>a {
        margin: 7px 20px;
        display: inline-block;
    }

    .navigation .menuWrap>ul>li .megamenu .container .grid .megamenu-col.megamenu-active ul {
        display: block;
    }

    body.header-sticky .site-header {
        position: fixed;
        top: 0;
        left: 0;
        transition: 0.3s linear;
        z-index: 3;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.231372549);
    }

    body.header-sticky .site-header .etn-header-bottom {
        padding: 10px 20px 25px 15px;
    }

    body.header-sticky .site-header .etn-header-bottom .header-right .header-search {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-nav .owl-carousel {
        margin: 0;
    }

    .slider-nav .owl-carousel .owl-nav {
        top: -15%;
    }

    .site-header .etn-header-bottom {
        padding: 10px 20px 90px 15px;
        position: relative;
    }

    .site-header .etn-header-bottom .header-logo a img {
        width: 85px;
    }

    .wc-account-wrap-inner .wc-account-container {
        padding: 20px 25px;
        padding-bottom: 10px;
        flex: 2;
    }

    .wc-account-wrap-inner .wc-account-container .message--info {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .account-content .cartTable .cart__header {
        display: none;
    }

    .account-content .cartTable .cart-list {
        border-top: none;
    }

    .account-content .cartTable .cart-list tr,
    .account-content .cartTable .cart-list td {
        display: block;
    }

    .account-content .cartTable .cart-list tr {
        border-bottom: none !important;
    }

    .account-content .cartTable .cart-list tr:nth-child(2n) {
        margin: 5px 0 10px 0;
        background: rgba(0, 0, 0, 0.0705882353);
    }

    .account-content .cartTable .cart-list td {
        text-align: right;
        padding: 8px 10px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .account-content .cartTable .cart-list td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        font-size: 13px;
        text-transform: uppercase;
        color: #3474d4;
    }

    .account-content .cartTable .cart-list td:last-child {
        border-bottom: none;
        text-align: right !important;
    }

    .account-content .cartTable .cart-list td span.status {
        margin: 6px 0 !important;
        display: inline-block !important;
    }

    .wc-account-wrap-inner {
        display: block;
    }

    .wc-account-wrap-inner .wc-account-nav .my-account-profile {
        padding: 20px 0 20px 0;
    }

    .wc-account-wrap-inner .wc-account-nav .my-account-profile .avatar {
        display: flex;
        margin: 0 0 0 10px;
        align-items: center;
    }

    .wc-account-wrap-inner .wc-account-nav .my-account-profile .avatar img {
        margin-right: 12px;
        width: 60px;
    }

    .wc-account-wrap-inner address {
        margin: 0;
    }

    .wc-account-wrap-inner .wc-account-nav {
        width: 100%;
        max-width: inherit;
        border-right: none;
        border-bottom: 2px solid rgba(102, 102, 102, 0.1);
    }

    .form-column {
        padding: 25px;
    }

    .form-column .form-title {
        font-size: 25px;
    }

    .common-top-banner .container {
        display: block;
        width: 100%;
        text-align: center;
    }

    .common-top-banner .page-heading {
        padding-top: 8px;
        font-size: 25px;
    }

    .common-top-banner .ec-breadcrumb-list {
        text-align: center;
        justify-content: center;
    }

    .ec-sidebar-heading {
        background: #ab2138;
    }

    .ec-sidebar-heading h1 {
        color: #fff;
        padding: 15px 0px;
        text-align: center;
        cursor: pointer;
        font-size: 16px;
        margin: 0;
    }

    .ec-sidebar-wrap {
        display: none;
    }

    .ec-shop-rightside {
        padding: 15px 0 0 0;
    }

    .container {
        padding: 0 20px;
    }

    .row-checkout-wrap {
        margin-right: 0;
        padding: 25px;
        padding-bottom: 10px;
    }

    .cart-content table .cart__header tr {
        display: none;
    }

    .cart-content table .cart__header tr th {
        display: none;
    }

    .cart-content table .cart-list {
        border-top: none;
    }

    .cart-content table .cart-list tr {
        border-bottom: none !important;
        display: block;
        margin-bottom: 0;
    }

    .cart-content table .cart-list tr:nth-child(even) {
        background: #000;
    }

    .cart-content table .cart-list tr td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 0.8em;
        text-align: right;
        padding: 13px 10px !important;
    }

    .cart-content table .cart-list tr td h2 {
        font-size: 16px;
    }

    .cart-content table .cart-list tr td .cart-item-value {
        font-weight: 500 !important;
    }

    .cart-content table .cart-list tr td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        font-size: 15px;
        text-transform: uppercase;
        color: #3474d4;
    }

    .cart-content table .cart-list tr .cart-item-figure {
        width: 100% !important;
    }

    .cart-content table .cart-list tr .cart-item-figure img {
        margin-left: auto;
    }

    .layout-cart {
        margin-top: 25px;
    }

    .ec-single-pro-tab {
        margin-top: 30px;
    }

    .single-pro-desc {
        padding: 25px 0 0 0;
        position: static;
        top: 100px;
    }

    .single-pro-desc .ec-single-title {
        font-size: 25px;
        margin: 0 0 8px 0;
        font-weight: 700;
    }

    .single-pro-desc p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-pro-desc .ec-single-price-stoke {
        margin-top: 20px;
    }

    .single-pro-desc .ec-single-qty {
        padding-top: 5px;
    }

    .single-pro-desc .ec-single-price-stoke .ec-single-ps-title {
        font-size: 13px;
        margin-bottom: 5px;
        letter-spacing: 0;
    }

    .single-pro-desc .ec-single-price-stoke span.new-price {
        font-size: 20px;
    }

    .rrb_catgory_title_slug {
        margin-bottom: 20px;
    }

    .rrb_catgory_title_slug h3 {
        font-size: 25px;
    }

    .section-sm.advertisement__section {
        margin-bottom: 30px;
    }

    .section-sm {
        margin-top: 30px;
    }

    .icon-boxes-container {
        padding: 25px 0 10px 0;
    }

    .icon-boxes-container .col-md-4:last-child .icon-box-side {
        padding-bottom: 0;
        border-bottom: none;
    }

    .icon-boxes-container .icon-box-side {
        display: flex;
        align-items: center;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.0588235294);
        margin-bottom: 18px;
    }
}

@media (max-width: 600px) {
    .footer-link-wrap {
        grid-column: span 6;
    }

    .footer-logo-wrap {
        grid-column: span 12;
        order: -1;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.0705882353);
    }

    .footer-links .social-media a {
        color: #fff;
        height: 35px;
        width: 35px;
        font-size: 14px;
        margin-right: 8px;
        background: #ab2138;
    }

    .footer-links .social-media a:hover {
        color: #fff;
        opacity: 0.5;
    }
}

@media (max-width: 575px) {
    .wc-account-wrap-inner {
        display: block;
    }

    .wc-account-wrap-inner .block-dashboard-info:not(:last-child) {
        margin-bottom: 10px !important;
    }

    .wc-account-wrap-inner .wc-account-container {
        padding: 20px 22px;
    }

    .wc-account-wrap-inner .block-content {
        display: block;
    }

    .wc-account-wrap-inner .block-content .box-content {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .ofr-img {
        min-height: 240px;
    }

    .ofr-img .ec-offer-content .ec-offer-stitle {
        font-size: 13px;
        font-weight: 700;
        font-style: italic;
    }

    .ofr-img .ec-offer-content .ec-offer-content-inner {
        text-align: left;
        align-items: flex-start;
        width: 100%;
        padding-left: 15px;
    }

    .ofr-img .ec-offer-content .ec-offer-title {
        font-size: 25px;
    }

    .ofr-img .ec-offer-content .ec-offer-desc {
        font-size: 13px;
        margin: 0 40px 20px 0;
        padding-right: 100px;
        line-height: 1.5;
    }

    .section-sm {
        margin-top: 25px;
    }

    .section-sm.advertisement__section {
        margin-bottom: 25px;
    }

    .icon-boxes-container {
        margin-top: 25px;
    }

    .banner__slider .banner {
        position: relative;
        padding: 20px;
        padding-bottom: 20px;
        padding-bottom: 0;
    }

    .banner__slider .banner a {
        height: 350px;
    }

    .banner__slider .banner .banner-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .site-header .etn-header-bottom .header-logo {
        transform: translateX(20%);
    }

    .rrb_catgory_title_slug h3 {
        font-size: 21px;
    }

    .footer-logo img {
        width: 80px;
        margin: auto;
    }

    .last-footer .payments {
        order: -1;
        text-align: center;
        margin: 0 10px 10px 0;
    }

    .last-footer .justify-content-between {
        justify-content: center !important;
    }

    .site-header .etn-header-bottom .header-logo a img {
        width: 88px;
    }

    .site-header .etn-header-btn-menubar {
        display: block;
        margin-top: auto;
    }

    .site-header .header-right {
        margin-top: auto;
    }

    .site-header .header-right a {
        margin-left: 12px;
    }

    .site-header .header-right a img {
        width: 20px;
    }

    .cart-content table.cartTable .cart__header tr {
        display: none;
    }

    .cart-content table.cartTable .cart__header tr th {
        display: none;
    }

    .cart-content table.cartTable .cart-list {
        border-top: none;
    }

    .cart-content table.cartTable .cart-list tr {
        border-bottom: none !important;
        display: block;
        margin-bottom: 0;
    }

    .cart-content table.cartTable .cart-list tr td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 0.8em;
        text-align: right;
        padding: 13px 10px !important;
    }

    .cart-content table.cartTable .cart-list tr td h2 {
        font-size: 16px;
    }

    .cart-content table.cartTable .cart-list tr .cart-item-figure {
        width: 100% !important;
    }

    .cart-content table.cartTable .cart-list tr .cart-item-figure img {
        border-radius: 6px;
        height: 80px;
        max-width: 80px;
        min-width: 80px;
        padding: 5px;
    }

    .ec-single-pro-tab .tabs-content {
        padding: 20px 20px;
    }

    .ec-single-pro-tab ul#tabs-nav li {
        padding: 20px 12px;
        font-size: 14px;
    }

    .single-pro-desc .ec-pro-variation-inner {
        display: block;
    }

    .single-pro-desc .ec-pro-variation-inner div {
        margin-bottom: 8px;
    }

    .single-pro-desc .ec-pro-variation-inner {
        padding: 12px 0 12px 0;
        margin: 20px 0;
    }

    .site-header .ec-header-bottom .container .row .d-flex .header-logo {
        left: 48%;
        transform: translateX(-50%);
    }

    .banner__slider .banner a {
        height: 300px;
    }

    .banner__slider .banner .banner-content h2 {
        font-size: 25px;
    }

    .site-header .ec-header-bottom .container .row .d-flex .header-logo a img {
        width: 120px;
    }

    .site-header .ec-header-bottom .container .header-search {
        margin-top: 55px;
    }

    .site-header .ec-header-bottom .container .header-search .form-control {
        min-height: 43px;
        height: 43px;
        padding: 10px 55px 10px 15px;
        font-size: 14px;
    }

    .site-header .ec-header-bottom .ec-header-bottons .ec-header-btn:not(:first-child) {
        margin-left: 15px;
    }

    .site-header .ec-header-btn {
        top: 5px;
        left: 13px;
    }

    .site-header .ec-header-bottons {
        right: 11px;
    }

    .icon-box-icon {
        font-size: 24px;
        margin: 0 15px 0 0;
    }

    .slider-nav .item {
        padding: 0 0 0 12px;
    }

    .slider-nav .owl-carousel {
        margin: 0;
    }

    .slider-nav .owl-carousel .owl-nav {
        top: -14%;
    }

    .slider-nav .owl-carousel .owl-nav button {
        background: none;
        height: 30px;
        margin-left: 9px;
        width: 30px;
        font-size: 9px !important;
    }
}

@media (max-width: 400px) {
    .header-logo {
        left: 48%;
        transform: translateX(-65%);
    }
}

.mobile-menu-active .navigation {
    left: 0;
    transition: 0.4s linear;
}

.mobile-menu-active .black-overlay {
    display: block;
    transition: 0.4s linear;
}