/******************************

INDEX:

    00 - Base - Typography
    01 - Base - Variables
    02 - Base - Mixins

    03 - Utilities - Helper
    04 - Utilities - Color

    10 - Components - Button
    11 - Components - Slider
    12 - Components - Animation
    13 - Components - Navigation
    14 - Components - Banner
    15 - Components - Product
    16 - Components - Shipping
    17 - Components - Product Tab
    18 - Components - Form
    19 - Components - Social Link
    20 - Components - Modal
    21 - Components - Brand
    22 - Components - Breadcrumb

    25 - Section - Header
    26 - Section - Footer

    29 - Pages - Shop
    30 - Pages - Single Product
    31 - Pages - Blog
    32 - Pages - My Account
    33 - Pages - Login | Register
    34 - Pages - Wishlist
    35 - Pages - Cart
    36 - Pages - Checkout
    37 - Pages - Compare
    38 - Pages - Contact
    39 - Pages - About Us
    40 - Pages - FAQ
    41 - Pages - 404

******************************/
/*
    Primary Color:            #ffc400;
    Body Text Color:          #999999;
    Heading Color:            #333333;
    Border Color:             #e5e5e5;
    Body Font Family:         'Work Sans', sans-serif;

*/
@import url("https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700,800,900&display=swap");
/*----------------------------------------*/
/*  00 - Base - Typography
/*----------------------------------------*/
body {
  font-family: "Work Sans", sans-serif;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  color: #333333;
  line-height: 1;
  font-weight: 700;
}

p {
  font-family: "Work Sans", sans-serif;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input {
  color: #888888;
}

input::-webkit-input-placeholder {
  color: #888888;
}

input::-moz-placeholder {
  color: #888888;
}

input:-ms-input-placeholder {
  color: #888888;
}

input::-ms-input-placeholder {
  color: #888888;
}

input::placeholder {
  color: #888888;
}

._keyfocus :focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
  outline: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.img-full {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

a {
  color: #999999;
}
a:hover {
  color: #ffc400 !important;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
  color: #ffc400;
}

a,
a:hover,
a:focus,
a:active,
button,
button:focus,
input,
select,
textarea,
.slick-slide {
  outline: none;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  outline: none;
  background: transparent;
}

/* ---Uren's Blog Section Default Youtube & Soundcloud Height--- */
.grid-view_area .embed-responsive:before {
  padding-top: 64.5%;
}

.column-three_area .embed-responsive:before {
  padding-top: 64.5%;
}

/*----------------------------------------*/
/*  03 - Utilities - Helper
/*----------------------------------------*/
/* ---Uren's Custom Container--- */
.container-fluid {
  padding: 0 75px;
}
@media (max-width: 1599px) {
  .container-fluid {
    padding: 0 30px;
  }
}

/* ---Uren's Preloader---*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 9999999999999;
}
.loading .middle {
  position: absolute;
  top: 50%;
  width: 100%;
}
.loading .middle .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.loading .middle .lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffc400;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading .middle .lds-ellipsis div:nth-child(1) {
  left: 6px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(2) {
  left: 6px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(3) {
  left: 26px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.loading .middle .lds-ellipsis div:nth-child(4) {
  left: 45px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}
/* ---Uren's Product Sticker---*/
.sticker,
.sticker-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 20px;
  line-height: 21px;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  background: #ffc400;
  color: #ffffff;
  text-transform: uppercase;
  cursor: text;
  font-weight: 700;
}

.sticker-area-2 .sticker-2 {
  background: #ff4000;
  top: 0;
}
.sticker-area-2 .sticker-2:before {
  border-color: #ff4000 transparent transparent transparent;
}
.sticker-area-2 .sticker {
  top: 30px;
}

/* ---Uren's Section Title--- */
.section-title_area {
  text-align: center;
  margin: 0 auto;
}
.section-title_area > span {
  padding-bottom: 10px;
  display: block;
  font-size: 16px;
}
.section-title_area > h3 {
  font-size: 30px;
  margin-bottom: 0;
  padding-bottom: 50px;
  font-weight: 600;
}
@media (max-width: 479px) {
  .section-title_area > h3 {
    font-size: 22px;
  }
}
.section-title_area.bg--white {
  padding-top: 55px;
}

/* ---Uren's Spacing Between Slide Item & Other Related Stuff---*/
.slick-gutter-30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.slick-gutter-30 .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

/* ---Slick Disabled Cursor Point--- */
.slick-disabled {
  cursor: not-allowed !important;
}

/* ---Only For Single Product Page | Spacing Between Slide Item--- */
.sp-images .slick-list {
  margin-left: 0;
}
.sp-images .slick-list .slick-slide {
  margin-left: 0;
}

/* ---Uren's Spacing Between Two Row---*/
.best-selling_slider .slick-active div:first-child .product-slide_item {
  border-bottom: 1px solid #e5e5e5;
}

/* ---Tab Content & Pane Fix--- */
.tab-content {
  width: 100%;
}
.tab-content .tab-pane {
  display: block;
  height: 0;
  max-width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}
.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/* ---Uren's Rating Box Empty Star Color--- */
.rating-box > ul > li > i {
  color: #ffc400;
  font-size: 16px;
}
.rating-box > ul > li.silver-color > i {
  color: #bababa !important;
}

/* ---Uren's Global Overlay--- */
.global-overlay {
  background-color: rgba(51, 51, 51, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  visibility: hidden;
}
.global-overlay.overlay-open {
  visibility: visible;
}

/* ---Uren's Tag--- */
.uren-tags_list li {
  display: inline-block;
  margin-bottom: 5px;
}
.uren-tags_list li a {
  font-size: 14px;
  border: 1px solid #e5e5e5;
  padding: 5px 15px;
  display: block;
  line-height: 20px;
}
.uren-tags_list li a:hover {
  color: #ffffff !important;
  background-color: #ffc400;
  border-color: #ffc400;
}

/* ---Uren's Pagination--- */
.uren-paginatoin-area {
  padding-top: 30px;
  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;
}
.uren-paginatoin-area .uren-pagination-box {
  padding: 10px 0;
  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;
  border-radius: 5px;
}
.uren-paginatoin-area .uren-pagination-box li {
  display: inline-block;
}
.uren-paginatoin-area .uren-pagination-box li > a {
  color: #333333;
  padding: 0 25px;
  display: block;
}
@media (max-width: 479px) {
  .uren-paginatoin-area .uren-pagination-box li > a {
    padding: 0 15px;
  }
}
.uren-paginatoin-area .uren-pagination-box.carlet-color {
  border: 2px solid #e52e06;
}
.uren-paginatoin-area .uren-pagination-box.carlet-color > li:last-child > a {
  border-right: 0;
}
.uren-paginatoin-area .uren-pagination-box.carlet-color > li.active > a {
  color: #e52e06;
}
.uren-paginatoin-area .uren-pagination-box.carlet-color > li > a {
  border-right: 1px solid #e52e06;
}
.uren-paginatoin-area .uren-pagination-box.carlet-color > li > a:hover {
  color: #e52e06 !important;
}
.uren-paginatoin-area .uren-pagination-box.primary-color {
  border: 2px solid #ffc400;
}
.uren-paginatoin-area .uren-pagination-box.primary-color > li:last-child > a {
  border-right: 0;
}
.uren-paginatoin-area .uren-pagination-box.primary-color > li.active > a {
  color: #ffc400;
}
.uren-paginatoin-area .uren-pagination-box.primary-color > li > a {
  border-right: 1px solid #ffc400;
}
.uren-paginatoin-area .uren-pagination-box.primary-color > li > a:hover {
  color: #ffc400 !important;
}

/* ---Uren's ScrollUp--- */
#scrollUp {
  background-color: #e52e06;
  color: #ffffff !important;
  text-transform: uppercase;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  overflow: hidden;
  border-radius: 100%;
  z-index: 1000 !important;
}
#scrollUp:hover {
  background-color: #ffc400;
}
#scrollUp:hover > i {
  -webkit-animation: alisSlideInUp 1s infinite;
          animation: alisSlideInUp 1s infinite;
}

/* ---Uren's Tooltip--- */
.tooltip {
  z-index: 10;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0 8px;
  height: 30px;
  line-height: 27px;
  color: #fff;
  text-align: center;
  border-radius: 0.25rem;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
  content: "";
  border-width: 5px 5px 0;
}

/* ---Uren's Quantity--- */
.quantity .cart-plus-minus {
  position: relative;
  width: 76px;
  text-align: left;
}
.quantity .cart-plus-minus > .cart-plus-minus-box {
  border: 1px solid #e5e5e5;
  height: 46px;
  text-align: center;
  width: 48px;
  background: #ffffff;
}
.quantity .cart-plus-minus > .qtybutton {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
  height: 23px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 28px;
  line-height: 21px;
}
.quantity .cart-plus-minus > .qtybutton:hover {
  background: #ebebeb;
}
.quantity .cart-plus-minus > .qtybutton.dec {
  bottom: 0;
  right: 0;
}
.quantity .cart-plus-minus > .qtybutton.inc {
  border-bottom: none;
  top: 0;
  right: 0;
}

/* ---Uren's  Nice Select Customization--- */
.myniceselect.nice-select {
  padding: 0;
  margin: 0;
  height: auto;
  line-height: auto;
}
.myniceselect.nice-select span {
  height: 30px;
  line-height: 30px;
  display: inline-block;
  padding: 0 60px;
}
.myniceselect.nice-select .list {
  width: 100%;
}

/* ---Base Transition--- */
.error404-area .search-error-wrapper .uren-error_btn, .about-us-area .overview-content > h2:before, .contact-main-page .contact-form-content .contact-form .form-group .uren-contact-form_btn, .compare-table .table tbody tr, .order-button-payment input, .coupon-accordion .coupon-content .coupon-info p.form-row input[type=submit], .coupon-accordion span, .cart-page-total a, .coupon-all .coupon input.button,
.coupon-all .coupon2 input.button, .table-content table td.uren-cart_btn a, .uren-login_btn,
.uren-register_btn, .login-form .check-box input[type=checkbox] + label:after, .login-form .check-box input[type=checkbox] + label:before, .myaccount-tab-content, .uren-blog-details .uren-tag-line a, .sp-gallery_area .sp-nav .sp-gallery .lg-image, .sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide .single-product .product-img > a .secondary-img, .sp-area .sp-nav .sp-content .qty-btn_area > ul li > a, .sp-area .sp-nav .sp-img_slider-nav .slick-slide img, .shop-product-wrap > [class*=col-], .shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img > a .secondary-img, .header-right_area > ul > li.minicart-wrap, .header-top_area .ht-menu > ul > li .ht-dropdown, .header-top_area .main-menu_area > nav > ul > li.megamenu-holder .hm-megamenu, .header-top_area .main-menu_area > nav > ul > li > ul > li > a > i, .header-top_area .main-menu_area > nav > ul > li .hm-dropdown, .slider-navigation_style-4 .slick-arrow, .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown > li, .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown, .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li, .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide img, .modal-wrapper .modal-dialog .modal-content .modal-body .close, .modal-wrapper.modal, .newsletter-form_wrap .subscribe-form .newsletter-btn, .special-product_slider .slide-item .inner-slide .single-product .product-img > a .secondary-img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img > a .secondary-img, .product-slide_item .inner-slide .single-product .product-content, .product-slide_item .inner-slide .single-product .product-img .add-actions > ul li > a, .product-slide_item .inner-slide .single-product .product-img .add-actions, .product-slide_item .inner-slide .single-product .product-img > a .secondary-img, .product-slide_item .inner-slide .single-product, .cat-dropdown, .cat-mega-menu, .category-menu .category-menu-list > ul > li.right-menu > a:after, .offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_img, .offcanvas-menu_wrapper .offcanvas-menu-inner, .offcanvas-navigation .mobile-menu li > .menu-expand, .btn-close > i, .btn-close, .mobile-menu_wrapper.open .offcanvas-menu-inner,
.offcanvas-minicart_wrapper.open .offcanvas-menu-inner,
.offcanvas-search_wrapper.open .offcanvas-menu-inner, .mobile-menu_wrapper .offcanvas-menu-inner,
.offcanvas-minicart_wrapper .offcanvas-menu-inner,
.offcanvas-search_wrapper .offcanvas-menu-inner, .main-slider .slick-dots li, .uren-btn,
.uren-btn-2,
.uren-banner_btn,
.uren-btn-bondi_blue,
.uren-btn_fullwidth,
.uren-compare_btn,
.uren-filter_btn,
.uren-btn_dark,
.uren-btn_limerick, .popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form button, .popup_wrapper .test .popup_off, .popup_wrapper, .img-hover-effect_area-2, .img-hover-effect_area .single-product, .img-hover_effect, .price-filter .ui-slider-handle, a,
button, .global-overlay, .quantity .cart-plus-minus > .qtybutton {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/* ---Range Slider--- */
.price-filter {
  padding-top: 35px;
}
.price-filter .ui-widget-content {
  background-color: #e5e5e5;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  height: 10px;
  margin: 0 0 25px;
  width: 100%;
  border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-bottom-left-radius: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-right-radius: 25px;
  -moz-border-radius-bottomright: 25px;
}
.price-filter .ui-slider-range {
  background: #ffc400;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
}
.price-filter .ui-slider-handle {
  border: 2px solid #ffc400;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  top: 50%;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 6.65px 0.35px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6.65px 0.35px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  cursor: pointer;
}
.price-filter .ui-slider-handle:focus {
  border: 2px solid #ffc400;
  outline: 0;
}
.price-filter .ui-slider-handle:last-child {
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
      transform: translate(-100%, -50%);
}
.price-filter .ui-slider-handle:hover {
  background-color: #ffc400;
}
.price-filter .price-slider-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-filter .price-slider-amount .label-input label {
  color: #222;
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}
.price-filter .price-slider-amount .label-input input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #222;
  font-size: 14px;
  height: inherit;
  padding-left: 5px;
  width: 99px;
}

/* ---Color List Area--- */
.color-list_area {
  border: 1px solid #e5e5e5;
  padding: 25px;
}
@media (max-width: 575px) {
  .color-list_area {
    padding: 15px;
  }
}
.color-list_area .color-list_heading {
  padding-bottom: 15px;
}
.color-list_area .color-list_heading > h4 {
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .color-list_area .color-list_heading > h4 {
    font-size: 14px;
  }
}
.color-list_area .sub-title {
  display: block;
  padding-bottom: 20px;
}
.color-list_area .color-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  position: relative;
}
@media (max-width: 479px) {
  .color-list_area .color-list {
    padding-bottom: 25px;
    overflow: hidden;
  }
}
.color-list_area .color-list .single-color {
  border: 1px solid #e5e5e5;
  display: inline-block;
  margin-right: 5px;
  padding: 2px;
  width: 25px;
  height: 25px;
}
.color-list_area .color-list .single-color span {
  width: 100%;
  height: 100%;
}
.color-list_area .color-list .single-color span.bg-red_color {
  background-color: #ff0000;
  display: block;
}
.color-list_area .color-list .single-color span.burnt-orange_color {
  background-color: #ff832b;
  display: block;
}
.color-list_area .color-list .single-color span.brown_color {
  background-color: #a6311f;
  display: block;
}
.color-list_area .color-list .single-color span.raw-umber_color {
  background-color: #824900;
  display: block;
}
.color-list_area .color-list .single-color span.black_color {
  background-color: #000;
  display: block;
}
.color-list_area .color-list .single-color span.golden_color {
  background-color: #ffc400;
  display: block;
}
.color-list_area .color-list .single-color.active {
  border-color: #ffc400;
}
.color-list_area .color-list .single-color.active .color-text {
  color: #333333;
  display: block;
}
.color-list_area .color-list .color-text {
  position: absolute;
  right: -120px;
  width: auto !important;
  top: 0;
  display: none;
}
@media (max-width: 575px) {
  .color-list_area .color-list .color-text {
    right: -110px;
  }
}
@media (max-width: 479px) {
  .color-list_area .color-list .color-text {
    right: auto;
    left: 0;
    top: 30px;
  }
}

/* ---Uren's Image Hover Effect--- */
.img-hover_effect:hover {
  opacity: 0.7;
}

.img-hover-effect_area .slick-list {
  padding: 15px;
  margin: -15px;
  height: auto !important;
}
.img-hover-effect_area .single-product:hover {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-hover-effect_area-2:hover {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ---Uren's Newsletters Popup--- */
.popup_wrapper {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  height: 100%;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  width: 100%;
  z-index: 9999999;
}
@media (max-width: 991px) {
  .popup_wrapper {
    display: none;
  }
}
.popup_wrapper .test {
  background: #ffffff;
  background-image: url("../images/newsletters/bg-1.jpg");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  height: 425px;
  left: 0;
  margin: auto;
  max-width: 970px;
  padding: 50px 60px 50px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .popup_wrapper .test {
    max-width: 810px;
  }
}
.popup_wrapper .test .popup_off {
  background: #222222;
  color: #ffffff;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  cursor: pointer;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
}
.popup_wrapper .test .popup_off:hover {
  background-color: #ffc400;
}
.popup_wrapper .subscribe_area {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.popup_wrapper .subscribe_area > h2 {
  color: #333333;
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.popup_wrapper .subscribe_area > p {
  margin: 0;
  max-width: 580px;
  padding-bottom: 25px;
  color: #333333;
  font-size: 16px;
}
.popup_wrapper .subscribe_area .subscribe-form-group {
  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;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form {
  position: relative;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input {
  background: #ffffff;
  border: 1px solid #e5e5e5 !important;
  color: #333333;
  border: 0 none;
  height: 50px;
  padding: 0 150px 0 20px;
  width: 520px;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input::-webkit-input-placeholder {
  color: #333333;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input::-moz-placeholder {
  color: #333333;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input:-ms-input-placeholder {
  color: #333333;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input::-ms-input-placeholder {
  color: #333333;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form input::placeholder {
  color: #333333;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form button {
  font-weight: 700;
  background: #ffc400;
  color: #333333;
  top: 0;
  right: 0;
  position: absolute;
  width: 130px;
  height: 50px;
  line-height: 50px;
  border: 0;
  display: block;
  text-transform: uppercase;
}
.popup_wrapper .subscribe_area .subscribe-form-group form.subscribe-form button:hover {
  background-color: #e52e06;
  color: #ffffff !important;
}
.popup_wrapper .subscribe_area .subscribe-bottom {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25px;
}
.popup_wrapper .subscribe_area .subscribe-bottom input {
  margin-right: 5px;
}
.popup_wrapper .subscribe_area .subscribe-bottom label {
  margin-bottom: 0;
  color: #333333;
}

/*----------------------------------------*/
/*  04 - Utilities - Color
/*----------------------------------------*/
/* ---Backgroud Color | Only For HTML Markup---*/
.bg--white_smoke {
  background-color: #f4f4f4;
}

.bg--white {
  background-color: #ffffff;
}

.bg--night_rider {
  background-color: #999999;
}

.bg--silver {
  background-color: #bababa;
}

.bg--nero {
  background-color: #222222;
}

.bg--black {
  background-color: #000;
}

.bg--sapphire {
  background-color: #0c2a5c;
}

.bg--primary {
  background-color: #ffc400;
}

/* ---Text Color | Only For HTML Markup---*/
.primary-text_color {
  color: #ffc400 !important;
}

.carlet-text_color {
  color: #e52e06 !important;
}

/* ---Activation Color--- */
.header-main_area .main-nav > ul > li.active > a,
.header-main_area-2 .main-nav > ul > li.active > a {
  color: #ffc400 !important;
}

.header-main_area-3 .main-nav > ul > li.active > a {
  color: #e52e06 !important;
}

/*----------------------------------------*/
/*  10 - Components - Button
/*----------------------------------------*/
/* --Uren's Search Button-- */
.uren-search_btn {
  background: transparent;
  border: 0;
  position: absolute;
  right: 10px;
  top: 15px;
  color: #888888;
}
.uren-search_btn:hover {
  color: #ffc400;
}

/* ---Uren's Button Position--- */
.uren-btn-ps_center {
  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;
}
.uren-btn-ps_center.uren-btn-ps_left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.uren-btn-ps_center.uren-btn-ps_right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* --Uren's Button-- */
.uren-btn,
.uren-btn-2,
.uren-banner_btn,
.uren-btn-bondi_blue,
.uren-btn_fullwidth,
.uren-compare_btn,
.uren-filter_btn,
.uren-btn_dark,
.uren-btn_limerick {
  background-color: #ffc400;
  color: #333333;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0);
  width: 175px;
  height: 45px;
  line-height: 45px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .uren-btn,
.uren-btn-2,
.uren-banner_btn,
.uren-btn-bondi_blue,
.uren-btn_fullwidth,
.uren-compare_btn,
.uren-filter_btn,
.uren-btn_dark,
.uren-btn_limerick {
    width: 140px;
    height: 30px;
    line-height: 29px;
    font-size: 14px;
  }
}
.uren-btn:hover,
.uren-btn-2:hover,
.uren-banner_btn:hover,
.uren-btn-bondi_blue:hover,
.uren-btn_fullwidth:hover,
.uren-compare_btn:hover,
.uren-filter_btn:hover,
.uren-btn_dark:hover,
.uren-btn_limerick:hover {
  background-color: #e52e06;
  color: #ffffff !important;
}
.uren-btn.uren-btn-2,
.uren-btn-2.uren-btn-2,
.uren-banner_btn.uren-btn-2,
.uren-btn-bondi_blue.uren-btn-2,
.uren-btn_fullwidth.uren-btn-2,
.uren-compare_btn.uren-btn-2,
.uren-filter_btn.uren-btn-2,
.uren-btn_dark.uren-btn-2,
.uren-btn_limerick.uren-btn-2 {
  background-color: #e52e06;
  color: #ffffff !important;
}
.uren-btn.uren-btn-2:hover,
.uren-btn-2.uren-btn-2:hover,
.uren-banner_btn.uren-btn-2:hover,
.uren-btn-bondi_blue.uren-btn-2:hover,
.uren-btn_fullwidth.uren-btn-2:hover,
.uren-compare_btn.uren-btn-2:hover,
.uren-filter_btn.uren-btn-2:hover,
.uren-btn_dark.uren-btn-2:hover,
.uren-btn_limerick.uren-btn-2:hover {
  background-color: #ffc400;
}

/* ---Uren's Button With Color Variation--- */
.uren-btn-bondi_blue {
  background-color: #ffc400;
  color: #ffffff;
}
.uren-btn-bondi_blue:hover {
  background-color: #999999;
  color: #ffffff !important;
}

.uren-btn_dark {
  background: #999999;
  color: #ffffff;
  width: 150px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
  border: 0;
}

.uren-btn_limerick {
  background-color: #ffc400;
  color: #ffffff;
  width: 120px;
  height: 40px;
  line-height: 40px;
}
.uren-btn_limerick:hover {
  background-color: #333333;
}

/* ---Uren's Button With Various Sizes--- */
.uren-btn_fullwidth {
  background-color: #666666;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;
}

.uren-btn_sm {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 400;
}

/* ---Uren's Other Button--- */
.uren-banner_btn {
  -webkit-box-shadow: 0px 1px 6.79px 0.21px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 1px 6.79px 0.21px rgba(0, 0, 0, 0.13);
  height: 40px;
  line-height: 40px;
}

.uren-compare_btn {
  background: #ffc400;
  color: #ffffff;
  height: 40px;
  line-height: 43px;
  font-size: 14px;
}
.uren-compare_btn:hover {
  background-color: #999999;
}

.fb-filter-btn_area {
  padding-top: 30px;
}
.fb-filter-btn_area .uren-filter_btn {
  background-color: #999999;
  color: #ffffff;
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
}
.fb-filter-btn_area .uren-filter_btn:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  padding-right: 10px;
}
.fb-filter-btn_area .uren-filter_btn:hover {
  background-color: #ffc400;
}

/*----------------------------------------*/
/*  11 - Components - Slider
/*----------------------------------------*/
/* --Slider Area One--- */
.uren-slider_area .main-slider .slider-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15%;
}
.uren-slider_area .main-slider .slider-content > span {
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 25px;
  font-size: 24px;
  display: block;
}
@media (max-width: 767px) {
  .uren-slider_area .main-slider .slider-content > span {
    font-size: 15px;
    padding-bottom: 15px;
  }
}
.uren-slider_area .main-slider .slider-content > h3 {
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  font-size: 70px;
  padding-bottom: 30px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .uren-slider_area .main-slider .slider-content > h3 {
    font-size: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.uren-slider_area .main-slider .slider-content > h3:before {
  background-color: #ffc400;
  position: absolute;
  content: "";
  height: 3px;
  width: 70px;
  bottom: 0;
}
.uren-slider_area .main-slider .slider-content > h4 {
  font-weight: 400;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 0;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .uren-slider_area .main-slider .slider-content > h4 {
    padding-bottom: 20px;
    font-size: 20px;
  }
}
.uren-slider_area .main-slider .slider-content > h4 > span {
  color: #ffc400;
}
@media (max-width: 767px) {
  .uren-slider_area .main-slider .slick-arrow {
    display: none !important;
  }
}
.uren-slider_area.uren-slider_area-2 {
  padding-top: 80px;
}
.uren-slider_area.uren-slider_area-2 .main-slider .slider-content {
  left: 6.2%;
}
.uren-slider_area.uren-slider_area-2 .banner-wrap [class*=col]:not(:last-child) .banner-item {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .uren-slider_area.uren-slider_area-2 .banner-wrap [class*=col]:not(:last-child) .banner-item {
    margin-bottom: 0;
  }
}
.uren-slider_area.uren-slider_area-3 .main-slider .slider-content {
  text-align: center;
  left: 6.2%;
}
@media (max-width: 767px) {
  .uren-slider_area.uren-slider_area-3 .main-slider .slider-content {
    text-align: left;
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.uren-slider_area.uren-slider_area-3 .main-slider .slider-content > h3 {
  color: #222222;
  font-size: 48px;
}
@media (max-width: 767px) {
  .uren-slider_area.uren-slider_area-3 .main-slider .slider-content > h3 {
    font-size: 32px;
  }
}
.uren-slider_area.uren-slider_area-3 .main-slider .slider-content > h3:before {
  background-color: #e52e06;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .uren-slider_area.uren-slider_area-3 .main-slider .slider-content > h3:before {
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.uren-slider_area.uren-slider_area-3 .main-slider .slider-content > p {
  color: #222222;
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .uren-slider_area.uren-slider_area-3 .main-slider .slider-content > p {
    max-width: 70%;
  }
}
@media (max-width: 479px) {
  .uren-slider_area.uren-slider_area-3 .main-slider .slider-content > p {
    max-width: 100%;
  }
}

/* --Slider Background Image-- */
.bg-1,
.bg-2 {
  background-image: url("../images/slider/1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 610px;
}
@media (max-width: 767px) {
  .bg-1,
.bg-2 {
    min-height: 380px;
  }
}

.bg-2 {
  background-image: url("../images/slider/2.jpg");
}

.bg-3,
.bg-4 {
  background-image: url("../images/slider/3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 550px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bg-3,
.bg-4 {
    min-height: 480px;
  }
}
@media (max-width: 479px) {
  .bg-3,
.bg-4 {
    min-height: 380px;
  }
}

.bg-4 {
  background-image: url("../images/slider/4.jpg");
}

.bg-5,
.bg-6 {
  background-image: url("../images/slider/5.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 610px;
}
@media (max-width: 767px) {
  .bg-5,
.bg-6 {
    min-height: 380px;
  }
}

.bg-6 {
  background-image: url("../images/slider/6.jpg");
}

/* ---Slider Dots--- */
.main-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 30px;
  z-index: 8;
}
.main-slider .slick-dots li {
  display: inline-block;
  margin: 0 3px;
  cursor: pointer;
  font-size: 0;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 100%;
}
.main-slider .slick-dots li button {
  border: none;
}
.main-slider .slick-dots li.slick-active {
  background-color: #ffffff;
}
.main-slider .slick-dots li:hover {
  background-color: #ffffff;
}

/*----------------------------------------*/
/*  12 - Components - Animation
/*----------------------------------------*/
/* Uren's Animation Style One */
.slick-active .animation-style-01 .slider-content > span {
  display: block;
  -webkit-animation: 1200ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1200ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > h2 {
  -webkit-animation: 1400ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1400ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > h3 {
  -webkit-animation: 1600ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1600ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > h4 {
  -webkit-animation: 1600ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1600ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > h5 {
  -webkit-animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > p {
  -webkit-animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-01 .slider-content > .slide-btn {
  -webkit-animation: 2000ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 2000ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-02 .slider-content > span {
  display: block;
  -webkit-animation: 1200ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 1200ms ease-in-out 0s normal none 1 running zoomInRight;
}
.slick-active .animation-style-02 .slider-content > h2 {
  -webkit-animation: 1400ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 1400ms ease-in-out 0s normal none 1 running zoomInRight;
}
.slick-active .animation-style-02 .slider-content > h3 {
  -webkit-animation: 1600ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 1600ms ease-in-out 0s normal none 1 running zoomInRight;
}
.slick-active .animation-style-02 .slider-content > h4 {
  -webkit-animation: 1600ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 1600ms ease-in-out 0s normal none 1 running zoomInRight;
}
.slick-active .animation-style-02 .slider-content > h5 {
  -webkit-animation: 1800ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 1800ms ease-in-out 0s normal none 1 running zoomInRight;
}
.slick-active .animation-style-02 .slider-content > p {
  -webkit-animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
  animation: 1800ms ease-in-out 0s normal none 1 running zoomInUp;
}
.slick-active .animation-style-02 .slider-content > .slide-btn {
  -webkit-animation: 2000ms ease-in-out 0s normal none 1 running zoomInRight;
  animation: 2000ms ease-in-out 0s normal none 1 running zoomInRight;
}

/*Top Up Keyframes*/
@-webkit-keyframes alisSlideInUp {
  0% {
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes alisSlideInUp {
  0% {
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-in-right {
  -webkit-animation: slide-in-right 4s linear infinite alternate both;
  animation: slide-in-right 4s linear infinite alternate both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-1-7 17:0:13
 * w: https://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(340px);
    transform: translateX(340px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(340px);
    transform: translateX(340px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*----------------------------------------*/
/*  13 - Components - Navigation
/*----------------------------------------*/
/* ---Mobile Menu Wrapper--- */
.mobile-menu_wrapper .offcanvas-menu-inner,
.offcanvas-minicart_wrapper .offcanvas-menu-inner,
.offcanvas-search_wrapper .offcanvas-menu-inner {
  position: fixed;
  top: 0;
  right: -285px;
  width: 285px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .mobile-menu_wrapper .offcanvas-menu-inner,
.offcanvas-minicart_wrapper .offcanvas-menu-inner,
.offcanvas-search_wrapper .offcanvas-menu-inner {
    width: 270px;
  }
}
.mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_search,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_search,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_search {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
  padding: 10px;
  background-color: #e5e5e5;
}
.mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox {
  position: relative;
}
.mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > input,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > input,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > input {
  background-color: #e5e5e5;
  border: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 0 52px 0 15px;
}
.mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn {
  background: transparent;
  color: #999999;
  position: absolute;
  top: 10px;
  right: 20px;
  border: 0;
  font-size: 24px;
}
@media (max-width: 991px) {
  .mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn:hover,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn:hover,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_search .inner-searchbox > .search_btn:hover {
    color: #ffc400;
  }
}
.mobile-menu_wrapper.open .offcanvas-menu-inner,
.offcanvas-minicart_wrapper.open .offcanvas-menu-inner,
.offcanvas-search_wrapper.open .offcanvas-menu-inner {
  left: auto;
  right: 0;
  visibility: visible;
  padding: 105px 0 0;
  opacity: 1;
}

/* ---Offcanvas Close Button--- */
.btn-close {
  position: absolute;
  top: 0;
  left: -60px;
  background: #333333;
  width: 60px;
  height: 60px;
  line-height: 63px;
  text-align: center;
  color: #ffffff;
  z-index: 10;
  font-size: 24px;
  padding: 0;
}
@media (max-width: 479px) {
  .btn-close {
    left: -50px;
    width: 50px;
  }
}
.btn-close:hover > i {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn-close > i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  display: block;
}

/* ---Offcanvas Navigation Area--- */
.offcanvas-navigation .mobile-menu {
  overflow-y: auto;
  min-height: 165px;
}
.offcanvas-navigation .mobile-menu > li {
  height: 100%;
}
.offcanvas-navigation .mobile-menu > li > a span {
  position: relative;
  font-weight: 600;
}
.offcanvas-navigation .mobile-menu li {
  position: relative;
}
.offcanvas-navigation .mobile-menu li > .menu-expand {
  position: absolute;
  right: 0;
  top: 2px;
  width: 50px;
  height: 100%;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin-right: 4px;
}
.offcanvas-navigation .mobile-menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  padding: 10px 20px;
}
.offcanvas-navigation .mobile-menu li .sub-menu {
  padding-left: 10px;
}
.offcanvas-navigation .mobile-menu li .sub-menu li a {
  text-transform: capitalize;
  font-size: 13px;
}
.offcanvas-navigation .mobile-menu li.menu-open > .menu-expand i:before {
  content: "\f123";
  color: #ffc400;
}
.offcanvas-navigation .mobile-menu li:hover > a {
  color: #ffc400;
}
.offcanvas-navigation .mobile-menu li:hover > span {
  color: #ffc400;
}

/* ---Header User Setting Area--- */
.user-setting_area {
  padding-top: 25px;
}
.user-setting_area > ul > li > a > span {
  text-transform: capitalize;
}

/* ---Offcanvas Menu Wrapper--- */
.offcanvas-menu_wrapper {
  text-align: center;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner {
  padding: 25px 30px 30px;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  width: 375px;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  visibility: hidden;
  min-height: 600px;
  overflow-y: auto;
  /* ---Offcanvas Component--- */
  /* ---Offcanvas Inner Social Link--- */
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .btn-close {
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  line-height: 1;
  background: transparent;
  color: #999999;
  z-index: 10;
  font-size: 24px;
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .btn-close:hover {
  background: transparent;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component {
  text-align: left;
  padding-top: 20px;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component.first-child {
  padding-top: 25px;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_title {
  font-size: 16px;
  font-weight: 900;
  display: block;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu > li {
  display: inline-block;
  position: relative;
  padding-right: 40px;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu > li:last-child {
  padding-right: 0;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu > li:after {
  content: "";
  width: 18px;
  height: 1px;
  background: #e5e5e5;
  display: block;
  top: 50%;
  right: 10px;
  position: absolute;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu > li:last-child:after {
  background: transparent;
}
.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-inner-social_link {
  position: absolute;
  bottom: 30px;
}
.offcanvas-menu_wrapper.open .offcanvas-menu-inner {
  top: 0;
  visibility: visible;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
.offcanvas-menu_wrapper .offcanvas-inner_logo {
  padding: 25px 0;
}
.offcanvas-menu_wrapper .short-desc {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 25px;
}
.offcanvas-menu_wrapper .short-desc > p {
  margin-bottom: 0;
}

/* ---Offcanvas Minicart Area--- */
.offcanvas-minicart_wrapper .offcanvas-menu-inner {
  padding: 60px !important;
  width: 450px;
  -webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 479px) {
  .offcanvas-minicart_wrapper .offcanvas-menu-inner {
    width: 100%;
    padding: 60px 15px !important;
  }
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .btn-close {
  background: transparent;
  color: #999999;
  top: 0;
  right: 0;
  left: auto;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-heading > h4 {
  margin-bottom: 0;
  padding-bottom: 25px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list {
  max-height: 310px;
  position: relative;
  overflow: auto;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li {
  padding-bottom: 30px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li:last-child {
  padding-bottom: 0;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product > a.product-item_remove {
  position: absolute;
  right: 15px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_img {
  border: 1px solid #e5e5e5;
  -ms-flex-preferred-size: 70px;
  -webkit-flex-basis: 70px;
  flex-basis: 70px;
  max-width: 70px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_img:hover {
  border-color: #ffc400;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_content {
  -webkit-flex-basis: calc(100% - 70px);
  -ms-flex-preferred-size: calc(100% - 70px);
  flex-basis: calc(100% - 70px);
  max-width: calc(100% - 70px);
  padding-left: 20px;
  padding-right: 10px;
}
@media (max-width: 479px) {
  .offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_content a.product-item_title {
    font-size: 14px;
  }
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list > li.minicart-product .product-item_content .product-item_quantity {
  display: block;
  padding-top: 10px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-item_total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 25px 0;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-btn_area {
  padding-bottom: 15px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-btn_area .hiraola-btn {
  height: 60px;
  line-height: 60px;
  color: #ffffff !important;
}

/* ---Offcanvas Search Area--- */
.offcanvas-search_wrapper .offcanvas-menu-inner {
  background-color: #222222;
  opacity: 0.97;
  width: 100%;
  right: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  visibility: visible;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .btn-close {
  background: transparent;
  color: #999999;
  top: 15px;
  right: 15px;
  left: auto;
  font-size: 45px;
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search {
  background-color: #e5e5e5;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 75%;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox {
  position: relative;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input {
  background-color: #333333;
  border: 0;
  height: 100px;
  line-height: 100px;
  width: 100%;
  padding: 0 100px 0 25px;
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input::-webkit-input-placeholder {
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input::-moz-placeholder {
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input:-ms-input-placeholder {
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input::-ms-input-placeholder {
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > input::placeholder {
  color: #ffffff;
}
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox > .search_btn {
  position: absolute;
  font-size: 48px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  border: 0;
  background: transparent;
  color: #ffffff;
}
.offcanvas-search_wrapper.open .offcanvas-menu-inner {
  left: auto;
  right: 0;
  padding: 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}

/* ---Category Menu--- */
.category-menu {
  position: relative;
}
.category-menu .category-heading {
  background: #ffc400;
  cursor: pointer;
  border-radius: 5px;
  height: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.category-menu .category-heading > h2 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category-menu .category-heading > h2:before {
  content: "\f394";
  font-family: "Ionicons";
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 40px;
}
.category-menu .category-heading > h2:after {
  content: "\f3d0";
  font-family: "Ionicons";
  position: absolute;
  right: 20px;
  font-size: 25px;
}
.category-menu .category-heading > h2 > span {
  text-transform: uppercase;
  line-height: 14px;
  line-height: 18px;
}
.category-menu .category-heading > h2 > span:first-child {
  font-size: 14px;
}
.category-menu .category-menu-list {
  background: #ffffff;
  border: 2px solid #ffc400;
  border-radius: 5px;
  padding: 0 20px;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  display: block;
  width: 100%;
  z-index: 99;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-menu .category-menu-list {
    padding: 0 15px;
  }
}
.category-menu .category-menu-list > ul > li {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}
.category-menu .category-menu-list > ul > li > a {
  display: block;
  text-transform: capitalize;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
}
.category-menu .category-menu-list > ul > li:hover .cat-mega-menu,
.category-menu .category-menu-list > ul > li:hover .cat-dropdown {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.category-menu .category-menu-list > ul > li:hover > a {
  color: #ffc400;
}
.category-menu .category-menu-list > ul > li.right-menu > a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 0;
}
.category-menu .category-menu-list > ul > li.rx-child {
  display: none;
}
.category-menu .category-menu-list > ul > li.rx-parent {
  cursor: pointer;
}
.category-menu .category-menu-list > ul > li.rx-parent a.rx-show {
  display: none;
}
.category-menu .category-menu-list > ul > li.rx-parent.rx-change a.rx-default {
  display: none;
}
.category-menu .category-menu-list > ul > li.rx-parent.rx-change a.rx-show {
  display: block;
}

.cat-mega-menu {
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 109%;
  z-index: 999;
  width: 220px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  width: 640px;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cat-mega-menu {
    position: static;
    z-index: 9;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cat-mega-menu {
    left: 108%;
  }
}
.cat-mega-menu > li.right-menu {
  width: 33.333%;
  float: left;
}
.cat-mega-menu > li.cat-mega-title > a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  line-height: 20px;
  position: relative;
}
.cat-mega-menu > li.cat-mega-title > a:hover {
  color: #ffffff;
}
.cat-mega-menu > li > ul > li > a {
  font-size: 14px;
  display: block;
  line-height: 30px;
  font-weight: 400;
  color: #666666;
  text-transform: capitalize;
}
.cat-mega-menu > li > ul > li > a:hover {
  color: #58d173;
}
.cat-mega-menu.cat-mega-menu-2 {
  width: 840px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cat-mega-menu.cat-mega-menu-2 {
    width: 675px;
  }
}
@media (max-width: 991px) {
  .cat-mega-menu.cat-mega-menu-2 {
    width: auto;
  }
}
.cat-mega-menu.cat-mega-menu-2 > li.right-menu {
  width: 25%;
}
@media (max-width: 991px) {
  .cat-mega-menu.cat-mega-menu-2 > li.right-menu {
    width: 100%;
  }
}
.cat-mega-menu.cat-mega-menu-3 {
  width: 440px;
}
@media (max-width: 991px) {
  .cat-mega-menu.cat-mega-menu-3 {
    width: auto;
  }
}
.cat-mega-menu.cat-mega-menu-3 > li.right-menu {
  width: 50%;
}
@media (max-width: 991px) {
  .cat-mega-menu.cat-mega-menu-3 > li.right-menu {
    width: 100%;
  }
}

/* ---Category Dropdown Menu--- */
.cat-dropdown {
  border: 1px solid #e5e5e5;
  position: absolute;
  top: 0;
  left: 110%;
  background: #ffffff;
  z-index: 999;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  width: 205px;
  padding: 0 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cat-dropdown {
    position: static;
    z-index: 9;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    height: 138px;
    overflow-y: auto;
  }
}
.cat-dropdown > li > a {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  display: block;
}
.cat-dropdown.cat-dropdown-2 {
  width: 320px;
}
@media (max-width: 991px) {
  .cat-dropdown.cat-dropdown-2 {
    position: static;
    z-index: 9;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    height: 138px;
    overflow-y: auto;
  }
}

/* ---Category Menu In Mobile Device--- */
@media (max-width: 991px) {
  .category-menu-list > ul > li > ul > li > ul {
    height: 138px;
    overflow-y: auto;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 0;
    position: relative;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li.cat-mega-title > a {
    padding: 10px 25px 10px 35px;
    font-size: 13px;
    font-weight: normal;
    position: relative;
    margin: 0;
    display: block;
    text-transform: inherit;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li.cat-mega-title > a:after {
    display: none;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li.cat-mega-title:last-child > a {
    border-bottom: 0;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li > ul > li > a {
    padding: 10px 25px 10px 35px;
    font-size: 13px;
    font-weight: normal;
    position: relative;
    margin: 0;
    display: block;
    text-transform: inherit;
    color: inherit;
  }
  .category-menu-list > ul > li.right-menu .cat-mega-menu > li > ul > li:last-child > a {
    border-bottom: 0;
  }
  .category-menu-list > ul > li.right-menu .cat-dropdown > li > a {
    padding: 10px 25px 10px 35px;
    font-size: 13px;
    font-weight: normal;
    position: relative;
    margin: 0;
    display: block;
    text-transform: inherit;
  }
  .category-menu-list > ul > li.right-menu .cat-dropdown > li:last-child > a {
    border-bottom: 0;
  }
  .category-menu-list > ul > li.right-menu > a:after {
    display: none;
  }
  .category-menu-list > ul > li i.menu-expand {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 44px;
    width: 45px;
    line-height: 45px;
    z-index: 9;
    display: block;
    font-style: normal;
  }
  .category-menu-list > ul > li i.menu-expand:before {
    content: "\f489";
    font-family: "Ionicons";
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .category-menu-list > ul > li i.menu-expand.active:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}

.uren-banner_area {
  padding: 80px 0 60px;
}

.section-title .sub-heading {
  color: #f2bf4d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title .main-heading {
  letter-spacing: 1px;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}

/* Banner Item Styles */
.banner-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.banner-item:hover::before {
  background: rgba(0, 0, 0, 0.65);
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.banner-item:hover img {
  transform: scale(1.05);
}

/* Banner Content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 80%;
  z-index: 2;
}

.banner-content .offer {
  color: #ffc400;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 15px;
}

.banner-content h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff; /* White title */
}

.banner-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: white;
}

#mobile-image{
    height: 300px;
  }


.uren-btn:hover {
  background: #000;
  color: #fff;
}

/* Spacing between items */
.row.g-4 {
  row-gap: 5px; /* Gap between rows */
}

/* Responsive Design */
@media (max-width: 991px) {
  .banner-content h3 {
    font-size: 22px;
  }
  .banner-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .banner-content {
    left: 5%;
    text-align: left;
  }
  .banner-item {
    margin-bottom: 25px;
  }
  #mobile-image{
    height: 300px;
  }
}


/*----------------------------------------*/
/*  15 - Components - Product
/*----------------------------------------*/
/* ---Product Slide Item--- */
.product-slide_item .inner-slide {
  border-right: 1px solid #e5e5e5;
  height: auto !important;
}
.product-slide_item .inner-slide .single-product {
  position: relative;
  padding: 15px;
}
.product-slide_item .inner-slide .single-product .product-img {
  position: relative;
}
.product-slide_item .inner-slide .single-product .product-img > a {
  display: block;
}
.product-slide_item .inner-slide .single-product .product-img > a img {
  width: 100%;
}
.product-slide_item .inner-slide .single-product .product-img > a .secondary-img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
}
.product-slide_item .inner-slide .single-product .product-img:hover .secondary-img {
  opacity: 1;
}
.product-slide_item .inner-slide .single-product .product-img .add-actions {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  opacity: 0;
  z-index: 9;
}
.product-slide_item .inner-slide .single-product .product-img .add-actions > ul li {
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}
.product-slide_item .inner-slide .single-product .product-img .add-actions > ul li > a {
  border-radius: 5px;
  border: 1px solid #ffc400;
  color: #333333;
  display: block;
  width: 47px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.product-slide_item .inner-slide .single-product .product-img .add-actions > ul li > a > i {
  font-size: 18px;
}
.product-slide_item .inner-slide .single-product .product-img .add-actions > ul li > a:hover {
  background-color: #ffc400;
  color: #333333 !important;
}
.product-slide_item .inner-slide .single-product:hover > .product-content {
  opacity: 0;
}
.product-slide_item .inner-slide .single-product:hover > .product-img .add-actions {
  opacity: 1;
}
.product-slide_item .inner-slide .single-product:hover > .product-img .add-actions > ul > li > a {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.product-slide_item .inner-slide .single-product .product-content {
  text-align: center;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info h6 {
  font-weight: 400;
  padding-bottom: 5px;
  margin-bottom: 0;
  display: block;
  font-size: 15px;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .rating-box {
  padding-bottom: 10px;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .rating-box > ul > li {
  display: inline-block;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .price-box {
  display: inline-block;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}
.product-slide_item .inner-slide .single-product .product-content .product-desc_info .price-box .old-price {
  color: #bababa;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}

.uren-product_area {
  padding: 75px 0 0;
}
.uren-product_area .section-title_area {
  margin-bottom: -20px;
}

/* ---Uren's Product Slider--- */
.product-slider,
.best-selling_slider {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

/* ---Uren's Special Product--- */
.special-product_area {
  padding: 75px 0 0;
}

.special-product_slider,
.special-product_slider-2 {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 0;
}
.special-product_slider .slide-item .inner-slide .single-product,
.special-product_slider-2 .slide-item .inner-slide .single-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  border-right: 1px solid #e5e5e5;
}
@media (max-width: 1599px) {
  .special-product_slider .slide-item .inner-slide .single-product,
.special-product_slider-2 .slide-item .inner-slide .single-product {
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .special-product_slider .slide-item .inner-slide .single-product,
.special-product_slider-2 .slide-item .inner-slide .single-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 30px;
  }
}
@media (max-width: 479px) {
  .special-product_slider .slide-item .inner-slide .single-product,
.special-product_slider-2 .slide-item .inner-slide .single-product {
    padding: 15px;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img {
  position: relative;
  z-index: 1;
  width: 45%;
}
@media (max-width: 1199px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img {
    width: 100%;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-img > a,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img > a {
  display: block;
}
.special-product_slider .slide-item .inner-slide .single-product .product-img > a img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img > a img {
  width: 100%;
}
.special-product_slider .slide-item .inner-slide .single-product .product-img > a .secondary-img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img > a .secondary-img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
}
.special-product_slider .slide-item .inner-slide .single-product .product-img:hover .secondary-img,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-img:hover .secondary-img {
  opacity: 1;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content {
  width: 55%;
  padding-left: 15px;
}
@media (max-width: 1199px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content {
    padding-left: 0;
    width: 100%;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown_area span.product-offer,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown_area span.product-offer {
  color: #e52e06;
  padding-bottom: 10px;
  display: block;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .rating-box,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .rating-box {
  padding-top: 25px;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .rating-box > ul > li,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .rating-box > ul > li {
  display: inline-block;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name {
  font-weight: 400;
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 24px;
}
@media (max-width: 1500px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name {
    font-size: 17px;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name > a,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info > h6.product-name > a {
  color: #222222;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box {
  display: inline-block;
  padding-top: 20px;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price.new-price-2,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .old-price,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .old-price {
  color: #bababa;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price {
  font-size: 24px;
}
@media (max-width: 1500px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .price-box .new-price {
    font-size: 16px;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions {
  padding-top: 25px;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li {
  display: inline-block;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a {
  border: 1px solid #e5e5e5;
  display: block;
  width: 47px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a:hover,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a:hover {
  background-color: #ffc400;
  color: #ffffff !important;
  border-color: #ffc400;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart {
  font-weight: 700;
  background: #ffc400;
  color: #222222;
  width: 170px;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 1599px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart {
    width: 132px;
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart {
    width: 115px;
    text-transform: capitalize;
  }
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart:hover,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart:hover {
  background-color: #e52e06;
  color: #ffffff !important;
  border-color: #e52e06;
}
.special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart > i,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart > i {
  margin-right: 15px;
}
@media (max-width: 1599px) {
  .special-product_slider .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart > i,
.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .add-actions ul > li > a.uren-add_cart > i {
    margin-right: 10px;
  }
}
.special-product_slider.special-product_slider-2,
.special-product_slider-2.special-product_slider-2 {
  background-color: #ffffff;
  border: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .special-product_slider.special-product_slider-2,
.special-product_slider-2.special-product_slider-2 {
    margin-bottom: 30px;
    overflow: hidden;
  }
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 0;
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-img,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-img {
  width: 100%;
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-content,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-content {
  width: 100%;
  padding-left: 0;
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .product-name,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .product-name {
  font-size: 20px;
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count {
  width: 60px;
  margin-left: 10px;
}
@media (max-width: 1500px) {
  .special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count {
    width: 50px;
    padding: 5px 0;
  }
}
.special-product_slider.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count:first-child,
.special-product_slider-2.special-product_slider-2 .slide-item .inner-slide .single-product .product-content .product-desc_info .uren-countdown .count:first-child {
  margin-left: 0;
}

/* ---Best Selling Product--- */
.best-selling-product_area {
  padding-top: 75px;
}
.best-selling-product_area .best-selling_banner {
  background-image: url("../images/banner/2-6.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100%;
}

/* ---Multiple Sction area--- */
.multiple-section_area {
  padding: 75px 0 0;
}
.multiple-section_area .section-title_area > h3 {
  font-size: 23px;
}

.special-product_wrap .special-product_slider-2 .slick-list {
  margin: 0 -15px -15px;
}

.list-product_wrap .list-product_slider .slick-list {
  margin: 0 -15px -15px;
}

.list-product_slider {
  overflow: hidden;
}
@media (max-width: 1199px) {
  .list-product_slider.section-space_mn-30 {
    margin-bottom: 30px;
    overflow: hidden;
  }
}
.list-product_slider .slide-item .inner-slide .single-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 13.7px 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .list-product_slider .slide-item .inner-slide .single-product {
    padding: 18px 15px;
  }
}
@media (max-width: 479px) {
  .list-product_slider .slide-item .inner-slide .single-product {
    display: block;
  }
}
.list-product_slider .slide-item .inner-slide .single-product .product-img {
  width: 40%;
}
@media (max-width: 479px) {
  .list-product_slider .slide-item .inner-slide .single-product .product-img {
    width: 100%;
  }
}
.list-product_slider .slide-item .inner-slide .single-product .product-content {
  width: 60%;
  padding-left: 15px;
}
@media (max-width: 479px) {
  .list-product_slider .slide-item .inner-slide .single-product .product-content {
    width: 100%;
    padding-left: 0;
  }
}
.list-product_slider .slide-item .inner-slide .single-product .product-content .rating-box {
  padding-bottom: 10px;
}
.list-product_slider .slide-item .inner-slide .single-product .product-content .rating-box > ul > li {
  display: inline-block;
}
.list-product_slider .slide-item .inner-slide .single-product .product-content > h3.product-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .list-product_slider .slide-item .inner-slide .single-product .product-content > h3.product-name {
    font-size: 15px;
  }
}
.list-product_slider .slide-item .inner-slide .single-product .product-content > .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.list-product_slider .slide-item .inner-slide .single-product .product-content > .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}

/* ---Uren's Countdown--- */
.countdown-wrap .countdown.item-4 .countdown__item {
  border: 1px solid #e5e5e5;
  display: inline-block;
  position: relative;
  width: 70px;
  padding: 10px 0;
  text-align: center;
  margin-left: 15px;
}
.countdown-wrap .countdown.item-4 .countdown__item:first-child {
  margin-left: 0;
}
@media (max-width: 1599px) {
  .countdown-wrap .countdown.item-4 .countdown__item {
    width: 50px;
    margin-left: 5px;
    padding: 5px 0;
  }
}
@media (max-width: 479px) {
  .countdown-wrap .countdown.item-4 .countdown__item {
    width: 45px;
  }
}
.countdown-wrap .countdown.item-4 .countdown__item span.countdown__time {
  display: block;
  font-weight: 700;
  color: #333333;
  font-size: 24px;
}
@media (max-width: 1599px) {
  .countdown-wrap .countdown.item-4 .countdown__item span.countdown__time {
    font-size: 16px;
  }
}
.countdown-wrap .countdown.item-4 .countdown__item span.countdown__text {
  display: block;
}

/*----------------------------------------*/
/*  16 - Components - Shipping (Final Version)
/*----------------------------------------*/
.uren-shipping_area {
  padding: 80px 0;
}

.uren-shipping_area .shipping-nav {
  border: 1px solid #ffc400;
  border-radius: 8px;
  padding: 40px 40px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  box-sizing: border-box;
}

/* ==== GRID SETTINGS ==== */
/* Default: 5 columns (for laptop and desktop) */
.uren-shipping_area .shipping-grid {
  flex: 0 0 24%;
  max-width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
  box-sizing: border-box;
}

/* Between items spacing adjustment */
.uren-shipping_area .shipping-grid:not(:last-child) {
  margin-right: 1%;
}

/* Tablet view (2 columns) */
@media (max-width: 991px) {
  .uren-shipping_area .shipping-grid {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 25px;
    justify-content: flex-start;
  }
}

/* Mobile view (1 column) */
@media (max-width: 767px) {
  .uren-shipping_area .shipping-grid {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ==== ITEM LAYOUT ==== */
.uren-shipping_area .shipping-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.uren-shipping_area .shipping-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .uren-shipping_area .shipping-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ==== ICON ==== */
.uren-shipping_area .shipping-item .shipping-icon {
  color: #ffc400;
  font-size: 38px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .uren-shipping_area .shipping-item .shipping-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

/* ==== CONTENT ==== */
.uren-shipping_area .shipping-item .shipping-content {
  flex: 1;
}

.uren-shipping_area .shipping-item .shipping-content h6 {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

.uren-shipping_area .shipping-item .shipping-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .uren-shipping_area .shipping-item .shipping-content h6 {
    font-size: 15px;
  }
  .uren-shipping_area .shipping-item .shipping-content p {
    font-size: 13px;
  }
}

/* Remove old border lines */
.uren-shipping_area .shipping-item .shipping-content,
.uren-shipping_area .shipping-item .shipping-content.last-child {
  border: none !important;
  padding: 0 !important;
}


/*----------------------------------------*/
/*  18 - Components - Form
/*----------------------------------------*/
/* ---Uren's Newsletter Form--- */
.newsletter-form_wrap {
  padding-top: 55px;
  width: 770px;
}
@media (max-width: 991px) {
  .newsletter-form_wrap {
    width: 100%;
  }
}
.newsletter-form_wrap .subscribe-form {
  position: relative;
}
@media (max-width: 575px) {
  .newsletter-form_wrap .subscribe-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.newsletter-form_wrap .subscribe-form .newsletter-input {
  border: 1px solid #e5e5e5;
  height: 50px;
  width: 100%;
  padding: 0 210px 0 20px;
}
@media (max-width: 575px) {
  .newsletter-form_wrap .subscribe-form .newsletter-input {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.newsletter-form_wrap .subscribe-form .newsletter-btn {
  font-weight: 700;
  background-color: #ffc400;
  text-transform: uppercase;
  position: absolute;
  font-size: 16px;
  top: 0;
  right: 0;
  width: 190px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 575px) {
  .newsletter-form_wrap .subscribe-form .newsletter-btn {
    position: relative;
  }
}
.newsletter-form_wrap .subscribe-form .newsletter-btn:hover {
  background-color: #e52e06;
  color: #ffffff;
}

/*----------------------------------------*/
/*  19 - Components - Social Link
/*----------------------------------------*/
.uren-social_link {
  padding-top: 25px;
}
.uren-social_link > ul > li {
  display: inline-block;
  padding-right: 10px;
}
.uren-social_link > ul > li:last-child {
  padding-right: 0;
}
.uren-social_link > ul > li > a {
  color: #ffffff;
  border-radius: 100%;
  font-size: 16px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 479px) {
  .uren-social_link > ul > li > a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.uren-social_link > ul > li:hover > a {
  background-color: #ffc400 !important;
  color: #ffffff !important;
}
.uren-social_link > ul > li.facebook > a {
  background-color: #3b579d;
}
.uren-social_link > ul > li.twitter > a {
  background-color: #3acaff;
}
.uren-social_link > ul > li.google-plus > a {
  background-color: #dd4b39;
}
.uren-social_link > ul > li.instagram > a {
  background-color: #833ab4;
}
.uren-social_link > ul > li.youtube > a {
  background-color: #d72525;
}

/*----------------------------------------*/
/*  17 - Components - Product Tab
/*----------------------------------------*/
/* ---Uren's Product Tab Area--- */
.sp-product-tab_area {
  background-color: #ffffff;
  padding: 0 0 60px;
}
.sp-product-tab_area .short-desc {
  margin: 0 auto;
  text-align: center;
}
.sp-product-tab_area .short-desc > p {
  margin-bottom: 0;
  padding-bottom: 15px;
}
.sp-product-tab_area .product-tab {
  border-bottom: 1px solid #e5e5e5;
  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;
  margin-bottom: 30px;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .sp-product-tab_area .product-tab {
    display: block;
  }
}
@media (max-width: 767px) {
  .sp-product-tab_area .product-tab .uren-tab_title {
    padding-bottom: 20px;
  }
}
.sp-product-tab_area .product-tab .uren-tab_title > h4 {
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sp-product-tab_area .product-tab .uren-tab_title > h4 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .sp-product-tab_area .product-tab > ul.product-menu {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.sp-product-tab_area .product-tab > ul.product-menu > li > a {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 30px;
  position: relative;
  display: block;
}
@media (max-width: 991px) {
  .sp-product-tab_area .product-tab > ul.product-menu > li > a {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .sp-product-tab_area .product-tab > ul.product-menu > li > a {
    padding: 0 0 10px 0;
  }
}
.sp-product-tab_area .product-tab > ul.product-menu > li > a.active {
  color: #ffc400;
}
.sp-product-tab_area .product-tab > ul.product-menu > li > a:after {
  background-color: #cccccc;
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  height: 2px;
  width: 18px;
}
@media (max-width: 991px) {
  .sp-product-tab_area .product-tab > ul.product-menu > li > a:after {
    width: 10px;
    right: -5px;
  }
}
@media (max-width: 575px) {
  .sp-product-tab_area .product-tab > ul.product-menu > li > a:after {
    display: none;
  }
}
.sp-product-tab_area .product-tab > ul.product-menu > li:last-child > a {
  padding-right: 0;
}
@media (max-width: 479px) {
  .sp-product-tab_area .product-tab > ul.product-menu > li:last-child > a {
    padding: 0;
  }
}
.sp-product-tab_area .product-tab > ul.product-menu > li:last-child > a:after {
  display: none;
}

/*----------------------------------------*/
/*  20 - Components - Modal
/*----------------------------------------*/
/* ---Modal--- */
.modal-backdrop {
  --bs-backdrop-zindex: 1049;
}

.modal-wrapper {
  display: block !important;
}
.modal-wrapper.modal {
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -9;
}
.modal-wrapper.show {
  background-color: rgba(0, 0, 0, 0.9);
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1050;
}
.modal-wrapper .modal-dialog {
  max-width: 86%;
}
@media (max-width: 575px) {
  .modal-wrapper .modal-dialog {
    max-width: 100%;
    left: 0;
  }
}
.modal-wrapper .modal-dialog .modal-content {
  padding: 30px 30px 25px;
  height: 755px;
  overflow-y: auto;
}
@media (max-width: 1500px) {
  .modal-wrapper .modal-dialog .modal-content {
    height: 505px;
    overflow-y: auto;
    border-radius: 0;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .close {
  font-size: 30px;
  font-weight: 400;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 99;
}
@media (max-width: 1199px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .close {
    font-size: 25px;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area {
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 30px !important;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider {
  border: 1px solid #e5e5e5;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav {
  padding: 0 60px;
  margin-top: 30px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide img {
  border: 1px solid #e5e5e5;
  width: 100%;
  opacity: 0.7;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide.slick-current img {
  border-color: #ffc400;
  opacity: 1;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide:hover img {
  opacity: 1;
}
@media (max-width: 991px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content {
    padding-top: 25px;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .sp-heading > h5 {
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .sp-heading > h5 {
    font-size: 18px;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .rating-box {
  padding-bottom: 15px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .rating-box > ul > li {
  display: inline-block;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box {
  padding-bottom: 10px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .new-price {
  font-size: 24px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .old-price {
  color: #bababa;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .essential_stuff {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .color-list_area {
  margin-top: 15px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .quantity {
  padding-top: 15px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn {
  padding-top: 22px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li {
  display: inline-block;
  margin-left: 5px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li:first-child {
  margin-left: 0;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a {
  border: 2px solid #e5e5e5;
  width: 50px;
  height: 50px;
  line-height: 47px;
  display: block;
  text-align: center;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a.add-to_cart {
  background-color: #333333;
  border: 2px solid #333333;
  color: #ffffff;
  width: 140px;
}
@media (max-width: 575px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a.add-to_cart {
    width: 110px;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a.add-to_cart:hover {
  background-color: #ffc400;
  color: #ffffff !important;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a > i {
  font-size: 18px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-group_btn > ul > li > a:hover {
  border-color: #ffc400;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-tag-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-tag-line h6 {
  margin-bottom: 0;
  padding-right: 5px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-tag-line > span {
  padding-right: 5px;
}
@media (max-width: 575px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-tag-line > a {
    font-size: 14px;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn {
  padding-top: 17px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li {
  display: inline-block;
  opacity: 0.8;
  position: relative;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li > a {
  background: #3b579d;
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 2px;
  font-size: 14px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li > a:hover {
  color: #ffffff !important;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li > a > i {
  padding-right: 5px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li:nth-child(2) > a {
  background-color: #3acaff;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li:nth-child(3) > a {
  background-color: #fe6d4c;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li:hover {
  opacity: 1;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
  width: 165px;
  padding: 4px;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  bottom: 25px;
  left: 0;
  z-index: 99;
}
@media (max-width: 575px) {
  .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown {
    left: auto;
    right: 0;
  }
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown > li {
  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: 5px;
  cursor: pointer;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown > li:hover {
  background-color: #3b579d;
  color: #ffffff;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li .dropdown > li > i {
  text-align: center;
  -webkit-flex-basis: 30px;
      -ms-flex-preferred-size: 30px;
          flex-basis: 30px;
  width: 30px;
}
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .uren-social_btn > ul > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  21 - Components - Brand
/*----------------------------------------*/
.uren-brand_area {
  padding: 75px 0 80px;
}

.brand-slider {
  border: 1px solid #e5e5e5;
}
.brand-slider .slide-item .inner-slide .single-product {
  border-right: 1px solid #e5e5e5;
  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;
  padding: 20px 0;
}
.brand-slider .last-active .inner-slide .single-product {
  border-right: 0;
}

/*----------------------------------------*/
/*  22 - Components - Breadcrumb
/*----------------------------------------*/
.breadcrumb-area {
  background-image: url("../images/breadcrumb/1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 225px;
  position: relative;
}
@media (max-width: 575px) {
  .breadcrumb-area {
    background-position: right;
  }
}
.breadcrumb-area .breadcrumb-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 575px) {
  .breadcrumb-area .breadcrumb-content {
    width: 100%;
  }
}
.breadcrumb-area .breadcrumb-content > h2 {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-size: 36px;
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .breadcrumb-area .breadcrumb-content > h2 {
    font-size: 20px;
  }
}
.breadcrumb-area .breadcrumb-content ul > li {
  color: #ffffff;
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.breadcrumb-area .breadcrumb-content ul > li:first-child {
  padding-left: 0;
}
.breadcrumb-area .breadcrumb-content ul > li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: -15px;
  top: 2px;
  font-size: 10px;
  color: #ffffff;
}
.breadcrumb-area .breadcrumb-content ul > li:last-child:before {
  display: none;
}
.breadcrumb-area .breadcrumb-content ul > li > a {
  color: #ffffff;
}

/*----------------------------------------*/
/*  23 - Components - Popular Search
/*----------------------------------------*/
.popular-search_area {
  padding: 25px 0 20px;
}
.popular-search_area .popular-search {
  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;
}
@media (max-width: 767px) {
  .popular-search_area .popular-search {
    text-align: center;
    display: block;
  }
}
.popular-search_area .popular-search label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #e52e06;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .popular-search_area .popular-search label {
    display: block;
  }
}
.popular-search_area .popular-search a {
  margin-left: 5px;
}

/*-------------------------------------------*/
/*  24 - Components - Featured Categories
/*-------------------------------------------*/
.featured-categories_area {
    padding: 75px 0 0;
}

/* Two column layout */
.two-column-category .two-col-wrapper {
    display: flex;
    background: #fcfcfc;
    border: 1px solid #ededed;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.two-column-category .left-image {
    width: 45%;
}

.two-column-category .left-image img {
    width: 100%;
}

.two-column-category .right-content {
    width: 55%;
    padding-left: 20px;
}

.two-column-category .right-content h3 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    margin: 0;
}

.two-column-category .right-content span {
    display: block;
    margin-bottom: 10px;
    color: #0886cf;
    font-size: 16px;
}

.product-item li a i {
    font-size: 12px;
}

.uren-btn-ps_left {
    padding-top: 20px;
}



/* Responsive */
@media (max-width: 768px) {
    .two-column-category .two-col-wrapper {
        display: block;
        text-align: left;
    }

    .two-column-category .left-image,
    .two-column-category .right-content {
        width: 100%;
        padding-left: 0;
    }

    .two-column-category .right-content {
        padding-top: 15px;
    }
}

/*-------------------------------------------*/
/*  25 - Components - Slider Navigation
/*-------------------------------------------*/
.slider-navigation_style-1 .slick-arrow,
.slider-navigation_style-3 .slick-arrow {
  background-color: #e9e9e9;
  border: 1px solid transparent;
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  color: #333333;
  text-align: center;
  position: absolute;
  z-index: 8;
  cursor: pointer;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  left: 20px;
}
@media (max-width: 767px) {
  .slider-navigation_style-1 .slick-arrow,
.slider-navigation_style-3 .slick-arrow {
    display: none !important;
  }
}
.slider-navigation_style-1 .slick-arrow:hover,
.slider-navigation_style-3 .slick-arrow:hover {
  background-color: #ffffff;
  border-color: #ffc400;
}
.slider-navigation_style-1 .slick-next,
.slider-navigation_style-1 .tty-slick-text-next,
.slider-navigation_style-3 .slick-next,
.slider-navigation_style-3 .tty-slick-text-next {
  left: auto;
  right: 20px;
}
.slider-navigation_style-1:hover .slick-arrow,
.slider-navigation_style-3:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.slider-navigation_style-2 .slick-arrow {
  font-size: 55px;
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  position: absolute;
  z-index: 8;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  left: 20px;
}
.slider-navigation_style-2 .slick-arrow:hover {
  color: #ffc400;
}
.slider-navigation_style-2 .slick-next {
  left: auto;
  right: 20px;
}
.slider-navigation_style-2:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.slider-navigation_style-3 .slick-arrow {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.slider-navigation_style-3 .slick-arrow:hover {
  color: #ffc400;
}

.slider-navigation_style-4 .slick-arrow {
  background-color: #ffc400;
  color: #ffffff;
  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;
  width: 100%;
}
.slider-navigation_style-4 .slick-arrow:hover {
  background-color: #e52e06;
}
.slider-navigation_style-4 .slick-arrow.tty-slick-text-prev {
  margin-bottom: 5px;
}
.slider-navigation_style-4 .slick-arrow.tty-slick-text-next {
  margin-top: 5px;
}
.slider-navigation_style-4 .slick-arrow > i {
  -webkit-transform: rotate(87deg);
      -ms-transform: rotate(87deg);
          transform: rotate(87deg);
  display: block;
}

/*-------------------------------------------*/
/*  26 - Components - Testimonial
/*-------------------------------------------*/
.testimonial-area {
  background-image: url("../images/testimonial/bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 75px 0 80px;
  margin-top: 80px;
}
.testimonial-area .testimonial-slider .slide-item {
  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;
  text-align: center;
  width: 100%;
}
.testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content span.primary-text_color {
  padding-bottom: 10px;
  display: block;
}
.testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content > h3.user-name {
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 55px;
}
.testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content .comment-box {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 0;
  width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content .comment-box {
    width: auto;
  }
}
.testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content .comment-box > p.user-feedback {
  color: #ffffff;
  font-size: 24px;
  line-height: 40px;
  margin: 0 auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content .comment-box > p.user-feedback {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 479px) {
  .testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-content .comment-box > p.user-feedback {
    font-size: 14px;
  }
}
.testimonial-area .testimonial-slider .slide-item .slide-inner .single-slide .slide-image {
  padding: 30px 0 0;
  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;
}

/*----------------------------------------*/
/*  25 - Section - Header
/*----------------------------------------*/
/* ---Header Top Area--- */
.header-top_area .container-fluid {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top_area .container-fluid .col-xl-7.col-lg-8,
.header-top_area .container-fluid .col-xl-8.col-lg-7 {
    position: static;
  }
}
.header-top_area .main-menu_area {
  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;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top_area .main-menu_area {
    position: static !important;
  }
}
.header-top_area .main-menu_area > nav > ul > li {
  display: inline-block;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top_area .main-menu_area > nav > ul > li {
    padding-right: 10px;
  }
}
.header-top_area .main-menu_area > nav > ul > li:hover > a {
  color: #ffc400;
}
.header-top_area .main-menu_area > nav > ul > li:last-child {
  padding-right: 0;
}
.header-top_area .main-menu_area > nav > ul > li .hm-dropdown {
  position: absolute;
  background: #ffffff;
  width: 230px;
  padding: 20px 0 24px;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 9;
}
.header-top_area .main-menu_area > nav > ul > li .hm-dropdown > li > a {
  padding: 10px 20px;
  display: block;
}
.header-top_area .main-menu_area > nav > ul > li .hm-dropdown > li.active > a {
  color: #ffc400;
}
.header-top_area .main-menu_area > nav > ul > li:hover .hm-dropdown {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
.header-top_area .main-menu_area > nav > ul > li > ul > li {
  position: relative;
}
.header-top_area .main-menu_area > nav > ul > li > ul > li > ul.hm-sub_dropdown {
  top: 30px;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.header-top_area .main-menu_area > nav > ul > li > ul > li > a {
  display: block;
}
.header-top_area .main-menu_area > nav > ul > li > ul > li > a > i {
  position: absolute;
  top: 14px;
  right: 25px;
  display: block;
  font-size: 12px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.header-top_area .main-menu_area > nav > ul > li > ul > li:hover > .hm-sub_dropdown {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.header-top_area .main-menu_area > nav > ul > li > ul > li:hover > a > i {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.header-top_area .main-menu_area > nav > ul > li.megamenu-holder .hm-megamenu {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 30px;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  position: absolute;
  width: 100%;
  left: 0;
  top: auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  z-index: 99;
}
.header-top_area .main-menu_area > nav > ul > li.megamenu-holder:hover .hm-megamenu {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
.header-top_area .main-menu_area > nav > ul > li.megamenu-holder > ul > li {
  width: 33.33%;
}
.header-top_area .main-menu_area > nav > ul > li.megamenu-holder > ul > li > span.megamenu-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  padding-bottom: 15px;
}
.header-top_area .main-menu_area > nav > ul > li.megamenu-holder > ul > li > ul > li > a {
  display: block;
  line-height: 35px;
  font-size: 16px;
}
.header-top_area .main-menu_area > nav > ul > li > a {
  font-weight: 700;
  color: #ffffff;
  display: block;
  padding: 23px 0;
  text-transform: uppercase;
  position: relative;
}
.header-top_area .main-menu_area > nav > ul > li > a > i {
  padding-left: 5px;
  font-size: 18px;
  vertical-align: middle;
}
.header-top_area .ht-menu > ul {
  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;
}
.header-top_area .ht-menu > ul > li {
  display: inline-block;
  position: relative;
}
.header-top_area .ht-menu > ul > li:hover .ht-dropdown {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
.header-top_area .ht-menu > ul > li:hover > a {
  color: #ffc400;
}
.header-top_area .ht-menu > ul > li .ht-dropdown {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
      transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  position: absolute;
  top: 100%;
  left: auto;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  width: 150px;
  padding: 10px;
  right: 0;
  z-index: 99;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li.active a {
  color: #ffc400;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li:hover a {
  color: #ffc400;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li a {
  border-bottom: 1px solid #e5e5e5;
  display: block;
  padding: 10px 5px;
  line-height: 25px;
  font-size: 12px;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li a img {
  margin-right: 5px;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li:first-child > a {
  padding-top: 0;
}
.header-top_area .ht-menu > ul > li .ht-dropdown > li:last-child > a {
  border-bottom: 0;
  padding-bottom: 0;
}
.header-top_area .ht-menu > ul > li > a {
  color: #ffffff;
  padding: 23px 15px;
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top_area .ht-menu > ul > li > a {
    padding: 23px 6px;
  }
}
.header-top_area .ht-menu > ul > li > a > i {
  padding-left: 5px;
  font-size: 11px;
}
.header-top_area .ht-menu > ul > li:last-child > a {
  padding-right: 0;
}
.header-top_area.header-sticky {
  display: none;
}

/* ---Header Middle Area--- */
@media (max-width: 1599px) {
  .header-middle_area {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .header-middle_area {
    padding: 30px 0;
  }
}
.header-middle_area .header-logo_area {
  padding: 20px 0;
}
@media (max-width: 991px) {
  .header-middle_area .header-logo_area {
    padding: 10px 0 0;
  }
}
@media (max-width: 479px) {
  .header-middle_area .header-logo_area {
    text-align: center;
  }
}
.header-middle_area .hm-form_area {
  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;
}

.hm-searchbox {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 5px;
  height: 55px;
  line-height: 55px;
  width: 100%;
}

.hm-searchbox .nice-select.select-search-category {
  width: 150px;
  line-height: 55px;
  height: 52px;
  margin: 0;
  border: 0;
  padding: 0 28px 0 25px;
  font-size: 13px;
  border-radius: 15px 0 0 15px;
  position: relative;
}
.hm-searchbox .nice-select.select-search-category > span.current {
  display: block;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.select-search-category ul.list {
  height: 440px;
  overflow-y: auto;
  overscroll-behavior-x: none;
}

.hm-searchbox .current:after {
  background: #e5e5e5;
  position: absolute;
  display: block;
  content: "";
  height: 22px;
  width: 1px;
  top: 50%;
  right: -10px;
  font-size: 13px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hm-searchbox .nice-select.select-search-category:before {
  right: 30px;
  top: 25px;
}

.hm-searchbox input {
  font-size: 13px;
  height: 55px;
  background: transparent;
  border: none;
  width: 100%;
  padding: 0 33px 0;
}

.hm-searchbox .header-search_btn {
  border-radius: 0 5px 5px 0;
  text-transform: uppercase;
  background: #ffc400;
  width: 250px;
  margin: -1px;
}
.hm-searchbox .header-search_btn > i {
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1500px) {
  .hm-searchbox .header-search_btn > i {
    font-size: 16px;
  }
}
.hm-searchbox .header-search_btn > i > span {
  font-size: 16px;
  padding-left: 10px;
  font-style: normal;
}
@media (max-width: 1500px) {
  .hm-searchbox .header-search_btn > i > span {
    font-size: 13px;
    padding-left: 5px;
    text-transform: capitalize;
  }
}
.hm-searchbox:hover .header-search_btn:hover {
  background-color: #e52e06;
  color: #ffffff;
}

.header-right_area > ul {
  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;
}
.header-right_area > ul > li {
  border-radius: 5px;
}
@media (max-width: 991px) {
  .header-right_area > ul > li.mobile-menu_wrap {
    margin-right: 30px;
  }
  .header-right_area > ul > li.mobile-menu_wrap > a {
    color: #ffffff;
    font-size: 60px;
  }
}
.header-right_area > ul > li.minicart-wrap {
  background: #ffffff;
  width: 42%;
  text-align: center;
  height: 55px;
  line-height: 55px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .header-right_area > ul > li.minicart-wrap {
    width: 75%;
    margin-right: 0;
  }
}
.header-right_area > ul > li.minicart-wrap:hover {
  background-color: #ffc400;
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area {
  position: relative;
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area .item-count {
  background-color: #e52e06;
  color: #ffffff;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 100%;
  top: 10px;
  left: 25px;
  font-size: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area .item-count {
    top: 2px;
    left: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area .item-count {
    top: 2px;
    left: 17px;
  }
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area > i {
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area > i {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-count_area > i {
    padding-right: 15px;
  }
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-front_text span {
  line-height: 22px;
  display: block;
  font-size: 18px;
  text-align: left;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-front_text span {
    line-height: 18px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-front_text span {
    line-height: 18px;
    font-size: 15px;
  }
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn .minicart-front_text span.total-price {
  font-weight: 700;
  color: #333333;
}
.header-right_area > ul > li.minicart-wrap > a.minicart-btn:before {
  content: "\f3d0";
  font-family: "Ionicons";
  position: absolute;
  right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn:before {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn:before {
    right: 12px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-right_area > ul > li.minicart-wrap > a.minicart-btn:before {
    right: 15px;
    font-size: 18px;
  }
}
.header-right_area > ul > li.minicart-wrap > a:hover {
  color: #333333 !important;
}
.header-right_area > ul > li.contact-us_wrap {
  background-color: #e52e06;
  width: 58%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-weight: 700;
  position: relative;
  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;
}
@media (max-width: 767px) {
  .header-right_area > ul > li.contact-us_wrap {
    display: none;
  }
}
.header-right_area > ul > li.contact-us_wrap > a {
  padding: 0;
}
@media (max-width: 1500px) {
  .header-right_area > ul > li.contact-us_wrap > a {
    font-size: 18px;
  }
}
.header-right_area > ul > li.contact-us_wrap > a:before {
  content: "";
  border: 9px solid transparent;
  border-top-color: #e52e06;
  border-left-color: #e52e06;
  position: absolute;
  top: 99%;
  left: 10%;
}
.header-right_area > ul > li.contact-us_wrap > a > i {
  font-size: 24px;
  margin-right: 10px;
}
@media (max-width: 1500px) {
  .header-right_area > ul > li.contact-us_wrap > a > i {
    font-size: 18px;
    margin-right: 5px;
  }
}
.header-right_area > ul > li.contact-us_wrap:hover > a {
  color: #333333 !important;
}
.header-right_area > ul > li.contact-us_wrap > a {
  color: #ffffff;
}
.header-right_area > ul > li > a {
  color: #333333;
  display: block;
  font-size: 24px;
}
.header-right_area > ul > li > a > span {
  font-size: 16px;
}
.header-right_area > ul > li:last-child > a {
  padding-right: 0;
}

/* ---Header Main Area--- */
.header-main_area .custom-logo_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 15%;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  max-width: 15%;
}
@media (max-width: 1599px) {
  .header-main_area .custom-logo_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 991px) {
  .header-main_area .custom-logo_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .header-main_area .custom-logo_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 479px) {
  .header-main_area .custom-logo_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.header-main_area .custom-category_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 17%;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  max-width: 17%;
}
@media (max-width: 1599px) {
  .header-main_area .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .header-main_area .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 767px) {
  .header-main_area .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.header-main_area .custom-search_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 36%;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
  max-width: 36%;
}
@media (max-width: 1599px) {
  .header-main_area .custom-search_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area .custom-search_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 70%;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .header-main_area .custom-search_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 65%;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    max-width: 65%;
  }
}
@media (max-width: 767px) {
  .header-main_area .custom-search_col {
    display: none;
  }
}
.header-main_area .custom-cart_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  max-width: 32%;
}
@media (max-width: 1599px) {
  .header-main_area .custom-cart_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 991px) {
  .header-main_area .custom-cart_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 70%;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    max-width: 70%;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .header-main_area .custom-cart_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 65%;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    max-width: 65%;
  }
}
@media (max-width: 479px) {
  .header-main_area .custom-cart_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---Header Sticky--- */
.header-main_area .header-sticky.sticky {
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 300ms ease-in 0s;
  -o-transition: all 300ms ease-in 0s;
  transition: all 300ms ease-in 0s;
  z-index: 1049;
}
@media (max-width: 575px) {
  .header-main_area .header-sticky.sticky {
    position: static;
  }
}
.header-main_area .header-sticky.sticky.header-top_area {
  display: none;
}
.header-main_area .header-sticky.sticky.sticky {
  -webkit-animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
  animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
  display: block;
}
.header-main_area .header-sticky.sticky.header-sticky .header-right_area {
  padding: 9px 0;
}
.header-main_area .header-sticky.sticky.header-sticky .header-sticky_logo {
  padding-top: 25px;
}

/* ---Header Main Area Two--- */
@media (max-width: 991px) {
  .header-main_area-2 {
    padding-bottom: 30px;
  }
}
@media (max-width: 1599px) {
  .header-main_area-2 .header-middle_area .header-logo_area {
    padding: 35px 0 0;
  }
}
@media (max-width: 575px) {
  .header-main_area-2 .header-middle_area .header-logo_area {
    padding-top: 0;
    text-align: center;
  }
}
.header-main_area-2 .header-middle_area .hm-form_area {
  padding-top: 25px;
}
.header-main_area-2 .header-right_area {
  padding-top: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .header-right_area > ul > li.minicart-wrap > a:before {
    right: 7px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .header-right_area > ul > li.minicart-wrap > a .minicart-count_area > span.item-count {
    top: 2px;
    left: 11px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .header-right_area > ul > li.minicart-wrap > a .minicart-count_area > i {
    padding-right: 15px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .header-right_area > ul > li.minicart-wrap > a .minicart-front_text span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .header-top_area .category-menu .category-heading > h2.categories-toggle {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-main_area-2 .header-top_area .main-menu_area > nav > ul > li {
    padding-right: 15px;
  }
}
@media (max-width: 1599px) {
  .header-main_area-2 .header-top_area .ht-right_area .ht-menu > ul > li a span:nth-child(2) {
    display: none;
  }
}
.header-main_area-2 .custom-category_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18%;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  max-width: 18%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-2 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 22%;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
    max-width: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .header-main_area-2 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 767px) {
  .header-main_area-2 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.header-main_area-2 .custom-menu_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-2 .custom-menu_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 53%;
        -ms-flex: 0 0 53%;
            flex: 0 0 53%;
    max-width: 53%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .custom-menu_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58%;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
    max-width: 58%;
  }
}
.header-main_area-2 .custom-setting_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  max-width: 32%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-2 .custom-setting_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main_area-2 .custom-setting_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 17%;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
    max-width: 17%;
  }
}

/* ---Header Main Area Three--- */
.header-main_area-3 .header-middle_area .header-logo_area {
  padding: 30px 0;
}
@media (max-width: 575px) {
  .header-main_area-3 .header-middle_area .header-logo_area {
    padding: 0;
  }
}
.header-main_area-3 .header-middle_area .hm-form_area {
  padding-top: 22px;
}
.header-main_area-3 .header-middle_area .header-right_area {
  padding-top: 22px;
}
.header-main_area-3 .header-middle_area .header-right_area > ul > li.mobile-menu_wrap > a {
  color: #222222;
}
.header-main_area-3 .header-middle_area .header-right_area > ul > li.minicart-wrap {
  border: 1px solid #ffc400;
}
.header-main_area-3 .header-middle_area .header-right_area > ul > li.contact-us_wrap {
  border: 1px solid #ffc400;
  background-color: transparent;
}
.header-main_area-3 .header-middle_area .header-right_area > ul > li.contact-us_wrap > a {
  color: #e52e06;
}
.header-main_area-3 .header-middle_area .header-right_area > ul > li.contact-us_wrap > a:before {
  display: none;
}
@media (max-width: 991px) {
  .header-main_area-3 .header-top_area {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .header-main_area-3 .header-top_area {
    padding: 0;
  }
}
.header-main_area-3 .header-top_area .category-menu .category-heading {
  background-color: #000;
  border-radius: 0;
}
.header-main_area-3 .header-top_area .category-menu .category-heading > h2:before {
  color: #ffffff;
}
.header-main_area-3 .header-top_area .category-menu .category-heading > h2:after {
  color: #ffffff;
}
.header-main_area-3 .header-top_area .category-menu .category-heading > h2 span {
  color: #ffffff;
}
.header-main_area-3 .header-top_area .main-menu_area > nav > ul > li > a {
  padding: 15px 0;
  color: #000;
}
.header-main_area-3 .header-top_area .main-menu_area > nav > ul > li:hover > a {
  color: #e52e06 !important;
}
.header-main_area-3 .header-top_area .ht-right_area .ht-menu > ul > li > a {
  padding: 15px 8px;
  color: #000;
}
@media (max-width: 1599px) {
  .header-main_area-3 .header-top_area .ht-right_area .ht-menu > ul > li > a span:nth-child(2) {
    display: none;
  }
}
.header-main_area-3 .header-top_area .ht-right_area .ht-menu > ul > li:hover > a {
  color: #e52e06 !important;
}
.header-main_area-3 .header-top_area .ht-right_area .ht-menu > ul > li:last-child > a {
  padding-right: 0;
}
.header-main_area-3 .header-sticky .main-menu_area > nav > ul > li > a {
  padding: 23.9px 0;
}
.header-main_area-3 .header-sticky .header-right_area {
  padding-top: 22px;
}
.header-main_area-3 .header-sticky .header-right_area > ul > li.minicart-wrap {
  background-color: #ffc400;
}
.header-main_area-3 .header-sticky .header-right_area > ul > li.contact-us_wrap {
  background-color: transparent;
}
.header-main_area-3 .header-sticky .header-right_area > ul > li.contact-us_wrap > a {
  color: #e52e06;
}
.header-main_area-3 .header-sticky .header-right_area > ul > li.contact-us_wrap > a:before {
  display: none;
}
.header-main_area-3 .custom-category_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 17%;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  max-width: 17%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-3 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    max-width: 24%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main_area-3 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 767px) {
  .header-main_area-3 .custom-category_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.header-main_area-3 .custom-menu_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 54%;
      -ms-flex: 0 0 54%;
          flex: 0 0 54%;
  max-width: 54%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-3 .custom-menu_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58%;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
    max-width: 58%;
  }
}
.header-main_area-3 .custom-setting_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 29%;
      -ms-flex: 0 0 29%;
          flex: 0 0 29%;
  max-width: 29%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1599px) {
  .header-main_area-3 .custom-setting_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 18%;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
    max-width: 18%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main_area-3 .custom-search_col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 65%;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    max-width: 65%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main_area-3 .custom-search_col .hm-form_area form.hm-searchbox button.header-search_btn {
    background-color: #222222;
    color: #ffffff !important;
  }
  .header-main_area-3 .custom-search_col .hm-form_area form.hm-searchbox button.header-search_btn:hover {
    background-color: #e52e06;
  }
}
.header-main_area-3 .header-sticky {
  padding: 0;
}
.header-main_area-3 .header-sticky .header-right_area > ul > li:hover.mobile-menu_wrap > a {
  color: #222222 !important;
}

/*----------------------------------------*/
/*  26 - Section - Footer
/*----------------------------------------*/
.footer-top_area {
  background-image: url("../images/footer/newsletter/bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 75px 0;
}
.footer-top_area .newsletter-area {
  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;
}
.footer-top_area .newsletter-area > h3.title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 34px;
}
@media (max-width: 575px) {
  .footer-top_area .newsletter-area > h3.title {
    font-size: 30px;
    text-align: center;
    line-height: 40px;
  }
}
.footer-top_area .newsletter-area > p.short-desc {
  color: #ffffff;
  padding-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-top_area .newsletter-area > p.short-desc {
    text-align: center;
  }
}

.footer-middle_area {
  background-color: #222222;
  padding: 80px 0;
}
.footer-middle_area .footer-widgets_info .footer-widgets_logo {
  padding-bottom: 25px;
}
.footer-middle_area .footer-widgets_info .widget-short_desc > p {
  padding-bottom: 30px;
  margin-bottom: 0;
}
.footer-middle_area .footer-widgets_info .widgets-essential_stuff > ul > li {
  padding-bottom: 15px;
}
.footer-middle_area .footer-widgets_info .widgets-essential_stuff > ul > li span {
  color: #ffffff;
  font-size: 16px;
}
.footer-middle_area .footer-widgets_info .widgets-essential_stuff > ul > li:last-child {
  padding-bottom: 0;
}
.footer-middle_area .footer-widgets_info .widgets-essential_stuff > ul > li > i {
  font-size: 21px;
  padding-right: 10px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .footer-middle_area .footer-widgets_area [class*=col-] {
    padding-top: 30px;
  }
}
.footer-middle_area .footer-widgets_title h3 {
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-middle_area .footer-widgets_title h3 {
    text-transform: capitalize;
    font-size: 14px;
  }
}
.footer-middle_area .footer-widgets_title h3:before {
  content: "";
  background-color: #ffc400;
  position: absolute;
  height: 1px;
  width: 70px;
  bottom: 0;
}
.footer-middle_area .short-desc > p {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.footer-middle_area .footer-widgets > ul > li {
  padding-bottom: 10px;
}
.footer-middle_area .footer-widgets > ul > li:last-child {
  padding-bottom: 0;
}

/* ---Footer Bottom--- */
.footer-bottom_area {
  background-color: #222222;
}
.footer-bottom_area .footer-bottom_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 25px 0;
}
@media (max-width: 767px) {
  .footer-bottom_area .footer-bottom_nav {
    padding: 20px 0;
  }
}
.footer-bottom_area .footer-bottom_nav .copyright {
  text-align: left;
}
@media (max-width: 767px) {
  .footer-bottom_area .footer-bottom_nav .copyright {
    text-align: center;
    padding-bottom: 15px;
  }
}
.footer-bottom_area .footer-bottom_nav .payment {
  text-align: right;
}
@media (max-width: 767px) {
  .footer-bottom_area .footer-bottom_nav .payment {
    text-align: center;
    padding-bottom: 10px;
  }
}

/*----------------------------------------*/
/*  29 - Pages - Shop
/*----------------------------------------*/
.shop-content_wrapper {
  padding-top: 55px;
}

.uren-sidebar-catagories_area .uren-sidebar_categories {
  background-color: #f4f4f4;
  padding: 25px;
  margin-bottom: 60px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .uren-categories_title {
  border-bottom: 2px solid #e5e5e5;
  position: relative;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .uren-categories_title:before {
  content: "";
  background-color: #ffc400;
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .uren-categories_title h5 {
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 25px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .uren-categories_title h5:after {
  height: 2px;
  bottom: -2px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .sidebar-checkbox_list > li {
  padding-bottom: 15px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .sidebar-checkbox_list > li:first-child {
  padding-top: 20px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories .sidebar-checkbox_list > li > a {
  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;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module {
  padding: 0;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .category-module_heading {
  padding: 25px 25px 0;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .category-module_heading > h5 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 25px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .category-module_heading > h5:before {
  content: "";
  background-color: #ffc400;
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body {
  padding: 20px 25px 25px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body > .module-list_item > li > a {
  padding-bottom: 15px;
  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;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body > .module-list_item > li > a.active {
  color: #ffc400;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body > .module-list_item > li .module-sub-list_item > li {
  padding-left: 20px;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body > .module-list_item > li .module-sub-list_item > li > a {
  padding-bottom: 15px;
  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;
}
.uren-sidebar-catagories_area .uren-sidebar_categories.category-module .module-body > .module-list_item > li:last-child > a {
  padding-bottom: 0;
}

.sidebar-banner_area {
  padding-bottom: 60px;
}
.sidebar-banner_area .banner-item > a img {
  width: 100%;
}

/* ---Shop Paginatoin Area--- */
.shop-content_wrapper .uren-paginatoin-area {
  padding: 0 0 60px;
}
.shop-content_wrapper .uren-paginatoin-area .product-select-box .product-short > p {
  padding-left: 0;
}

/* ---Shop Toolbar--- */
.shop-toolbar {
  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;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-toolbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .shop-toolbar {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-toolbar .product-view-mode {
    text-align: right;
  }
}
@media (max-width: 575px) {
  .shop-toolbar .product-view-mode {
    text-align: center;
  }
}
.shop-toolbar .product-view-mode > a {
  background-color: #333333;
  color: #ffffff;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .shop-toolbar .product-view-mode > a.grid-5 {
    display: none;
  }
}
@media (max-width: 991px) {
  .shop-toolbar .product-view-mode > a.grid-4 {
    display: none;
  }
}
@media (max-width: 991px) {
  .shop-toolbar .product-view-mode > a.grid-3 {
    display: none;
  }
}
@media (max-width: 575px) {
  .shop-toolbar .product-view-mode > a.grid-2 {
    display: none;
  }
}
.shop-toolbar .product-view-mode > a.grid-1 {
  display: none;
}
@media (max-width: 575px) {
  .shop-toolbar .product-view-mode > a.grid-1 {
    display: inline-block;
  }
}
.shop-toolbar .product-view-mode > a:hover {
  background-color: #ffc400;
  color: #ffffff !important;
}
.shop-toolbar .product-view-mode > a.active {
  background-color: #ffc400;
}
.shop-toolbar .product-item-selection_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-toolbar .product-item-selection_area {
    padding-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 575px) {
  .shop-toolbar .product-item-selection_area {
    padding-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 479px) {
  .shop-toolbar .product-item-selection_area {
    display: block;
    text-align: center;
  }
}
.shop-toolbar .product-item-selection_area .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;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-toolbar .product-item-selection_area .product-short {
    padding-bottom: 15px;
  }
}
@media (max-width: 479px) {
  .shop-toolbar .product-item-selection_area .product-short {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.shop-toolbar .product-item-selection_area .product-short > label {
  margin-bottom: 0;
  padding-right: 25px;
}
@media (max-width: 991px) {
  .shop-toolbar .product-item-selection_area .product-short > label {
    padding-right: 10px;
  }
}
.shop-toolbar .product-item-selection_area .product-short .myniceselect.nice-select span {
  height: 40px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .shop-toolbar .product-item-selection_area .product-short .myniceselect.nice-select span {
    padding: 0 35px 0 20px;
  }
}
@media (max-width: 767px) {
  .shop-toolbar .product-item-selection_area .product-short .myniceselect.nice-select .list {
    width: auto;
    right: 0;
    left: auto;
  }
}
.shop-toolbar .product-item-selection_area .product-showing {
  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-left: 25px;
}
@media (max-width: 479px) {
  .shop-toolbar .product-item-selection_area .product-showing {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0 0 0;
  }
}
.shop-toolbar .product-item-selection_area .product-showing > label {
  margin-bottom: 0;
  padding-right: 25px;
}
@media (max-width: 991px) {
  .shop-toolbar .product-item-selection_area .product-showing > label {
    padding-right: 10px;
  }
}
.shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select span {
  height: 40px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select span {
    padding: 0 35px 0 20px;
  }
}
@media (max-width: 767px) {
  .shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select .list {
    width: auto;
    right: 0;
    left: auto;
  }
}

.shop-product-wrap {
  padding: 0 0 30px;
}
.shop-product-wrap.grid .list-slide_item {
  display: none;
}
.shop-product-wrap.grid .product-slide_item {
  display: block;
}
.shop-product-wrap.grid .product-slide_item .inner-slide {
  border: 0;
}
.shop-product-wrap.grid .product-slide_item .inner-slide .single-product {
  border: 1px solid #e5e5e5;
  margin-top: 30px;
}
.shop-product-wrap.grid .product-slide_item .inner-slide .single-product .product-img {
  overflow: visible;
}
.shop-product-wrap.grid .product-slide_item .inner-slide .single-product .product-img img {
  width: 100%;
}
@media (max-width: 1500px) {
  .shop-product-wrap.grid .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .shop-product-wrap.grid .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
@media (max-width: 1500px) {
  .shop-product-wrap.grid .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a > i {
    font-size: 14px;
  }
}
.shop-product-wrap.grid.gridview-2 > [class*=col-] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -moz-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 575px) {
  .shop-product-wrap.grid.gridview-2 > [class*=col-] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 1500px) {
  .shop-product-wrap.grid.gridview-2 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 47px;
    height: 47px;
    line-height: 47px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-product-wrap.grid.gridview-2 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}
.shop-product-wrap.grid.gridview-3 > [class*=col-] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -moz-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-product-wrap.grid.gridview-3 > [class*=col-] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1500px) {
  .shop-product-wrap.grid.gridview-3 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 42px;
    height: 42px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-product-wrap.grid.gridview-3 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}
.shop-product-wrap.grid.gridview-4 > [class*=col-] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -moz-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.shop-product-wrap.grid.gridview-5 > [class*=col-] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -moz-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.shop-product-wrap.grid.gridview-5 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
  width: 36px;
  height: 36px;
  line-height: 36px;
}
@media (max-width: 1500px) {
  .shop-product-wrap.grid.gridview-5 > [class*=col-] .product-slide_item .inner-slide .single-product .product-img .add-actions > ul > li > a {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
.shop-product-wrap.listview > [class*=col-] {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  width: 100%;
  max-width: 100%;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item {
  display: block;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  margin-top: 30px;
  padding: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product {
    display: block;
  }
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img {
  position: relative;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  width: 33.333%;
}
@media (max-width: 1199px) {
  .shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    width: 100%;
  }
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img > a {
  display: block;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img > a .secondary-img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: auto;
  height: 100%;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-img:hover .secondary-img {
  opacity: 1;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content {
  -webkit-flex-basis: 66.666%;
      -ms-flex-preferred-size: 66.666%;
          flex-basis: 66.666%;
  width: 66.666%;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    width: 100%;
    padding-left: 0;
  }
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info > h6 {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .rating-box {
  padding-bottom: 5px;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .rating-box > ul > li {
  display: inline-block;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .price-box {
  padding-bottom: 5px;
  display: inline-block;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .price-box .old-price {
  color: #bababa;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .product-desc_info .product-short_desc > p {
  margin-bottom: 0;
  padding-bottom: 23px;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .add-actions > ul > li {
  display: inline-block;
  padding-left: 5px;
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .add-actions > ul > li > a {
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  display: block;
}
@media (max-width: 479px) {
  .shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .add-actions > ul > li > a {
    padding: 5px 10px;
  }
}
.shop-product-wrap.listview > [class*=col-] .list-slide_item .single-product .product-content .add-actions > ul > li > a:hover {
  background-color: #ffc400;
  border-color: #ffc400;
  color: #ffffff !important;
}
.shop-product-wrap.listview > [class*=col-] .product-slide_item {
  display: none;
}
.shop-product-wrap.listview.listfullwidth > [class*=col-] {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  width: 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .shop-product-wrap.listview.listfullwidth > [class*=col-] {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
/*----------------------------------------*/
/*  30 - Pages - Single Product
/*----------------------------------------*/
/* ---Single Product Page--- */
.sp-area {
  padding: 50px 0 0;
}
.sp-area .sp-nav {
  background-color: #ffffff;
  padding-top: 25px;
}
.sp-area .sp-nav .sp-img_slider {
  cursor: move;
}
.sp-area .sp-nav .sp-img_slider .slick-list .slick-slide {
  border: 1px solid #e5e5e5;
}
.sp-area .sp-nav .sp-img_slider .slick-list .slick-slide img {
  width: 100%;
}
.sp-area .sp-nav .sp-img_slider-nav {
  padding: 0 60px;
  margin-top: 30px;
}
.sp-area .sp-nav .sp-img_slider-nav .slick-slide img {
  border: 1px solid #e5e5e5;
  width: 100%;
  opacity: 0.7;
}
.sp-area .sp-nav .sp-img_slider-nav .slick-slide.slick-current img {
  border-color: #ffc400;
  opacity: 1;
}
.sp-area .sp-nav .sp-img_slider-nav .slick-slide:hover img {
  opacity: 1;
}
@media (max-width: 991px) {
  .sp-area .sp-nav .sp-content {
    padding-top: 30px;
  }
}
.sp-area .sp-nav .sp-content .sp-heading > h5 {
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 575px) {
  .sp-area .sp-nav .sp-content .sp-heading > h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
.sp-area .sp-nav .sp-content .rating-box {
  padding: 5px 0 0;
}
.sp-area .sp-nav .sp-content .rating-box > ul > li {
  display: inline-block;
}
.sp-area .sp-nav .sp-content .rating-box > ul > li > i {
  font-size: 14px;
}
.sp-area .sp-nav .sp-content .sp-essential_stuff > ul > li {
  font-weight: 700;
}
.sp-area .sp-nav .sp-content .sp-essential_stuff > ul > li > a {
  font-weight: 400;
  padding-left: 5px;
}
.sp-area .sp-nav .sp-content .sp-essential_stuff > ul > li > a > span {
  color: #999999 !important;
}
.sp-area .sp-nav .sp-content .price-box {
  padding-bottom: 10px;
}
.sp-area .sp-nav .sp-content .price-box .old-price {
  color: #bababa;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
.sp-area .sp-nav .sp-content .price-box .new-price {
  font-size: 16px;
  color: #0886cf;
}
.sp-area .sp-nav .sp-content .price-box .new-price.new-price-2 {
  color: #e52e06;
  font-weight: 700;
}
.sp-area .sp-nav .sp-content .short-desc > p {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.sp-area .sp-nav .sp-content .countdown-wrap {
  padding: 30px 0 0;
}
.sp-area .sp-nav .sp-content .product-size_box {
  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: 25px;
}
.sp-area .sp-nav .sp-content .product-size_box > span {
  padding-right: 15px;
}
.sp-area .sp-nav .sp-content .product-size_box .myniceselect.nice-select > span {
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}
.sp-area .sp-nav .sp-content .color-list_area {
  margin-top: 25px;
}
.sp-area .sp-nav .sp-content .quantity {
  padding-top: 30px;
}
.sp-area .sp-nav .sp-content .quantity .cart-plus-minus {
  display: inline-block;
  margin-left: 15px;
}
.sp-area .sp-nav .sp-content .qty-btn_area {
  padding-top: 30px;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li {
  display: inline-block;
  padding-left: 5px;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li:first-child {
  padding-left: 0;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li > a {
  border: 1px solid #e5e5e5;
  display: block;
  padding: 10px 15px;
  color: #333333;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li > a:hover {
  background-color: #ffc400;
  border-color: #ffc400;
  color: #ffffff !important;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li > a > i {
  display: block;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li > a.qty-cart_btn {
  background-color: #ffc400;
}
.sp-area .sp-nav .sp-content .qty-btn_area > ul li > a.qty-cart_btn:hover {
  background-color: #e52e06;
  border-color: #e52e06;
}
.sp-area .sp-nav .sp-content .uren-tag-line {
  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: 23px;
}
.sp-area .sp-nav .sp-content .uren-tag-line > h6 {
  font-size: 18px;
  margin-bottom: 0;
}
.sp-area .sp-nav .sp-content .uren-tag-line > a {
  padding-left: 10px;
  display: block;
}
@media (max-width: 575px) {
  .sp-area .sp-nav .sp-content .uren-tag-line > a {
    font-size: 14px;
  }
}
.sp-area .sp-nav .sp-content .uren-social_link {
  padding-top: 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;
}

/* ---Single Product Group Page--- */
.sp-group_area .sp-nav .sp-content .choose-group-product {
  padding-top: 30px;
}
.sp-group_area .sp-nav .sp-content .choose-group-product .cart-table table {
  margin-bottom: 0;
}
.sp-group_area .sp-nav .sp-content .choose-group-product .cart-table table tbody tr td {
  vertical-align: middle;
  text-align: center;
}

/* ---Single Produc Affiliate Page--- */
.sp-affiliate_area .sp-content .qty-btn_area {
  display: inline-block;
  padding-top: 25px !important;
}
.sp-affiliate_area .sp-content .qty-btn_area a.qty-buy_btn {
  background-color: #333333;
  color: #ffffff;
  padding: 15px 30px;
  display: block;
}
.sp-affiliate_area .sp-content .qty-btn_area a.qty-buy_btn:hover {
  background-color: #ffc400;
  color: #ffffff !important;
}

/* ---Single Product Slider Area--- */
.sp-slider_area {
  padding-top: 60px;
}
.sp-slider_area .sp-nav {
  padding: 30px 0 0;
}
.sp-slider_area .sp-nav .sp-slider {
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide {
  border-right: 0;
}
.sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide .single-product .product-img {
  position: relative;
  overflow: hidden;
}
.sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide .single-product .product-img > a {
  display: block;
}
.sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide .single-product .product-img > a .secondary-img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
}
.sp-slider_area .sp-nav .sp-slider .product-slide_item .inner-slide .single-product .product-img:hover .secondary-img {
  opacity: 1;
}
.sp-slider_area .sp-nav .sp-slider .slick-list .slick-slide {
  border-right: 1px solid #e5e5e5;
}
.sp-slider_area .sp-nav .sp-slider .slick-list .slick-slide.last-active {
  border-right: 0;
}
.sp-slider_area .sp-nav .sp-content {
  padding-top: 25px !important;
  float: unset;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.sp-slider_area .sp-nav .sp-content .product-size_box {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-slider_area .sp-nav .sp-content .uren-tag-line {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575px) {
  .sp-slider_area .sp-nav .sp-content .uren-tag-line {
    margin: 0 -30px;
  }
}
.sp-slider_area .sp-nav .sp-content .uren-social_link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 479px) {
  .sp-slider_area .sp-nav .sp-content .uren-social_link > ul > li > a {
    width: 35px;
  }
}

/* ---Single Product Gallery--- */
.sp-gallery_area .sp-nav {
  padding-top: 30px;
}
.sp-gallery_area .sp-nav .sp-gallery .lg-image {
  padding: 5px;
  border: 1px solid #e5e5e5;
}
.sp-gallery_area .sp-nav .sp-gallery .lg-image:hover {
  border-color: #ffc400;
}
@media (max-width: 991px) {
  .sp-gallery_area .sp-nav .sp-gallery .lg-image {
    margin-bottom: 30px;
  }
}
.sp-gallery_area .sp-nav .sp-gallery > .row:first-child {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .sp-gallery_area .sp-nav .sp-gallery > .row:first-child {
    margin-bottom: 0;
  }
}

/* ---Single Product Gallery Right--- */
.sp-gallery-right_area .sp-nav {
  padding: 30px 0;
}

/* ---Single Product Tab Style--- */
.sp-tab-style_left .sp-img_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-tab-style_left .sp-img_area .sp-img_slider {
  -webkit-flex-basis: 80%;
      -ms-flex-preferred-size: 80%;
          flex-basis: 80%;
  max-width: 80%;
  padding-left: 30px;
}
.sp-tab-style_left .sp-img_area .sp-img_slider-nav {
  -webkit-flex-basis: 20%;
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%;
  max-width: 20%;
  padding: 0;
  margin-top: 0;
}
.sp-tab-style_left.sp-tab-style_right .sp-img_area {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -webkit-flex-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
}
.sp-tab-style_left.sp-tab-style_right .sp-img_area .sp-img_slider {
  padding: 0 30px 0 0;
}

/* ---Single Product Sticky--- */
.sp-sticky_area {
  padding: 80px 0 0;
}
.sp-sticky_area .sp-nav {
  padding: 0;
}
.sp-sticky_area .sp-sticky_gallery {
  padding-left: 0 !important;
}
.sp-sticky_area .sp-sticky_gallery > .row:first-child {
  margin-bottom: 0 !important;
}
.sp-sticky_area .sp-sticky_gallery > .row [class*=col-] .lg-image {
  margin-bottom: 30px;
}
.sp-sticky_area .sp-sticky_gallery > .row:last-child [class*=col-]:last-child .lg-image {
  margin-bottom: 0;
}

.sp-product-tab_area {
  padding-bottom: 0;
  margin-bottom: -10px;
}
.sp-product-tab_area .sp-product-tab_nav {
  background-color: #ffffff;
  padding-top: 30px;
}
.sp-product-tab_area .sp-product-tab_nav .product-tab {
  background-color: #f4f4f4;
  padding: 25px 0 25px;
}
.sp-product-tab_area .sp-product-tab_nav .product-tab .product-menu {
  padding-bottom: 0 !important;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content {
  border: 1px solid #e5e5e5;
  padding: 30px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .product-description {
  margin: -5px 0 -5px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .product-description > ul > li {
  padding-top: 15px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .product-description > ul > li:first-child {
  padding-top: 0;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .product-description > ul > li strong {
  display: block;
  font-size: 18px;
  padding-bottom: 10px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .table-striped {
  margin-bottom: 25px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .table-striped > tbody tr:nth-child(2) td > p {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .table-striped > tbody tr:nth-child(2) td .rating-box > ul > li {
  display: inline-block;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .table-striped > tbody tr td {
  padding: 20px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal h2 {
  margin-bottom: 0;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal h2 {
    font-size: 25px;
  }
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group {
  margin-bottom: 0;
  padding-bottom: 15px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group.second-child {
  padding-bottom: 10px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group.last-child {
  padding-bottom: 0;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-input,
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-textarea {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 30px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-input.review-textarea,
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-textarea.review-textarea {
  height: 120px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group label {
  margin-bottom: 0;
  padding-bottom: 18px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .help-block {
  padding-top: 18px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .uren-btn-ps_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 (max-width: 479px) {
  .sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .uren-btn-ps_right {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 20px;
  }
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a {
  font-size: 16px;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a.br-active:after {
  color: #ffc400;
}
.sp-product-tab_area .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a.br-selected:after {
  color: #ffc400;
}

/* ---Single Product Slider Area--- */
.sp-product-slider_area {
  padding: 40px 0 60px;
}

/*----------------------------------------*/
/*  31 - Pages - Blog
/*----------------------------------------*/
.uren-blog_area {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .uren-blog_area {
    padding: 80px 0 75px;
  }
}
.uren-blog_area .blog-img {
  position: relative;
}
.uren-blog_area .blog-img > a > img {
  width: 100%;
}
.uren-blog_area .blog-img > span.post-date {
  background-color: #e52e06;
  color: #ffffff;
  position: absolute;
  height: 30px;
  line-height: 30px;
  width: 125px;
  text-align: center;
  font-weight: 700;
  top: 40px;
  left: -35px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.uren-blog_area .blog-content {
  padding-top: 25px;
}
.uren-blog_area .blog-content > h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 15px;
  line-height: 24px;
}
.uren-blog_area .blog-content > h3 > a {
  color: #222222;
}
.uren-blog_area.column-two_area .blog-item_wrap [class*=col-]:not(:nth-child(-n+2)) .blog-item {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .uren-blog_area.column-two_area .blog-item_wrap [class*=col-]:not(:first-child) .blog-item {
    margin-top: 30px;
  }
}
.uren-blog_area.column-two_area .single-blog_slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.uren-blog_area.column-two_area .single-blog_slider .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.uren-blog_area.grid-view_area .blog-item_wrap [class*=col-]:not(:nth-child(-n+3)) .blog-item {
  margin-top: 30px !important;
}
@media (max-width: 991px) {
  .uren-blog_area.grid-view_area .blog-item_wrap [class*=col-]:not(:first-child) .blog-item {
    margin-top: 30px;
  }
}
.uren-blog_area.grid-view_area .single-blog_slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.uren-blog_area.grid-view_area .single-blog_slider .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .uren-blog_area.blog-with_sidebar .blog-item_wrap [class*=col-]:not(:nth-child(-n+2)) .blog-item {
    margin-top: 30px !important;
  }
}
.uren-blog_area.list-view_area .list-item_wrap .blog-item .blog-content {
  padding-top: 0;
}
@media (max-width: 991px) {
  .uren-blog_area.list-view_area .list-item_wrap .blog-item .blog-content {
    padding-top: 30px;
  }
}
.uren-blog_area.list-view_area .list-item_wrap .blog-item .blog-content > h3 {
  line-height: 24px;
}
.uren-blog_area.list-view_area .list-item_wrap [class*=col-]:not(:nth-child(-n+2)) .blog-item {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .uren-blog_area.list-view_area .list-item_wrap [class*=col-]:not(:first-child) .blog-item {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .uren-blog_area.list-view_area.blog-with_sidebar-2 .list-item_wrap [class*=col-]:not(:first-child) .blog-item {
    margin-top: 30px !important;
  }
}
.uren-blog_area .single-blog_slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.uren-blog_area .single-blog_slider .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

/* ---Blog Sidebar--- */
.uren-blog-sidebar-wrapper {
  /* --Search Form--- */
}
@media (max-width: 991px) {
  .uren-blog-sidebar-wrapper {
    padding-top: 75px;
  }
}
.uren-blog-sidebar-wrapper .search-form_area form.search-form {
  position: relative;
}
.uren-blog-sidebar-wrapper .search-form_area form.search-form .search-field {
  border: 1px solid #e5e5e5;
  padding: 0 40px 0 10px;
  font-size: 14px;
  height: 40px;
  width: 100%;
  text-transform: capitalize;
}
.uren-blog-sidebar-wrapper .search-form_area form.search-form .search-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.uren-blog-sidebar-wrapper .search-form_area form.search-form .search-btn:hover {
  color: #ffc400;
}
.uren-blog-sidebar-wrapper .search-form_area form.search-form .search-btn > i {
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 43px;
  display: block;
  text-align: center;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar {
  padding-top: 30px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar:first-child {
  padding-top: 0;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar:last-child {
  padding-top: 20px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .uren-blog-sidebar-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin-bottom: 55px;
  text-align: center;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .uren-blog-sidebar-title:before {
  background-color: #e5e5e5;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -26px;
  left: 0;
  position: absolute;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .uren-blog-archive li {
  margin-bottom: 10px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .uren-blog-archive li a {
  font-size: 14px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .uren-blog-archive li:last-child {
  margin-bottom: 0;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post .recent-post_thumb {
  width: 65px;
  height: 100%;
  margin-bottom: 30px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post .recent-post_desc {
  width: calc(100% - 65px);
  padding-left: 15px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post .recent-post_desc span {
  display: block;
  text-transform: capitalize;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post .recent-post_desc span a:hover {
  color: #ea3a3c;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-post .recent-post_desc .post-date {
  font-weight: 400;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-comment .user-img {
  width: 65px;
  height: 100%;
  margin-bottom: 30px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-comment .user-img > img {
  border-radius: 100%;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-comment .user-info {
  width: calc(100% - 65px);
  padding-left: 15px;
}
.uren-blog-sidebar-wrapper .uren-blog-sidebar .recent-comment .user-info > span {
  display: block;
  text-transform: capitalize;
}

/* ---Uren's Blog Details--- */
.uren-blog-details .blog-item .blog-content {
  background-color: transparent;
  padding: 25px 0;
}
.uren-blog-details .uren-blog-blockquote {
  padding: 0 0 0 40px;
}
@media (max-width: 991px) {
  .uren-blog-details .uren-blog-blockquote {
    padding: 0;
  }
}
.uren-blog-details .uren-blog-blockquote blockquote {
  border: 1px solid #e5e5e5;
  padding: 40px;
  position: relative;
  margin: 0 0 20px;
  font-style: italic;
  background: #f4f4f4;
}
.uren-blog-details .uren-blog-blockquote blockquote p:before {
  content: "";
  background: #ffc400;
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
}
.uren-blog-details .uren-tag-line {
  padding: 25px 0 25px;
  margin-top: 25px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.uren-blog-details .uren-tag-line h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  padding-right: 5px;
}
.uren-blog-details .uren-tag-line a {
  font-style: italic;
  text-transform: capitalize;
  font-size: 16px;
}
.uren-blog-details .uren-tag-line a:hover {
  color: #ffc400;
}
.uren-blog-details .uren-social_link {
  padding-top: 30px;
  text-align: center;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-social_link {
    text-align: left;
  }
}
.uren-blog-details .uren-comment-section {
  padding-top: 28px;
}
.uren-blog-details .uren-comment-section h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 25px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.uren-blog-details .uren-comment-section ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 30px 30px 23px;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li {
    display: block;
  }
}
.uren-blog-details .uren-comment-section ul li .author-avatar {
  -ms-flex-preferred-size: 70px;
  -webkit-flex-basis: 70px;
          flex-basis: 70px;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li .author-avatar {
    text-align: center;
    padding-bottom: 20px;
  }
}
.uren-blog-details .uren-comment-section ul li .comment-body {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  padding-left: 30px;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li .comment-body {
    padding-left: 0;
  }
}
.uren-blog-details .uren-comment-section ul li .comment-body h5 {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 13px;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li .comment-body h5 {
    padding-bottom: 18px;
    overflow: hidden;
    line-height: 26px;
  }
}
.uren-blog-details .uren-comment-section ul li .comment-body p {
  font-size: 14px;
  max-width: 80%;
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li .comment-body p {
    max-width: 100%;
  }
}
.uren-blog-details .uren-comment-section ul li .comment-body .comment-post-date {
  padding-bottom: 10px;
}
@media (max-width: 479px) {
  .uren-blog-details .uren-comment-section ul li .comment-body .comment-post-date {
    padding-bottom: 15px;
  }
}
.uren-blog-details .uren-comment-section ul li .comment-body .reply-btn {
  float: right;
}
.uren-blog-details .uren-comment-section ul li .comment-body .reply-btn a {
  color: #ffc400;
  font-size: 12px;
  display: inline-block;
  width: 60px;
  height: 25px;
  line-height: 21px;
  text-align: center;
  border-radius: 20px;
  text-transform: capitalize;
  border: 1px solid #ffc400;
}
.uren-blog-details .uren-comment-section ul li .comment-body .reply-btn a:hover {
  color: #ffffff !important;
  background-color: #ffc400;
}
.uren-blog-details .uren-comment-section ul .comment-children {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .uren-blog-details .uren-comment-section ul .comment-children {
    margin-left: 15px;
  }
}
.uren-blog-details .uren-blog-comment-wrapper h3 {
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 26px;
  margin-bottom: 0;
}
.uren-blog-details .uren-blog-comment-wrapper p {
  padding: 20px 0 0;
  font-size: 14px;
}
.uren-blog-details .uren-blog-comment-wrapper form .comment-post-box label {
  font-weight: 600;
  margin-bottom: 25px;
  display: block;
  text-transform: capitalize;
}
.uren-blog-details .uren-blog-comment-wrapper form .comment-post-box .coment-field {
  background: #f4f4f4;
  border: none;
  padding: 8px 10px;
  width: 100%;
}
.uren-blog-details .uren-blog-comment-wrapper form .comment-post-box textarea {
  height: 130px;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
  background: #f4f4f4;
  border: none;
  font-size: 14px;
}
.uren-blog-details .uren-blog-comment-wrapper form .comment-post-box .comment-btn_wrap {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .uren-blog-details .uren-blog-comment-wrapper form .comment-post-box [class*=col-]:nth-child(-n+3) .coment-field {
    margin-bottom: 30px;
  }
}

/*----------------------------------------*/
/*  32 - Pages - My Account
/*----------------------------------------*/
.account-page-area {
  padding: 80px 0;
}
.account-page-area .myaccount-tab-trigger {
  display: block;
}
@media (max-width: 991px) {
  .account-page-area .myaccount-tab-trigger {
    padding-bottom: 30px;
  }
}
.account-page-area .myaccount-tab-trigger li {
  display: block;
}
.account-page-area .myaccount-tab-trigger li:first-child {
  margin-top: -1px;
}
.account-page-area .myaccount-tab-trigger li a {
  display: block;
  background: #999999;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
}
.account-page-area .myaccount-tab-trigger li a.active {
  background: #ffc400;
  color: #ffffff;
}
.account-page-area .myaccount-tab-trigger li a.active:hover {
  color: #ffffff !important;
}
.account-page-area .myaccount-tab-trigger li a:hover {
  color: #ffc400;
}

.myaccount-tab-content {
  border: 1px solid #e5e5e5;
  padding: 30px;
}

.myaccount-dashboard p {
  margin-bottom: 20px;
}
.myaccount-dashboard p:last-child {
  margin-bottom: 0;
}

.myaccount-orders .table {
  margin-bottom: 0;
}
.myaccount-orders .table .account-order-id:hover {
  color: #ffc400;
}
.myaccount-orders .table.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.myaccount-orders .table td,
.myaccount-orders .table th {
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 767px) {
  .myaccount-orders .table td,
.myaccount-orders .table th {
    min-width: 180px;
  }
}
.myaccount-orders .small-title {
  margin-bottom: 15px;
}

/* ---My Account Form Style--- */
.uren-form,
.uren-form-boxed {
  padding: 30px;
  border-radius: 0;
  border: 1px solid #e5e5e5;
}
.uren-form .uren-form-inner,
.uren-form-boxed .uren-form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: -20px;
}
@media (max-width: 479px) {
  .uren-form .uren-form-inner,
.uren-form-boxed .uren-form-inner {
    display: block;
  }
}
.uren-form .uren-form-inner .single-input,
.uren-form-boxed .uren-form-inner .single-input {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  margin-top: 20px;
}
@media (max-width: 479px) {
  .uren-form .uren-form-inner .single-input,
.uren-form-boxed .uren-form-inner .single-input {
    max-width: 100% !important;
  }
}
.uren-form .uren-form-inner .single-input.single-input-half,
.uren-form-boxed .uren-form-inner .single-input.single-input-half {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 15px);
  -webkit-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}
.uren-form .uren-form-inner .single-input label,
.uren-form-boxed .uren-form-inner .single-input label {
  margin-bottom: 8px;
  display: block;
}
.uren-form .uren-form-inner .single-input input,
.uren-form .uren-form-inner .single-input select,
.uren-form .uren-form-inner .single-input textarea,
.uren-form-boxed .uren-form-inner .single-input input,
.uren-form-boxed .uren-form-inner .single-input select,
.uren-form-boxed .uren-form-inner .single-input textarea {
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  height: 40px;
  width: 100%;
}
.uren-form .uren-form-inner .single-input input:first-child,
.uren-form-boxed .uren-form-inner .single-input input:first-child {
  margin-top: 20px;
}
.uren-form .uren-form-inner .single-input .checkbox-input,
.uren-form-boxed .uren-form-inner .single-input .checkbox-input {
  display: inline-block;
}
.uren-form .uren-form-inner .single-input .checkbox-input label,
.uren-form-boxed .uren-form-inner .single-input .checkbox-input label {
  display: inline-block;
}
.uren-form .uren-form-inner a,
.uren-form-boxed .uren-form-inner a {
  font-size: 13px;
}
.uren-form .uren-form-inner a:hover,
.uren-form-boxed .uren-form-inner a:hover {
  color: #ffc400;
}

/*----------------------------------------*/
/*  33 - Pages - Login | Register
/*----------------------------------------*/
/* ---JB's Login Register Area--- */
.uren-login-register_area {
  padding: 80px 0;
}

@media (max-width: 991px) {
  [class*=col-]:first-child form .login-form {
    margin-bottom: 30px;
  }
}

.login-form {
  background-color: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
}
.login-form .login-title {
  font-size: 20px;
  line-height: 23px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.login-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.login-form input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  line-height: 23px;
  padding: 10px 20px;
  font-size: 14px;
  color: #888888;
  margin-bottom: 15px;
}
.login-form input[type=checkbox] {
  width: auto;
}

.login-form .check-box {
  float: left;
  margin-right: 70px;
}
.login-form .check-box:last-child {
  margin-right: 0;
}
.login-form .check-box input[type=checkbox] {
  display: none;
}
.login-form .check-box input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin: 0;
}
.login-form .check-box input[type=checkbox] + label:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid #e5e5e5;
  content: "";
}
.login-form .check-box input[type=checkbox] + label:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  opacity: 0;
  width: 20px;
  text-align: center;
}
.login-form .check-box input[type=checkbox]:checked + label:before {
  border: 2px solid #888888;
}
.login-form .check-box input[type=checkbox]:checked + label:after {
  opacity: 1;
}

@media (max-width: 767px) {
  .forgotton-password_info {
    padding-top: 15px;
  }
}

/*-- Place Order --*/
.uren-login_btn,
.uren-register_btn {
  background-color: #999999;
  color: #ffffff;
  display: block;
  margin-top: 30px;
  width: 140px;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  border: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .uren-login_btn,
.uren-register_btn {
    margin-top: 25px;
  }
}
.uren-login_btn:hover,
.uren-register_btn:hover {
  background: #ffc400;
}

.uren-register_btn {
  margin-top: 15px;
}

/*----------------------------------------*/
/*  34 - Pages - Wishlist
/*----------------------------------------*/
.uren-wishlist_area {
  padding: 80px 0;
}

.table-content table {
  background: #ffffff none repeat scroll 0 0;
  border-color: #e5e5e5;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.table-content table th,
.table-content table td {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.table-content table th {
  border-top: medium none;
  font-size: 15px;
  text-transform: capitalize;
  padding: 20px 10px;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}
.table-content table td {
  border-top: medium none;
  padding: 18px 10px;
  vertical-align: middle;
  font-size: 13px;
}
@media (max-width: 767px) {
  .table-content table td {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .table-content table td:nth-child(3) {
    padding: 32.1px 10px;
    display: block;
    width: 180px;
  }
}
.table-content table td.uren-product_remove {
  font-size: 20px;
}
.table-content table td.uren-product_remove > a:hover i {
  color: #ffc400;
}
.table-content table td.uren-product_remove > a > i {
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.table-content table td.uren-product-name {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.table-content table td.uren-product-price {
  font-size: 16px;
  font-weight: 700;
}
.table-content table td.uren-product-stock-status span.in-stock, .table-content table td.uren-product-stock-status span.out-stock {
  color: #ffc400;
  font-size: 12px;
  text-transform: capitalize;
}
.table-content table td.uren-product-stock-status span.out-stock {
  color: #ea3a3c;
}
.table-content table td.uren-cart_btn a {
  font-size: 14px;
  text-transform: uppercase;
  background: #999999;
  color: #ffffff;
  height: 40px;
  line-height: 43px;
  width: 130px;
  font-weight: 700;
  display: inline-block;
}
.table-content table td.uren-cart_btn a:hover {
  background: #ffc400;
  color: #ffffff !important;
}
.table-content .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #e5e5e5;
}

/*----------------------------------------*/
/*  35 - Pages - Cart
/*----------------------------------------*/
.uren-cart-area {
  padding: 80px 0;
}

.table-content table td.product-subtotal {
  font-size: 16px;
  font-weight: 700;
}
.table-content table td.quantity .cart-plus-minus {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .uren-cart-area .table-content table td:nth-child(3) {
    padding: 45.1px 10px;
  }
}

.coupon-all {
  margin-top: 30px;
}
.coupon-all .coupon {
  float: left;
}
.coupon-all .coupon input {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  border-radius: 0;
  height: 42px;
  width: 120px;
  padding: 0 10px;
}
.coupon-all .coupon input.button,
.coupon-all .coupon2 input.button {
  background-color: #999999;
  border: 0 none;
  border-radius: 2px;
  color: #ffffff;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  height: 42px;
  letter-spacing: 1px;
  line-height: 42px;
  padding: 0 25px;
  text-transform: uppercase;
  width: inherit;
}
.coupon-all .coupon input.button:hover,
.coupon-all .coupon2 input.button:hover {
  background: #ffc400;
}
.coupon-all .coupon.coupon2,
.coupon-all .coupon2.coupon2 {
  float: right;
}
@media (max-width: 479px) {
  .coupon-all .coupon.coupon2,
.coupon-all .coupon2.coupon2 {
    float: left;
    padding-top: 30px;
  }
}

.cart-page-total {
  padding-top: 30px;
}
.cart-page-total > h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.cart-page-total > ul {
  border: 1px solid #e5e5e5;
}
.cart-page-total > ul li {
  list-style: none;
  font-size: 15px;
  padding: 10px 30px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 700;
}
.cart-page-total > ul li:last-child {
  border-bottom: 0;
}
.cart-page-total > ul li span {
  float: right;
}
.cart-page-total a {
  background-color: #999999;
  border: 1px solid #e5e5e5;
  color: #ffffff;
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  text-transform: capitalize;
}
.cart-page-total a:hover {
  background: #ffc400;
  border-color: #ffc400;
  color: #ffffff !important;
}

/*----------------------------------------*/
/*  36 - Pages - Checkout
/*----------------------------------------*/
.checkout-area {
  padding: 80px 0 75px;
}

.coupon-accordion h3 {
  background-color: #f4f4f4;
  border-top: 3px solid #ffc400;
  font-size: 14px;
  font-weight: 400;
  list-style: outside none none;
  margin: 0 0 30px;
  padding: 16px 32px 16px 56px;
  position: relative;
  width: auto;
  text-transform: none;
}
@media (max-width: 479px) {
  .coupon-accordion h3 {
    line-height: 24px;
  }
}
.coupon-accordion h3:before {
  color: #ffc400;
  content: "\f133";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  left: 24px;
  position: absolute;
  top: 16px;
}
.coupon-accordion span {
  cursor: pointer;
  text-transform: none;
}
.coupon-accordion span:hover {
  color: #ffc400;
}
.coupon-accordion .coupon-content {
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  display: none;
  padding: 20px;
}
.coupon-accordion .coupon-content .coupon-info p {
  margin-bottom: 0;
}
.coupon-accordion .coupon-content .coupon-info p.form-row-first label, .coupon-accordion .coupon-content .coupon-info p.form-row-last label {
  display: block;
}
.coupon-accordion .coupon-content .coupon-info p.form-row-first label span.required, .coupon-accordion .coupon-content .coupon-info p.form-row-last label span.required {
  color: #ff0000;
  font-weight: 700;
}
.coupon-accordion .coupon-content .coupon-info p.form-row-first input, .coupon-accordion .coupon-content .coupon-info p.form-row-last input {
  border: 1px solid #e5e5e5;
  height: 36px;
  margin: 0 0 14px;
  border-radius: 0;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 370px;
  background-color: transparent;
}
.coupon-accordion .coupon-content .coupon-info p.form-row input[type=submit] {
  background: #999999 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  float: left;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 30px;
  text-shadow: none;
  text-transform: uppercase;
  width: inherit;
}
.coupon-accordion .coupon-content .coupon-info p.form-row input[type=submit]:hover {
  background: #ffc400;
}
.coupon-accordion .coupon-content .coupon-info p.form-row input[type=checkbox] {
  height: inherit;
  position: relative;
  top: 2px;
  width: inherit;
}
.coupon-accordion .coupon-content .coupon-info p.form-row label {
  margin-top: 7px;
}
.coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type=submit] {
  background: #ffc400;
}
.coupon-accordion .coupon-content .coupon-info p.lost-password {
  margin-top: 15px;
}
.coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
  color: #ffc400;
}

.coupon-checkout-content {
  margin-bottom: 30px;
  display: none;
}
.coupon-checkout-content .coupon-info .checkout-coupon {
  margin-bottom: 0;
}
.coupon-checkout-content .coupon-info .checkout-coupon input[type=text] {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 36px;
  padding-left: 10px;
  width: 170px;
}
.coupon-checkout-content .coupon-info .checkout-coupon input[type=submit] {
  background: #999999;
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  height: 36px;
  cursor: pointer;
  margin-left: 6px;
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: inherit;
}
.coupon-checkout-content .coupon-info .checkout-coupon input[type=submit]:hover {
  background: #ffc400;
}
@media (max-width: 479px) {
  .coupon-checkout-content .coupon-info .checkout-coupon .coupon-inner_btn {
    margin: 28px 0 0 !important;
  }
}

.checkbox-form h3 {
  border-bottom: 1px solid #e5e5e5;
  font-size: 25px;
  margin: 0 0 25px;
  padding-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 479px) {
  .checkbox-form h3 {
    font-size: 18px;
  }
}
.checkbox-form .country-select {
  margin-bottom: 25px;
}
.checkbox-form .country-select .myniceselect.nice-select span {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  width: 100%;
  padding: 0 0 0 15px;
}
.checkbox-form .checkout-form-list {
  margin-bottom: 30px;
}
.checkbox-form .checkout-form-list input[type=text],
.checkbox-form .checkout-form-list input[type=password],
.checkbox-form .checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 42px;
  width: 100%;
  padding: 0 0 0 10px;
}
.checkbox-form .checkout-form-list input[type=checkbox] {
  display: inline-block;
  height: inherit;
  margin-right: 10px;
  position: relative;
  top: 2px;
  width: inherit;
}
.checkbox-form .checkout-form-list.create-acc {
  margin-bottom: 15px !important;
}
.checkbox-form .checkout-form-list.create-acc label {
  display: inline-block;
}
.checkbox-form .country-select label, .checkbox-form.checkout-form-list label {
  margin: 0 0 5px;
  display: block;
}
.checkbox-form .country-select label span.required, .checkbox-form.checkout-form-list label span.required {
  color: #ffc400;
  display: inline-block;
  font-size: 24px;
  line-height: 16px;
  position: relative;
  top: 5px;
}

.different-address h3 label {
  display: inline-block;
  margin-right: 20px;
  font-size: 25px;
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .different-address h3 label {
    font-size: 15px;
  }
}
.different-address h3 input {
  height: inherit;
  line-height: normal;
  margin: 4px 0 0;
  position: relative;
  top: 0;
  width: auto;
}

.order-notes .checkout-form-list-2 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .order-notes .checkout-form-list-2 {
    margin-bottom: 30px;
  }
}
.order-notes textarea {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  height: 90px;
  padding: 15px;
  width: 100%;
}

.create-account,
#ship-box-info {
  display: none;
}

.your-order {
  background: #f4f4f4;
  padding: 30px 40px 30px;
}
.your-order h3 {
  border-bottom: 1px solid #e5e5e5;
  font-size: 25px;
  padding-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 479px) {
  .your-order h3 {
    font-size: 18px;
  }
}
.your-order .your-order-table table {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  width: 100%;
}
.your-order .your-order-table table thead {
  background-color: #f4f4f4;
}
.your-order .your-order-table table thead tr th {
  border-top: medium none;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  width: 250px;
}
.your-order .your-order-table table thead tr th,
.your-order .your-order-table table thead tr td {
  border-bottom: 1px solid #e5e5e5;
  border-right: medium none;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}
.your-order .your-order-table table .cart_item:hover {
  background: #f4f4f4;
}
.your-order .your-order-table table .order-total td {
  border-bottom: medium none;
}
.your-order .your-order-table table .order-total td span {
  font-size: 20px;
}
.your-order .your-order-table table .order-total th {
  border-bottom: medium none;
  font-size: 18px;
}

.payment-method {
  margin-top: 20px;
}
.payment-method .payment-accordion .card {
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
}
.payment-method .payment-accordion .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #f4f4f4;
  border-bottom: 0;
}
.payment-method .payment-accordion .card-body {
  padding: 0;
}
.payment-method .payment-accordion .panel.panel-default {
  margin-bottom: 20px;
}
.payment-method .payment-accordion .panel-title {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.payment-method .payment-accordion .panel-title a:hover {
  color: #ffc400 !important;
}

.order-button-payment input {
  background: #999999;
  border: medium none;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  height: 50px;
  margin: 20px 0 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
}
.order-button-payment input:hover {
  background: #ffc400;
}

/*----------------------------------------*/
/*  37 - Pages - Compare
/*----------------------------------------*/
.compare-area {
  padding: 80px 0;
}

.compare-table .table thead th {
  border-width: 1px;
  padding: 15px 10px;
}
.compare-table .table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.compare-table .table tbody tr td,
.compare-table .table tbody tr th {
  vertical-align: middle;
  text-align: center;
}
.compare-table .table tbody tr th {
  min-width: 200px;
}
.compare-table .table tbody tr td {
  min-width: 250px;
}
.compare-table .table tbody tr td .compare-pdoduct-image {
  max-width: 200px;
  display: inline-block;
  padding: 20px 0;
}
.compare-table .table tbody tr td .compare-pdoduct-image a {
  display: inline-block;
}
.compare-table .table tbody tr td .compare-pdoduct-image .uren-compare_btn {
  margin-top: 30px;
}
.compare-table .table tbody tr td .compare-pdoduct-image .uren-compare_btn:hover {
  color: #ffffff !important;
}
.compare-table .table tbody tr td .compare-product-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}
.compare-table .table tbody tr td .compare-product-name a {
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
}
.compare-table .table tbody tr td .compare-product-name a:hover {
  color: #ffc400;
}
.compare-table .table tbody tr td .rating-box > ul > li {
  display: inline-block;
}
.compare-table .table-hover > tbody > tr:hover {
  --bs-table-accent-bg: transparent;
}

/*----------------------------------------*/
/*  38 - Pages - Contact
/*----------------------------------------*/
/* ---Google Map Related Stuff--- */
#google-map {
  height: 400px;
}

/* ---Contact Main Page--- */
.contact-main-page {
  padding: 80px 0 60px;
  /* ---Contact Form Area--- */
}
.contact-main-page .contact-page-side-content {
  background-color: #f4f4f4;
  padding: 30px 30px 19px;
  margin-top: 80px;
}
@media (max-width: 479px) {
  .contact-main-page .contact-page-side-content {
    padding: 25px 30px 19px;
  }
}
.contact-main-page .contact-page-side-content .contact-page-message {
  margin-bottom: 0;
  padding-bottom: 25px;
}
.contact-main-page .contact-page-side-content .single-contact-block {
  padding-bottom: 3px;
  margin-bottom: 27px;
  border-bottom: 1px solid #e5e5e5;
}
.contact-main-page .contact-page-side-content .single-contact-block:last-child {
  border-bottom: none;
}
.contact-main-page .contact-page-side-content .single-contact-block h4 {
  margin-bottom: 0;
  padding-bottom: 25px;
}
.contact-main-page .contact-page-side-content .single-contact-block p {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.contact-main-page .contact-page-side-content .single-contact-block.last-child > h4 {
  padding-bottom: 20px;
}
.contact-main-page .contact-page-title {
  font-size: 32px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 479px) {
  .contact-main-page .contact-page-title {
    font-size: 25px;
  }
}
.contact-main-page .contact-form-content {
  margin-top: 75px;
}
.contact-main-page .contact-form-content .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-main-page .contact-form-content .contact-form .form-group.form-group-2 {
  margin-bottom: 25px;
}
.contact-main-page .contact-form-content .contact-form .form-group label {
  display: block;
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  margin-bottom: 20px;
  cursor: text;
}
.contact-main-page .contact-form-content .contact-form .form-group label span, .contact-main-page .contact-form-content .contact-form .form-group label.required {
  color: #ff0000;
}
.contact-main-page .contact-form-content .contact-form .form-group input {
  background-color: #ffffff;
  width: 100%;
  height: 50px;
  line-height: 50px;
  outline: none;
  border: 1px solid #e5e5e5;
  padding-left: 20px;
}
.contact-main-page .contact-form-content .contact-form .form-group textarea {
  background-color: #ffffff;
  width: 100%;
  outline: none;
  border: 1px solid #e5e5e5;
  padding-left: 20px;
  line-height: 50px;
  height: 200px;
}
.contact-main-page .contact-form-content .contact-form .form-group .uren-contact-form_btn {
  line-height: 12px;
  display: inline-block;
  padding: 16px 30px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 12px;
  background-color: #999999;
  border: 1px solid #999999;
  color: #ffffff;
  text-transform: uppercase;
}
.contact-main-page .contact-form-content .contact-form .form-group .uren-contact-form_btn:hover {
  background-color: #ffc400;
  color: #ffffff;
  border-color: #ffc400;
}

/*----------------------------------------*/
/*  39 - Pages - About Us
/*----------------------------------------*/
.about-us-area {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .about-us-area .overview-content {
    padding-top: 25px;
  }
}
.about-us-area .overview-content > h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-us-area .overview-content > h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area .overview-content > h2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .about-us-area .overview-content > h2 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .about-us-area .overview-content > h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.about-us-area .overview-content > h2 span {
  color: #ffc400;
}
.about-us-area .overview-content > h2:before {
  background-color: #f4f4f4;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
.about-us-area .overview-content > h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffc400;
  height: 2px;
  width: 170px;
}
.about-us-area .overview-content > .short_desc {
  margin-bottom: 0;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .about-us-area .overview-content .uren-about-us_btn-area {
    float: left;
    width: 100%;
  }
}
.about-us-area .overview-content .uren-about-us_btn-area .about-us_btn {
  background: #ffc400;
  color: #ffffff;
  display: block;
  float: left;
  height: 50px;
  line-height: 50px;
  width: 145px;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-us-area .overview-content .uren-about-us_btn-area .about-us_btn:hover {
  background: #999999;
  color: #ffffff !important;
}

.project-count-area {
  padding-top: 75px;
}
.project-count-area .single-count:hover .count-icon span {
  -webkit-animation: 850ms ease-in-out 0s normal none 1 running tada;
          animation: 850ms ease-in-out 0s normal none 1 running tada;
}
.project-count-area .single-count .count-icon span {
  font-size: 50px;
  color: #595959;
  line-height: 1;
  display: inline-block;
}
.project-count-area .single-count .count-title h2 {
  color: #ffc400;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin: 15px 0 5px;
}
.project-count-area .single-count .count-title > span {
  font-size: 20px;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-count-area [class*=col-]:nth-child(-n+2) .single-count {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-count-area [class*=col-]:nth-child(-n+2) .single-count {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .project-count-area [class*=col-] {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .project-count-area [class*=col-]:last-child {
    padding-bottom: 0;
  }
}

.team-area {
  padding-top: 70px;
  padding-bottom: 80px;
}
.team-area .section_title-2 {
  padding-bottom: 25px;
}
.team-area .section_title-2 > h3 {
  margin-bottom: 0;
}
.team-area .team-member .team-thumb img {
  width: 100%;
  display: block;
  overflow: hidden;
}
.team-area .team-member .team-content {
  padding-top: 25px;
}
.team-area .team-member .team-content h3 {
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.team-area .team-member .team-content p {
  margin-bottom: 0;
  padding-bottom: 15px;
}
.team-area .team-member .team-content .uren-social_link {
  padding-top: 20px;
}
.team-area .team-member .team-content .uren-social_link > ul > li {
  padding-right: 5px;
}
.team-area .team-member .team-content .uren-social_link > ul > li > a {
  width: 35px;
  height: 35px;
  line-height: 33px;
}
@media (max-width: 1199px) {
  .team-area .team-member .team-content .uren-social_link > ul > li > a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area [class*=col-]:nth-child(-n+2) .team-member {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-area [class*=col-]:nth-child(-n+2) .team-member {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .team-area [class*=col-]:nth-child(-n+3) .team-member {
    padding-bottom: 30px;
  }
}

/*----------------------------------------*/
/*  40 - Pages - FAQ
/*----------------------------------------*/
.frequently-area {
  padding: 75px 0 65px;
}
.frequently-area .frequently-content .frequently-desc {
  margin-bottom: 25px;
}
.frequently-area .frequently-content .frequently-desc h3 {
  font-weight: 400;
  text-transform: capitalize;
  padding-bottom: 15px;
  line-height: 32px;
  font-size: 25px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .frequently-area .frequently-content .frequently-desc h3 {
    font-size: 20px;
  }
}
.frequently-area .frequently-content .frequently-desc p {
  margin: 0;
  font-size: 14px;
}
.frequently-area .frequently-accordion .actives {
  border: 1px solid #ffc400;
}
.frequently-area .frequently-accordion .card {
  border-radius: 0;
  margin-bottom: 15px;
}
.frequently-area .frequently-accordion .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #f4f4f4;
  border: 0;
}
.frequently-area .frequently-accordion .card-header a {
  font-weight: 400;
  padding: 15px 10px 15px 25px;
  text-transform: capitalize;
  line-height: 24px;
  cursor: pointer;
  display: block;
}
@media (max-width: 767px) {
  .frequently-area .frequently-accordion .card-header a {
    font-size: 14px;
  }
}
.frequently-area .frequently-accordion .card-header a:hover {
  color: #ffc400 !important;
}
.frequently-area .frequently-accordion .card-header a.collapsed:before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #bababa;
}
@media (max-width: 479px) {
  .frequently-area .frequently-accordion .card-header a.collapsed:before {
    display: none;
  }
}
.frequently-area .frequently-accordion .card-header a:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #bababa;
}
@media (max-width: 479px) {
  .frequently-area .frequently-accordion .card-header a:after {
    display: none;
  }
}

/*----------------------------------------*/
/*  41 - Pages - 404
/*----------------------------------------*/
.error404-area {
  padding: 60px 0 80px;
}
.error404-area .search-error-wrapper h1 {
  color: #ffc400;
  font-size: 120px;
  margin-bottom: 0;
  padding-bottom: 22px;
}
.error404-area .search-error-wrapper h2 {
  font-size: 28px;
  margin-bottom: 0;
  padding-bottom: 20px;
  color: inherit;
}
@media (max-width: 479px) {
  .error404-area .search-error-wrapper h2 {
    font-size: 25px;
  }
}
.error404-area .search-error-wrapper > p {
  margin: 0 auto 0;
  max-width: 520px;
  font-size: 16px;
}
.error404-area .search-error-wrapper .error-form .inner-error_form {
  position: relative;
  width: 275px;
  margin: 22px auto 30px;
}
.error404-area .search-error-wrapper .error-form .inner-error_form input {
  border: 1px solid #e5e5e5;
  font-size: 13px;
  position: relative;
  width: 270px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 15px;
}
.error404-area .search-error-wrapper .error-search_btn {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  padding: 7px 20px;
  position: absolute;
  right: 0;
  top: 0;
  color: inherit;
}
.error404-area .search-error-wrapper .error-search_btn:hover {
  color: #ffc400;
}
.error404-area .search-error-wrapper .uren-error_btn {
  background: #ffc400;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  line-height: 43px;
  padding: 0 30px;
  text-transform: uppercase;
}
.error404-area .search-error-wrapper .uren-error_btn:hover {
  background: #999999;
  color: #ffffff !important;
}




.select-search-category ul.list {
    height: 140px !important;
    overflow-y: auto;
    overscroll-behavior-x: none;
}


.header-middle_area .header-logo_area {
    padding: 0px 0;
}


.bg-2 {
    background-image: url(../images/slider/banner.webp);
}

.bg-1 {
    background-image: url(../images/slider/banner-1.webp);
}


/* ======= Brands Section ======= */
.brands-new {
  background: #fff;
  border: 1px solid #f1c232;
  border-radius: 8px;
  padding: 40px 20px;
  margin: 0 auto;
  width: 92%;
  text-align: center;

}

.brands-new h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0e1d40;
  margin-bottom: 30px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-item img {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.brand-item p {
  font-size: 15px;
  color: #0e1d40;
  font-weight: 500;
}

.brand-item:hover img {
  transform: scale(1.1);
}

.view-more {
  margin-top: 25px;
}

.view-more a {
  color: #f2bf33;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-more a:hover {
  color: #0e1d40;
  text-decoration: underline;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .brands-new {
    padding: 30px 15px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .brand-item img {
    width: 55px;
  }

  .brand-item p {
    font-size: 13px;
  }

  .view-more {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #mobile-service img {
    height: 300px;
  }
}


/* ====== ASHOKA ABOUT SECTION ====== */
.ashoka-about {
  padding: 20px 20px;
  background: #f9fafc;
  position: relative;
  overflow: hidden;
}

.ashoka-about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #f2bf33;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0e1d40;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 35px;
}

.feature-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-box i {
  color: #f2bf33;
  font-size: 20px;
  margin-right: 10px;
}

.feature-box span {
  font-size: 15px;
  color: #0e1d40;
  font-weight: 500;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.btn-learn {
  display: inline-block;
  padding: 12px 30px;
  background: #0e1d40;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-learn:hover {
  /* background: #f2bf33; */
  color: #0e1d40;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
  }

  .feature-box {
    flex: 1 1 100%;
    justify-content: center;
  }

  .btn-learn {
    padding: 10px 24px;
    font-size: 15px;
  }
}



/* Container for padding/centering */
.ashoka-testi-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* 1. Main Slider Container */
.ashoka-testi {
    display: grid;
    /* This creates the scrolling strip: auto-flow ensures items stay in one row */
    grid-auto-flow: column;
    grid-auto-columns: 100%; /* Default: Mobile view - 1 item visible */
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    
    /* 3. Mobile Scroll Behavior: Snap to the start of each item */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* For smoother iOS scrolling */

    /* Hide the scrollbar but maintain scroll functionality */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.ashoka-testi::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Styling for the individual review boxes */
.ashoka-testi-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    min-width: 100%; /* Ensures 1 item takes up 100% of the visible container width on mobile */
    scroll-snap-align: start; /* Each item is a valid snap point */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 2. Desktop/Laptop View: 3 boxes per view */
@media (min-width: 992px) {
    .ashoka-testi {
        /* On desktop, each item is 1/3 of the container width (minus gap) */
        grid-auto-columns: calc((100% - 40px) / 3);
    }
    .ashoka-testi-item {
        /* Override min-width for desktop view */
        min-width: calc((100% - 40px) / 3);
    }
}


.popular-search_area {
    padding: 00px 20px;
}


#slider{
  padding: 0px 15px;
}

.featured-categories_area {
    padding: 0px 0 0;
}


.ashoka-wheels-single-service {
  padding: 60px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.ashoka-wheels-single-service .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* ==== Left Side ==== */
.service-gallery {
  flex: 1 1 50%;
  position: relative;
}

.service-gallery .main-image {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.service-gallery .main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.thumb-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.thumbnail-carousel {
  display: flex;
  overflow: hidden;
  gap: 10px;
  scroll-behavior: smooth;
  width: 100%;
}

.thumbnail-carousel img {
  width: 17%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-carousel img:hover,
.thumbnail-carousel img.active {
  border-color: #f2bf33;
}

.thumb-btn {
  background: #0e1d40;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.thumb-btn:hover {
  background: #f2bf33;
  color: #0e1d40;
}

.thumb-btn.prev {
  position: absolute;
  left: -45px;
}

.thumb-btn.next {
  position: absolute;
  right: -45px;
}

/* ==== Right Side ==== */
.service-content {
  flex: 1 1 45%;
}

.service-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0e1d40;
}

.service-shortdesc {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ==== Product Details ==== */
.product-details p {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

.product-details strong {
  color: #0e1d40;
}

.rating {
  display: flex;
  margin-bottom: 10px;
}

.star {
  color: #f2bf33;
  font-size: 18px;
  margin-right: 2px;
}

/* ==== Features ==== */
.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}

.service-features li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.enquiry-btn {
  display: inline-block;
  background: #f2bf33;
  color: #0e1d40;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #0e1d40;
  color: #fff;
}

/* ==== Responsive ==== */
@media (max-width: 991px) {
  .service-wrapper {
    flex-direction: column;
  }
  .service-gallery,
  .service-content {
    flex: 1 1 100%;
  }
  .service-title {
    font-size: 24px;
  }
  .thumbnail-carousel img {
    width: 24%;
  }
  .thumb-btn.prev {
    left: 0;
  }
  .thumb-btn.next {
    right: 0;
  }
}



.button-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.enquiry-btn, .whatsapp-btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 12px 30px;
  font-size: 15px;
}

.enquiry-btn {
  background: #f2bf33;
  color: #0e1d40;
  border: none;
  cursor: pointer;
}

.enquiry-btn:hover {
  background: #0e1d40;
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  width: 90%;
  max-width: 420px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease;
}

.popup-content h3 {
  text-align: center;
  color: #0e1d40;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #0e1d40;
  cursor: pointer;
}

.enquiry-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #0e1d40;
}

.enquiry-form input, .enquiry-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 15px;
  transition: 0.3s ease;
}

.enquiry-form input:focus, .enquiry-form select:focus {
  border-color: #f2bf33;
  outline: none;
  box-shadow: 0 0 4px rgba(242, 191, 51, 0.4);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #0e1d40;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #f2bf33;
  color: #0e1d40;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .popup-content {
    padding: 30px 20px;
  }
}




.ashoka-wheels-tabs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #f2f2f2;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tabs-nav li {
  padding: 12px 25px;
  font-weight: 600;
  color: #0e1d40;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.tabs-nav li.active {
  color: #f2bf33;
  border-color: #f2bf33;
}

.tabs-content {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px 30px;
  border-radius: 8px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-pane.active {
  display: block;
}

/* --- Description Text --- */
.tab-pane h3 {
  color: #0e1d40;
  font-size: 22px;
  margin-bottom: 10px;
}

.tab-pane h4 {
  color: #0c2a5c;
  font-size: 18px;
  margin-top: 20px;
}

.tab-pane p {
  font-size: 15px;
  color:black;
  line-height: 1.8;
  margin-bottom: 15px;
}

.tab-pane ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.tab-pane ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

/* --- Specification Table --- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.spec-table th {
  width: 35%;
  color: #0e1d40;
  font-weight: 600;
}

.spec-table td {
  color: #555;
}

/* --- Animation --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .tabs-nav li {
    padding: 10px 15px;
    font-size: 14px;
  }
  .tabs-content {
    padding: 20px;
  }
  .tab-pane h3 {
    font-size: 20px;
  }
  .tab-pane h4 {
    font-size: 16px;
  }
}


.account-page-area .myaccount-tab-trigger li a.active {
    background: #ffd700 !important;
    color: black  !important;
}



.ashoka-login {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px 15px;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 40px 35px;
  text-align: center;
}

.login-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}

.login-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 6px;
}

.login-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.login-form input:focus {
  border-color: #ffc400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.15);
}

.login-btn {
  width: 100%;
  background: #ffc400;
  border: none;
  color: #000;
  padding: 12px 0;
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #000;
  color: #fff;
}

.signup-text {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.signup-text a {
  color: #ffc400;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.signup-text a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 480px) {
  .login-box {
    padding: 30px 25px;
  }
  .login-box h2 {
    font-size: 24px;
  }
}




.ashoka-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px 15px;
}

.signup-container {
  width: 100%;
  max-width: 450px;
}

.signup-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 40px 35px;
  text-align: center;
}

.signup-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}

.signup-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.signup-form label {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 6px;
}

.signup-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.signup-form input:focus {
  border-color: #ffc400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.15);
}

.signup-btn {
  width: 100%;
  background: #ffc400;
  border: none;
  color: #000;
  padding: 12px 0;
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background: #000;
  color: #fff;
}

.login-text {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.login-text a {
  color: #ffc400;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.login-text a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 480px) {
  .signup-box {
    padding: 30px 25px;
  }
  .signup-box h2 {
    font-size: 24px;
  }
}






/* MAIN WRAPPER */
.ashoka-car-tyres {
    width: 100%;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.ashoka-car-tyres .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* FILTER BAR */
.ashoka-car-tyres .filters-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ashoka-car-tyres label {
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #666;
}

.ashoka-car-tyres select {
    width: 200px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f2f2f2;
    font-size: 15px;
}

.ashoka-car-tyres .btn-search {
    width: 160px;
    padding: 14px;
    background: #0077c8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.ashoka-car-tyres .btn-search:hover {
    background: #005fa3;
}

/* SECTION TITLES — CENTER */
.ashoka-car-tyres .section-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;      /* NEW CENTER */
    width: 100%;
    margin: 40px 0 20px;
}

/* BRAND LOGO GRID — CENTER ALIGN */
.ashoka-car-tyres .brand-logos {
    width: 100%;
    display: flex;
    justify-content: center; /* CENTER */
    align-items: center;
    gap: 50px;               /* EVEN SPACING */
    flex-wrap: wrap;
    text-align: center;
}

.ashoka-car-tyres .brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ashoka-car-tyres .brand-item img {
    width: 150px;
    max-width: 100%;
}

/* DIVIDER */
.ashoka-car-tyres .divider {
    margin: 40px auto;
    border: none;
    border-top: 1px solid #ddd;
    width: 80%;              /* Centered line */
}

/* MOBILE FIXES */
@media (max-width: 768px) {

    .ashoka-car-tyres .filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .ashoka-car-tyres select {
        width: 100%;
    }

    .ashoka-car-tyres .btn-search {
        width: 100%;
    }

    .ashoka-car-tyres .brand-logos {
        gap: 25px;
    }
}



.ashoka-products {
    width: 100%;
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}

.ashoka-products .container {
    max-width: 1400px;
    margin: auto;
}

/* ----- LAYOUT GRID ----- */
.products-layout {
    display: flex;
    gap: 40px;
}

/* ----- SIDEBAR ----- */
.sidebar {
    width: 260px;
}

.sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.filter-list li {
    list-style: none;
    margin-bottom: 15px;
}

.filter-list button {
    width: 100%;
    background: #e8ecef;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
}

.price-title {
    font-size: 18px;
    margin-top: 25px;
}

.price-range {
    color: #444;
    margin: 5px 0 15px;
}

.price-slider {
    width: 100%;
}

.find-btn {
    width: 100%;
    background: #0c2a5c;
    border: none;
    padding: 16px;
    color: #fff;
    margin-top: 25px;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* ----- TOP BAR ----- */
.products-right {
    flex: 1;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-box {
    display: flex;
    flex-direction: column;
}

.sort-box select {
    width: 180px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* ----- PRODUCT GRID ----- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.15);
    padding-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.product-card .product-image {
    text-align: center;
    padding: 20px 0 10px;
}

/* PRICE ROW */
.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    margin-top: 10px;
}

/* STRIKEOUT PRICE */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 15px;
}

/* SELLING PRICE */
.new-price {
    color: #0c2a5c;
    font-size: 20px;
    font-weight: 700;
}

/* TAG */
.product-card .tag {
    background: #0074c7;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}


/* PRODUCT TEXT */
.product-info {
    padding: 15px;
}

.sku, .brand {
    margin-bottom: 5px;
}

/* PRICE + DETAILS BUTTONS */
.price-row {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.price-btn {
    /* background: #ffd700; */
    color: #0c2a5c;
    border: none;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bolder;

    border-radius: 6px;
}

.details-btn {
    background: #0c2a5c;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
}

/* FEATURE ROW */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .products-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* ----- DROPDOWNS ----- */
.filter-select {
    width: 100%;
    background: #e8ecef;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    margin-bottom: 15px;
}

/* ----- STICKY SIDEBAR ----- */
#stickySidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

/* Ensures sidebar full width on mobile */
@media (max-width: 992px) {
    #stickySidebar {
        position: static;
    }
}


/* Existing CSS remains same — only new additions below */

.price-slider-box {
    position: relative;
    height: 40px;
    margin-top: 10px;
}

.range-slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    height: 20px;
}

.range-slider::-webkit-slider-thumb {
    pointer-events: auto;
    height: 18px;
    width: 18px;
    background: #0c2a5c;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
}

/* ---- BLUE FILL BAR ---- */
.slider-fill {
    position: absolute;
    height: 5px;
    background: #0c2a5c;
    border-radius: 10px;
    top: 7px;
    left: 0;
    right: 0;
    z-index: -1;
}


.pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pagination button {
    padding: 10px 18px;
    border: none;
    background: #e8ecef;
    border-radius: 5px;
    cursor: pointer;
}

.pagination button.active {
    background: #0c2a5c;
    color: #fff;
}

/* Wrapper holds the full-card clickable layer */
.product-card-wrapper {
    position: relative;
}

/* Full card clickable layer */
.full-card-link {
    position: absolute;
    inset: 0;
    z-index: 20; /* place above everything */
    text-decoration: none;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.full-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.product-card * {
    position: relative;
    z-index: 10;
}

.details-btn {
    z-index: 20 !important;
}






.ashoka-single {
    width: 100%;
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}

.ashoka-single .container {
    max-width: 1400px;
    margin: auto;
}

/* MAIN LAYOUT */
.single-layout {
    display: flex;
    gap: 50px;
}

/* LEFT COLUMN */
.left-column {
    width: 45%;
}

/* MAIN IMAGE */
.main-image-box {
    padding: 40px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
}

.main-image-box img {
    width: 85%;
}

/* THUMBNAILS */
.thumb-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.thumb {
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: contain;
    background: #fff;
}

.active-thumb {
    border: 2px solid #ff8800;
}

/* RIGHT COLUMN */
.right-column {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.product-title {
    font-size: 26px;
    margin-bottom: 5px;
}

.sku {
    margin-bottom: 20px;
    color: #444;
}

.product-details p {
    margin: 4px 0;
    font-size: 15px;
}

/* PRICE */
.price {
    font-size: 28px;
    color: #ff6600;
    margin-top: 20px;
}

.price-note {
    color: #999;
    margin-bottom: 20px;
}

/* BUTTONS */
/* .btn-cart,
.btn-wishlist {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 17px;
} */

.btn-cart {
       background-color: #ffd700;
    color: #0c2a5c;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    white-space: nowrap;
}
.btn-cart:hover {
    background-color: #074583;
}
.btn-cart:hover {
    background: #0e1d40;
    color: #fff;
}

.btn-wishlist {
    background: #ff8800;
    color: #fff;
}

.btn-wishlist span {
    font-size: 20px;
}

/* FEATURES AREA */
.feature-boxes {
    display: flex;
    margin-top: 25px;
    border-top: 1px solid #ddd;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid #ddd;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card img {
    width: 55px;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .single-layout {
        flex-direction: column;
    }

    .left-column {
        width: 100%;
    }

    .thumb {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .thumb {
        width: 80px;
        height: 80px;
    }

    .product-title {
        font-size: 22px;
    }
}



.ashoka-thanyou {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  text-align: center;
}

.ashoka-thanyou .container {
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease both;
}

.thankyou-icon {
  margin-bottom: 25px;
  animation: pop 1s ease both;
}

.thankyou-box h1 {
  color: #0e1d40;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thankyou-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  background: #0e1d40;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #f2bf33;
  color: black !important;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .thankyou-box {
    padding: 40px 25px;
  }
  .thankyou-box h1 {
    font-size: 26px;
  }
  .thankyou-box p {
    font-size: 15px;
  }
}

.ashoka-error {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  text-align: center;
}

.ashoka-error .container {
  max-width: 700px;
  margin: 0 auto;
}

.error-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease both;
}

.error-icon {
  margin-bottom: 25px;
  animation: shake 1s ease both;
}

.error-box h1 {
  color: #0e1d40;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  background: #0e1d40;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #f2bf33;
  color: #0e1d40;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .error-box {
    padding: 40px 25px;
  }
  .error-box h1 {
    font-size: 26px;
  }
  .error-box p {
    font-size: 15px;
  }
}

.user-dropdown a:hover {
    background-color: #f4f4f4;
    color: #0c2a5c;
    color: black !important;
}

.account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #020000 !important;
}

.uren-btn_dark {
    background: #0c2a5c !important;
    color: #ffffff;
    width: 150px;
    height: 40px;
    line-height: 38px;
    font-weight: 600;
    border: 0;
}

address
 {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
    color: black;
}


.uren-form .uren-form-inner, .uren-form-boxed .uren-form-inner {
    
    color: black;
    
}

.account-page-area .myaccount-tab-trigger li a:hover {
    color: #000000 !important;
}

.info-content h4:hover{
    color: white;
}

/* CART ICON */
.cart-icon {
    position: relative;
    margin-left: 20px;
}

.cart-icon a {
    color: #000;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    color: white;
}

.cart-icon i {
    font-size: 20px;
}

/* Count Badge */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e40000;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* For mobile header spacing */
.header-actions .cart-icon {
    margin-right: 10px;
}




/* MAIN WRAPPER */
.ashoka-cart {
    padding: 60px 0;
    background: #f7f7f7;
}

/* EMPTY CART MESSAGE */
.empty-cart-message {
    width: 100%;
    text-align: center;
}

/* CART TITLE */
.ashoka-cart .cart-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* CONTINUE SHOPPING BUTTON */
#continue-shopping-button {
    background-color: #0c2a5c;
    padding: 10px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* LAYOUT */
.cart-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.cart-items {
    flex: 1;
    min-width: 300px;
}

/* CART ITEM */
.cart-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

.cart-item .item-img img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 18px;
    font-weight: 600;
}

.item-sku, .item-brand {
    font-size: 14px;
    color: #555;
    margin: 3px 0;
}

/* QUANTITY */
.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #ddd;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.qty-input {
    width: 45px;
    height: 34px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* PRICE BUTTON */
.item-price {
    text-align: right;
    color: black;
    font-weight: 500;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.remove-btn {
    border: none;
    background: none;
    margin-top: 8px;
    font-size: 14px;
    color: red;
    cursor: pointer;
}

/* SUMMARY BOX */
.cart-summary {
    width: 320px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    min-height: 300px;
    height: 300px; /* Prevents collapse */
}

.cart-summary h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: black;
    font-size: 16px;
}

.summary-total {
    border-top: 1px solid #ddd;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
    color: black;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: #e60000;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

    /* Cart Item Layout */
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .item-price {
        text-align: center;
    }

    /* Order Summary Box */
    .cart-summary {
        width: 100%;
        min-height: 300px;
    }

    /* Empty Cart Message */
    .empty-cart-message {
        text-align: center;
        margin-top: 50px;
    }

    #message-text {
        font-size: 18px;
    }

    #continue-shopping-button {
        display: inline-block;
        background-color: #0068a0;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    /* Adjust font size for small screens */
    .cart-title {
        font-size: 28px;
    }

    .cart-item {
        font-size: 14px;
    }

    .item-name {
        font-size: 16px;
    }

    .summary-row,
    .summary-total {
        font-size: 14px;
    }

    .checkout-btn {
        font-size: 16px;
    }
}




/* MAIN WRAPPER */
.ashoka-checkout {
    padding: 50px 0;
    background: #f5f5f5;
    
}

.checkout-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* GRID LAYOUT */
.checkout-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT */
.checkout-left {
    flex: 1;
    min-width: 300px;
}

/* RIGHT */
.checkout-right {
    width: 340px;
    min-width: 300px;
}

/* CARD BOX */
.checkout-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.section-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    font-size: 15px;
}

textarea {
    height: 90px;
}

/* ROW GRID */
.form-row {
    display: flex;
    gap: 20px;
}

/* RADIO SIMPLE */
.simple-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

/* ===============================
   SUMMARY ITEMS
================================ */
.summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #ededed;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item img {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    object-fit: cover;
    background: #f2f2f2;
    flex-shrink: 0;
}

/* TEXT BLOCK */
.summary-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item p {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.summary-item small {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #888;
    text-transform: uppercase;
}

/* PRICE */
.summary-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}


.total-row,
.grand-total {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.grand-total {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 600;
    font-size: 18px;
}

/* BUTTON */
.place-order-btn {
    width: 100%;
    background: #e60000;
    padding: 14px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .checkout-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .checkout-right {
        width: 100%;
    }
}


/* 3 columns in desktop */
.form-row-3 {
    display: flex;
    gap: 20px;
}

/* Each field takes equal width */
.form-row-3 .form-group {
    flex: 1;
}

/* Mobile view → fields stack one by one */
@media (max-width: 900px) {
    .form-row-3 {
        flex-direction: column;
    }
}


/* ==========================================
   MAIN DASHBOARD LAYOUT
========================================== */
.ashoka-dashboard {
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

/* ==========================================
   LEFT SIDEBAR
========================================== */
.dashboard-left {
    width: 30%;
    background: #0a1a3c;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-menu button {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: 0.3s;
}

.dashboard-menu button.active,
.dashboard-menu button:hover {
    background: #d9072d;
}

/* ==========================================
   RIGHT CONTENT
========================================== */
.dashboard-right {
    width: 70%;
    background: #f5f6fa;
    padding: 30px;
    border-radius: 10px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==========================================
   PROFILE SECTION
========================================== */
.profile-section {
    display: flex;
    gap: 30px;
}

/* LEFT IMAGE BOX */
.profile-photo-box {
    /* width: 35%; */
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #bbb;
}

.profile-photo-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #d9072d;
    object-fit: cover;
}

.username {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #0a1a3c;
}

#uploadInput {
    display: none;
}

.edit-icon {
    margin-top: 12px;
    display: inline-block;
    cursor: pointer;
    background: #d9072d;
    padding: 7px 18px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
}

/* ==========================================
   PROFILE FORM BOX
========================================== */
.profile-form-box {
    width: 65%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #bbb;
}

.profile-form-box .form-group {
    margin-bottom: 15px;
}

.profile-form-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fafafa;
}

/* SAVE BUTTON */
.save-btn {
    background: #d9072d;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

/* ==========================================
   ORDERS TABLE (DESKTOP)
========================================== */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.orders-table th,
.orders-table td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

/* VIEW BUTTON */
.view-btn {
    background-color: #0a1a3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* ORDER DETAILS BOX */
.order-details-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.back-btn {
    background: #0a1a3c;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

/* ==========================================
   ADDRESS TAB
========================================== */
.address-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.address-box {
    width: 50%;
    background:white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

/* NEW ADDRESS FORM */
.address-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #ccc;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    width: 33.33%;
    padding: 12px;
    border: 1px solid #888;
    border-radius: 5px;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.close-btn {
    background: #444;
    padding: 12px 20px;
    border: none;
    color: white;
    border-radius: 5px;
}

/* ==========================================
   CHANGE PASSWORD
========================================== */
.change-pass input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: white;
    border: 1px solid #444;
    border-radius: 5px;
}

/* ==========================================
   MOBILE RESPONSIVE – TABLE TO CARDS
========================================== */
@media(max-width: 700px) {

    .orders-table thead,
    .orders-table tr th {
        display: none !important;
    }

    .orders-table tr {
        display: block;
        background: #ffffff;
        margin-bottom: 18px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.08);
        border: none;
    }

    .orders-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px dashed #ccc;
        font-size: 15px;
    }

    .orders-table td:last-child {
        border-bottom: none;
    }

    .orders-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0a1a3c;
    }
}

/* ==========================================
   FULL RESPONSIVE DASHBOARD
========================================== */
@media(max-width: 900px) {

    .ashoka-dashboard {
        flex-direction: column;
    }

    .dashboard-left,
    .dashboard-right {
        width: 100%;
    }

    .profile-section {
        flex-direction: column;
    }

    .profile-photo-box,
    .profile-form-box {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100%;
    }

    .address-wrapper {
        flex-direction: column;
    }

    .address-box {
        width: 100%;
    }
}



/* CHECKBOX ROW */
.checkbox-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.checkbox-row label {
    font-size: 15px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons row already included in previous code */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.save-btn {
    background: #d9072d;
    padding: 12px 22px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.close-btn {
    background: #444;
    padding: 12px 22px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Mobile responsive */
@media(max-width: 900px) {
    .checkbox-row {
        flex-direction: column;
        gap: 10px;
    }
}





#check-out .form-row input{
 width: 100% !important;
}


.form-group input, .form-group textarea {
    width: 100% !important;
   
}

/***********************************
    PRODUCT DESCRIPTION TAB SECTION
************************************/
.single-product-desk {
    max-width: 70%;
    margin: 40px auto;
    padding: 0 20px;
}

/* TAB BUTTONS */
.tab-buttons {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab-buttons .tab-btn {
    width: 25%;                 /* FIXED: Always 25% width */
    padding: 14px;
    font-size: 17px;
    background: #f4f4f4;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    text-align: center;
}

.tab-buttons .tab-btn.active {
    background: #0a1a3c;
    color: #fff;
    border-bottom: 3px solid #d9072d;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.tab-content.active {
    display: block;
}

/* LIST */
.single-product-desk ul {
    padding-left: 20px;
}

.single-product-desk ul li {
    line-height: 1.7;
    font-size: 15px;
}

/* SPEC ROWS */
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 16px;
}

.spec-row:last-child {
    border-bottom: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .tab-buttons {
        display: flex;        /* stays side by side */
        flex-wrap: wrap;      /* wrap if needed */
    }

    .tab-buttons .tab-btn {
        width: 25%;           /* still 25% width */
        padding: 12px;
        font-size: 14px;
    }

    .spec-row {
        flex-direction: column;
        gap: 3px;
    }
    .single-product-desk {
    max-width: 100%;
   
}

    .tab-buttons .tab-btn {
        width: 50%;
        padding: 12px;
        font-size: 14px;
    }
}

.input-error-message {
    color: red;
}



.link-btn{
  border: 2px solid aliceblue;
  margin-right: 5px;
  border-radius: 10px;
  padding: 5px;
  background: #071090;
  color: white;
}


/* =========================
   SEARCH TOGGLE (TABS)
========================= */

.search-toggle {
    display: flex;
    gap: 24px;
    text-decoration: none;
    /* margin-bottom: 18px; */
   /*  border-bottom: 1px solid #e6e6e6; */
}

.toggle-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
}

.toggle-btn.active {
    color: #000;
    font-weight: 600;
}

.toggle-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #007bff; /* brand blue */
}

/* =========================
   FILTER ROW (SAME LINE)
========================= */

.filters-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.filter-box label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    display: block;
}

.filter-box select {
    height: 42px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 10px;
    background: #f5f5f5;
}

.filter-btn-box .btn-search {
    height: 42px;
    padding: 0 32px;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* =========================
   TAB CONTENT
========================= */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    .filters-row {
        grid-template-columns: 1fr;
    }

    .filter-btn-box {
        margin-top: 10px;
    }
}

/* lokesh adding css for empty cart */

		.delivery-type-row{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}
.radio-box{
  display:flex;
  gap:8px;
  align-items:center;
}

.service-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.service-row select, .service-row input{
  flex:1;
  min-width:200px;
}

.slots-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap:10px;
}
.slot{
  border:1px solid #ddd;
  padding:8px;
  border-radius:8px;
  cursor:pointer;
  text-align:center;
	font-size: 12px;
  color: black;
}
.slot.disabled{
  opacity:.5;
  pointer-events:none;
}

/* coupon css */
/* APPLY ROW */
.coupon-apply-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

/* INPUT */
.coupon-apply-row input {
    height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* APPLY BUTTON */
#applyCouponBtn {
    padding: 0 16px;
    border-radius: 6px;
    border: none;
    background: #ff0000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* REMOVE BUTTON (ICON STYLE) */
.remove-coupon-btn {
    background: none;
    border: none;
    color: #ff0000;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

/* MESSAGE */
.coupon-msg {
    font-size: 13px;
    color: #28a745;
    margin-top: 6px;
}


/* slots css */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}

.slot {
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  transition: all .2s ease;
}

.slot input {
  margin-right: 6px;
}

/* AVAILABLE */
.slot-available {
  border-color: #28a745;
  background: #f3fff6;
}
.slot-available:hover {
  background: #e6ffed;
}

/* BOOKED */
.slot-booked {
  border-color: #dc3545;
  background: #fff5f5;
  color: #999;
  cursor: not-allowed;
}

/* PAST */
.slot-past {
  border-color: #adb5bd;
  background: #f8f9fa;
  color: #aaa;
  cursor: not-allowed;
}

/* SELECTED */
.slot input:checked + span,
.slot input:checked {
  accent-color: #28a745;
}


/* user dashboard */
/* Order Details Page */
.order-details-container {
    margin: 40px auto;
}

.order-details-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-header .order-id,
.order-header .order-date,
.order-header .order-status {
    font-size: 16px;
    font-weight: bold;
}

.status-label {
    text-transform: capitalize;
}

.status-label.completed {
    color: green;
}

.status-label.pending {
    color: orange;
}

.order-total {
    font-size: 18px;
    margin-top: 10px;
}

.order-product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.order-product-table th,
.order-product-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .order-details-box {
        padding: 15px;
    }

    .order-header {
        flex-direction: column;
    }

    .order-header .order-id,
    .order-header .order-date,
    .order-header .order-status {
        margin-bottom: 8px;
    }

    .order-product-table {
        font-size: 14px;
    }

    .order-product-table th,
    .order-product-table td {
        padding: 8px;
    }
}


/* Grid Layout for Address Cards */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Hide the actual radio input */
.address-radio-input {
    display: none;
}

/* The Card Style */
.address-selection-card {
    display: block;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.address-selection-card:hover {
    border-color: #0d6efd;
    background-color: #f8fbff;
}

/* Selected State */
.address-radio-input:checked + .address-selection-card {
    border-color: #0d6efd;
    background-color: #f0f7ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

/* Check icon (hidden by default) */
.check-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #0d6efd;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.address-radio-input:checked + .address-selection-card .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Content Styling */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address-details p {
    margin-bottom: 4px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.4;
}

.addr-line {
    font-weight: 600;
    color: #222 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.addr-city-state {
    color: #666 !important;
}

.addr-phone {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: #0d6efd !important;
    font-weight: 500;
}

.address-details i {
    width: 18px;
    color: #adb5bd;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .address-grid {
        grid-template-columns: 1fr;
    }
}

